*{
	margin: 0;
	padding: 0;
	list-style: none;
	box-sizing: border-box;
}
@font-face{
	src: url('../fonts/SweetSansProRegular.otf');
	font-family: SweetSansProRegular;
}
@font-face{
	src: url('../fonts/SweetSansProLight.otf');
	font-family: SweetSansProLight;
}

.popup_slider{
	width: 100%;
	float: left;
	padding: 20px 40px;
	position: fixed;
	bottom: -100%;
	left: 0;
	box-shadow: 0 0 10px rgba(0,0,0,.1);
	background-color: #f8f8f8;
	transition: .3s;
	z-index: 999;
}
.popup_slider.show_popup{
	bottom: 0;
	opacity: 1 !important;
}
.popup_slider h2{
	text-align: center;
	font-style: italic;
	margin-bottom: 20px;
	font-family: SweetSansProLight;
	font-size: 20px;
}
.slider_item{
	width: 100%;
	float: left;
	background-color: #fff;
	padding: 20px;
	position: relative;
	margin: 20px 30px;
}
.product_img{
	max-height: 200px;
	position: relative;
	text-align: center;
	margin-bottom: 20px;
}
.product_img i{
	color: #000;
	position: absolute;
	left: 0;
	top: 0;
}
.product_img img{
	max-width: 100%;
	max-height: 200px;
	margin: auto;
}

.left_border:before,.left_border:after,
.right_border:before,.right_border:after{
	position: absolute;
	content: '';
	background-color: #fae5e6;
}
.left_border:before{
	width: 12px;
	height: 120px;
	top: 0;
	left: -12px;
}
.left_border:after{
	width: 130px;
	height: 12px;
	top: -12px;
	left: -12px;
}
.right_border:before{
	width: 130px;
	height: 12px;
	bottom: -12px;
	right: 0;
}
.right_border:after{
	width: 12px;
	height: 130px;
	bottom: -12px;
	right: -12px;
}

.product-name{
	float: left;
	width: 70%;
	font-family: SweetSansProLight;
}
.product-name h3{
	font-size: 13px;
}
.product-name p{
font-family: SweetSansProLight;
    padding: 0;
    font-weight: normal;
	    font-size: 13px;
}
.cart-details{
	width: 30%;
	float: right;
	text-align: center;
	font-family: SweetSansProLight;
}
.cart-details img{
	margin: auto;
	margin-bottom: -4px;
}
.cart-details a{
	text-decoration: none;
	font-size: 13px;
	color: #000;
	outline: none !important;
}
.cart-details.added {
    pointer-events: none;
}
.cart-details.added a img{
height: 20px;	
}
.overlay_bg{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.3);
	z-index: 99;
	display: none;
	transition: .3s;
}
.product_btn{
    background: #243c4f;
    color: #fff;
    font-weight: 600;
    font-family: SweetSansProRegular;
    margin: 20px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    float: right;
}
#slider .slick-prev, #slider .slick-next{
	width: 35px;
	height: 35px;
	z-index: 99;
}
#slider .slick-prev:before, #slider .slick-next:before{
	font-family: 'FontAwesome';
	background-color: #000;
	font-weight: 600;
	width: 35px;
    height: 35px;
    display: block;
    line-height: 36px;
    border-radius: 0;
}
#slider .slick-prev:before{
	content: '\f053';
}
#slider .slick-next:before{
	content: '\f054';
}
	.close_product {
    display: inline-block;
    width: 25px;
    height: 25px;
    background: #000;
    color: #fff;
    float: right;
    text-align: center;
    line-height: 22px;
    font-style: normal;
    border-radius: 15px;
    margin-top: -4px;
    font-size: 15px;
	font-family: 'Sweet Sans';
	cursor:pointer;
	}
/*repsonsive*/

@media screen and (max-width: 767px){
br.mobile {
    display: block !important;
}
	.popup_slider{
		display: block;
		height: 72vh;
		padding: 0;
		overflow: auto;
		background-color: #fff;
	}
	.slider_item{
		margin:0;
	}
	.left_border,.right_border{
		display: none;
	}
	.slider_item{
		padding: 20px;
		border-bottom: 1px solid #ddd;
	}
	.product_img {
	    width: 20%;
	    float: left;
	    margin-bottom: 0;
	}
	.product_img img{
		margin-top: 10px;
	}
	.product_img i{
		top: -20px;
		left: -10px;
		font-size: 14px;
	}
	.product-name{
		width: 55%;
		float: left;
		padding:0 10px;
		margin-top: 25px;
	}
	.cart-details{
		width: 25%;
		margin-top: 25px !important;
	}
	.slider_item{
		padding: 20px 20px 0;
	}
	.product-name h3{
		font-size: 14px;
	}
	.product-name p{
		font-size: 14px;
	}
	.cart-details img{
		width: 15px;
	}
	.cart-details a{
		font-size: 12px;
	}
	.popup_slider h2 {
	    font-size: 18px;
	    text-align: left;
	    padding: 10px 10px;
	     margin-bottom: 0; 
	    position: fixed;
	    bottom: -100%;
	    z-index: 999;
	    background: #fff;
	    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
	    width: 100%;
	    transition: .3s;
	}
	.popup_slider h2.show_heading{
		bottom: 72vh;
	}
	.close_product {
    line-height: 24px;
	}
}


