.cart {
	position: fixed;
	width: 100%;
	width: 355px;
	height: 100%;
	right: 0;
	top: 0;
	z-index: 9999;
	background: #F59F76;
	border-radius: 1px;
	-webkit-transform: translateX(100%);
	    -ms-transform: translateX(100%);
	        transform: translateX(100%);
	-webkit-transition: -webkit-transform .5s cubic-bezier(.645, .045, .355, 1);
	transition: -webkit-transform .5s cubic-bezier(.645, .045, .355, 1);
	-o-transition: transform .5s cubic-bezier(.645, .045, .355, 1);
	transition: transform .5s cubic-bezier(.645, .045, .355, 1);
	transition: transform .5s cubic-bezier(.645, .045, .355, 1), -webkit-transform .5s cubic-bezier(.645, .045, .355, 1);
}

.open-cart .cart{
	-webkit-transform: translateX(0);
	    -ms-transform: translateX(0);
	        transform: translateX(0);
}

.cart-section {
	position: relative;
	padding: 36px 26px 36px 26px;
}

.cart-section--top {
	z-index: 5;
}

.cart-title {
	display: inline-block;
	overflow: hidden;
	white-space: nowrap;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
	font-size: 12px;
}

.cart-form {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	padding: 86px 0 140px 0;
}


@media only screen and (max-width : 767px) {
	.cart {
		width: calc(100vw - 49px);
		max-width: 355px;
	}
	
	.cart-section {
		padding: 16px 16px 12px 16px;
	}
	
	.cart-form {
		padding: 50px 0 140px 0;
	}
	
	.btn.solid.btn--cart-checkout {
		margin-top: 0;
	}
}


.cart-item-container {
	border-top: 1px solid black;
	height: 100%;
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	-webkit-perspective: 400px;
	        perspective: 400px;
	-webkit-perspective-origin: 50% 0px;
	        perspective-origin: 50% 0px;
}

.cart-item-container::-webkit-scrollbar { 
    display: none;
}

.cart-item {
	margin-bottom: 40px;
	overflow: hidden;
	-webkit-backface-visibility: visible;
	        backface-visibility: visible;
	min-height: 65px;
	position: relative;
	opacity: 1;
	-webkit-transition: opacity 0.2s ease-in-out;
	-o-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}

.cart-item:last-child {
	margin-bottom: 0;
}

.cart-item.js-hidden {
	opacity: 0;
}

.cart-item.js-working:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.5);
	z-index: 2;
}

.cart-item__img {
	width: 65px;
	height: 85px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: top;
	position: absolute;
}

.cart-item__content {
	width: 100%;
	padding-left: 95px;
}

.cart-item__content-row {
	margin-bottom: 5px;
}

.cart-item__variant-title {
	float: right;
	font-weight: bold;
	font-size: 11px;
	line-height: 17px;
	color: #767676;
}

.cart-item__quantity-container {
	float: left;
	border-radius: 3px;
}

.quantity-decrement, .quantity-increment {
	color: black;
	display: block;
	float: left;
	height: 25px;
	font-family: "Optima";
	font-size: 14px;
	width: 24px;
	line-height: 8px;
	padding: 0;
	border: none;
	background: white;
	-webkit-box-shadow: none;
	        box-shadow: none;
	cursor: pointer;
	text-align: center;
}

.cart-item__quantity {
	color: black;
	width: 38px;
	height: 25px;
	font-family: "America-Bold";
	font-size: 9px;
	border: none;
	text-align: center;
	-moz-appearance: textfield;
	background: white;
	border-left: 1px solid #F59F76;
	border-right: 1px solid #F59F76;
	display: block;
	float: left;
	padding: 0;
	border-radius: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.cart-item__title {
	
}

.cart-item__price {
	display: block;
	margin-top: 10px;
	margin-bottom: 10px;
}

.cart-bottom {
	padding: 0px 26px 36px 26px;
}

.cart-bottom .cart-section {
	padding: 0;
	width: 100%;
}	

.cart-bottom .bottom-wrapper {
	padding: 0;
	border-top: 1px solid black;
	padding-top: 20px;
}

.cart-info {
	padding: 15px 26px 10px;
	text-transform: uppercase;
	font-family: "America-Bold";
	font-size: 9px;
	margin-bottom: 10px;
}

.cart-info__total {
}

.cart-info__small {
	font-size: 11px;
}

.cart-info__pricing.pricing {
	float: right;
}

.cart-discount-notice {
	margin-bottom: 16px;
	font-size: 10px;
}

.cart-actions-container {
	padding-top: 5px;
}

.pricing {
	margin-left: 5px;
	font-size: 11px;
	position: absolute;
	top: 0;
	right: 0;
} 

.btn--cart-tab {
	position: fixed;
	top: 30px;
	right: 20px;
	width: 24px;
	height: 21px;
	background-image: url('/assets/bag__black.svg');
	background-size: contain;
	background-repeat: no-repeat;
	color: black;
	font-family: "America-Bold";
	font-size: 9px;
	cursor: pointer;
}

@media only screen and (max-width : 767px) {
	.btn--cart-tab  {
		top: 12px;
		right: 12px;
		
	}
}

#open-cart.js-active, .open-cart #close-cart {
	opacity: 1;
	visibility: visible;
}

.open-cart #open-cart.js-active {
	opacity: 0;
	visibility: hidden;
}

.js-active .btn__counter {
	opacity: 1;
}

.btn__counter {
	opacity: 0;
	display: block;
	margin-top: 5px;
	margin-left: -1px;
}

.dark.btn--cart-tab {
	background-image: url('/assets/bag__white.svg');
	color: white;
}

.btn.solid {
	width: 100%;
	max-width: 302px;
	height: 35px;	
	line-height: 35px;
	font-family: "America-Bold";
	font-size: 9px;
	text-transform: uppercase;
	cursor: pointer;
	-webkit-transition: all .3s cubic-bezier(.645, .045, .355, 1);
	-o-transition: all .3s cubic-bezier(.645, .045, .355, 1);
	transition: all .3s cubic-bezier(.645, .045, .355, 1);
	-webkit-appearance: none;
	text-align: center;
}

.btn.solid.light {
	background: white;
	color: black;	
}

.btn.solid.light:hover {
	background: #F59F76;
	color: black;	
}

.btn.solid:disabled {
	cursor: not-allowed;
}

.btn.solid.dark {
	background: black;
	color: white;	
}

.btn.solid.dark:hover {
	background: white;
	color: black;
}

.btn.stroke {
	border: 1px solid;
}