::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #888 !important;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #888 !important;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #888 !important;
}

.cart_wrap
{
	position: fixed; top: 0; left: 0;
	width: 100%; height: 100%;
	background: rgba(0,0,0, .2);

	
	
	z-index: 999;
	display: none;
}

.cart_inner
{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	position: relative;
}

.cart_modal
{
	width: 800px;
	max-height: 90vh;
	box-sizing: border-box;
	padding: 15px;
	background: #F8F6F4;
	border-radius: 15px;
	box-shadow: 0 0 15px #aaa;
	position: relative;
	overflow: hidden;
}


.cart_modal h2
{
	font-size: 22pt;
	margin-bottom: 24px;
	text-align: left;
	color: #543E39;
}

.close_btn
{
    position: absolute;
    display: block;
    width: 28px;
    height: 28px;
    top: 5px;
    right: 5px;
    cursor: pointer;
    background: url(../images/x-lg-2.svg) no-repeat;
	background-position: center;
	background-size: 20px;
}


.cart_body
{
	min-height: 100px;
	max-height: 80vh;
	overflow-y: auto;
	padding-bottom: 40px;
}

.cart_body p
{
	font-size: 11pt;
}

/* .cart_body section
{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px;
	border-bottom: 1px solid #ddd;
} */

.cart_preview
{
	width: 64px;
	height: 64px;
	border: 2px solid #bbb;
	border-radius: 50%;
	background-position: center !important;
	background-size: cover !important;

}

.remove_btn
{
	width: 18px;
	height: 18px;
	/* background: url(../images/x-lg.svg); */
	background-size: contain;
	opacity: .8;
	cursor: pointer;
}
.remove_btn i {
	font-style: normal;
}

@media (max-width: 640px) {
	.remove_btn
	{
		width: 18px;
		height: 18px;
		background: url(../images/x-lg.svg);
		background-size: contain;
		opacity: .8;
		cursor: pointer;
		right: 10px !important;
		top: 10px !important;
	}
	.remove_btn i {
		display: none;
	}
}

.remove_btn:hover
{
	opacity: 1;
}

.cart_body form
{
	text-align: center;
	padding-bottom: 50px;
}


.cart_table
{
	position: relative;
	max-height: 300px;
	overflow-y: auto;
}

.cart_inp
{
	margin: 10px;
    outline: 0;
    width: 90%;
    min-width: 250px;
    height: 50px;
    border: 1px solid #DFD3C9;
    text-align: center;
    font-size: 18px;
    font-family: "Open Sans", Helvetica, sans-serif;
    font-weight: 400;
    border-radius: 8px;
}


.cart_btn
{
	width: 90%;
	margin: 15px auto;
	border-radius: 8px;
	border: 0;
    cursor: pointer;
    /* width: 290px; */
    font-family: "Open Sans", Helvetica, sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    background: #EF7620;
    display: block;
    text-align: center;
    padding: 14px 14px;
    text-transform: uppercase;
    position: relative;
    transform: scale(1);
    transition: all .3s;
}

.cart_btn:hover
{
	transform: scale(1.03);
}


.cart_widget
{
	position: fixed;
	bottom: 20px; right: 20px;
	width: 80px; height: 80px;
	border-radius: 50%;
	background: url(../images/cart3.svg) no-repeat center;
	background-size: 50px;
	background-color: #fff;
	/* border: 3px solid #b03; */
	border: 3px solid #EF7620;
	opacity: .9;
	cursor: pointer;
	transition: all .3s;
}


.cart_widget:hover
{
	transform: scale(1.1);
	opacity: 1;
}

.cart_widget span
{
	position: absolute;
	top: -8px; left: -8px;
	display: block;
	width: 22px;
	padding: 4px;
	border-radius: 50%;
	background: #EF7620;
	color: #fff;
	font-weight: bold;
	text-align: center;
}

.cart_empty
{
	margin-top: 20px;
	font-size: 20pt !important;
	font-weight: bold;
	color: #ccc;
	text-align: center;
}

.cart_total
{
	margin-top: 20px;
	font-size: 20pt !important;
	font-weight: bold;
	color: #543E39;
	text-align: left;
	margin-bottom: 20px;
}

.cart_add_window
{
	margin: auto;
	position: fixed;
	bottom: 100px;
	left: 0; right: 0;
	width: 30%;
	padding: 30px;
	background: #FFFFFF;
	border-radius: 24px;
	box-shadow: 0 0 10px #aaa;
	text-align: center;
	z-index: 99;
	display: none;
}

.cart_add_window p
{
	font-size: 20pt;
	font-weight: bold;
	color: #EF7620;
}

@media (max-width: 639px) {
	.cart_add_window
	{
		bottom: 100px;
		width: 70%;
		padding: 30px;
		border-radius: 12px;
		box-shadow: 0 0 10px #aaa;
	}
	
	.cart_add_window p
	{
		font-size: 16px;
	}
}



.n_cart_img{
	width: 140px;
	height: 140px;
	border-radius: 24px;
	overflow: hidden;
}

@media (max-width: 640px) {
	.n_cart_img{
		width: 100px;
		height: 100px;
		border-radius: 12px;
	}
}

.n_cart_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.n_cart_iitem{
	background-color: #fff;
	padding: 15px;
	border-radius: 24px;
	border-bottom: none !important;
	margin: 10px 0;
	display: flex;
	align-items: center;
	/* width: 100%; */
	position: relative;
	overflow: hidden;
}

.n_cart_iitem__col:nth-child(2) {
	padding-left: 20px;
}

.n_cart_iitem__col{
	/* width: 50%; */
}

.remove_btn{
	position: absolute;
	right: 100px;

}

.cart_title{
	font-size: 18px !important;
	margin-bottom: 10px !important;
}

.cart_count{
	font-size: 16px !important;
	margin-bottom: 10px !important;
}
.cart_price{
	font-size: 16px !important;
}

.cart_table{
	padding-right: 15px;
}

@media (max-width: 640px){
	.cart_title{
		font-size: 16px !important;
	}
	
	.cart_count{
		font-size: 14px !important;
	}
	.cart_price{
		font-size: 14px !important;
	}
	
	.n_cart_iitem__col:nth-child(2) {
		padding-top: 15px;
	}
}