@charset "utf-8";
/*-----------------------
CSS FOR BANNER
-------------------------*/
.for-desk{ display:block;}
.for-mob{ display:none;}
.for-tab{ display:none;}
/* ── HERO ───────────────────────────────── */
.hero {
  overflow: hidden;
  background: #141414;
background: linear-gradient(90deg,rgba(20, 20, 20, 1) 50%, rgba(248, 245, 239, 1) 50%);
}

.inner__cont{
	display: grid;
	grid-template-columns: 1fr 1.5fr;
}
.hero__left {
  background: var(--charcoal);
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 0px;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.hero__eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 32px;
  position: relative;
}
.hero__eyebrow span {
  font-size: 10px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
}
.hero__eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero__h1 {
	font-family: var(--f-display);
	font-size: clamp(34px, 4.5vw, 62px);
	font-weight: 700;
	color: var(--white);
	line-height: clamp(44px, 4.5vw, 70px);
	margin-bottom: 28px;
	position: relative;
}
.hero__h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,.6);
  max-width: 360px;
  margin-bottom: 40px;
  position: relative;
  line-height: 1.8;
}

.hero__ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 64px;
  position: relative;
}

.hero__proof {
  display: flex; align-items: center; gap: 24px;
  position: relative;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero__proof-stat { text-align: left; }
.hero__proof-stat strong {
  display: block;
  font-family: var(--f-display);
  font-size: 18px; font-weight: 700;
  color: var(--gold);
}
.hero__proof-stat span {
  font-size: 12px; color: rgba(255,255,255,.45);
  letter-spacing: .05em;
}
.proof-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.1);
}

/* Hero right — visual */
.hero__right {
  background: var(--ivory);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 0px;
}

.hero__orb {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle at 38% 36%, #fff 0%, #e8dfc8 45%, #c4b898 100%);
    box-shadow: 0 0 0 1px rgba(201, 168, 76, .15), 0 40px 100px rgba(0, 0, 0, .12), inset 0 0 80px rgba(255, 255, 255, .5);
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
    left: 150px;
}
.bnr__prod {
    position: absolute;
    top: 50px;
    left: 40px;
    max-width: 640px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* SVG tooth icon inside orb */
.hero__orb svg {
  width: 140px; height: 140px;
  opacity: .85;
}

.hero__tag {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  font-size: 12px;
}
.hero__tag--tl { top: 18%; left: 4%; animation: floatTag1 5s ease-in-out infinite; z-index: 1; }
.hero__tag--tr { top: 30%; right: 0%; animation: floatTag2 5.5s ease-in-out infinite; z-index: 1;}
.hero__tag--bl { bottom: 16%; left: 7%; animation: floatTag1 6s ease-in-out infinite 1s; z-index: 1; }

@keyframes floatTag1 {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}
@keyframes floatTag2 {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(8px); }
}

.hero__tag .tag-val {
  font-family: var(--f-display);
  font-size: 22px; font-weight: 700;
  color: var(--gold);
  display: block; line-height: 1;
}
.hero__tag .tag-lbl {
  color: var(--stone);
  font-size: 11px; letter-spacing: .04em;
  margin-top: 2px; display: block;
}
.hero__tag-badge {
  display: flex; align-items: center; gap: 8px;
}
.hero__tag-badge .dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #e8c96a;
}
.hero__tag-badge span { font-size: 12px; font-weight: 500; }
/* ── TICKER / TRUST BAR ─────────────────── */
.ticker {
  background: var(--charcoal);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(201,168,76,.15);
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.ticker__track {
  display: flex; gap: 50px;
  animation: ticker 28s linear infinite;
  width: max-content;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker__item {
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,.55);
  letter-spacing: .05em;
}
.ticker__item .star { color: var(--gold); font-size: 16px; }

/* ── CARE FINDER ────────────────────────── */
.care {
  padding: 80px 0;
}
.care__header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 64px;
}
.common__title { font-size: clamp(30px, 3.5vw, 42px); max-width: 540px; text-transform:capitalize; line-height:clamp(38px, 3.5vw, 50px)}

