#basket_store{
	position: relative;
	box-sizing:border-box;
	height: 60px;
	visibility: hidden;
    margin: 10px 0 20px 30px;
}
.basket_icon{
	display: block;
	text-decoration: none;
	text-align: center;
	font-weight: bold;
	width: 100%;
    height: 100%;
}
.basket_icon:hover+.basket_content{
	visibility: visible;
	opacity: 1;
	right: 0;
}
.basket_content:hover{
	visibility: visible;
	opacity: 1;
}
.basket_content{
	visibility: hidden;
	opacity: 0;
	position: absolute;
	z-index: 12;
	top: 55px;
	left: -40%;
	-webkit-transition: visibility 0.1s, opacity 0.3s, ease-out 0.2s;
	transition: visibility 0.1s, opacity 0.3s, ease-out 0.2s;
}
.basket_list{
	margin: 0;
	padding: 5px;
	border:0!important;
	border-radius:2!important;
	background-color:#fff !important;
	line-height: 1.2;
	border: 2px solid #E6E6E6 !important;
	box-shadow: 0px 2px 8px 1px rgba(0, 0, 0, 0.07);
}
.basket_rows{
	overflow-y: auto;
	padding: 0 10px;
}
.basket_row{
	margin: 10px 0 5px;
	padding-bottom: 5px;
	border-bottom: 1px solid #CCC;
}
.basket_row:last-child{
	border: none;
}
.basket_img{
	text-align:center;
	display: block;
}
.basket_name{
	padding: 0;
	margin: 0 0 10px;
	font-size: 12px;
	text-align: center;
	font-weight: bold;
}
.basket_name a{
	color: #389cc3;
}
.basket_attr{
    text-align: center;
	padding-top: 4px;
	font-size: 12px;
	color: #555;
}
.basket_value{
	clear: both;
	text-align:center;
	margin: 8px 0;
}

a.basket_del{
    color: #666;
    font-size: 12px;
    margin-right: 10px;
    text-decoration: none;
    vertical-align: middle;
}
a.basket_del:hover{
    color: red;
}
.basket_inputbox{
    max-width: 20px;
    min-width: 20px;
    text-align: center;
	margin-top: 10px;
}
input.basket_inputbox{
    height: 28px;
	margin: 0;
}
.basket_price{
    text-align: center;
	margin: 10px 0 5px;
	font-size: 16px;
	color: #1892ba;
}
.basket_price em{
	margin-right: 10px;
	font-size: 16px;
	font-style: normal;
}
.basket_vsego {
    display:block;
    position: relative;
	padding: 20px 10px 0 45px;
	text-align: center;
	font-size: 14px;
	color: #777;
}
.basket_total{
	position: relative;
	margin-top: 2px;
	border-top: 1px solid #ccc;
	padding: 15px 0 5px;
	text-align: center;
	font-size: 15px;
	font-weight: bold;
	color: #555;
}
.basket_incart{
	display: block;
	width: 80%;
	margin: 5px auto 10px;
	padding: 4px 0;
	text-decoration: none;
	text-align: center;
	font-size: 18px;
	color: #FFF;
}
.basket_incart:hover{
	color: #FFF;
}
.basket_load{
	position: absolute;
	top: 14px;
	left: 45px;
	width: 256px;
	height: 24px;
	background: url(/modules/mod_jshopping_basket_ajax/img/basket_load.gif) no-repeat transparent;
	opacity: 0.6;
}
.basket_load_ajax{
	position: fixed;
	z-index: 12;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(/modules/mod_jshopping_basket_ajax/img/basket_load_ajax.gif) no-repeat center center;
	background-color: #FFF;
	opacity: 0.6;
}
.no_display{
	display: none;
}
.basket_minus, .basket_plus{padding: 0 5px;}