:root {
  --header-h: 72px; /* header height used for offsets */
}

/* Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  width: 100%;
  height: 100%;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
span{color: white;}
/* Header */
.header {
  width: 100%;
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  padding: 10px 18px;
  background: #01173d;
  color: #e9f0f7;
  height: var(--header-h);
  position: sticky;
  top: 0; /* keep it flush to top */
  z-index: 100;
  gap: 120px;
}
.header > * { min-width: 0; }

/* Brand & right */
.right { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; min-width: 0; }
.brand { display:flex; align-items:center; gap:1px; text-decoration:none; color:inherit; flex: 0 0 auto; }
.brand img { width:40px; height:40px; border-radius:6px; object-fit:contain; }
.brand-title { display:flex; flex-direction:column; line-height:1; }
.brand-title .title { font-weight:700; font-size:16px; }

/* Hamburger (hidden on larger screens) */
.hamburger {
  display: none;
  background: transparent;
  color: #e9f0f7;
  border: 1px solid rgba(255,255,255,0.04);
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  z-index: 140;
  margin-left: 40px;
}

/* Left (nav + CTA) */
.left { display:flex; align-items:center; gap: 12px; flex: 1 1 auto; min-width:0; }
.navBar { display:flex; align-items:center; flex:1 1 auto; min-width:0; }
.navLinks { display:flex; align-items:center; justify-content:center; min-width:0; }
.linkRight { list-style:none; display:flex; gap:24px; align-items:center; white-space:nowrap; margin:0; padding:0; min-width:0; }

