#close-cart-wrapper {
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: 111;
	background: rgba(0, 0, 0, 0.35);
	cursor: pointer;
}

#cart {
	max-width: 900px;
	max-height: calc(80vh + 40px);
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	padding: 40px;
	box-sizing: border-box;
	border-radius: 3px;
	background: #FFF;
	z-index: 1111;
}

#cart .top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 35px;
}

#cart .close {
	cursor: pointer;
}

#cart .close svg {
	display: block;
	width: 24px;
	height: 24px;
}

#cart .title_form {
	font-size: 24px;
	font-weight: 600;
	line-height: 1;
}

#cart .cart-list {
	display: flex;
	flex-direction: column;
	max-height: 300px;
	overflow-y: auto;
}
.simplecheckout-left-column{
	max-width: 560px;
}
.simplecheckout-right-column{
	max-width: 300px;
	position: sticky;
	top: 75px;
	align-self: flex-start;
 	 background: #FFFFFF;
}
@media(max-width: 900px){
	.simplecheckout-left-column{
		
		max-width: 100%;
	}
	.simplecheckout-right-column{
		
		max-width: 100%;
		
	}
}
#simplecheckout_payment_form{
	display: none;
}
#cart .cart-list li {
	padding: 10px 7px;
	box-sizing: border-box;
	display: grid;
	grid-template-columns: max-content 1fr max-content;
	align-items: center;
	grid-gap: 0 30px;
}
#cart .cart-list li.not_stock{
	opacity: .6;
	background: #f3f3f3;
}

#cart .cart-list .right {
	box-sizing: border-box;
	display: grid;
	grid-template-columns: max-content auto;
	grid-gap: 0 8px;
}

#cart .cart-list .remove {
	width: 34px;
	height: 34px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #F8F8F8;
}

#cart .cart-list .remove svg {
	width: 100%;
	height: 100%;
}

#cart .cart-list .count-block {
	display: flex;
	flex-direction: column;
}

#cart .cart-list .pluse-minus {
	display: grid;
	grid-template-columns: repeat(3,max-content);
	align-items: center;
	grid-gap: 0 10px;
	border: 1px solid #F8F8F8;;
}

#cart .cart-list .pluse-minus span {cursor: pointer;}

#cart .cart-list .pluse-minus * {
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 14px;
	line-height: 1;
	font-weight: 500;
}

#cart .center {
	display: flex;
	flex-direction: column;
	padding-right: 70px;
	box-sizing: border-box;
}

#cart .product-name {
	margin-bottom: 8px;
	font-size: 14px;
	color: #AC2112;
	font-weight: 500;
}

#cart .product-name a {
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	font-weight: inherit;
	word-break: break-word;
}

#cart .price {
	display: block;
	font-weight: 600;
	color: #000;
	font-size: 14px;
}

#cart .cart-list .pluse-minus *:fisrt-child {
	border-right: 1px solid #F8F8F8;;
}

#cart .cart-list .pluse-minus *:last-child {
	border-left: 1px solid #F8F8F8;;
}
#cart .thumb {
	display: block;
}

#cart .img {
	width: 76px;
	height: 76px;
	object-fit: cover;
}

#cart .buttons-block {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
}

#cart .buttons-block a {
	text-align: center;
	display: block;
	width: fit-content;
}

#cart .cart-btn {
	font-size: 14px;
	text-decoration: underline;
	line-height: 1.2;
	color: #AC2112;
}

#cart .checkout-btn {
	padding: 12px 20px;
	box-sizing: border-box;
	line-height: 1;
	background: #D52816;
	color: #FFF;
	font-weight: 600;
	font-size: 1em;
	text-decoration: unset;
}

#cart .total {
	margin-top: 8px;
	font-weight: 600;
	display: block;
	font-size: 14px;
	line-height: 1;
	text-align: right;
}

#cart .totals {
	margin-bottom: 35px;
	margin-top: 35px;
}

#cart .totals div {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

#cart .totals div * {
	font-size: 14px;
	line-height: 1;
}

#cart .totals div span {
	margin-right: 30px;
	font-weight: 400;
}

#cart .totals div strong {
	text-align: right;
	font-weight: 700;
}


@media only screen and (max-width: 720.99px) {
	#cart .center {
		padding-right: 0;
	}

	.simplecheckout-right-column {max-width: 100%;}
}

@media only screen and (max-width: 620.99px) {
	#cart .cart-list li {
		grid-gap: 0 15px;
		display: flex;
		flex-wrap: wrap;
	}
	#cart .price{
		display: none;
	}
	#cart .cart-list{
		max-height: 460px;
	}
	#cart .cart-list .remove,
	#cart .cart-list .pluse-minus * {
		width: 24px;
		height: 24px;
	}
}

@media only screen and (max-width: 520.99px) {
	#cart {
		max-width: 440px;
		transform: unset;
		left: 0;
		top: 0;
		height: 100vh;
		max-height: 100vh;
		padding: 30px 20px;
	}

	#cart .cart-list .remove, #cart .cart-list .pluse-minus * {
		width: 34px;
		height: 34px;
	}

	#cart .title_form {
		font-size: 18px;
	}

	#cart .center {order: 3}

	#cart .cart-list li {
		grid-template-columns: max-content 1fr;
	}

	#cart .product-name {
		grid-column: 1/3;
		margin-top: 15px;
		font-size: 12px;
		max-width: 280px;
	}

	#cart .cart-list .right {
		justify-content: flex-end;
	}

	#cart .totals div {
		justify-content: flex-start;
	}

	#cart .totals {
		margin-top: 30px;
		margin-bottom: 30px;
	}

	#cart .cart-btn {
		display: none!important;
	}

	#cart .checkout-btn {
		padding: 15px 30px;
	}
}

@media only screen and (max-width: 420.99px) {
	#cart {
		max-width: 340px;
	}

	#simplecheckout_cart {
		padding: 20px 30px;
	}

}

@media only screen and (max-width: 360.99px) {

	#simplecheckout_cart .simplecheckout-cart-total li * {
		font-size: 12px;
	}

	#simplecheckout_cart .simplecheckout-cart-total li span {
		max-width: 60%;
	}

	#simplecheckout_button_confirm {
		font-size: 12px;
	}

	#simplecheckout_cart #agreement_checkbox span {font-size: 10px;}

	#simplecheckout_button_confirm {
		margin-top: 15px;
		margin-bottom: 15px;
	}
}


#coupone{
	margin-top: 0.9375rem;
}
#coupone input{
	width: 100%;
}
.low_order_total{
	color: #D52816;
	font-weight: 500;
    line-height: 1.4;
    font-size: 12px;
	padding-top: 20px;
}
.radio label.disabled{
	opacity: 0.3;
	pointer-events: none;
}