:root {
	--baseColor: #16C814;
    --secondaryColor: #A0EE3D;
    --lightColor: #FFFFFF;
	--secondaryFont: 'Poppins', sans-serif;
}




#ouibounce-modal {
  font-family: 'Open Sans', sans-serif;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#ouibounce-modal .underlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.5);
  cursor: pointer;
  -webkit-animation: fadein 0.5s;
  animation: fadein 0.5s;
}
#ouibounce-modal .popups {
  width: 600px;
  height: 400px;
  background-color: transparent;
  z-index: 1;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 4px;
  -webkit-animation: popin 0.3s;
  animation: popin 0.3s;
}
#ouibounce-modal .popups-title {
  font-size: 18px;
  background-color: transparent;
  color: #fff;
  padding: 10px;
  margin: 0;
  border-radius: 4px 4px 0 0;
  text-align: center;
}
#ouibounce-modal h3 {
  color: #fff;
  font-size: 1em;
  margin: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}
#ouibounce-modal .popups-body {
  padding: 20px 35px;
  font-size: 0.9em;
}
#ouibounce-modal p {
  color: #344a5f;
}
#ouibounce-modal form {
  text-align: center;
  margin-top: 35px;
}
#ouibounce-modal form input[type=text] {
  padding: 12px;
  font-size: 1.2em;
  width: 300px;
  border-radius: 4px;
  border: 1px solid #ccc;
  -webkit-font-smoothing: antialiased;
}
#ouibounce-modal form input[type=submit] {
  text-transform: uppercase;
  font-weight: bold;
  padding: 12px;
  font-size: 1.1em;
  border-radius: 4px;
  color: #fff;
  background-color: #4ab471;
  border: none;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
}
#ouibounce-modal form p {
  text-align: left;
  margin-left: 35px;
  opacity: 0.8;
  margin-top: 1px;
  padding-top: 1px;
  font-size: 0.9em;
}
#ouibounce-modal .popups-footer {
  position: absolute;
  bottom: 20px;
  text-align: center;
  width: 100%;
}
#ouibounce-modal .popups-footer p {
  text-transform: capitalize;
  cursor: pointer;
  display: inline;
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@-ms-keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@-webkit-keyframes popin {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  85% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-ms-keyframes popin {
  0% {
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  85% {
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes popin {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  85% {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.fa-angle-double-right:before {
    content: "\f101";
}

.cta_btn_wrap{
	margin-top: 20px;
}
.cta_btn{
	color: var(--lightColor);
	background: var(--baseColor);
	font-family: var(--secondaryFont);
	font-weight: 700;
	font-size: 24px;
	border-radius: 5px;
	min-width: 290px;
	text-align: center;
	display: inline-block;
	padding: 15px 20px;
	text-decoration: none;
	-webkit-animation: pulse 1.5s infinite;
	animation: pulse 1.5s infinite;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;	
}
.cta_btn:hover{
	color: var(--lightColor);
	text-decoration: none;
}

@-webkit-keyframes pulse{
	0% {
		box-shadow: 0 0 0 0 rgba(132, 211, 33, 1);
	}

	70% {
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}
	
	100% {
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}
@keyframes pulse{
	0% {
		box-shadow: 0 0 0 0 rgba(132, 211, 33, 1);
	}

	70% {
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}


/* ===== CSS For "Exit Popup" Starts Here ===== */
#ouibounce-modal{
	z-index: 99999;
	display: none;
}
#ouibounce-modal .underlay {
	background-color: rgba(0,0,0,0.8);
}
#ouibounce-modal .popups {
	width: 750px;
	height: 100%;
	z-index: 99999;
	position: absolute;
	margin: auto;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
}

#ouibounce-modal .popups .popup_contents{
	background-color: #FFFFFF;
	left: 50%;
	top: 50%;
	width: 100%;
	border-radius: 5px;
	position: absolute;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

#ouibounce-modal .popups .popups-title {
	position: relative;
	padding: 10px 10px;
	background: #16c814;
	border-radius: 5px 5px 0px 0px;
}
#ouibounce-modal .popups .popups-title h4{
	color: var(--lightColor);
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 20px;
	text-transform: uppercase;
	margin-bottom: 0px;
	text-align: center;
}
#ouibounce-modal .popups .popups-title .popup_closer{
	color: var(--lightColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 42px;
	position: absolute;
	right: 0px;
	top: -40px;
	line-height: 1;
	text-decoration: none;
}

#ouibounce-modal .popups-body {
	padding: 0px;
}

#ouibounce-modal .popups .product_wrap{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 10px;
	padding: 30px;
}

#ouibounce-modal .popups .product_image{
	text-align: center;
}
#ouibounce-modal .popups .product_image img{
	max-width: 155px;
}

#ouibounce-modal .popups .product_texts h2{
	color: #000000;
	font-family: 'Rasa', serif;
	font-weight: 700;
	font-size: 48px;
	margin-bottom: 15px;
}
#ouibounce-modal .popups .product_texts h2 .break{
	display: block;
}
#ouibounce-modal .popups .product_texts p{
	color: #000000;
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 18px;
	margin-bottom: 0px;
}
#ouibounce-modal .popups .product_texts p a{
	color: #000000;
	text-decoration: underline;
}
/* ===== CSS For "Exit Popup" Ends Here ===== */

.bottom_offer{
	position: fixed;
	left: 0px;
	right: 0px;
	bottom: -130px;
	z-index: 9999;
	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}
.bottom_offer .the_offer{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 180px 20px 1fr;
    grid-template-columns: 180px 1fr;
    grid-auto-rows: auto;
    gap: 20px;
	position: relative;
	box-shadow: rgba(0, 0, 0, 0.253) 0 0 10px 0;
	background: var(--lightColor);
	padding: 10px 15px;
}
.bottom_offer .the_offer .images .free_shipping{
	max-width: 70px;
}
.bottom_offer .the_offer .images .product_image{
	position: absolute;
	left: 90px;
	bottom: 5px;
	width: 65px;
}
.bottom_offer .the_offer h6{
	color: red;
	font-family: var(--secondaryFont);
	font-weight: 500;
	font-size: 12px;
	text-transform: uppercase;
	margin-bottom: 5px;
	text-align: center;
}
.bottom_offer .the_offer .cta_btn {
	font-size: 18px;
	min-width: 100%;
	padding: 10px 15px;
}