@charset "utf-8";
/* CSS Document */
/*----------------
RESET CSS
-----------------*/
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root{
  --ink:#16241F;
  --ink-soft:#4B5B54;
  --teal:#0F4C4C;
  --teal-bright:#157A6E;
  --teal-pale:#EFFAF6;
  --coral:#FF6B5B;
  --coral-deep:#E84F3D;
  --sun:#FFB648;
  --sun-deep:#F09A1E;
  --white:#FFFFFF;
  --line:#E3ECE8;
  --bg-section:#FBFEFC;
  --display:'Baloo 2', sans-serif;
  --body:'Inter', sans-serif;
  --radius-sm:12px;
  --radius-md:20px;
  --radius-lg:30px;

  /* signature: hard-edge sticker shadow */
  --pop-sm: 3px 3px 0 var(--ink);
  --pop-md: 5px 5px 0 var(--ink);
  --pop-lg: 8px 8px 0 var(--ink);
  --pop-teal: 5px 5px 0 var(--teal);
  --shadow-card: 0 1px 2px rgba(22,36,31,0.04), 0 14px 30px -12px rgba(22,36,31,0.16);

  --maxw: 1180px;
}

body {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	padding: 0;
	color: #1e1e1e;
	text-align: center;
	font-family:'Inter', sans-serif;
	font-weight: 400;
	background:#fff;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
div, ul, h1, h2, h3, h4, h5, li, p, img, form, input, textarea {
	margin: 0;
	padding: 0;
}
header, section, footer, aside, nav, main, article, figure {
	display: block;
}
table, tr, td {
	border: 0;
}
a {
	outline: none;
	color: #333;
	text-decoration: none;
}
a:hover {
	/*outline: none;
	color: #000;
	text-decoration: none;*/
}
img {border: none; max-width: 100%; height: auto; vertical-align: middle;}
li {
	list-style: none;
}
* {
	box-sizing: border-box;
}
.clearall {
	clear: both;
	font-size: 1px;
	line-height: 1px;
	height: 1px;
}

/*-----------------------
MAIN CSS START
------------------------*/
.container {
	width: 1170px;
	margin: 0 auto;
	padding: 0;
	position: relative;
}
/*-------------------------
CSS FOR TOP LOGO BAR
--------------------------*/
.blue-strip {
    float: left;
    width: 100%;
    background: #212121;
    padding: 5px 0;
}
.blue-rgt{ display:inline-block;}
.blue-p1{
	float:left;
	font-size:12px;
	line-height:16px;
	color:#fff;
	font-weight:300;
}
.blue-p2{
	display:inline-block;
	vertical-align:inherit;
	font-size:15px;
	line-height:16px;
	color:#fff;
	margin-left:10px;
}
.blue-ship-icn{
	display:inline-block;
	vertical-align:middle;
	margin:-2px 5px 0 0;
}
.brd-blue-lft{
	border-left:1px solid #fff;
	padding-left:10px;
}
/*-------------------------
CSS FOR TOP LOGO BAR
--------------------------*/
.top-bar {
	float: left;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2.5px solid var(--ink);
    height: 80px;
    margin-top: -80px;
    position: relative;
    top: 80px;
	padding: 14px 0;
}
.top-sec {
	float: left;
	width: 100%;
	margin-bottom: 80px;
}
/*----------------
MENU BAR CSS
-----------------*/
.logo{
	float: left;
    max-width: 155px;
}
.menu-bar {
    float: right;
    padding: 16px 0 0 0px;
}
.menu-bar li {
	float: left;
	position:relative;
}
.menu-bar li a {
    float: left;
    color: var(--ink);
    font-size: 15px;
    line-height: 22px;
    padding: 0px 20px;
    font-weight: 700;
}
.menu-bar li:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 17px;
    background: #b8b8b8;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.menu-bar li:last-child:after{
	display:none;
}
.menu-bar li a:hover, .menu-bar li a.active {
	color:var(--coral-deep);
    text-decoration: none;
}

a.cart-top{
	border:1px solid #cbd3df;
	border-radius:5px;
	padding: 8px 10px;
	float:right;
	font-size:18px;
	line-height:16px;
	color:#2d2d2d;
	margin-top:4px;
}
a.cart-top img, a.cart-top span{
	display:inline-block;
	vertical-align:middle;
}
a.cart-top span{
	border-left:1px solid #e1e1e1;
	padding-left:6px;
	margin-left:6px;
}
.fixed-nav {
	position: fixed;
	z-index: 10;
	top: 0;
	-webkit-transition: margin .3s ease-out;
	transition: margin .3s ease-out;
	margin-top: 0;
}
/*-------------------------
CSS FOR BANNER
--------------------------*/
/*==============banner===============*/
.banner-section{
    padding:80px 0 100px;
    position: relative;
    overflow: hidden;
    background: var(--teal-pale);
    border-bottom: 3px solid var(--ink);
    float: left;
    width: 100%;
  }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--body);
    font-weight: 800;
    font-size: 12.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral-deep);
	position:relative;
	margin-bottom:18px;
}
.eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 3px;
    background: var(--sun);
    display: inline-block;
    transform: rotate(45deg);
}
  .hero-text { 
	float: left;
    width: 44%;
    text-align: left;
  }
  .hero-badge {
    display: inline-block;
    background: var(--sage); color: #fff;
    font-size: 11px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; padding: 5px 14px; border-radius: 20px;
    margin-bottom: 20px;
  }
  .bnr-hdr {
    font-size: 58px;
    line-height: 1.04;
    color: var(--ink);
	font-family: var(--display);
	font-weight: 700;
    letter-spacing: -0.01em;
	text-transform: capitalize;
  }
.underline-sun{
    position: relative;
    display: inline-block;
	z-index: 1;
}
.underline-sun:after {
    content: '';
    position: absolute;
    left: -2%;
    right: -2%;
    bottom: 6px;
    height: 14px;
    background: var(--sun);
    z-index: -1;
    border-radius: 6px;
    transform: rotate(-1deg);
}
  .bnr-txt {
    margin-top: 22px;
    font-size: 18px;
	line-height: 1.55;
    color: var(--ink-soft);
    max-width: 480px;
  }
  
  .bnr-img{
	  position: absolute;
    right: 0;
    top: -40px;
    max-width: 640px;
	  }
  
