/*!****************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/shared/css/reset.css ***!
  \****************************************************************************/
/*
 * https://garden.bradwoods.io/notes/css/reset
 */

*,
*::before,
*::after {
  /* Use a more intuitive box-sizing model */
  box-sizing: border-box;
  /* https://www.youtube.com/watch?v=cH8VbLM1958 */
  min-width: 0;
  /* Remove all margins and padding */
  margin: 0;
  padding: 0;
}

/* Only show focus outline when the user is tabbing (not when clicking) */
/* Except for input and textarea */
*:focus:not(:is(input, textarea)) {
  outline: none;
}

*:focus-visible {
  outline: 1px solid blue;
}

html {
  /* Allow percentage-based heights */
  /* Setting width: 100% isn't required because it is a default for block-level elements (html and body are block level) */
  height: 100%;

  /* Sets font-size to 10px. 
  Percent units are used to ensure font will scale if user has a custom font-size browser setting (for ally).
  Using 10px as the base to make it easy to set font sizes in elements. Example: for 16px, use 1.6rem, for 32px, use 3.2rem, ...  */
  /* Prevent the browser from synthesizing missing typefaces */
  font-synthesis: none;
  font-smooth: always;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
  /* Prevent mobile browsers increasing font-size */
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body {
  height: 100%;

  /* Prevent the rubber band effect when the user scrolls to the top or bottom of the page (WebKit only) */
  overscroll-behavior: none;

  /* UI controls color (example: range input) */
  accent-color: black;

  /* Because overscroll-behavior: none only works on WebKit, a background color is set that will show when overscroll occurs  */
  background: white;
}

p {
  /* Prevents orphans (ensures the final line of text has at least two words). */
  text-wrap: pretty;
  /* Avoid text overflow */
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  /* Stronger effect than 'pretty'. Attempts to make each line of text the same length */
  text-wrap: balance;
}

strong {
  overflow-wrap: break-word;
}

/* Remove unintuitive behaviour such as gaps around media elements.  */
img,
picture,
video,
canvas,
svg,
iframe {
  display: block;
}

input,
textarea,
button,
button:disabled {
  font: inherit;
  color: inherit;
  border: none;
  border-radius: 0;
  background: none;
}

fieldset {
  border: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

/*!****************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/shared/css/utils.css ***!
  \****************************************************************************/
.hidden {
  display: none;
}

.hide-text {
  text-indent: 200%;
  overflow: hidden;
  color: transparent;
}

.no-wrap {
  white-space: nowrap;
}

.contain-img {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

/* Font Size */
.text-center {
  text-align: center;
}

/*
 * Mobile Font Sizes
 */
.fs-14 {
  font-size: 14px;
}
.fs-18 {
  font-size: 18px;
}

/* 
 * Laptop Font Sizes
 */
@media (min-width: 1024px) and (min-height: 600px) {
  .lt-fs-26 {
    font-size: 26px;
  }
}

/* 
 * Desktop Font Sizes
 */
@media (min-width: 1440px) and (min-height: 1200px) {
  .dt-fs-32 {
    font-size: 32px;
  }
  .dt-fs-48 {
    font-size: 48px;
  }
}

/* Font Weight */
.fw-100 {
  font-weight: 100;
}
.fw-200 {
  font-weight: 200;
}
.fw-300 {
  font-weight: 300;
}
.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
.fw-800 {
  font-weight: 800;
}
.fw-900 {
  font-weight: 900;
}

.f-i {
  font-style: italic;
}

/*!*****************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/shared/css/dialog.css ***!
  \*****************************************************************************/
/*
 * Dialog
 */

dialog {
  background-color: #18253d;
  border: 2px solid black;
  border-radius: 8px;
  text-align: left;
  margin: auto;
  padding: 1rem;
  color: white;
}

dialog[open] {
  max-width: min(60rem, 100vw);
  font-size: 1.3rem;

  display: flex;
  flex-direction: column;
  gap: 1rem;
}

dialog button {
  cursor: pointer;
  font-size: 1.3rem;
}

dialog button.top {
  align-self: flex-end;
  background-color: black;
  border: none;
  border-radius: 100%;
  width: 2rem;
  box-shadow: 0px 0px 8px #0000006b;
  line-height: 2rem;
  height: 2rem;
  font-weight: bold;
  text-indent: -2px;
  padding: 0;
}

dialog button.bottom {
  align-self: center;
  width: 15rem;
  background-color: black;
  border: none;
  padding: 1rem;
  border-radius: 30px;
  color: white;
}

dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.8);
}

dialog h1,
dialog h2,
dialog h3,
dialog h4,
dialog p {
  margin-bottom: 1rem;
  word-wrap: break-word;
}

/*!********************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/templates/christmas_v1/css/fonts.css ***!
  \********************************************************************************************/
:root {
  font-family: Inter, sans-serif;
  font-feature-settings:
    "liga" 1,
    "calt" 1; /* fix for Chrome */
}
@supports (font-variation-settings: normal) {
  :root {
    font-family: InterVariable, sans-serif;
  }
}

/*!******************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/templates/christmas_v1/css/cta.css ***!
  \******************************************************************************************/
.cta {
  background-image: url(0258841193d85f212b1a.png?as=webp&w=500);
  background-size: contain;
  background-repeat: no-repeat;

  width: 180px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.cta__text {
  font-size: 16px;
  font-weight: 900;
}

/* 
 * Laptop
 */
@media (min-width: 1024px) and (min-height: 600px) {
  .cta {
    width: 308px;
    height: 119px;
  }

  .cta__text {
    font-size: 30px;
  }
}

/* 
 * Desktop 
 */
@media (min-width: 1440px) and (min-height: 1200px) {
  .cta {
    width: 415px;
    height: 160px;
  }

  .cta__text {
    font-size: 40px;
  }
}

/*!*************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/templates/christmas_v1/css/extra-list.css ***!
  \*************************************************************************************************/
.extra-list {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  scroll-behavior: smooth;
  scrollbar-width: none;
  width: 285px;
  margin-top: 20px;
}

.extra {
  flex: 0 0 auto;
  scroll-snap-align: center;
}

.bullets {
  display: flex;
  flex-direction: row;
  gap: 0.1rem;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.bullets__button {
  cursor: pointer;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bullets__bullet {
  width: 7px;
  height: 7px;
  background-color: white;
  border-radius: 100%;
}

/* 
 * Laptop
 */
@media (min-width: 1024px) and (min-height: 600px) {
  .extra-list {
    width: initial;
    gap: 60px;
    margin-top: 25px;
  }
  .bullets {
    display: none;
  }
}

/* 
 * Desktop 
 */
@media (min-width: 1440px) and (min-height: 1200px) {
  .extra-list {
    margin-top: 55px;
  }
}

/*!********************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/templates/christmas_v1/css/extra.css ***!
  \********************************************************************************************/
.extra__link {
  width: 285px;
  height: 158px;
  display: block;
}

.extra__img {
  width: 100%;
  height: 100%;
  border-radius: 23px;
}

/* 
 * Laptop
 */
@media (min-width: 1500px) and (min-height: 600px) {
  .extra__link {
    width: 430px;
    height: 240px;
    display: block;
  }
}

/* 
 * Desktop 
 */
@media (min-width: 1900px) and (min-height: 1200px) {
  .extra__link {
    width: 560px;
    height: 310px;
    display: block;
  }
}

/*!**************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/templates/christmas_v1/css/footer-eeep.css ***!
  \**************************************************************************************************/
.eeep {
  background-color: var(--theme-footer-background-color);
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 22px;
}

.eeep__logo {
  height: 50px;
  width: 50px;
  flex-shrink: 0;
  background-image: url(5f58e6199ab286689aac.png?as=webp);
  background-repeat: no-repeat;
  background-size: cover;
}

.eeep__disclaimer {
  font-size: 14px;
}

/* Show full disclaimer text only when it fits */
.eeep__disclaimer--full {
  display: none;
}

@media (min-width: 720px) {
  .eeep__disclaimer {
    text-align: center;
  }
  .eeep__disclaimer--full {
    display: initial;
  }
}

/* Desktop EEEP Disclaimer */
@media (min-width: 1440px) and (min-height: 1200px) {
  .eeep__logo {
    width: 170px;
    height: 80px;
    background-size: contain;
  }

  .eeep__disclaimer {
    font-size: 19px;
  }
}

/*!***************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/templates/christmas_v1/css/footer-terms.css ***!
  \***************************************************************************************************/
.terms-and-apps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
}

.terms {
  font-size: 13px;
  align-self: flex-end;
  cursor: pointer;
}

.stores {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
}

.store {
  width: 20px;
  height: 20px;
}

.app-store {
  background-image: url(12d997093543c5f04226.png?as=webp);
}

.play-store {
  background-image: url(a76cfe10bb9515a30805.png?as=webp);
}

/* Desktop */
@media (min-width: 1440px) and (min-height: 1200px) {
  .terms {
    font-size: 19px;
  }
  .terms-and-apps {
    padding-top: 17px;
    padding-bottom: 17px;
  }
  .store {
    width: 38px;
    height: 38px;
  }
}

/*!*********************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/templates/christmas_v1/css/footer.css ***!
  \*********************************************************************************************/
footer {
  z-index: 1;
}
footer * {
  font-family: var(--theme-footer-font-family);
}

/*!*********************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/templates/christmas_v1/css/header.css ***!
  \*********************************************************************************************/
header {
  z-index: 1;
}

header nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

header .fonbet-logo {
  background-image: url(cbe7d5797d74f432f8e9.png?as=webp&w=500);
  background-size: contain;
  background-repeat: no-repeat;
  width: 156px;
  height: 29px;
  margin: 18px;
}

header .sign-in {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin: 9px 16px;
}

header .sign-in img {
  width: 26px;
  height: 26px;
}

/*!*************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/templates/christmas_v1/css/promo-list.css ***!
  \*************************************************************************************************/
.promo-list__wrapper {
  max-width: min(100%, 450px);
  position: relative;
}

.promo-list__prev,
.promo-list__next {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}

.promo-list__prev {
  left: calc(50% - 120px);
  background-image: url(ed9c43a555d12f94847b.png);
}

.promo-list__next {
  left: calc(50% + 90px);
  background-image: url(0424507f4c1ea1d5b910.png);
}

.promo-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow-x: hidden;
  max-width: min(100%, 450px);
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
}

.promo__wrapper {
  flex: 0 0 auto;
  scroll-snap-align: center;
}

/* 
 * Desktop 
 */
@media (min-width: 1440px) and (min-height: 1200px) {
  .promo-list,
  .promo-list__wrapper {
    max-width: min(100%, 1000px);
  }
}

/*!********************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/templates/christmas_v1/css/promo.css ***!
  \********************************************************************************************/
.promo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  color: #100051;

  padding-top: 3rem;

  position: relative;

  width: 180px;
  height: 240px;

  transition: transform 0.5s;
}

.promo__ball {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background-image: url(3dbf9394773ce0041f99.png?as=webp&w=500);
  background-size: contain;
  background-repeat: no-repeat;

  transition: transform 0.5s;
}

.promo__date {
  z-index: 1;
  font-size: 17px;
  font-weight: 900;
}

.promo__title {
  z-index: 1;
  font-size: 23px;
  font-weight: 900;
  max-width: 60%;
}

.promo__subtitle {
  z-index: 1;
  font-size: 13px;
  font-weight: 500;
  max-width: 60%;
}

.ball {
  width: 235px;
  height: 300px;
  transition: transform 0.5s;

  background-size: contain;
  background-repeat: no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
}

.pseudo .promo__ball {
  background-image: none !important;
}

/* Present ball */
.ball.date-now {
  background-image: url(3dbf9394773ce0041f99.png?as=webp&w=500);
  border: 1px solid green;
}

/* Past ball */
.date-now .promo__ball {
  background-image: url(3dbf9394773ce0041f99.png?as=webp&w=500);
}
.date-past .promo__ball {
  background-image: url(5f7798296386a7001637.png?as=webp&w=500);
}

.date-future .promo__ball {
  background-image: url(6878add42fd324cb3d7c.png?as=webp&w=500);
}

/* tranform shit  */
.promo__wrapper
  > .promo:not(.spotlight > .promo):not(.spotlight ~ .promo__wrapper > .promo) {
  transform-origin: center right;
}
.promo__wrapper:not(.spotlight) .promo {
  transform: scale(0.42);
}
.spotlight ~ .promo__wrapper > .promo {
  transform-origin: center left;
}

/* 
 * Laptop
 */
@media (min-width: 1024px) and (min-height: 600px) {
  .promo {
    width: 230px;
    height: 320px;
  }
}

/* 
 * Desktop 
 */
@media (min-width: 1440px) and (min-height: 1200px) {
  .promo {
    width: 530px;
    height: 730px;
  }
}

/*!********************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/templates/christmas_v1/css/utils.css ***!
  \********************************************************************************************/
.container {
  padding-left: 16px;
  padding-right: 16px;
}

/* Desktop container */
@media (min-width: 1440px) and (min-height: 1200px) {
  .container {
    padding-left: 55px;
    padding-right: 55px;
  }
}

@media (orientation: landscape) {
  .l-block {
    display: block;
  }
  .l-hidden {
    display: none;
  }
}

@media (orientation: portrait) {
  .p-hidden {
    display: none;
  }
}

/*
.block {
    display: block;
}


.hidden {
    display: none !important;
}
.bg-dim {
    background-color: rgba(0, 0, 0, 0.25);
}
.contain-img {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.cover-img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}




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

.flex {
    display: flex;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center; 
}
.justify-start {
    justify-content: start; 
}

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

.grid { 
    display: grid;
    grid-template-columns: repeat(12, [col-start] 1fr);
    gap: 1rem;
}

.col-12 {
    grid-column: col-start / span 12;
}



.grid {
    padding-left: 16px;
    padding-right: 16px;
}

@media (min-width: 1300px) {
    .grid {
       padding-left: 35px;
       padding-right: 35px;
    }
}

@media (min-width: 1920px) {
    .grid {
       padding-left: 75px;
       padding-right: 75px;
    }
}

@media (max-width: 359px) {
    #content.grid {
        padding-left: 0;
        padding-right: 0;
    }
}

.text-accent {
    color: var(--theme-color-accent);
}

.mt-05 {
    margin-top: 0.5em;
}
.mb-05 {
    margin-bottom:  0.5em;
}
.mt-1 {
    margin-top: 1em;
}
.mt-2 {
    margin-top: 2em;
}
.mb-1 {
    margin-bottom: 1em;
}
.mb-2 {
    margin-bottom: 2em;
}

@media (orientation: landscape) {
    .l-mb-2 {
        margin-bottom: 2em;
    }
    .l-mt-0 {
        margin-top: 0;
    }
}
*/

/*!****************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/webpack-string-replacer/Dist/Loader.js?{"rulesToApply_indexes":[0],"compilationIndex":0,"modulePath":"/home/runner/work/Calendar/Calendar/src/templates/christmas_v1/index.css"}!./src/templates/christmas_v1/index.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************************************/
body {
  background-color: black;
  color: white;
  min-height: 100%;
}

.christmas_v1 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-image: url(848178397e5b2bfe4765.png);
  min-height: 100%;
}

@media (min-width: 1024px) and (min-height: 600px) {
  .christmas_v1 {
    background-image: url(11395d10457dd8e86b8d.png);
  }
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem 0;
}

.page {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 1 auto;
}

.christmas_calendar {
  width: 270px;
  height: 105px;
  object-fit: contain;
  object-position: center;
}

/* 
 * Laptop
 */
@media (min-width: 1024px) and (min-height: 600px) {
  .christmas_calendar {
    width: 426px;
    height: 165px;
  }
}

/* 
 * Desktop 
 */
@media (min-width: 1440px) and (min-height: 1200px) {
  .christmas_calendar {
    width: 614px;
    height: 238px;
  }
}

