.small-cart-container {
	position: fixed;
	top:100px;
	right:20px;
	z-index:100;
}

.small-cart-container .small-cart {
	position: relative;
	width:297px;
	padding:34px 25px 0 25px;
	background:
		url(images/bcg_up.png) no-repeat center top,
		url(images/bcg.png) no-repeat center 106px
	;
}
.small-cart-container .small-cart:after {
	content: '';
	display: block;
	background: url(images/bcg_down.png) no-repeat center bottom;
	width:100%;
	padding:0 25px;
	height:19px;
	bottom: -19px;
	left:-25px;
	position: absolute;
}
.small-cart-container .small-cart a.cart-reset:link,
.small-cart-container .small-cart a.cart-reset:visited {
	position: absolute;
	top:41px;
	right:25px;
	text-decoration: none;
	text-transform: uppercase;
	color: #2c2c2c;
	font-size: 15px;
	font-weight:bold;
	line-height:1em;
}
.small-cart-container .small-cart a.cart-reset:after {
	content: '';
	background: url(images/reset.png) no-repeat 0 0;
	width:15px;
	height:15px;
	display: inline-block;
	vertical-align: middle;
	margin-left:4px;
	transition: all .3s linear;
}
.small-cart-container .small-cart a.cart-reset:hover:after {
	transform:rotate(-180deg);
}

.small-cart-container .small-cart .shop-cart-head {
	margin-bottom:8px;
	color: #5e5e5e;
	font-size: 18px;
	text-transform: uppercase;
	font-weight:600;
}
.small-cart-container .small-cart ul {
	margin:0 0 8px 0;
	padding:0;
	list-style-type: none;
	border-bottom:1px dotted #b8b8b8;
	width:100%;
}
.small-cart-container .small-cart ul li {
	margin:0 0 8px 0;
	padding:0;
	font-size: 12px;
	color: #3f3f3f;

	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack:justify;
	justify-content:space-between;
}

.small-cart-container .small-cart ul li a.del {
	display: block;
	background: url(images/del.png) no-repeat 0 0;
	min-width:15px;
	height:15px;
	transition: all .3s linear;
}
.small-cart-container .small-cart ul li a.del:hover {
	transform: rotate(-180deg);
}
.small-cart-container .small-cart ul li .title {
	width:100%;
	padding:0;
	margin-left:10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;

	background: url(images/dots.png) repeat-x left 11px;
}
.small-cart-container .small-cart ul li .title span {
	background: url(images/bcg.png) no-repeat -5px center;

}
.small-cart-container .small-cart ul li .price {
	white-space: nowrap;
	margin-left:3px;
	color: #5e5e5e;
	font-weight:600;
	font-style: italic;
}
.small-cart-container .small-cart-itog .itogo {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;

	color: #15317a;
	font-size: 22px;
	margin-bottom:10px;
}
.small-cart-container a.print:link,
.small-cart-container a.print:visited {
	display: block;
	background: url(images/print.png) no-repeat left center;
	line-height:32px;
	padding-left:38px;
	font-size: 15px;
	color: #5e5e5e;
	font-style: italic;
	font-weight:bold;
	text-decoration: none;
}
.small-cart-container a.print:hover {
	color: #000;
}

.small-cart-other-prices input[type="checkbox"],
.small-cart-other-prices input[type="radio"] {
    display: none;
}
.small-cart-other-prices input[type="checkbox"] + label,
.small-cart-other-prices input[type="radio"] + label {
    position: relative;

}
.small-cart-other-prices input[type="checkbox"] + label:before,
.small-cart-other-prices input[type="radio"] + label:before {
    content: '';
    background: url(images/checkbox.png) no-repeat 0 0;
    width:18px;
    height:18px;
    vertical-align: middle;
    display: inline-block;
    position: absolute;
    left:-28px;
}
.small-cart-other-prices input[type="checkbox"]:checked + label:before,
.small-cart-other-prices input[type="radio"]:checked + label:before {
    background-position: -18px 0;
}

.small-cart-container .small-cart-other-prices ul li .title {
    margin-left:28px;
    overflow: initial;
}