.hero-cta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
/* ---------- Buttons (signature sticker-pop style) ---------- */
.btn{
	margin-top: 34px;
     display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 16.5px;
    font-family: var(--body);
    border: 2.5px solid var(--ink);
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    white-space: nowrap;
    box-shadow: var(--pop-md);
    background: var(--coral);
    color: #fff;
    width: 240px;
    height: 58px;
    line-height: 58px;
	cursor: pointer;
	text-transform: capitalize;
}
.btn:hover{ transform:translate(2px,2px); box-shadow:2px 2px 0 var(--ink); }
.btn:active{ transform:translate(5px,5px); box-shadow:0 0 0 var(--ink); }
.btn-primary{
  background:var(--coral);
  color:#fff;
}
.btn-primary:hover{ background:var(--coral-deep); }
.btn-secondary{
	width:210px;
  background:#fff;
  color:var(--teal);
}
.btn-secondary:hover{ background:var(--teal-pale); }
.btn-ghost{
  background:var(--sun);
  color:var(--ink);
}
.btn-ghost:hover{ background:var(--sun-deep); }
.btn-block{ width:100%; }
.btn-lg{ padding:17px 34px; font-size:16.5px; }
.btn[disabled]{ opacity:.5; cursor:not-allowed; transform:none !important; box-shadow:var(--pop-md) !important; }

/* ---------- Paw trail divider (signature element) ---------- */
.paw-trail{
	float:left;
	width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:30px;
  padding:40px 0 0;
  opacity:0.65;
}
.paw-trail svg{ width:25px; height:25px; color:var(--coral); }
.paw-trail svg:nth-child(2){ transform:translateY(-6px); color:var(--sun); }
.paw-trail svg:nth-child(3){ transform:translateY(-2px); color:var(--teal-bright); }
.paw-trail svg:nth-child(4){ transform:translateY(-7px); color:var(--coral); }


/* ── SECTION TITLES ── */
  .section-label {
    font-size: 15px; font-weight: 600; letter-spacing: 3px;
    text-transform: uppercase; color: var(--amber);
    margin-bottom: 10px;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800; line-height: 1.25; color: var(--deep);
	text-transform: capitalize;
  }
  .section-title span { font-style: italic; color: var(--amber); display: block}
/*==========sectionOne============*/
.sectionOne{
	padding:70px 0px;
    float: left;
    width: 100%;
  }
  .intro {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: center;
	text-align:left;
    }
	.intro-art {
    position: relative;
    background: var(--sun);
    border-radius: var(--radius-lg);
    border: 3px solid var(--ink);
    box-shadow: var(--pop-lg);
    padding:0px;
    aspect-ratio: 1 / 1.02;
    display: flex;
    align-items: center;
    justify-content: center;
	overflow:hidden;
}
.s1-img {
   aspect-ratio: 1 / 1.1;
    object-fit: cover;
}    
.intro-list{
	float:left;
	width:100%;
  margin-top:26px;
  display:grid;
  gap:14px;
}
.intro-list li{
  display:flex;
  gap:12px;
  align-items:flex-start;
  font-size:15px;
  color:var(--ink);
  font-weight:700;
}
.intro-list svg{ width:22px; height:22px; flex-shrink:0; color:var(--coral-deep); margin-top:1px; }

/********************/
/* ── CATEGORIES ── */
  .sectionFour {padding:70px 0px;float: left;width: 100%;background: var(--bg-section); }
  .s4-inr{ display:inline-block; width:65%; text-align:center;}
  /* ---------- Benefits ---------- */
