/** Shopify CDN: Minification failed

Line 7:0 Unexpected "`"
Line 264:0 Unexpected "`"

**/
```css
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.custom-banner {
  position: relative;
  overflow: hidden;
  width: 100%; 
  margin-top: 0px;
  box-sizing: border-box;
}

.banner-image {
  width: 100%;
  height: auto;
  display: block;
}

.overlay-header-text {
  margin-bottom: 15px;
}

.countdown-timer {
  display: flex;
  justify-content: flex-start;
  white-space: nowrap;
  gap: 20px;
  padding-top: 4px;
}

.countdown-timer.hidden {
  display: none;
}

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: left;
}

.email-input-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.9rem;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  width: 150%;
  max-width: 600px;
  box-sizing: border-box;
}

@media screen and (max-width: 899px) {
  .email-input-form {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    font-size: 0.6rem;
    margin-top: 10px;
    width: 100%;
    box-sizing: border-box;
  }

  .countdown-timer {
    display: flex;
    justify-content: flex-start;
    white-space: nowrap;
    gap: 20px;
    padding-top: 2px;
  }

  @supports not (-webkit-touch-callout: none) {
    .email-input-form {
      text-align: left;
    }
  }
}

@media (min-width: 1024px) {
  .custom-banner {
    height: 90vh;
  }

  .banner-image {
    height: 100%;
    object-fit: cover;
  }

  .overlay-header-text h1 {
    font-size: 3rem;
    margin-left: -3px;
  }

  .overlay-header-text p {
    font-size: 1.2rem;
  }

  .countdown-overlay.position-center {
    top: 50%;
    left: 50%;
    transform: translate(-48%, -50%);
  }

  .countdown-overlay.position-left {
    top: 50%;
    left: 110px;
    transform: translateY(-50%);
  }

  .countdown-overlay.position-right {
    top: 50%;
    right: 150px;
    transform: translateY(-50%);
  }

  .countdown-overlay.position-bottom {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .countdown-overlay.position-bottom-left {
    bottom: 8px;
    left: 10px;
    transform: translateX(10%);
  }

  .countdown-overlay {
    padding: 20px;
  }

  .number {
    font-size: 2.5rem;
  }

  .label {
    font-size: 1.16rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .custom-banner {
    height: 60vh;
  }

  .banner-image {
    height: 100%;
    object-fit: cover;
  }

  .overlay-header-text h1 {
    font-size: 2.5rem;
  }

  .overlay-header-text p {
    font-size: 1rem;
  }

  .countdown-overlay.position-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .countdown-overlay.position-left {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
  }

  .countdown-overlay.position-right {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }

  .countdown-overlay.position-bottom {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .number {
    font-size: 1.3rem;
  }

  .label {
    font-size: 0.55rem;
  }

  .text-button {
    font-size: 0.9rem;
    padding: 8px;
  }
}

@media (max-width: 767px) {
  .custom-banner {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .banner-image {
    height: auto;
    object-fit: cover;
  }

  .countdown-overlay.no-timer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 10px;
  }

  .overlay-header-text {
    margin-bottom: 10px;
  }

  .countdown-overlay.position-center {
    top: 50%;
    left: 52.5%;
    transform: translate(-50%, -50%);
  }

  .countdown-overlay.position-left {
    top: 50%;
    left: 110px;
    transform: translateY(-50%);
  }

  .countdown-overlay.position-right {
    top: 50%;
    right: 150px;
    transform: translateY(-50%);
  }

  .countdown-overlay.position-bottom {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
  }

  .countdown-overlay.position-bottom-left {
    bottom: 8px;
    left: 26%;
    transform: translateX(-40%);
  }
}

```
