#basket_store {
	position: relative;
    display: flex;
    justify-content: center;
	margin: 10px auto 0 auto;
    width: 160px;
}

#basket_store a{
    text-decoration: none;
}

.basket_icon:hover+.basket_content{
	visibility: visible;
	opacity: 1;
	right: 0;
}
.basket_content:hover{
	visibility: visible;
	opacity: 1;
	right: 0;
}
.basket_content{
	visibility: hidden;
	opacity: 0;
	width: 370px;
	position: absolute;
	z-index: 12;
	top: 20px;
	right: 100px;
	-webkit-transition: visibility 0.1s, opacity 0.5s, right ease-out 0.6s;
	transition: visibility 0.1s, opacity 0.5s, right ease-out 0.6s;
}
.basket_list{
	margin: 5px;
	padding: 10px 5px;
	line-height: 1.2;
	background-color: #FFF;
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.basket_rows{
	max-height: 430px;
	overflow-y: auto;
	padding: 0 10px;
}
.basket_row{
	margin: 10px 0;
	padding-bottom: 5px;
	border-bottom: 1px solid #CCC;
}
.basket_row:last-child{
	border: none;
}
.basket_img{
	float: left;
	display: block;
	width: 100px;
	text-align: center;
}
.basket_img img{
	max-height: 70px;
	max-width: 90px;
}
.basket_name {
	padding: 5px 0 2px;
	font-size: 16px;
}
.basket_name a {
	color: #008BCF;
}
.basket_attr{
	padding-top: 4px;
	font-size: 14px;
	font-weight: bold;
	color: #333;
}

.basket_value {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

span.basket_quan {
    display: flex;
    align-items: center;
}

a.basket_del{
	margin-right: 10px;
	font-size: 16px;
	color: #999;
}
a.basket_del:hover{
	color: #666;
}
.basket_minus,
.basket_plus{
	cursor: pointer;
	font-size: 24px;
	color: #999;
}
.basket_minus:hover,
.basket_plus:hover {
	color: #666;
}
input.basket_inputbox{
	height: 18px;
	width: 28px;
	margin: 5px 2px 2px 2px;
	padding: 0;
	outline: medium none;
	border: 1px inset #999;
	outline: none;
	font-size: 12px;
	text-align: center;
}
.basket_price{
	float: right;
	font-size: 16px;
	font-weight: bold;
	color: #333;
}
.basket_price em{
	margin-right: 10px;
	font-size: 16px;
	font-style: normal;
}
.basket_total{
	position: relative;
	margin-top: 2px;
	border-top: 1px solid #999;
	padding: 15px 0 5px;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	color: #666;
}

.in_cart_list{
	display: inline-block;
	position: relative;
	margin-top: 10px;
	padding: 5px;
	border: 1px solid #3C3;
	border-radius: 3px;
	white-space: nowrap;
	font-size: 14px;
	text-decoration: none;
	color: #393;
}
.in_cart_list:hover{
	background-color: #3C3;
	color: #fff;
}
.item_list_added{
	position: absolute;
	top: 0;
	left: 0;
	background-color: #3C3;
	padding: 5px;
	border-radius: 3px;
	color: #FFF;
}
.in_cart_prod {
	text-align: center;
}
.in_cart_pro{
	display: inline-block;
	position: relative;
	margin: 10px;
	padding: 5px;
	border: 1px solid #3C3;
	border-radius: 3px;
	white-space: nowrap;
	font-size: 14px;
	text-decoration: none;
	color: #393;
}

.in_cart_pro:hover{
	background-color: #3C3;
	color: #fff;
}

.item_pro_added{
	position: absolute;
	top: 0;
	left: 0;
	background-color: #3C3;
	padding: 5px;
	border-radius: 3px;
	color: #FFF;
}
.basket_load{
	position: absolute;
	top: 14px;
	left: 45px;
	width: 256px;
	height: 24px;
	background: url(../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(../img/basket_load_ajax.gif) no-repeat center center;
	background-color: #FFF;
	opacity: 0.3;
}
.no_display{
	display: none;
}