.benefit-grid{
	margin-top:40px;
	float: left;
	width: 100%;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.benefit-card{
	text-align: left;
  background:var(--white);
  border:2.5px solid var(--ink);
  border-radius:var(--radius-md);
  padding:30px 26px;
  box-shadow:var(--pop-sm);
  transition:transform .18s ease, box-shadow .18s ease;
}
.benefit-card:hover{
  transform:translate(-3px,-3px);
  box-shadow:8px 8px 0 var(--ink);
}
.benefit-card:nth-child(1){ background:var(--teal-pale); }
.benefit-card:nth-child(2){ background:#FFF1EC; }
.benefit-card:nth-child(3){ background:#FFF7E8; }
.benefit-card:nth-child(4){ background:var(--teal-pale); }
.benefit-icon{
  width:56px;height:56px;
  border-radius:14px;
  background:var(--ink);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
  color:var(--sun);
  border:2.5px solid var(--ink);
}
.benefit-icon img {max-width: 37px;}
.benefit-card h3{ font-size:19px; color:var(--ink); }
.benefit-card p{
  margin-top:8px;
  font-size:14.5px;
  line-height: 1.55;
  color:var(--ink-soft);
}

/*************************/

/* ── PRODUCTS ── */
  .sectionFive { padding:70px 0px;float: left; width: 100%}
  .products-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 48px; flex-wrap: wrap; gap: 20px;
	  text-align: left;
  }
  .tab-group { display: flex; gap: 6px; }
  .tab {
    padding: 8px 20px; border-radius: 30px; border: none;
    font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600;
    cursor: pointer; transition: background .2s, color .2s;
    background: var(--border); color: var(--text-muted);
  }
  li.active .tab{ background: var(--brown); color: #fff; }
  .prod-grid {
        float: left;
    width: 100%;
  }
  .prod-card {
    background: #fff;
    border: 2.5px solid var(--ink);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--pop-md);
    transition: transform .2s ease, box-shadow .2s ease;
    display: flex;
    flex-direction: column;
	float: left;
    width: 32%;
	position:relative;
  }
  .product-card:hover{ transform:translate(-3px,-3px); box-shadow:8px 8px 0 var(--ink);}
  .prod-img {
    background: var(--teal-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    position: relative;
    float: left;
    width: 100%;
	border-bottom: 2.5px solid var(--ink);
  }
  .prod-card:nth-child(2) .prod-img{background: #FFF1EC;}
  .prod-card:nth-child(3) .prod-img{background: #FFF7E8;}
  .prod-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--coral);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    padding: 7px 14px;
    border-radius: 100px;
    border: 2px solid var(--ink);
    transform: rotate(-3deg);
  }
  .prod-card:nth-child(2) .prod-badge{background: var(--sun);}
  .prod-card:nth-child(3) .prod-badge{background: var(--teal);}
  .prod-badge.new { background: var(--amber); }
  .prod-body { padding: 20px; float: left; width: 100%;text-align: left;}
  .prod-body h3 {font-size: 20px;
    color: var(--ink);font-weight: 700;
    letter-spacing: -0.01em;line-height: 1.55;margin-bottom: 6px;font-family: var(--display); }
  .prod-body p {font-size: 14px;
    color: var(--ink-soft);
    line-height:1.55;
    margin-bottom: 16px;}
  .prod-footer {
    display: flex; align-items: center; justify-content: space-between;
  }
  .prod-price {font-family: var(--display);
    font-size: 24px;
	line-height:1.55;
    font-weight: 700;
    color: var(--ink);}
  .prod-price span { font-size: 12px; font-weight: 400; color: var(--text-muted); }
  .add-btn {
    font-size: 45px;
    line-height: 46px;
    font-weight: 400;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2.5px solid var(--ink);
    box-shadow: var(--pop-sm);
    transition: background .2s, transform .2s, box-shadow .2s;
}
  .add-btn:hover{ background:var(--coral); transform:translate(2px,2px) rotate(90deg); box-shadow:1px 1px 0 var(--ink); }
  .view-all-wrap { text-align: center; margin-top: 44px;     display: inline-block;    vertical-align: middle;}
/*************************/
.sectionOne:after{}	
.s1-inner {
    float: left;
    width: 17%;
    text-align: left;
	position:relative;
}
.s1-inner:after{
	content: "";
    position: absolute;
    top: 10px;
    right: -3px;
    bottom: -25px;
    border-right: 1px solid #d8d8d8;
}
ul.s1-list .slick-prev, ul.s1-list .slick-next {
    left: -260px;
    top: 138px;
    width: 18px;
}
ul.s1-list .slick-next {
    left: -206px;
}
.common-tag-txt{
	font-size: 18px;
	line-height: 24px;
	color: #000;
	text-transform: uppercase;
	margin-bottom: 7px;
	float:left;
	width:100%;
}
.color-1{}	
.common-heading{
	font-size:38px;
	line-height:1.15;
	font-family: var(--display);
    color: var(--teal);
    font-weight: 700;
    letter-spacing: -0.01em;
	text-transform: capitalize;
	}
	
.comnHdng {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
	font-size:13px;
	line-height:23px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--teal-bright);
    text-transform: uppercase;
}
.comnHdng span {
    display: block;
	font-size:35px;
    line-height:1.15;
	font-family: var(--display);
    color: var(--teal);
    font-weight: 700;
    letter-spacing: -0.01em;
    text-transform: capitalize;
	margin-top:6px;
}
.common-para {
    margin-top: 18px;
    color: var(--ink-soft);
    font-size: 16px;
	line-height:1.55;
}
.comn-para {
	margin-top: 18px;
    color: var(--ink-soft);
    font-size: 16px;
	line-height:1.55; 
	}
.white{ color:#fff;}		

ul.s1-list{
	margin: 0px 0 0;
    width: 100%;
    display: -webkit-flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    float: right;
	}
ul.s1-list li{text-align: left; width:13%;}	
ul.s1-list li img{display:block;width:70px;	}
ul.s1-list li p{
	font-size: 17px;
    line-height: 26px;
    color: #000;
    margin-top: 10px;
}	

/*=============sectionTwo============*/
/*===============sectionThree==========*/
.sectionThree{
	background:#fffaf4;
	float:left;
	width:100%;
	background-size:cover;
	padding:40px 0 70px;
	overflow:hidden;
}
ul.tab-list{
	float: left;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 25px;
    row-gap: 10px;
    column-gap: 10px;
	}
ul.tab-list li {
	float: left;
	width: auto;
	position: relative;
	padding: 5px 17px;
	margin-top: 0px;
	text-align: center;
	font-size: 28px;
	line-height: 33px;
	color: #b8b8b8;
	text-transform: capitalize;
	font-family: 'Marcellus';
}
ul.tab-list li:hover, ul.tab-list li.active, ul.tab-list li:hover a, ul.tab-list li.active a{
	color: #000;
    text-decoration: underline;
}
.s2-product-wrap{
	    margin: 35px auto 0;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    float: left;
    row-gap: 30px;
    column-gap: 15px;
	}
.s2-product-col{
	float: left;
    width: 32%;
    text-align: center;
    background: #fffcf7;
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
	}
.s2-prdbox{
	    float: left;
    width: 100%;
    padding: 0px 0px;
    background: linear-gradient(145deg, #fde8cc, #fcd4a8);
    position: relative;
}	
.s2-prods{
	display: inline-block;
    vertical-align: top;
    max-width: 80%;
    padding: 40px 10px 15px;
	}		
.s2-prod-details{
	float: left;
    width: 100%;
    text-align: center;
    padding: 20px 20px;
    position: relative;
	}		
.s2-prod-name{
	font-size: 18px;
	line-height: 26px;
    font-weight: 700;
    color: #1a1209;
    margin-bottom: 6px;
	}
.s2-prod-prcbox{
	width: 100%;
	float: left;		
	}
.s2-prod-prcbox h4{
	font-size: 20px;
    line-height: 28px;
    color: #c47d2e;
    font-weight: 800;
    margin-top: 5px;
	}
.s2-order-btn{
	width: 85%;
    margin-top: 17px;
	}
a.s2-order-btn img{
	display:inline-block;
	vertical-align:middle;
	margin:-2px 0 0 20px;
	}	

/* ---------- Bundle / CTA banner ---------- */
.strip{
	float:left;
	width:100%;
	padding:30px 0 70px;
	text-align:center;
	}
.cta-banner{
	float:left;
	width:100%;
  background:var(--coral);
  border-radius:var(--radius-lg);
  border:3px solid var(--ink);
  box-shadow:var(--pop-lg);
  padding:54px 60px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  color:#fff;
  flex-wrap:wrap;
  position:relative;
  overflow:hidden;
  text-align:left;
}
.cta-banner .common-heading{ color:#fff; font-size:32px; max-width:560px; line-height:1.2; }
.cta-banner .common-para{ margin-top:10px; color:rgba(255,255,255,0.92); max-width:450px; }
.cta-banner .btn-primary{ background:var(--sun); color:var(--ink); }
.cta-banner .btn-primary:hover{ background:#fff; }
/*==========sectionFour================*/
/*.sectionFour{
	background:#fff;	
	float:left;
	width:100%;
	padding:0px 0 50px;
	overflow: hidden;
}

.sec4-lst {
    float: left;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 20px;
}

.sec4-lst li {
	float: left;
	width: 49%;
	background: #f1f1f1;
	font-size: 17px;
	line-height: 28px;
	color: #020b0d;
	position: relative;
	padding: 60px 300px 73px 42px;
	text-align: left;
	overflow: hidden;
	border: 1px solid #e4e4e4;
}
.sec4-lst li p {
    float: left;
    width: 100%;
    font-size: 15px;
    line-height: 20px;
    color: #878787;
    margin-bottom: 14px;
}
.sec4-lst li:first-child {     padding: 34px 534px 44px 38px;
    width: 100%;}
.sec4-lst li span {
        display: block;
    font-family: 'Marcellus';
    font-size: 25px;
    line-height: 34px;
    margin-bottom: 0;
}
.sec4-lst li:first-child span {font-size: 42px; line-height: 52px;  margin-bottom: 23px;}
.sec4-lst li .btn-box {margin-top: 18px;}
.sec4-lst li:first-child .btn-box {margin-top: 28px;}
.sec4-lst li img { position: absolute;  top: 16px; right: 0;}
.sec4-lst li:first-child img { top: 0px; right:0px; width: 620px;}
.sec4-lst li:last-child img {  top: 13px;
    right: 14px;
    width: 533px;}*/

/*==============sectionFive===============*/
/*.sectionFive{
	float: left;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 0 0 60px;
	}
.s5-mid-wrap{
	float: left;
    width: 100%;
    background: #f1f1f1;
    margin-top: 30px;
    border-radius: 10px;
    padding: 13px 12px 15px 12px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 20px;
	align-items: flex-start;
	}	
.sec5-innr {
    float: left;
    width: 41%;
    text-align: left;
    margin: 0 0 0 0;
}
.s5-txt1 {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 28px;
    line-height: 34px;
    font-weight: 600;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
}
.s5-img1{
	float:left;
	
	}
.s5-mid-inr {
    float: left;
    width: 100%;
    padding: 0 0 0 10px;
    margin: 16px 0 0 0;
}
.s5-txt2 {
    float: left;
    width: 100%;
    font-size: 20px;
    line-height: 30px;
    color: #000;
    font-weight: 700;
}
.s5-lst {
    float: left;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 16px;
    margin: 15px 0 0 0;
}
.s5-lst li {
        float: left;
    width: 100%;
    position: relative;
    padding: 0 0 0 26px;
    font-size: 17px;
    line-height: 28px;
    color: #000;
    background: url(../images/s5-lst.png) no-repeat left 7px;
}

.s5-lst li span {display: block;font-weight: 600;}
.s5-mid-inr .shop-btn {
    margin-top: 28px;
    font-size: 16px;
    line-height: 38px;
    text-transform: capitalize;
    font-weight: 500;
    color: #fff;
    background: #000;
    width: 180px;
    border: none;
    height: 38px;
}*/

/*-------------------------
CSS FOR FOOTER
--------------------------*/
footer, .foo-btm {
	float: left;
	width: 100%;
	padding: 30px 0;
	background: var(--ink);
}
.foo-logo{
	display:inline-block;
	vertical-align: middle;
	max-width: 240px;
	margin-bottom:5px;
}
.ftrBox2 {
    float: left;
    width: 100%;
}
.ftr-nav {
    float: left;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
	margin:10px 0;
}
.ftr-nav li, .ftr-nav li a {
	width: 100%;
	line-height:28px;
	font-size: 14.5px;
    color: #AAB6A6;
    transition: color .15s;
}
.ftr-nav li img{     display: inline-block;
    vertical-align: middle;}
.ftr-nav li:last-child{margin-right:0;}
.other-links {
    float: left;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.other-links li, .other-links li a{
	    position: relative;
    margin-right: 20px;
    line-height:28px;
	font-size: 14.5px;
    color: #AAB6A6;
    transition: color .15s;
}
.other-links li:last-child{margin-right:0;}
.other-links li:after{
	content:"";
	position:absolute;
	top:2px;
	bottom:2px;
	right:-10px;
	border-right:1px solid #ccc;
}
.other-links li:last-child:after{
	border:none;
}
footer p, .foo-btm p {
    float: left;
    width: 100%;
    line-height: 28px;
    font-size: 14.5px;
    color: #AAB6A6;
    transition: color .15s;
	margin-top:12px;
	font-weight:300;
}
footer .ftr-txt2{
	float: left;
    width: 100%;
    color: #000;
    font-size: 16px;
    line-height: 22px;
	margin-top:15px;
	}
footer p a{
	color: #2d2d2d;
	padding:0 5px;
}
.foo-btm{
    padding: 15px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.foo-btm p{
	margin:0;
}
/*-============================================
CSS FOR INNER PAGE
============================================-*/
.innrBreadcrm {
    float: left;
    width: 100%;
    
	color: var(--ink-soft);
    font-size: 15px;
    text-align: left;
   border-bottom: 2px solid var(--line);
    background: var(--bg-section);
    padding: 20px 0;
    font-weight: 500;
}
.innrBreadcrm a, .innrBreadcrm a:hover {
   color: var(--teal-bright);
}
.innrBreadcrm span{}
.prd-sec-1 {
    float: left;
    width: 100%;
    padding: 40px 0 ;
	background:#fff;
}
.img-box {
    float: left;
    width: 100%;
}
.img-box li {
       width: 30%;
    border: 6px solid #fff;
    /* max-width: 380px; */
    display: inline-block;
    box-shadow: 0 0 5px #d2d2d2;
    overflow: hidden;
    height: 133px;
    margin: 1px 4px;
}
.img-box img{ max-width:100%;}
.prd-s1-lft {
    float: left;
    width: 470px;
    margin: 0px 0 0;
    background: var(--teal-pale);
    border-radius: var(--radius-lg);
    border: 3px solid var(--ink);
    box-shadow: var(--pop-lg);
    aspect-ratio: 1 / 0.95;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.prod-lft-list {
    float: left;
    width: 100%;
    margin-top: 20px;
}
.prod-lft-list li {
        float: left;
    width: 16%;
    text-align: center;
    margin-top: 30px;
    font-size: 20px;
    font-weight: 500;
}
.prod-lft-list li img{
	max-width:70px;
	}
.prd-lft-prc-box{
	float: left;
    width: 100%;
	margin:28px 0 0;
}
.prd-lft-row{
	float: left;
    width: 100%;
	padding:0 18px 0 0;
}
.prd-s1-lft-p1{
	float: left;
    color: #2d2d2d;
    font-size: 18px;
    line-height: 35px;
	text-align:left;
	position:relative;
	padding-left:65px;
	text-transform:uppercase;
}
.prd-s1-ic-1{
	position:absolute;
	left:0;
	top:50%;
	transform:translateY(-50%);
	-webkit-transform:translateY(-50%);
}
.prd-s1-lft-p2{
	float: right;
    color: #212121;
    font-size: 22px;
    line-height: 35px;
	text-align:right;
	font-weight:500;
}
.prd-s1-hr{
	float: left;
    width: 100%;
	border:none;
	height:1px;
	background-color:#d2daea;
	margin:15px 0;
}

.prodDetls-Rght{
	float:right;
	width:56%;
	text-align:left;
}
.prod-nameHdng{
    float: left;
    width: 100%;

	}
.prd-p1 {
	float: left;
    width: 100%;
    color: #404040;
    font-size: 16px;
	vertical-align:middle;
	margin-top:5px;
	padding-bottom:15px;
	border-bottom:1px solid #ebebeb;
	}
.prd-p1 img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
	}
.prd-p1 a{ vertical-align:middle;}
.prd-txt1{
	float: left;
    width: 100%;
    font-size: 16px;
    line-height: 26px;
    color: var(--ink-soft);
    margin-top: 15px;
	}
.prd-txt1 span{ color:#00bd04;}	

.prd-p2{
	float: left;
    width:100%;
    font-size: 16px;
    line-height: 26px;
    color: #4b4d4a;
    margin-top: 12px;
	}
.prd-txt2 {
    float: left;
    width: 100%;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    margin: 18px 0 0 0;
}
.prd-list{
	float: left;
    width: 100%;
    padding: 0px 0 20px;
    border-bottom: 1px solid #333;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 10px;
    margin-top: 10px;
	}
.prd-list li{
	float: left;
    width: 100%;
    position: relative;
    text-align: left;
    padding-left: 30px;
    font-size: 16px;
    line-height: 26px;
    color: #000000;
    color: var(--ink);
	}
.prd-list li:before {
    content: "";
    position: absolute;
    left: 10px;
    top: 8px;
    height: 9px;
    width: 9px;
    background: #ff6b5b;
    border-radius:50px;
    transform: rotate(45deg);
}

.prd-list li strong {
    float: left;
    width: 32%;
	font-weight:500;
}
.prd-list li img {
    position: absolute;
    left: 0;
    top: 0;
    max-width: 25px;
}
.prd-list li span {
    float: left;
	width:45%;
	font-weight: 500;
}

.prd-list li:before{}			
ul.dtlsec-list {
    float: left;
    width: 100%;
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 10px;
}
ul.dtlsec-list li {
    float: left;
    width: 31%;
    font-size: 17px;
    line-height: 24px;
    color: #2d2d2d;
    position: relative;
    text-transform: capitalize;
}
ul.dtlsec-list li img{
	max-width: 30px;
    display: block;
    margin-bottom: 5px;
	}
.size-guide-box {
    float: left;
    width: 100%;
    font-weight: 400;
    margin: 40px 0 20px;
}
.size-guide-box i {
    font-size: 28px;
    display: inline-block;
    vertical-align: top;
    color: #f00;
    margin-top: 1px;
    margin-right: 4px;
}
.size-guide-box a {
    color: #ff0000;
    font-size: 20px;
    font-weight: 400;
}

.catagory-select {
    float: left;
    width: 100%;
}
.select-size {
    margin: 0px 0 10px;
    display: inline-block;
    vertical-align: top;
}
.catagory-select h3 {
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 15px;
}
.select-size a {
    padding: 10px 20px;
    border: 1px solid #eaeaea;
    color: #333;
    line-height: normal;
    min-width: 28px;
    text-align: center;
    float: left;
    margin-right: 10px;
    font-size: 18px;
    font-weight: 400;
    transition: all 0.3s ease 0s;
}
.select-size a.active {
    background-color: #333333;
    color: #fff;
}
.prd-strength-row{
	float: left;
    width: 100%;
    padding: 20px 0 0px;
}
.prd-strength-p1{
       display: inline-block;
    vertical-align: middle;
    font-size: 20px;
    line-height: 28px;
    color: #000000;
    font-weight: 500;
    /* letter-spacing: -0.5px; */
    width: 100%;
}


.prd-strength-row .option-field {
	width: 100%;
    font-size: 18px;
    line-height: 20px;
    color: #000000;
    text-align: left;
    outline: none;
    font-weight: 500;
    margin: 4px 0 7px 0;
    border-radius: 5px;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 10px;
}
.prd-strength-row .option-field li {
    display: inline-block;
    padding: 0px 0 0 0;
    border: 2px solid #ccc;
    width: 49%;
    cursor: pointer;
    font-size: 18px;
    vertical-align: middle;
    line-height: 36px;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
	
}
.prd-strength-row .option-field li span {
    display: inline-block;
    background: #333;
    padding: 5px 20px;
    font-size: 22px;
    float: right;
    line-height: 28px;
    color: #fff;
    width: 58%;
    margin: 0px 0 0 0;
    vertical-align: middle;
}
.prd-strength-row .option-field li.addprice, .prd-strength-row .option-field li:hover{
	border: 2px solid #fedd00;
}
.prd-strength-row .option-field li.addprice span, .prd-strength-row .option-field li:hover span {
	background: #fedd00;
	color: #333;
}
.prod-prc-row{
	float:left;
	width:100%;
	margin:15px 0;
	}
.prd-prc-txt{
	float: left;
    font-family: var(--display);
    font-size: 34px;
    line-height: 1.55;
    font-weight: 700;
    color: var(--ink);
	position:relative;
	width: 100%;
	}
.option-field {
	height: 50px;
    width: 100%;
    font-size:18px;
    line-height: 26px;
    color: #000000;
    text-align: left;
    padding: 10px 13px;
    outline: none;
    font-weight: 500;
    margin: 20px 0 7px 0;
    border: 2px solid var(--ink);
    border-radius: 5px;
    max-width: 300px;
    float: left;
    font-family: inherit;
}
.prc-dscnt{
	    float: left;
    width: 100%;
    vertical-align: middle;
    margin-bottom: 20px;
	}
.book-prc{ width:auto; margin:5px 0 0 0;}
.prd-prc-txt2{ 
	}
.prd-prc-txt img{
	position:absolute;
	left:0;
	top:3px;
	width:100%;
	}
.qty-div {
    float: left;
    padding: 0 25px 0 0;
    text-align: center;
	}
.sub2, .add2 {
    float: left;
    width:40px;
    border: 1px solid #ced4da;
    height: 46px;
    padding: 2px 0px 0;
    text-align: center;
	background:#fff;
    outline: none;
    cursor: pointer;
	}
.qty-div input {
    float: left;
	border:none;
	border-top: 1px solid #ced4da;
	border-bottom: 1px solid #ced4da;
    background: none;
    width:70px;
    text-align: center;
    height:46px;
    padding: 1px 0px 0;
    font-size: 21px;
    color: #2d2d2d;
	font-weight:400;
	font-family: inherit;
	outline:none;
	-webkit-appearance:none;
	border-radius:0;
	}
.slct-size-row{
	float:left;
	width:100%;
	margin:0 0 20px;
	}
.slctHdng{
	font-size:18px;
	line-height:20px;
	margin-bottom:10px;
	color:#444444;
	font-weight:500;
	}
.slct-clr{
	float:left;
	max-width:220px;
	width:100%;
	}
.slct-clr select{
	float:left;
	width:100%;
	height:46px;
	border:1px solid #ced4da;
	outline:none;
	font-size:18px;
	color:#000;
	padding:5px 10px;
	-webkit-appearance:none;
	font-family: inherit;
	background:url(../images/dtls-slct-ico.png) no-repeat 96% center;
	}
.slct-size{
	display:inline-block;
	vertical-align:middle;
	}
.slct-size ul{
	display:inline-block;
	vertical-align:middle;
	}
.slct-size ul li{
	display:inline-block;
	vertical-align:middle;
	margin-right:10px;
	min-width:40px;
	text-align:center;
	}

.prd_quantity {
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 20px;
    padding: 10px;
}

.prd_quantity p {
    font-size: 20px;
    line-height: 30px;
    float: left;
    font-weight: 700;
}
a.add-to-btn{
    width: 60%;
    margin-top: 0px;
    text-align: center;
	}
.secure-logo{
	display:inline-block;
	vertical-align:middle;
	margin-left:10px;
	max-width:100%;
	}
.buyOpt-row{
	float:left;
	width:100%;
	padding:0 5px;
	cursor:pointer;
	position:relative;
	border:1px solid #808080;
	border-radius:5px;
	}
.buyOpt-row.active{
	background:#444444;
	color:#fff;
	}
.buyOpt-row.active .packageOpt p{ color:#fff;}
.packageOpt{
	float:left;
	width:100%;
	text-align:left;
	position:relative;
	}
.packageOpt input[type=radio]{
	position:absolute;
	opacity:0;
	}
.packageOpt p{
	float:left;
	width:100%;
	color:#282828;
	font-size:16px;
	line-height:40px;
	font-weight:500;
	text-align:center;
	}
/*-============================================
CSS FOR CONTACT PAGE
============================================-*/
.cont-sec-1{
	float:left;
	width:100%;
	padding:60px 0;
}
.cont-box{
	    float: left;
    width: 100%;
    border-radius: var(--radius-lg);
    border: 3px solid var(--ink);
    box-shadow: var(--pop-lg);
	background: url(../images/cont-bg.jpg) no-repeat center top;
}
.cont-lft{
	    float: left;
    width: 515px;
    padding: 25px 32px 35px 35px;
    text-align: left;
}
.cont-right{
	float:right;
	width:643px;
	padding:35px 65px 35px 58px;
	background:#fff;
}
.cont-p1{
	float: left;
    width: 100%;
    font-size: 40px;
    line-height: 40px;
    font-weight: 500;
    color: #000;
	margin-bottom:12px;
	text-align:left;
}
.cont-ul{
	float: left;
    width: 100%;
}
.cont-ul li{
	float: left;
    width: 100%;
    padding: 0 0 0 56px;
    margin-top: 20px;
    position: relative;
}
.cont-ul li .s4-p2{
	margin-bottom: 2px;
    font-size: 20px;
    line-height: 30px;
	font-family: var(--display);
	
}
.cont-ul li .s4-p1 {
    font-size: 16px;
    line-height: 24px;
	color: var(--ink-soft);
}
.cont-ic-1{
	position:absolute;
	left:0;
	top:50%;
	transform:translateY(-50%);
}
.cont-frm-box{
	float: left;
    width: 100%;
}
.cont-input-box{
	float: left;
    width: 100%;
    height: 50px;
    text-align: left;
    background-color: #ffffff;
    outline: none;
    margin: 15px 0;
    position: relative;
}
.cont-hlf{
	width: 46%;
}
.cont-frm-ic-1 {
    position: absolute;
    left: 8px;
    top: 50%;
	transform:translateY(-50%);
	-webkit-transform:translateY(-50%);
}
.cont-field-all, .cont-input-box textarea {
    float: left;
    width: 100%;
    border: none;
    border-bottom: 1px solid #24334a;
    outline: none;
    height: 100%;
    color: #333333;
    font-size: 18px;
    font-weight: 300;
    padding: 0 0px 0 49px;
    font-family: inherit;
}
.cont-btn {
    -webkit-appearance: none;
    border: none;
    outline: none;
    margin: 30px 0 0;
    padding: 0;
    background: #000;
	color: #fff;
    font-size: 24px;
	line-height:56px;
	padding:0 27px;
	float:left;
	 cursor:pointer;
}




/*================checkout_section===============*/
.checkout_section{
	float:left;
	width:100%;
	padding:50px 0;
	background:#ffffff;
	}
.chk-container-box{
	display:inline-block;
	vertical-align:middle;
	width:100%;
	max-width:1030px;
	}
.chk-left{
	float:left;
	width:62%;
	}
.steps-chk{
	float:left;
	width:50%;
	text-align:center;
	border:1px solid #d7d7d7;
	font-size:20px;
	line-height:20px;
	color:#1e1e1e;
	font-weight:300;
	background:#f6f6f6;
	padding:15px 0;
	border-radius:5px 5px 0 0;
	}
.steps-chk.actv{
	background:#212121;
	color:#fff;
	font-weight:500;
	}
.frmBox {
	float: left;
	width: 100%;
	padding:25px 24px;
	border:1px solid #d7d7d7;
	border-radius:0 0 5px 5px;
	text-align:left;
	border-top:none;
	}
.input-box {
	float: left;
	width: 100%;
	height: 44px;
	border: 1px solid #cfcfcf;
	text-align: left;
	padding: 0 0px 0 40px;
	border-radius: 3px;
	background-color: #ffffff;
	outline: none;
	margin:7px 0;
	position: relative;
	}
.input-box.hlf {width: 48%;}
.input-box.fr {float: right;}
.input-box.payfld {padding:0 0 0 15px;}
.fldicon {
	position: absolute;
	left: 12px;
	top: 12px;
	}
.field-all {
	float: left;
	width: 100%;
	border: none;
	outline: none;
	height: 100%;
	color: #000;
	font-size: 16px;
	padding: 0 10px 0 5px;
	font-family: inherit;
	border-radius:0 3px 3px 0;
	}
.dwn-arw {
	position: absolute;
	right: 4px;
	top: 0px;
	}
.input-box select {
	-webkit-appearance: none;
	background: url(../images/dwn-arw.jpg) no-repeat right center;
	padding: 3px 42px 0 5px;
	}
a.continue-btn{
	float:left;
	width:355px;
	max-width:100%;
	font-size: 22px;
    line-height: 50px;
    color: #24334a;
	margin-top:25px;
    letter-spacing: 1px;
    border: 2px solid #24334a;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    padding-bottom: 3px;
    position: relative;
    transition: all ease 0.2s;
	}
a.continue-btn i {
    margin: -1px 0 0 9px;
    vertical-align: middle;
    font-size: 13px;
	}
a.continue-btn:hover{
	color:#fff;
	background:#24334a;
	transition:all ease 0.2s;
	}
.cvv-img{
	float:left;
	margin:10px;
	}
/*==================*/
.chk-right{
	float:right;
	width:36%;
	background:#f7f7f7;
	padding:15px;
	}
.order-smry-hdng{
	float:left;
	width:100%;
	font-size:23px;
	line-height:26px;
	color:#104775;
	font-weight:500;
	padding-bottom:15px;
	border-bottom:1px solid #d0d0d0;
	text-align:left;
	}
.prc-p1{
	float:left;
	width:75%;
	text-align:left;
	font-size:18px;
	line-height:24px;
	color:#1e1e1e;
	margin-top:20px;
	}
.prc-p1 span{ 
	color:#4e4e4e;
	font-size:16px;
	font-weight:300;
	}
.prc-p2{
	float:right;
	width:25%;
	text-align:right;
	font-size:18px;
	line-height:24px;
	color:#1e1e1e;
	margin-top:20px;
	}
.rvw-hr {
    float: left;
    width: 100%;
    height: 1px;
    border: none;
    background: #d0d0d0;
	margin-top:20px;
	margin-bottom:0;
	}
.mrgn-10{ margin-top:12px;}
/*================Payment-section===========*/
.frmBox2{
	padding:20px 30px;
	}
.fieldToggle {
	display:inline-block;
	vertical-align:middle;
    color: #363636;
    font-size: 18px;
    line-height: 22px;
    margin:5px 0;
    cursor: pointer;
    padding-left: 30px;
    position: relative;
	text-align:left;
	}
.fieldToggle input[type=checkbox]{
	position:absolute;
	opacity:0;
	}
.fieldToggle input[type=checkbox] + span,
.protectionHeading label input[type=checkbox] + span{
	display:inline-block;
	vertical-align:middle;
	margin-right:5px;
	width:18px;
	height:18px;
	border:1px solid #808080;
	border-radius:2px;
	position:relative;
	}
.fieldToggle input[type=checkbox] + span{position:absolute; left:0; top:3px;}
.fieldToggle input[type=checkbox]:checked + span:after{
	position:absolute;
	content:'';
	width:13px;
	height:13px;
	background:url(../images/tik-blk.png) no-repeat center center;
	background-size:100%;
	left:1px;
	top:1px;
	}
a.whats-dis {
    float: left;
    color: #257d20;
    font-size: 19px;
    margin: 17px 0 0 20px;
    text-decoration: underline;
	}
.card-accept {
    float: left;
    width: 100%;
    margin: 10px 0;
    color: #2d2d2d;
    font-size: 16px;
    text-align: left;
	}
.card-accept img {
    display: inline-block;
    vertical-align: middle;
	}

/*******************/
.thank-pg {
    float: left;
    width: 100%;
    padding: 40px 0;
}

/*****************************/
/*TERMS- PRIVACY*/

.tems_bg {
	float: left;
	width: 100%;
	padding: 40px 0;
}
.trm-bx {
	    background: #fff;
    width: 100%;
    float: left;
    text-align: left;
    line-height: 26px;
	padding:15px;
}
.trm-bx h1 {
	    line-height: 30px;
    margin: 0;
    padding: 0px 0 10px;
    font-size: 22px;
    float: left;
    width: 100%;
    margin-top: 0px;
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 5px solid var(--teal);
	font-family: var(--display);
    color: var(--teal);
}
.trm-bx h3 {
	line-height: 28px;
	text-align: left;
	font-size: 24px;
	float: left;
	width: 100%;
	margin: 0px 0 15px;
	color: #000;
	font-weight: 600;
}
.trm-bx li {
	font-size: 16px;
    line-height: 24px;
    float: left;
    width: 100%;
    list-style: decimal;
	color: var(--ink-soft);
}
.trm-bx ol li {
    list-style: lower-roman;
}
.trm-bx li ol li {
    list-style: lower-alpha;
}
.trm-bx strong {
	text-transform: capitalize;
	/*text-transform: uppercase;
	font-size: 18px;
	font-weight: 700;
	float: left;
	width: 100%;
	margin-bottom: 10px;*/
}
.trm-bx span {
	text-transform: capitalize;
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
}
.trm-bx p {
	font-size: 16px;
	line-height: 24px;
	float: left;
	width: 100%;
	margin-bottom: 10px;
	font-weight: 400;
	color: var(--ink-soft);
}
.trm-bx h4, .trm-bx h5 {
	    font-size: 22px;
    float: left;
    width: 100%;
    margin: 0px 0 10px;
    font-weight: 500;
    line-height: 30px;
}
.ingr-lst h4 {
    text-align: center;
}
.ingr-lst img {
    display: block;
    margin: 0 auto 10px;
    max-width: 630px;
    width: 100%;
}
.trm-bx h5 {
	font-size: 20px;
	font-weight: 500;
}
.privacy-list {
	padding: 0 0 0 30px
}
.privacy-list li {
	font-weight: bold;
}
.privacy-list li p {
	font-weight: normal;
	margin-top: 10px;
}
.mrg-tp {
	margin: 15px 0 !important;
	float: left;
	width: 100%
}
.trm-txt {
	float: left;
	width: 100%;
	background: #fff;
	padding: 20px 20px
}
.disclr-bx {
	border: 2px solid #000;
	padding: 10px;
	font-weight: 500;
	float: left;
	width: 100%;
	margin: 0;
}
.disclr-bx p {
	margin-bottom: 0;
	font-weight: bold;
}
.trm-bx ol, .trm-bx ul {
	margin-bottom: 20px;
    float: left;
    width: 100%;
    font-weight: 400;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
}
.trm-bx .disclmr {
	width: 100% !important;
}

.thank-hdg {margin: 10px 0;}

/*********************************/
.age-pop-overlay {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0
}
.pop-up-bg {
	    width: 100%;
    height: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
    margin: 0px;
    padding: 0px;
    z-index: 9999600;
    border: 0px;
    opacity: 0.3;
    background: #000;
}
.pop-up-bg-in {
	position: fixed;
    bottom: 0px;
    padding: 0px;
    margin: 0px;
    border: 0px;
    background: #000;
    transition: left 1s ease 0s;
    z-index: 10000010;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    text-align: center;
    display: flex;
    justify-content: center;
}
.pop-up-left {
	width: 100% ;
	height: 100% ;
	position: fixed ;
	left: 0px ;
	top: 0px ;
	border: 0px;
	background-color: rgb(0, 0, 0) ;
	display: none ;
	opacity: 0.8 ;
	z-index: 10000001 ;
}
.pop-up-left-txt {
	font-size: 16px;
    box-sizing: initial;
    overflow-wrap: break-word;
    transition: left 1s ease 0s;
    display: flex;
    text-align: left;
    padding: 20px;
    line-height: 24px;
    color: #fff;
    float: left;
    width: 100%;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
	flex-wrap: wrap;
}
.pop-innr {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 200px);
}
.pop-btn {
    display: inline-block;
    vertical-align: middle;
    width: 200px;
}
.pop-up-left-txt span{
	font-weight: 700;
    font-size: 24px;
    margin-bottom: 15px;
    display: block;
	}
.pop-up-left-txt a{ text-decoration:underline;     display: inline-block; color: #fff}
.yes-btn, .no-btn {
    cursor: pointer;
    margin-top: 10px;
    height: 40px;
    color: #fff;
    font-size: 15px;
    text-align: center;
    font-weight: 700;
    outline: none;
    box-shadow: none;
    background:#ff6b5b;
    appearance: none;
    transition: left 1s ease 0s;
    display: inline-block;
    padding: 10px 20px;
    line-height: 16px;
    border-radius: 50px;
    border: none;
}
.no-btn {
    background: #333;
}
.yes-btn {
	
}
.card-error {
    max-width: 250px;
    margin-bottom: 20px;
}