/** Shopify CDN: Minification failed

Line 194:2 All "@import" rules must come first
Line 533:41 Expected identifier but found whitespace
Line 533:43 Unexpected "{"
Line 533:52 Expected ":"
Line 534:41 Expected identifier but found whitespace
Line 534:43 Unexpected "{"
Line 534:52 Expected ":"
Line 535:41 Expected identifier but found whitespace
Line 535:43 Unexpected "{"
Line 535:52 Expected ":"

**/


/* CSS from section stylesheet tags */
/* ---------------------------------------
   as-seen-on.liquid styles (Two Columns, Row Spacing)
   --------------------------------------- */
.as-seen-on__heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: #1f2d3d;
  margin-bottom: 2rem;
}

/* Exactly two columns per row, with gap between columns and rows */
.as-seen-on__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem;
  row-gap: 2.5rem; /* extra space between rows */
}

/* Each grid item holds a logo plus a separate video card */
.as-seen-on__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align everything to the left */
}

/* Logo sits above the card, transparent background, small size */
.as-seen-on__logo-wrapper {
  margin-left: 0; /* flush to left */
  margin-bottom: 0.5rem;
}
.as-seen-on__logo {
  display: block;
  width: 50px;   /* smaller width */
  height: auto;
}

/* Video card styling */
.as-seen-on__card {
  width: 100%;
  background-color: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Responsive 16:9 video container */
.as-seen-on__video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  background-color: #000;
}

.as-seen-on__video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* On smaller screens (≤ 768px), collapse to one column */
@media screen and (max-width: 768px) {
  .as-seen-on__grid {
    grid-template-columns: 1fr;
  }
}
/* ---------------------------------------
   bookmarks-request.liquid styles
   --------------------------------------- */
.bookmarks-request__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
}
.bookmarks-request__image-column {
  flex: 1 1 35%;
  text-align: center;
}
.bookmarks-request__image {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
.bookmarks-request__form-column {
  flex: 1 1 40%;
  border: 1px solid #D0D5DD;
  border-radius: 10px;
  padding: 10px 30px;
}

/* Headings */
.bookmarks-request__heading {
  font-size: 2.5rem;
  font-weight: 600;
  color: #1f2d3d;
  margin-bottom: 0.5rem;
  font-family: montserrat;
}
.bookmarks-request__subheading {
  font-size: 1.5rem;
  color: #3c4a57;
  margin-bottom: 1.5rem;
  font-family: poppins;
}

/* Form grid helpers */
.bookmarks-request__grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* Fields */
.bookmarks-request__field {
  margin-bottom: 1rem;
}
.bookmarks-request__label {
  display: block;
  font-size: 1.2rem;
  color: #3c4a57;
  margin-bottom: 0.25rem;
  font-family: poppins;
}
.bookmarks-request__input {
  width: 100%;
  padding: 1rem;
  border: 1px solid #d1d5db;
  border-radius: 9999px;
  font-size: 1rem;
  outline: none;
  font-family: poppins;
}

/* Checkbox */
.bookmarks-request__checkbox {
  margin-bottom: 1.5rem;
}
.bookmarks-request__checkbox-input {
  margin-right: 0.5rem;
  vertical-align: middle;
}
.bookmarks-request__checkbox-label {
  font-size:1.2rem;
  color: #3c4a57;
  font-family: poppins;
}

/* Button */
.bookmarks-request__button {
  display: inline-block;
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #4BA8E9;
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .bookmarks-request__image-column,
  .bookmarks-request__form-column {
    flex: 1 1 100%;
  }
  .bookmarks-request__grid-2 {
    grid-template-columns: 1fr;
  }
}
/* Base styles and font import */
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

  /* Tabs container */
  .tabs-container {
    margin: 20px 0;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    border: 1px solid var(--Gray-100, #f2f4f7);
    display: flex;
    padding: 6px;
    gap: 8px;
    font-family: Poppins, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 18px;
    color: #101828;
    font-weight: 500;
    line-height: 2;
    flex-wrap: wrap;
    background-color: #f2f4f7;
  }

  /* Base tab button styles */
  .tab-button {
    align-self: stretch;
    border-radius: 6px;
    margin: auto 0;
    padding: 10px 14px;
    gap: 8px;
    overflow: hidden;
    border: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    cursor: pointer;
    text-align: left;
    background: transparent;
    color: #101828;
  }

  /* Active tab */
  .tab-active {
    color: #1d2939;
    border-radius: 24px;
    box-shadow: 0px 1px 3px 0px rgba(16, 24, 40, 0.1),
      0px 1px 2px 0px rgba(16, 24, 40, 0.06);
    max-width: fit-content;
    background-color: #fff;
  }

  /* Secondary tab */
  .tab-secondary {
    min-width: 240px;
    flex: 1;
    flex-basis: 0%;
    text-align: center;
  }

  /* Tertiary tab */
  .tab-tertiary {
    white-space: nowrap;
  }

  /* Spacer tab */
  .tab-spacer {
    min-height: 48px;
    padding: 10px 0;
    cursor: default;
  }

  /* Quaternary tab */
  .tab-quaternary {
    min-width: 240px;
  }

  /* Responsive adjustments */
  @media (max-width: 991px) {
    .tab-tertiary {
      white-space: initial;
    }
    a.tab-button {
    font-size: 16px;
}
  }
/* ---------------------------------------
   guided-handout.liquid styles
   --------------------------------------- */
.guided-handout__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.guided-handout__form-column {
  flex: 1 1 45%;
}
.guided-handout__video-column {
  flex: 1 1 50%;
}

/* Heading */
.guided-handout__heading {
  font-size: 2rem;
  font-weight: 600;
  color: #1f2d3d;
  margin-bottom: 1.5rem;
  font-family: montserrat;
}

/* Banner */
.guided-handout__banner-img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  display: block;
  margin-bottom: 1.5rem;
}

/* Form */
.guided-handout__form .guided-handout__field-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.guided-handout__input {
  flex: 1 1 auto;
  padding: 1rem;
  border: 1px solid #d1d5db;
  border-radius: 9999px;
  font-size: 1rem;
  outline: none;
  font-family: poppins;
}
.guided-handout__input--full {
  width: 100%;
}
.guided-handout__checkbox {
  margin-bottom: 1.5rem;
}
.guided-handout__checkbox-input {
  margin-right: 0.5rem;
}
.guided-handout__checkbox-label {
  font-size: 1.2rem;
  color: #3c4a57;
}
.guided-handout__button {
  display: inline-block;
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #4BA8E9;
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
}

/* As Seen On header */
.as-seen-on__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.as-seen-on__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2d3d;
}
.as-seen-on__logo {
  height: 20%;
  object-fit: contain;
  width: 20%;
}

