/*cart mini*/
body.js-right{
	height: 100%;
}
.body-inner {
	position: relative;
	transition: all 0.4s cubic-bezier(0.46, 0.01, 0.32, 1);
}
.cart-right {
	-webkit-transform: translateZ(0);
	will-change: transform;
	position: fixed;
	top: 0;
	bottom: 0;
	padding: 0 15px 15px;
	max-width: 95%;
	z-index: 999999;
	color: #333;
	background-color: #fff;
	transition: all 0.4s cubic-bezier(0.46, 0.01, 0.32, 1);
	width: 340px;
	right: -340px;
	border-left: 1px solid #e9e9e9;
	border-radius: 20px 0 0 20px;
	margin: 10px 0;
}
body.js-right .body-inner {
}
body.js-right .body-inner>.overlay{
	background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
	bottom: 0;
	content: "" !important;
	display: inline-block !important;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 99999;
}
body.js-right .cart-right {
	display: block;
	-ms-transform: translateX(-340px);
	-webkit-transform: translateX(-340px);
	transform: translateX(-340px);
}
.pop_header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
	border-bottom: 1px solid #e9e9e9;
}
.pop_header_title {
	line-height: 50px;
	font-size: 18px;
	font-weight: 600;
}
.close-pop {
	cursor: pointer;
}
.cart-right .cart_item{
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid #e9e9e9;
}
.cart-right .cart_item,
.cart-right .cart_item  .cart-product-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
}
.cart-right .cart_item  .product-thumbnail{
	width: 25%;
	display: block !important;
}
.cart-right .cart_item  .cart-product-meta{
	width: 75%;
	padding-left: 10px;
}
.cart-right .product-name{
	margin-bottom: 4px;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.3;
	width: 100%;
}
.cart-right .product-name dt{
	display: none;
}
.cart-right .product-name dd{
	color: #999;
	font-style: italic;
}
.cart-right .product-quantity,
.cart-right .product-price{
	width: 50%;
}
.cart-right .product-price {
	text-align: right;
	font-weight: bold;
	display: block;
	font-size: 14px;
	color: #ec5c15;
}
 .note-cart label{
 	font-weight: 500;
 }
 .note-cart textarea{
 	width: 100%;
 }
.cart-right .order-total {
	display: flex;
	justify-content: space-between;
	margin: 20px 0;
}
.cart-right .order-total span:first-child{
	font-weight: 600;
}
.woocommerce .to-checkout button.button, 
.woocommerce .to-checkout a.button.alt {
	padding: 15px;
	width: 100%;
	margin: 0;
	line-height: 1.42;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
	cursor: pointer;
	background-color: #ec5c15;
	border: 2px solid #fff;
	color: #fff;
	border-radius: 10px;
	font-size: 14px;
	letter-spacing: 1px;
	font-weight: normal;
	margin-bottom: 15px;
}
.woocommerce .to-checkout button.button:hover,
.woocommerce .to-checkout a.button.alt:hover{
	opacity: .9;
}
.woocommerce .cart-right .screen-reader-text{
	display: none;
}

.woocommerce .cart-right .quantity .qty_button, 
.woocommerce .cart-right .quantity .qty {
	outline: none;
	height: 30px;
	width: 20px;
	padding: 0;
}
.woocommerce .cart-right .quantity .nd-quantity-input .qty {
	width: 30px !important;
	min-width: unset;
}
.woocommerce .cart-right .quantity .nd-quantity-input {
	font-size: 13px;
}

.cart-scroll {
	height: calc(100vh - 220px);
	overflow-y: auto;
	overflow-x: hidden;
}
