/** Shopify CDN: Minification failed

Line 404:28 Unexpected ","

**/
.countdown {
  position: relative;
  overflow: hidden;
}

.countdown--mobile-large {
  height: calc(100vh - 4rem);
}

.countdown--mobile-medium {
  height: calc(80vh - 4rem);
}

@media screen and (min-width: 750px) {
  .countdown--large {
    height: calc(100vh - 6.5rem);
  }

  .countdown--medium {
    height: calc(80vh - 6.5rem);
  }

  .countdown--small {
    height: calc(60vh - 6.5rem);
  }
}

.countdown--text-shadow {
  text-shadow: 0 0 20px var(--color-grey-dark);
}

.countdown__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.countdown__image--mobile {
  display: none;
}

@media screen and (max-width: 749px) {
  .countdown__image--desktop {
    display: none;
  }

  .countdown__image--mobile {
    display: block;
  }
}

.countdown__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.countdown__content {
  position: relative;
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  display: flex;
  height: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media screen and (min-width: 750px) {
  .countdown__content {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.countdown__content-centre {
  align-items: center;
}

.countdown__content-middle {
  justify-content: center;
}

.countdown__content-left {
  align-items: flex-start;
}

.countdown__content-right {
  align-items: flex-end;
}

.countdown__content-top {
  justify-content: flex-start;
}

.countdown__content-bottom {
  justify-content: flex-end;
}

.countdown__alignment {
  max-width: 44rem;
  text-align: center;
}

.countdown__alignment-left {
  text-align: left;
}

.countdown__alignment-center {
  text-align: center;
}

.countdown__alignment-right {
  text-align: right;
}

@media screen and (max-width: 749px) {
  .countdown__content-mobile-centre {
    align-items: center;
  }

  .countdown__content-mobile-middle {
    justify-content: center;
  }

  .countdown__content-mobile-left {
    align-items: flex-start;
  }

  .countdown__content-mobile-right {
    align-items: flex-end;
  }

  .countdown__content-mobile-top {
    justify-content: flex-start;
  }

  .countdown__content-mobile-bottom {
    justify-content: flex-end;
  }

  .countdown__alignment-mobile-left {
    text-align: left;
  }

  .countdown__alignment-mobile-center {
    text-align: center;
  }

  .countdown__alignment-mobile-right {
    text-align: right;
  }
}

.countdown__background {
  padding: 40px;
  border-radius: 10px;
}

.countdown__background-white {
  background-color: var(--color-white);
}

.countdown__background-purple {
  background-color: var(--color-dark-purple);
}

.countdown__background-green {
  background-color: var(--color-bright-green);
}

.countdown__background-none {
  padding: 0;
}

.countdown__text {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 26px;
}

@media screen and (min-width: 750px) {
  .countdown__text {
    margin-bottom: 16px;
  }
}

.countdown__text-2 {
  margin-top: 8px;
}

.countdown__heading {
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 800;
  line-height: 54px;
  color: #fff;
}

@media screen and (min-width: 750px) {
  .countdown__heading {
    font-size: 84px;
    line-height: 90px;
  }
}

@media screen and (min-width: 1280px) {
  .countdown__heading {
    font-size: 100px;
    line-height: 96px;
  }
}

.countdown__heading--white,
.countdown__text--white,
.countdown__reviews-text--white {
  color: #fff;
}

.countdown__heading--purple,
.countdown__text--purple,
.countdown__reviews-text--purple {
  color: var(--color-dark-purple);
}

.countdown__heading--blue,
.countdown__text--blue,
.countdown__reviews-text--blue {
  color: var(--color-bright-blue);
}

.countdown__links {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
  margin-right: 20px;
  margin-left: 20px;
}

@media screen and (min-width: 530px) {
  .countdown__links {
    gap: 0.8rem;
    justify-content: flex-start;
    margin-right: 0;
    margin-left: 0;
  }
}

.countdown__link {
  display: inline-block;
  width: 100%;
  margin-top: 16px;
  padding: 1rem 1.8rem 1.2rem;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  border-radius: 6px;
  text-shadow: none;
  transition-property: background-color, color;
  transition-duration: 0.15s;
  transition-timing-function: linear;
}

@media screen and (min-width: 750px) {
  .countdown__link {
    width: auto;
    margin-top: 24px;
  }
}

.countdown__link--white {
  background-color: var(--color-white);
  color: var(--color-dark-purple);
}

.countdown__link--white:hover {
  color: var(--color-bright-pink);
}

.countdown__link--purple {
  background-color: var(--color-dark-purple);
  color: var(--color-bright-blue);
}

.countdown__link--purple:hover {
  background-color: var(--color-light-purple);
  color: var(--color-bright-blue);
}

.countdown__link--green {
  background-color: var(--color-bright-green);
  color: var(--color-dark-purple);
}

.countdown__link--green:hover {
  background-color: var(--color-pale-green);
  color: var(--color-bright-pink);
}

.countdown__reviews {
  align-items: center;
  gap: 12px;
  justify-content: center;
  display: flex;
  margin-top: 24px;
}

@media screen and (min-width: 750px) {
  .countdown__reviews {
    justify-content: flex-start;
  }
}

.countdown__reviews-stars {
  align-items: center;
  gap: 4px;
  display: flex;
  color: #00f786;
}

.countdown__reviews-stars svg {
  width: 16px;
}

@media screen and (min-width: 750px) {
  .countdown__reviews-stars svg {
    width: 20px;
  }
}

.countdown__reviews-text p {
  margin-bottom: 0;
}

.countdown__reviews-text strong {
  font-weight: 600;
}

/* COUNTDOWN */

.countdown-timer {
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  display: flex;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  color: var(--color-white);
}

@media screen and (min-width: 750px) {
  .countdown-timer {
    justify-content: flex-start;
  }
}

.countdown-timer__title {
  width: 100%;
  font-size: 1em;
  margin-bottom: -8px
}

.countdown-timer__metric {
  font-size: 1.6em;
}

/* KLAVIYO */

.template-page-worldcup2026 .shopify-app-block,
.template-page-mailing-list .shopify-app-block {
	width: 100%;
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
	padding-top: 1.5rem;
  padding-right: 4rem;
  padding-left: 4rem;
}

.template-page-worldcup2026 .shopify-app-block .klaviyo-form,
.template-page-mailing-list .shopify-app-block .klaviyo-form {
  max-width: 500px;
  min-height: 88px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 1440px) {
  .template-page-worldcup2026 .shopify-app-block,
  .template-page-mailing-list .shopify-app-block {
    padding-right: 3em;
    padding-left: 3em;
  }
}

@media (max-width: 1024px) {,
  .template-page-worldcup2026 .shopify-app-block,
  .template-page-mailing-list .shopify-app-block {
	  padding-top: 0.5rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

@media (max-width: 440px) {
  .template-page-worldcup2026 .shopify-app-block,
  .template-page-mailing-list .shopify-app-block {
    padding-right: 1.5em;
    padding-left: 1.5em;
  }
}