/* Video */
.guided-handout__video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background-color: #000;
  border-radius: 0.75rem;
  overflow: hidden;
}
.guided-handout__video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Mobile */
@media screen and (max-width: 768px) {
  .guided-handout__form-column,
  .guided-handout__video-column {
    flex: 1 1 100%;
  }
}
/* ---------------------------------------
   hospital-kits.liquid styles
   --------------------------------------- */
.hospital-kits__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
}

/* Your existing styles below... */
.hospital-kits__text {
  flex: 1 1 320px;
  max-width: 60%;
}

.hospital-kits__heading {
  font-size: 3rem;
  font-weight: 600;
  color: #1f2d3d;
  margin-bottom: 1rem;
}

.hospital-kits__subheading {
  font-size: 1.5rem;
  color: #3c4a57;
  margin-bottom: 1.7rem;
  font-family: poppins;
  font-weight: 500;
}

.hospital-kits__description p {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #3c4a57;
  margin-bottom: 1rem;
}

.hospital-kits__images {
  flex: 1 1 320px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.hospital-kits__image-wrapper {
  overflow: hidden;
  border-radius: 0.75rem;
}

.hospital-kits__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Mobile: stack columns */
@media screen and (max-width: 768px) {
  .hospital-kits__text,
  .hospital-kits__images {
    max-width: 100%;
    flex: 1 1 100%;
  }
}
/* ---------------------------------------
   hospital-steps.liquid styles
   --------------------------------------- */
.hospital-steps__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
}

/* IMAGE GRID */
.hospital-steps__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, auto);
  grid-template-areas:
    "img1 img2"
    "img1 img3";
  gap: 1rem;
  flex: 1 1 40%;
}
.hospital-steps__images .img1 { grid-area: img1; }
.hospital-steps__images .img2 { grid-area: img2; }
.hospital-steps__images .img3 { grid-area: img3; }
.hospital-steps__img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  display: block;
  object-fit: cover;
}

/* CONTENT AREA */
.hospital-steps__content {
  flex: 1 1 55%;
}
.hospital-steps__heading {
  font-size: 36px;
  font-weight: 500;
  color: #1f2d3d;
  margin-bottom: 1rem;
}
.hospital-steps__subheading {
  font-size: 1.8rem;
  color: #3c4a57;
  margin-bottom: 2rem;
  font-family: poppins;
}