.care__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.care__card {
  background: var(--white);
  padding: 40px 28px;
  display: flex; flex-direction: column; gap: 16px;
  cursor: pointer;
  transition: background .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.care__card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.care__card:hover { background: #FDFAF5; }
.care__card:hover::after { transform: scaleX(1); }

.care__icon {
  width: 60px; height: 60px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  transition: border-color .2s, background .2s;
}
.care__icon img{ max-width:40px;}
.care__card:hover .care__icon {
  border-color: var(--gold);
  background: rgba(201,168,76,.06);
}
.care__name {
  font-size: 16px; font-weight: 600;
  color: var(--charcoal);
}
.care__desc { font-size: 15px; color: var(--stone); line-height: 24px; }
.care__arrow {
  margin-top: auto;
  font-size: 18px; color: var(--border);
  transition: color .2s, transform .2s;
}
.care__card:hover .care__arrow { color: var(--gold); transform: translateX(4px); }

/* ── PRODUCTS ───────────────────────────── */
.products {
  padding: 0 0 80px;
}
.products__header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px;
}
.products__title { font-size: clamp(36px, 3.5vw, 44px); }

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pcard {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  overflow: hidden;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
  cursor: pointer;
}
.pcard:hover {
  box-shadow: 0 24px 60px rgba(0,0,0,.1);
  transform: translateY(-4px);
}

.pcard__img {
  height: 270px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.pcard__img-bg {
  position: absolute; inset: 0;
  transition: transform .4s var(--ease);
}
.pcard:hover .pcard__img-bg { transform: scale(1.04); }

.bg1 { background: linear-gradient(135deg, #E8DFC8 0%, #86c5dd 100%); }
.bg2 { background: linear-gradient(135deg, #D0D8E4 0%, #f9f9f9 100%); }
.bg3 { background: linear-gradient(135deg, #8ed9ed 0%, #e1f5f6 100%); }
.bg4 { background: linear-gradient(135deg, #E4D4D4 0%, #D0B8B8 100%); }

.pcard__product-svg {
  position: relative; z-index: 1;
  width: 80px;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.14));
}

.pcard__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--charcoal);
  color: var(--white);
  font-size: 10px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px;
}

.pcard__body { padding: 22px 24px 24px; }
.pcard__name {
	font-size: 18px;
	font-weight: 600;
	color: var(--charcoal);
	margin-bottom: 10px;
}
.pcard__type { font-size: 12px; color: var(--stone); margin-bottom: 14px; }
.pcard__footer {
  display: flex; justify-content: space-between; align-items: center;
}
.pcard__price {
  font-family: var(--f-display);
  font-size: 22px; font-weight: 700;
  color: var(--charcoal);
}
.pcard__rating { font-size: 11px; color: var(--stone); }
.pcard__rating .stars { color: var(--gold); }

.pcard__add {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--charcoal);
  border: none;
  color: var(--white);
  font-size: 20px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
      line-height: 36px;
}
.pcard__add:hover { background: var(--gold); color: var(--charcoal); }
.pcard__prod {
    max-width: 200px;
    display: block;
    margin: 0 auto;
	position:relative;
}

/* ── ABOUT / SPLIT ──────────────────────── */
.about {
	min-height: 600px;
}


.about__visual {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

/* Geometric art for about visual */
.about__geo {
  position: relative; width: 320px; height: 320px;
}
.geo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.2);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.geo-ring:nth-child(1) { width: 200px; height: 200px; border-color: rgba(201,168,76,.4); }
.geo-ring:nth-child(2) { width: 280px; height: 280px; animation: spin 18s linear infinite; }
.geo-ring:nth-child(3) { width: 320px; height: 320px; animation: spin 28s linear infinite reverse; }
.geo-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 96px; height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-lt), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  box-shadow: 0 0 60px rgba(201,168,76,.25);
}
.geo-center img{
	    width: 100%;
    height: 320px;
    object-fit: cover;
}
@keyframes spin {
  to { transform: translate(-50%,-50%) rotate(360deg); }
}

.about__text {
	background: var(--ivory);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 80px 0 80px 50px;
}
.about__title { font-size: clamp(36px, 3.5vw, 44px); margin-bottom: 24px; }
.about__body {
	font-size: 15px;
	color: var(--stone);
	max-width: 550px;
	margin: 20px 0 30px;
	line-height: 24px;
}

.about__pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-bottom: 40px;
}
.pillar {
  display: flex; gap: 14px; align-items: center;
}
.pillar__icon {
  width: 60px; height: 60px; flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  background: var(--white);
}
.pillar__icon img{ max-width:40px;}
.pillar__name { font-size: 16px; font-weight: 600; color: var(--charcoal); margin-bottom: 2px; }
.pillar__desc { font-size: 15px; color: var(--stone);line-height: 26px; }

/* ── PROMISE / INGREDIENTS ──────────────── */
.promise {
  background: var(--charcoal);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.promise__inner {
  display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    text-align: center;
	justify-items: center;
}
.promise__inner .common__title{ max-width:100%; margin-bottom: 20px;}
.promise__label { color: var(--gold); }
.promise__title { font-size: clamp(36px, 3.5vw, 44px); color: var(--white); margin-bottom: 20px; }
.promise__sub { font-size: 15px; color: rgba(255,255,255,.5); line-height: 1.8;}

.promise__badges {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.pbadge {
  border: 1px solid rgba(201,168,76,.2);
  padding: 28px 20px;
  text-align: center;
  transition: border-color .2s, background .2s;
}
.pbadge:hover { border-color: var(--gold); background: rgba(201,168,76,.04); }
.pbadge__icon { font-size: 28px; display: block; margin-bottom: 12px; }
.pbadge__name { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.pbadge__desc { font-size: 14px; color: rgba(255, 255, 255, .4); line-height: 22px; }
.pbadge__icon img{filter: brightness(1) invert(1);}

/* ── FAQ ────────────────────────────────── */
.faq { padding: 80px 0; }
.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px; align-items: start;
}
.faq__inner .common__title{ max-width:100%; margin-bottom: 20px;}
.faq__left .faq__title { font-size: clamp(36px,3.5vw,44px); margin-bottom: 20px; }
.faq__left p { font-size: 15px; color: var(--stone); line-height: 1.8; margin-bottom: 32px; }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,.08); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0;
  font-size: 16px; font-weight: 600; color: var(--charcoal);
  cursor: pointer;
  list-style: none;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 300; flex-shrink: 0;
  color: var(--stone);
  line-height:27px;
  transition: border-color .2s, color .2s;
}
.faq-item[open] summary .faq-icon { border-color: var(--gold); color: var(--gold); }
.faq-item p {
	font-size: 15px;
	color: var(--stone);
	line-height: 24px;
	padding-bottom: 20px;
	max-width: 100%;
}

.inner-products{ padding: 80px 0;}

/* ── FOOTER ─────────────────────────────── */
.footer {
	background: var(--charcoal);
	color: var(--white);
	padding: 50px 0 0;
	display: inline-block;
	width: 100%;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer__brand-logo {
  font-family: var(--f-display);
  font-size: 26px; font-weight: 700;
  letter-spacing: .06em;
  color: var(--white); margin-bottom: 14px;
  width:100%;
  float:left;
}
.footer__brand-logo .logo{ filter: contrast(0.5);}
.footer__brand-logo sup {
  font-size: 11px; font-style: italic; font-weight: 400;
  color: var(--gold); vertical-align: super;
}
.footer__tagline {     
	font-size: 13px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.7;
    width: 100%;
    margin-top: 10px;
    display: inline-block;
}

.footer__socials { display: flex; gap: 12px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  background: transparent;
  color: rgba(255,255,255,.5);
  transition: border-color .2s, color .2s;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }

.footer__col-title {
  font-size: 10px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col ul a {
  font-size: 13px; color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer__col ul a:hover { color: var(--white); }

.footer__bottom {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 24px 0;
	font-size: 12px;
	color: rgba(255, 255, 255, .3);
}
.footer__bottom a { color: rgba(255,255,255,.3); transition: color .2s; }
.footer__bottom a:hover { color: var(--white); }
.footer__bottom-links { display: flex; gap: 24px; }

/* ── SCROLLBAR ───────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero__left { padding: 80px 40px; }
  .hero__right { display: none; }
  .care__grid { grid-template-columns: repeat(2,1fr); }
  .products__grid { grid-template-columns: repeat(2,1fr); }
  .about { grid-template-columns: 1fr; }
  .about__visual { min-height: 360px; }
  .promise__inner { grid-template-columns: 1fr; gap: 48px; }
  .reviews__grid { grid-template-columns: 1fr 1fr; }
  .routine__inner { grid-template-columns: 1fr; }
  .faq__inner { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 15px; }
  .nav { padding: 0 24px; }
  .nav__links { display: none; }
  .inner__cont{grid-template-columns: 1fr; }
  .hero{ background: linear-gradient(180deg, rgba(20, 20, 20, 1) 100%, rgba(248, 245, 239, 1) 50%);}
  .hero__left {padding: 30px 0px;}
  .hero__eyebrow{margin-bottom:15px;}
  .hero__h1{ margin-bottom:15px;}
  .hero__sub{ margin-bottom:30px;}
  .hero__ctas{margin-bottom: 30px;}
  .hero__right{ display: block; padding: 0px 0px; width: calc(100% + 40px); margin-left: -20px;}
  .hero__tag{ display:none;}
  .bnr__prod{ position: static; max-width: 320px; display: block; margin: 0 auto;}
  .hero__orb{ display:none;}
  
  .ticker__track{gap: 20px;}
  
  .care{ padding: 30px 0;}
  .care__card{padding: 20px 20px;}
  .care__header{ margin-bottom:30px;}
  .care__grid{ margin-bottom:30px;}
  .btn{ width:100%;}
  
  .products{padding: 0 0 30px;}
  .products__header{ margin-bottom:30px;}
  .products__grid{ margin-bottom:30px;}
  
   .about__visual {height: 330px;}
   .about__visual img{ object-fit: cover;}
   .about__text{padding: 30px 0;}
   .about__body{ margin: 15px 0 20px;}
   .about__pillars { grid-template-columns: 1fr;  gap: 10px; margin-bottom: 30px;}
   
   .promise{padding: 30px 0;}
   .promise__badges {grid-template-columns: repeat(2, 1fr);}
   .pbadge{padding: 15px 10px;}
   .pbadge__icon img{ max-width:40px;}
   .pbadge__name{ font-size:14px;}
   .pbadge__desc{ font-size:12px;}
   .promise__inner{gap: 25px;}
   
   .faq{padding: 30px 0;}
   .faq__left p{margin-bottom: 10px;}
   .faq-list{ margin-bottom:30px}
   .faq__inner{gap: 0;}
   .faq-item summary{ font-size:14px; padding:10px 0;}
   .faq-item p{ font-size:14px;}
  
  .care__grid,
  .products__grid,
  .reviews__grid { grid-template-columns: 1fr; }
  
  .footer__grid { grid-template-columns: 1fr; }
  .hero__proof { flex-wrap: wrap; gap: 10px; }
  .care__header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .products__header { flex-direction: column; align-items: flex-start; gap: 16px; padding-top: 25px;}
  
  .for-mob{ display:block;}
}


/*TERMS- PRIVACY*/

.tems_bg {
	float: left;
	width: 100%;
	padding: 40px 0;
}
.trm-bx {
	background: #fff;
	width: 100%;
	float: left;
	text-align: left;
	padding: 30px 15px;
}
.trm-bx img {
    float: left;
    margin-bottom: 20px;
    max-width: 100%;
}
.trm-bx h1 {
	    line-height: 30px;
    color: #c9a84c;
    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 #000;
}
.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;
}
.trm-bx ol li {
    list-style: lower-roman;
}
.trm-bx li ol li {
    list-style: lower-alpha;
}
.trm-bx strong {
	text-transform: capitalize;
}
.trm-bx span {
	text-transform: capitalize;
    display: inline-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;
}
.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 20px;
	max-width: 30%;
	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;
}
.trm-bx table {
    float: left;
    width: 100%;
    border-collapse: collapse;
}
.trm-bx table td, .trm-bx table th {
    padding: 14px;
    border: 1px solid #ccc;
}
.ing-blk h4 {
    text-align: center;
}
.ing-blk img {
    display: block;
    margin: 0 auto 10px;
}
.trm-bx a {
    color: #000;
}

/********************************/
.age-pop-overlay {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0
}
.pop-up-bg {
	width: 100% !important;
	height: 100% !important;
	position: fixed !important;
	left: 0px !important;
	top: 0px !important;
	margin: 0px !important;
	padding: 0px !important;
	z-index: 9999600 !important;
	border: 0px;
	opacity: 0.75;
	background-color: rgb(0, 0, 0) !important;
}
.pop-up-bg-in {
	height: 100% !important;
	position: fixed !important;
	top: 0px !important;
	padding: 0px !important;
	margin: 0px !important;
	border: 0px;
	opacity: 0.93;
	box-shadow: rgba(0, 0, 0, 0.25) 4px 0px 5px 0px !important;
	background-color: rgb(255, 255, 255) !important;
	transition: left 1s ease 0s !important;
	z-index: 10000010 !important;
	width: 390px !important;
	left: 0px;
}
.pop-up-left {
	width: 100% !important;
	height: 100% !important;
	position: fixed !important;
	left: 0px !important;
	top: 0px !important;
	border: 0px;
	background-color: rgb(0, 0, 0) !important;
	display: none !important;
	opacity: 0.8 !important;
	z-index: 10000001 !important;
}
.pop-up-left-txt {
	    position: fixed !important;
    left: 40px;
    bottom: 50% !important;
    top: initial !important;
    margin-bottom: -120px !important;
    margin-left: 0px !important;
    width: 300px !important;
    min-height: 40px !important;
    height: auto !important;
    z-index: 10000100 !important;
    background-color: transparent !important;
    background-repeat: no-repeat !important;
    background-position: left 30px !important;
    background-image: url(../images/ageverify.png) !important;
    background-size: auto 50px !important;
    text-align: left !important;
    text-shadow: none !important;
    color: rgb(0, 0, 0) !important;
    font-size: 24px !important;
    font-style: normal !important;
    font-weight: 300 !important;
    letter-spacing: 0px !important;
    text-transform: capitalize;
    box-sizing: initial !important;
    padding: 100px 0px !important;
    overflow-wrap: break-word !important;
    line-height: 31px !important;
    border: none !important;
    transition: left 1s ease 0s !important;
}
.pop-up-left-txt span{
	font-weight: 700 !important;
	}
.no-btn {
	position: fixed !important;
	cursor: pointer;
	left: 190px;
	margin-left: 0px !important;
	top: 50% !important;
	margin-top: 35px !important;
	height: 40px !important;
	width: 140px !important;
	color: rgb(255, 255, 255) !important;
	font-size: 22px !important;
	min-width: 1em !important;
	line-height: 1em !important;
	letter-spacing: 0px !important;
	text-transform: none !important;
	text-decoration: none !important;
	text-shadow: none !important;
	text-align: center !important;
	padding: 0px !important;
	font-weight: 700 !important;
	font-style: normal !important;
	background-image: none !important;
	border-width: 2px !important;
	border-style: solid !important;
	border-color: #e1bc5c !important;
	border-radius: 0px !important;
	outline: none !important;
	box-shadow: none !important;
	background-color: #42ac47 !important;
	z-index: 10000400 !important;
	transition: left 1s ease 0s !important;
	appearance: none !important;
}
.yes-btn {
	position: fixed !important;
	cursor: pointer !important;
	left: 40px;
	margin-left: 0px !important;
	top: 50% !important;
	margin-top: 35px !important;
	height: 40px !important;
	width: 140px !important;
	color: rgb(255, 255, 255) !important;
	font-size: 22px !important;
	min-width: 1em !important;
	line-height: 1em !important;
	letter-spacing: 0px !important;
	text-transform: none !important;
	text-decoration: none !important;
	text-shadow: none !important;
	text-align: center !important;
	padding: 0px !important;
	font-weight: 700 !important;
	font-style: normal !important;
	background-image: none !important;
	border-width: 2px !important;
	border-style: solid !important;
	border-color: #e1bc5c !important;
	border-radius: 0px !important;
	outline: none !important;
	box-shadow: none !important;
	background-color: #42ac47 !important;
	appearance: none !important;
	transition: left 1s ease 0s !important;
	z-index: 10000200 !important;
}