/* ====================================================================================

	Breakpoints

	Content widths.

	Unless device-based, breakpoints should be weirdly specific so they're easy to find and replace site-wide (e.g. prefer 1212px vs 1200px)

==================================================================================== */
:root {
  --break-sm: 768px;
  --break-smhdr: 960px;
  --break-md: 1212px;
  --break-mdhdr: 1368px;
  --break-lg: 1920px;
}

/* ======================================

	Banner

====================================== */
.cpo-promotion--banner {
  padding: var(--pad) 0;
  display: none !important;
  align-items: center;
  justify-content: center;
}
.cpo-promotion--banner.active {
  display: flex !important;
}

.site-banner-wrapper img {
  display: block;
}

/* ======================================

	Popup

====================================== */
.cpo-promotion--popup {
  position: fixed;
  display: grid;
  opacity: 0 !important;
  visibility: hidden !important;
  grid-template-columns: 14px 1fr 14px;
  grid-template-rows: 1fr 1fr 1fr;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  transition: 300ms opacity ease-in-out, 300ms visibility ease-in-out;
  will-change: opacity, visibility;
}
.cpo-promotion--popup .popup-overlay {
  grid-column: 1/span 3;
  grid-row: 1/span 3;
  background: rgba(0, 0, 0, 0.6);
}
.cpo-promotion--popup .popup-content {
  display: flex;
  max-width: 600px;
  width: 100%;
  align-items: center;
  grid-column: 2;
  grid-row: 2;
  background: white;
  transform: translate(0, -50px);
  padding: 32px 16px 0;
}
.cpo-promotion--popup.active {
  opacity: 1 !important;
  visibility: visible !important;
  transition: 300ms opacity ease-in-out, 300ms visibility ease-in-out;
  will-change: opacity, visibility;
}
.cpo-promotion--popup.active .popup-content {
  transition: 500ms transform ease-in-out;
  transform: translate(0, 0);
  will-change: transform;
  margin-left: auto;
  margin-right: auto;
}
.cpo-promotion--popup.closed {
  opacity: 0 !important;
  visibility: hidden !important;
  transition: 300ms opacity ease-in-out, 300ms visibility ease-in-out;
  will-change: opacity, visibility;
}
.cpo-promotion--popup.closed .popup-content {
  transition: 500ms transform ease-in-out;
  transform: translate(0, -50px);
  will-change: transform;
}
.cpo-promotion--popup .popup-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 47px;
  height: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  z-index: 101;
}
.cpo-promotion--popup .popup-close line {
  stroke: #414141;
}

@media (min-width: 768px) {
  .cpo-promotion--popup {
    grid-template-columns: 42px 1fr 42px;
  }
  .cpo-promotion--popup .popup-content {
    padding: 0 16px;
  }
}
@media (min-width: 1212px) {
  .cpo-promotion--popup {
    grid-template-columns: 70px 1fr 70px;
  }
  .cpo-promotion--popup .popup-content {
    padding: 0 16px;
    max-width: 1024px;
  }
}
/* ======================================

	Takeover

====================================== */
.cpo-promotion--takeover {
  display: none !important;
  position: relative;
  width: 100%;
  height: var(--vh100);
  max-height: var(--vh100);
  padding: 0 !important;
  overflow: hidden;
  will-change: max-height;
  transition: 500ms max-height ease-in-out;
}
.cpo-promotion--takeover.active {
  display: flex !important;
}
.cpo-promotion--takeover.closed {
  max-height: 0;
  will-change: max-height;
  transition: 500ms max-height ease-in-out;
}
.cpo-promotion--takeover.closed .takeover__close {
  top: -50px;
  transition: 300ms all ease-in-out;
}
.cpo-promotion--takeover .takeover__close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}
.cpo-promotion--takeover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  background: black;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 100%);
}
.cpo-promotion--takeover .container {
  z-index: 1;
}

@media (min-width: 1212px) {
  .cpo-promotion--takeover {
    height: calc(var(--vh100) - var(--header-ht));
    max-height: 519px;
  }
  .cpo-promotion--takeover a {
    margin-right: 26px;
  }
}

/*# sourceMappingURL=promotions.min.css.map */