.linkRight a { color:#e9f0f7; text-decoration:none; padding:8px 10px; border-radius:8px; font-weight:600; display:inline-block; }
.linkRight a:hover { background: rgba(255,255,255,0.03); transform: translateY(-2px); transition: transform .12s ease; }

/* Dropdown */
.dropdown { position:relative; }
.dropdown-menu {
  position:absolute;
  top: calc(50% + 5px);
  left: 0;
  min-width:100px;
  background:#06264D;
  border-radius:8px;
  padding:8px 6px;
  display:none;
  /* width: 100px; */
  box-shadow:0 8px 20px rgba(0,0,0,0.4);
  z-index: 40;
}
.dropdown-menu li{
  list-style: none;
}
.dropdown:hover > .dropdown-menu,
.dropdown:focus-within > .dropdown-menu { display:block; }
.dropdown-menu a { 
  display:block; 
  padding:8px 10px; 
  color:#e0e6ed; 
  text-decoration:none; 
}

/* CTA */
.btn-cta { background: #e4f0f6; color:#041025; border:none; padding:10px 14px; border-radius:8px; font-weight:800; cursor:pointer; flex:0 0 auto; }

/* MAIN offset (push content below sticky header) */
main {
  padding-top: calc(var(--header-h) + 16px); /* header height + breathing space */
  padding-left: 24px;
  padding-right: 24px;
  max-width: 1200px;
  margin: 0 auto 40px;
  box-sizing: border-box;
}

/* Responsive / mobile */
@media (max-width: 1024px) {
  .hamburger { display:inline-flex; align-items:center; justify-content:center; }

  .navBar { display: none; }

  .navBar.active {
    display: flex !important;
    position: fixed;
    left: 8px;
    right: 8px;
    top: calc(var(--header-h) + 12px);
    background: #041025;
    border-radius: 10px;
    padding: 12px;
    flex-direction: column;
    gap: 8px;
    z-index: 9999;
    max-height: calc(100vh - (var(--header-h) + 40px));
    overflow-y: auto;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
  }
  /* .hamburger {margin-left: 2px;} */

  .navBar.active .navLinks { display:flex; flex-direction:column; gap:8px; }
  .navBar.active .linkRight { flex-direction:column; gap:8px; align-items:stretch; white-space:normal; }

  .dropdown-menu {
    position: static;
    display: none;
    padding-left: 12px;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
  }
  .dropdown.expanded > .dropdown-menu { display:block; }

  /* smaller header on very small screens */
  @media (max-width: 420px) {
    :root { --header-h: 64px; }
    .brand-title .title { font-size: 15px; }
    .brand img { width:34px; height:34px; }
    .header{gap: 16px;}
  }
}

/* Large screens */
@media (min-width: 1200px) {
  .header { padding-top: 14px; padding-bottom: 14px;}
}








/*== multiple type animation css code ==*/

/* Fade-in */
.fade {
  opacity: 0;
  transition: opacity 6s;
}
.fade.show {
  opacity: 1;
}

/* Jump */
.jump {
  transform: translateY(50px);
  opacity: 0;
  transition: all 6s;
}
.jump.show {
  transform: translateY(0);
  opacity: 1;
}

/* Slide from left */
.slide {
  transform: translateX(-50px);
  opacity: 0;
  transition: all 6s;
}
.slide.show {
  transform: translateX(0);
  opacity: 1;
}









/* Hero Section */
.quiz-hero {
  width: 100%;
  padding: 80px 20px;
  background: #5f9ae9;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.quiz-hero-inner {
  max-width: 700px;
}

.quiz-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.quiz-desc {
  font-size: 18px;
  color: #dbe7ff;
  margin-bottom: 30px;
  line-height: 1.6;
}

.quiz-btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: #ffffff;
  color: #01173d;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.quiz-btn:hover {
  background-color: #dbe7ff;
}

/* ---------------------------------- */
/* MEDIA QUERY 768PX */
/* ---------------------------------- */

@media (max-width: 768px) {
  .quiz-hero {
    padding: 60px 16px;
  }

  .quiz-title {
    font-size: 32px;
  }

  .quiz-desc {
    font-size: 16px;
  }

  .quiz-btn {
    padding: 12px 28px;
    font-size: 16px;
  }
}










/* Section Wrapper */
.text-info {
  padding: 60px 20px;
  background: #f4f6fb;
  display: flex;
  justify-content: center;
}

/* Content Box */
.ti-box {
  max-width: 1200px;
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(1, 23, 61, 0.15);
}

/* Title */
.ti-title {
  font-size: 28px;
  color: rgb(1, 23, 61);
  margin-bottom: 16px;
  font-weight: 700;
}

/* Description */
.ti-desc {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Bullet Points */
.ti-points {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.ti-points li {
  font-size: 15px;
  color: rgb(1, 23, 61);
  padding: 8px 0;
}

/* Final Note */
.ti-note {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  border-top: 1px solid #e1e4ea;
  padding-top: 15px;
}

/* 768px Media Query */
@media (max-width: 768px) {
  .ti-box {
    padding: 25px;
  }

  .ti-title {
    font-size: 24px;
  }

  .ti-desc {
    font-size: 15px;
  }

  .ti-points li {
    font-size: 14px;
  }

  .ti-note {
    font-size: 13px;
  }
}









/* Section */
.recommend-box {
  padding: 50px 20px;
  background: #f4f6fb;
}

.rec-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  color: rgb(1, 23, 61);
}

/* Horizontal Scroll Carousel */
.rec-carousel {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.rec-carousel::-webkit-scrollbar {
  height: 6px;
}

.rec-carousel::-webkit-scrollbar-thumb {
  background: rgba(1, 23, 61, 0.3);
  border-radius: 10px;
}

/* Product Card */
.rec-card {
  min-width: 260px;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(1, 23, 61, 0.12);
  scroll-snap-align: start;
  border-left: 5px solid rgb(1, 23, 61);
}

/* Product Title */
.rec-name {
  font-size: 18px;
  margin-bottom: 6px;
  color: rgb(1, 23, 61);
  font-weight: 600;
}

/* Rating */
.rec-rating {
  font-size: 14px;
  color: #444;
  margin-bottom: 6px;
}

/* Price */
.rec-price {
  font-size: 16px;
  color: #000;
  margin-bottom: 12px;
  font-weight: 600;
}

/* Why This Suits You */
.rec-reason {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 18px;
}

/* Buttons */
.rec-actions {
  display: flex;
  gap: 10px;
}

.btn-add,
.btn-save {
  flex: 1;
  padding: 10px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
}

.btn-add {
  background: rgb(1, 23, 61);
  color: #fff;
}

.btn-save {
  background: #e8ecf4;
  color: rgb(1, 23, 61);
}

/* Responsive: 768px */
@media (max-width: 768px) {
  .rec-title {
    font-size: 24px;
  }

  .rec-card {
    min-width: 220px;
    padding: 18px;
  }

  .rec-name {
    font-size: 16px;
  }

  .rec-price {
    font-size: 15px;
  }
}









/* Wrapper */
.quiz-results {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  background: #ffffff;
  color: #01173d;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* Inner container */
.results-inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Result card layout */
.result-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 28px;
  align-items: start;
  background: #ffffff;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(1,23,61,0.04);
  border: 1px solid rgba(1,23,61,0.04);
}

/* Visual area */
.result-visual {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  display: block;
}

.result-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Content column */
.result-content {
  padding-top: 6px;
  padding-bottom: 6px;
}

/* Title and subtitle */
.result-title {
  font-size: 34px;
  font-weight: 800;
  color: #01173d;
  margin-top: 0;
  margin-bottom: 10px;
}

.result-sub {
  font-size: 15px;
  color: rgba(1,23,61,0.85);
  margin-top: 0;
  margin-bottom: 18px;
  line-height: 1.5;
}

/* Recommendations block */
.recommendations {
  margin-bottom: 18px;
}

.rec-title {
  font-size: 16px;
  font-weight: 700;
  color: #01173d;
  margin-bottom: 12px;
}

/* Recommendation list */
.rec-list {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rec-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(1,23,61,0.04);
}

/* Thumbnail */
.rec-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Recommendation text */
.rec-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rec-text strong {
  font-size: 14px;
  color: #01173d;
  font-weight: 700;
}

.rec-note {
  font-size: 13px;
  color: rgba(1,23,61,0.7);
}

/* CTA buttons */
.result-ctas {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-primary {
  display: inline-block;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 18px;
  padding-right: 18px;
  background: #01173d;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid #01173d;
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(1,23,61,0.06);
}

.btn-secondary {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 16px;
  padding-right: 16px;
  background: transparent;
  color: #01173d;
  border-radius: 8px;
  border: 1px solid rgba(1,23,61,0.12);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

/* More tips block */
.more-tips {
  margin-top: 18px;
  background: linear-gradient(180deg, rgba(1,23,61,0.03), rgba(1,23,61,0.01));
  border-radius: 10px;
  padding: 12px 14px;
  color: rgba(1,23,61,0.9);
  font-size: 13px;
  border: 1px solid rgba(1,23,61,0.03);
}

/* Accessibility focus states */
.btn-secondary:focus,
.btn-primary:focus,
.result-ctas a:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(1,23,61,0.08);
}

/* ---------------------------------- */
/* MEDIA QUERY: max-width 768px */
/* ---------------------------------- */
@media (max-width: 768px) {
  .result-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .result-visual img {
    height: 220px;
    width: 100%;
    object-fit: cover;
  }

  .result-title {
    font-size: 26px;
  }

  .result-sub {
    font-size: 14px;
  }

  .rec-item {
    gap: 10px;
  }

  .rec-thumb {
    width: 56px;
    height: 56px;
  }

  .result-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .more-tips {
    font-size: 13px;
  }
}












/* Section wrapper */
.recommended-products {
  width: 100%;
  background: #ffffff;
  color: #01173d;
  padding-top: 40px;
  padding-bottom: 40px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* Inner container */
.products-inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Section title */
.products-title {
  font-size: 28px;
  font-weight: 700;
  color: #01173d;
  margin-bottom: 24px;
  text-align: left;
}

/* Grid layout */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Product card */
.product-card {
  background: #ffffff;
  border: 1px solid rgba(1,23,61,0.06);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(1,23,61,0.08);
}

/* Product image */
.product-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* Product info */
.product-info {
  padding: 12px 10px 16px 10px;
}

/* Name */
.product-name {
  font-size: 16px;
  font-weight: 700;
  color: #01173d;
  margin-bottom: 6px;
}

/* Price */
.product-price {
  font-size: 14px;
  font-weight: 600;
  color: rgba(1,23,61,0.8);
  margin-bottom: 12px;
}

/* Shop button */
.btn-shop {
  display: inline-block;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 14px;
  padding-right: 14px;
  background: #01173d;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid #01173d;
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}

.btn-shop:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(1,23,61,0.08);
}

/* ---------------------------------- */
/* MEDIA QUERY 768px */
/* ---------------------------------- */
@media (max-width: 768px) {
  .products-title {
    font-size: 22px;
    text-align: center;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .product-img {
    height: 220px;
  }

  .product-name {
    font-size: 14px;
  }

  .product-price {
    font-size: 13px;
  }

  .btn-shop {
    font-size: 13px;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 12px;
    padding-right: 12px;
  }
}












/* Personalized Recommendations - mobile first */

.pers-recs {
  padding: 28px 16px;
  background: #fbfcfe;
  color: #222;
}

.pr-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.pr-header {
  margin-bottom: 14px;
  text-align: left;
}

.pr-title {
  font-size: 22px;
  color: rgb(1, 23, 61);
  margin: 0 0 6px;
  font-weight: 700;
}

.pr-sub {
  margin: 0;
  color: #444;
  font-size: 14px;
}

/* Carousel wrapper - horizontal scrolling */
.pr-carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin: 18px 0 22px;
}

/* Product card (carousel item) */
.prod-card {
  min-width: 260px;           /* card visible width on small screens */
  max-width: 260px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(1,23,61,0.06);
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid #eef1f6;
  display: flex;
  flex-direction: column;
}

/* Image area */
.prod-media {
  width: 100%;
  height: 160px;
  background: #e9ebf0;
}

.prod-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Info area */
.prod-info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
}

.prod-name {
  font-size: 16px;
  margin: 0;
  color: rgb(1, 23, 61);
  font-weight: 600;
}

.prod-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.prod-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-special {
  font-weight: 700;
  color: rgb(1, 23, 61);
}

.price-old {
  color: #8a8f98;
  text-decoration: line-through;
  font-size: 12px;
}

/* Rating */
.prod-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #666;
  font-size: 13px;
}

.rating-stars {
  color: #f2b01e; /* star color */
  font-size: 13px;
}

/* 'Why this suits you' microcopy */
.prod-why {
  font-size: 13px;
  color: #555;
  line-height: 1.3;
  margin: 0;
}

/* Actions */
.prod-actions {
  display: flex;
  gap: 8px;
  margin-top: auto; /* push to bottom */
}

.btn {
  padding: 8px 10px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  font-size: 14px;
}

.btn-add {
  background: rgb(1, 23, 61);
  color: #fff;
  flex: 1 1 auto;
}

.btn-save {
  background: transparent;
  color: rgb(1, 23, 61);
  border: 1px solid rgba(1,23,61,0.12);
  flex: 0 0 auto;
}

/* Shop the look */
.shop-look {
  background: #fff;
  border-radius: 10px;
  padding: 14px;
  border: 1px solid #eef1f6;
}

.sl-title {
  margin: 0 0 10px;
  color: rgb(1, 23, 61);
  font-weight: 700;
  font-size: 16px;
}

.sl-grid {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.sl-item {
  flex: 1 1 0;
  text-align: center;
}

.sl-item img {
  width: 100%;
  height: 84px;
  object-fit: cover;
  border-radius: 8px;
  background: #e9ebf0;
}

.sl-name {
  margin: 8px 0 0;
  font-size: 13px;
  color: #444;
}

/* Shop the look actions */
.sl-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-bundle {
  background: rgb(1, 23, 61);
  color: #fff;
  padding: 10px 12px;
  border-radius: 8px;
  border: 0;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d6dbe6;
  text-decoration: none;
  color: rgb(1, 23, 61);
}

/* Desktop / larger screens */
@media (min-width: 768px) {
  .pr-inner { padding: 0 8px; }

  /* carousel becomes grid */
  .pr-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    overflow: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  .prod-card {
    min-width: auto;
    max-width: none;
    height: auto;
  }

  .prod-media {
    height: 200px;
  }

  .sl-grid {
    gap: 16px;
  }

  .sl-item img {
    height: 110px;
  }

  .pers-recs {
    padding: 36px 24px;
  }
}

/* small accessibility and usability tweaks */
.pr-carousel::-webkit-scrollbar {
  height: 8px;
}
.pr-carousel::-webkit-scrollbar-thumb {
  background: rgba(1,23,61,0.12);
  border-radius: 8px;
}











.footer {
  background: #011331;
  color: #fff;
}

.footer-container {
  /* max-width: 1100px; */
  margin-left: 80px;
  margin-right: auto;
  padding: 40px 16px;
  display: flex;
  flex-wrap: wrap;
}

.footer-about {
  flex: 1 1 250px;
}

.footer-links {
  flex: 1 1 200px;
}

.footer-contact {
  flex: 1 1 250px;
}

.footer-title {
  font-size: 18px;
  margin-bottom: 16px;
  margin-top: 20px;
}

.footer-text {
  font-size: 14px;
  width: 200px;
}

/* .footer-contact .mail{
  color: white;
} */

.footer-list {
  list-style: none;
  padding-left: 0;
}

.footer-list li {
  margin-bottom: 8px;
}

.footer-list li a {
  color: #fff;
  text-decoration: none;
}

.footer-list li a:hover {
  text-decoration: underline;
}

.footer-social {
  margin-top: 16px;
}

.social-icon {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  text-decoration: none;
}

.social-icon img{
  height: 40px;
  width: 40px;
  background-color: white;
  overflow: hidden;

}

.social-icon:hover {
  text-decoration: underline;
}

.footer-newsletter {
  margin-top: 16px;
}

.newsletter-input {
  padding: 8px;
  border: none;
}

.newsletter-btn {
  padding: 8px 16px;
  background-color: #fff;
  color: #222;
  border: none;
  cursor: pointer;
}

.footer-bottom {
  text-align: center;
  padding: 16px;
  border-top: 1px solid #444;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-about,
  .footer-links,
  .footer-contact {
    flex: 1 1 100%;
    margin-bottom: 24px;
  }
}