/* STEPS */
.hospital-steps__steps .step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.step__number {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2d3d;
  width: 2rem;
  flex-shrink: 0;
  margin-right: 0.5rem;
}
.step__title {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  line-height: 28px;
}
.step__desc {
  font-size: 1.5rem;
  color: #3c4a57;
  margin: 0.25rem 0 0 0;
}
.step:nth-child(1) .step__number { color: {{ section.settings.step1_color }}; }
.step:nth-child(2) .step__number { color: {{ section.settings.step2_color }}; }
.step:nth-child(3) .step__number { color: {{ section.settings.step3_color }}; }

/* Button */
.hospital-steps__btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background-color: #5AACDD;
  color: #fff;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
}

  /* Step 1 number */
   .step__number {
  line-height: 28px;
}
.hospital-steps__steps .step:nth-child(1) .step__number {
  color: #15B79E;
}

/* Step 2 number */
.hospital-steps__steps .step:nth-child(2) .step__number {
  color: #F292A4; 
}

/* Step 3 number */
.hospital-steps__steps .step:nth-child(3) .step__number {
  color: #9E77ED; 
}


/* MOBILE */
@media screen and (max-width: 768px) {
  .hospital-steps__inner {
    flex-direction: column;
  }
  .hospital-steps__images,
  .hospital-steps__content {
    flex: 1 1 100%;
  }
}
.section-header {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-top: 6rem;
    background-color: #0284c7;
    text-align: center;
    color: #f9fafb;
    background-repeat: round;
    width: 100%;
    height: 272px;
    justify-content: center;
    align-items: center;
  }
   @media only screen and (max-width: 991px) {
     .section-header{
    background-image: url(/cdn/shop/files/header_bg.jpg?v=1750271696);
     }
   }
  @media only screen and (min-width: 991px) {
    .section-header{
    background-image: url(/cdn/shop/files/header_bg.jpg?v=1750271696);
   }
  }
.section-title{
  width:60%;
}
  .section-title h1{
    align-self: center;
    padding-bottom: 1.5rem;
    max-width: 720px;
    font-size: 36px;
    font-weight: 500;
    line-height: 1;
    color: white !important;
  }

  .section-image {
    object-fit: contain;
    margin-top: 2rem;
    aspect-ratio: 20.83;
    width: 100%;
    max-width: 1439px;
  }

  @media (max-width: 768px) {
    .section-header {
      padding-top: 1px !important;
    }
    .section-title,
    .section-image {
      max-width: 90%;
      font-size: 28px !important;
      padding: 0 2px;
    }
  }
/* ---------------------------------------
   toys-features.liquid styles
   --------------------------------------- */
.toys-features__wrapper {
  background-color: #f7f8fa; /* Light neutral, optional—remove if your theme already has a matching section background */
}

.toys-features__heading {
  /* Uses inline styles for font-size and alignment; override here if needed */
}

.toys-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.toys-features__card {
  padding: 2rem;
  border-radius: 0.75rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.toys-features__icon-wrapper {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.toys-features__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.toys-features__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: white;
  font-size: 30px;
  font-family: 'Barlow Semi Condensed';
}

.toys-features__body-text {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  font-family: 'Barlow Condensed';
}
/* ---------------------------------------
   about-mary.liquid styles
   --------------------------------------- */
.about-mary__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding-bottom: 50px;
}

.about-mary__text {
  width: 50%;
}

.about-mary__heading {
  font-size: 30px;
  font-weight: 600;
  color: #1f2d3d;
  margin-bottom: 1rem;
}

.about-mary__body-text {
  font-size: 18px;
  line-height: 1.6;
  color: #3c4a57;
}

/* Button styling */
.about-mary__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #00BFE1;
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 500;
  font-size: 1.5rem;
  margin-top: 1.5rem;
  transition: background-color 0.3s ease;
}

.about-mary__button:hover {
  background-color: #3b8edc;
}

.about-mary__button-arrow {
  font-size: 1.25rem;
  line-height: 1;
}

/* Media wrapper */
.about-mary__image-wrapper {
  padding: 1rem 2rem;
  text-align: center;
  width: 45%;
}

/* Image styling */
.about-mary__plain-image {
  width: 100%;
  height: auto;
  max-width: 500px;
  border-radius: 0.75rem;
  object-fit: cover;
}

/* Video styling */
.about-mary__video {
  width: 100%;
  height: auto;
  max-width: 500px;
  border-radius: 0.75rem;
  object-fit: cover;
}

/* Caption text */
.about-mary__image-text {
  margin-top: 1rem;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #3c4a57;
  text-align: left;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
  .about-mary__row{
    flex-direction: column!important;
  }
  .about-mary__row--reverse {
    flex-direction: column-reverse!important;
  }
  .about-mary__text,
  .about-mary__image-wrapper {
    width: 100%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  .about-mary__video {
    width: 330px;
    height: 330px;
  }
}