@import "https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap";
@import "https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Red+Hat+Text:ital,wght@0,300..700;1,300..700&display=swap";

/* src/client/components/button/styles.scss */
.button {
  border: none;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
}
.button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

/* src/client/components/skip-to-main-content-button/styles.scss */
#skip-to-main {
  border-radius: 16px;
  background-color: #de3517;
  color: white;
  border: 1px solid black;
  box-sizing: border-box;
  padding: 8px 12px;
  position: absolute;
  top: -200px;
  left: 16px;
  z-index: 400;
  transition: top 0.1s ease-in-out;
}
#skip-to-main:focus {
  top: 16px;
}

/* src/client/components/async-image/styles.scss */
.async-image {
  width: 100%;
  display: flex;
  justify-content: center;
}
.async-image__loading-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f3f5f6;
  min-height: var(--min-height, 100px);
  min-width: var(--min-width);
  width: 100%;
}
.async-image__img {
  width: 100%;
  max-width: fit-content;
}
.async-image__img--not-loaded {
  display: none;
  max-width: unset;
}

/* src/client/components/sidebar/styles.scss */
@keyframes contentSlideInFromLeft {
  from {
    transform: translate(-100%);
  }
  to {
    transform: translate(0);
  }
}
@keyframes contentSlideInFromRight {
  from {
    transform: translate(100%);
  }
  to {
    transform: translate(0);
  }
}
@keyframes contentSlideOutToLeft {
  from {
    transform: translate(0);
  }
  to {
    transform: translate(-100%);
  }
}
@keyframes contentSlideOutToRight {
  from {
    transform: translate(0);
  }
  to {
    transform: translate(100%);
  }
}
.sidebar__content {
  width: 100%;
  max-width: 500px;
  position: fixed;
  z-index: 2000;
  top: 0;
  bottom: 0;
  overflow-y: auto;
}
.sidebar__content--left {
  left: 0;
}
.sidebar__content--left[data-state=open] {
  animation: contentSlideInFromLeft 200ms ease-out;
}
.sidebar__content--left[data-state=closed] {
  animation: contentSlideOutToLeft 200ms ease-out;
}
.sidebar__content--right {
  right: 0;
}
.sidebar__content--right[data-state=open] {
  animation: contentSlideInFromRight 200ms ease-out;
}
.sidebar__content--right[data-state=closed] {
  animation: contentSlideOutToRight 200ms ease-out;
}
.sidebar__overlay {
  background-color: grey;
  opacity: 0.25;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

/* src/client/components/link/styles.scss */
.link {
  font-family: "Red Hat Text", sans-serif;
  text-decoration: none;
}
.link:hover,
.link:hover > * {
  text-decoration: underline;
}

/* src/client/components/link-group-showcase/styles.scss */
.link-group-showcase {
  display: flex;
  padding: 16px 24px;
  flex-direction: column;
  gap: 20px;
  align-self: stretch;
}
.link-group-showcase--blue {
  background-color: rgb(21, 56, 107);
  background-image:
    linear-gradient(
      to bottom,
      rgb(10, 34, 57) 0%,
      rgb(44, 87, 120) 100%);
}
.link-group-showcase--yellow {
  background:
    linear-gradient(
      180deg,
      #f8a731 0%,
      50%,
      #fac931 100%);
}
.link-group-showcase__title-display {
  color: var(--title-color);
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #2b3037;
}
.link-group-showcase__title-display--white {
  color: white;
}
.link-group-showcase__title-link {
  display: flex;
  align-items: center;
  column-gap: 4px;
  text-decoration: none;
  color: #2b3037;
}
.link-group-showcase__title-link:hover {
  text-decoration: underline;
}
.link-group-showcase__links {
  display: flex;
  gap: 8px;
}
.link-group-showcase__link-group {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  width: 102px;
  align-items: center;
  color: #2b3037;
}
.link-group-showcase__link-icon {
  background-color: white;
  width: 82px;
  height: 82px;
  border-radius: 100%;
  overflow: hidden;
  display: flex;
}
.link-group-showcase__link-icon > *:last-child {
  min-height: 82px;
}
.link-group-showcase__link-icon--shadow {
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.2);
}
.link-group-showcase__link-icon--red {
  background-color: #c74a27;
}
.link-group-showcase__link-icon--black {
  background-color: #1f1f1f;
}
.link-group-showcase__link-display {
  color: #2b3037;
  text-align: center;
  font-family: "Red Hat Text", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
}
.link-group-showcase__link-display--white {
  color: white;
}

/* src/client/icons/e-instants/styles.scss */
.e-instants-icon__cls-1 {
  fill: none;
  stroke: #000;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 8.5px;
}
.e-instants-icon__cls-2 {
  font-family: Obviously-Medi, Obviously;
  font-size: 46.87px;
}
.e-instants-icon__cls-3 {
  fill: #fff;
}
.e-instants-icon__cls-4 {
  letter-spacing: 0em;
}
.e-instants-icon__cls-5 {
  letter-spacing: -0.07em;
}
.e-instants-icon__cls-6 {
  letter-spacing: -0.01em;
}

/* src/client/icons/draw-games/styles.scss */
.draw-games-icon__cls-1 {
  fill: none;
  stroke: #000;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 8.5px;
}
.draw-games-icon__cls-2 {
  fill: #fff;
}

/* src/client/icons/progressive-jackpots/styles.scss */
.progressive-jackpots-icon__cls-1 {
  fill: none;
  stroke: #000;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 8.5px;
}
.progressive-jackpots-icon__cls-2 {
  font-size: 87.17px;
}
.progressive-jackpots-icon__cls-2,
.progressive-jackpots-icon__cls-3 {
  font-family: Obviously-Medi, Obviously;
}
.progressive-jackpots-icon__cls-3 {
  font-size: 50.49px;
}
.progressive-jackpots-icon__cls-4 {
  fill: #fff;
}

/* src/client/icons/scratch-games/styles.scss */
.scratch-games-icon {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 8.5px;
}

/* src/client/icons/keno/styles.scss */
.keno-icon {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 8.5px;
}

/* src/client/icons/fast-play/styles.scss */
.fast-play-icon {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 8.5px;
}

/* src/client/components/navigation-games/styles.scss */
.game-nav-stacked {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  background-color: white;
}
@media screen and (max-width: 1008px) {
  .game-nav-stacked {
    padding-bottom: 40px;
  }
}

/* src/client/components/navigation-category/styles.scss */
.navigation-category {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 24px;
  box-sizing: border-box;
  background-color: white;
}
@media screen and (min-width: 1008px) {
  .navigation-category {
    width: max-content;
  }
}
.navigation-category__standalone-link {
  font-size: 24px;
  font-family: "Red Hat Text", sans-serif;
  font-weight: 500;
  text-decoration: none;
  color: #000000;
}
.navigation-category__header {
  color: #de3517;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 18px;
  font-style: normal;
}
@media screen and (min-width: 1008px) {
  .navigation-category__header {
    display: none;
    visibility: hidden;
  }
}
.navigation-category__links {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.navigation-category__link-li {
  margin: 10px 0;
}
@media screen and (min-width: 1008px) {
  .navigation-category__link-li {
    margin: 20px 0;
  }
}
.navigation-category__link {
  padding: 10px 8px;
  padding-left: 0;
  position: relative;
  font-size: 24px;
  font-family: "Red Hat Text", sans-serif;
  font-weight: 500;
  text-decoration: none;
  color: #000000;
}
@media screen and (min-width: 1008px) {
  .navigation-category__link {
    font-size: 16px;
  }
}

/* src/client/components/navigation/styles.scss */
#mobile-navigation__close-button {
  cursor: pointer;
  background-color: transparent;
  border-radius: 100%;
  display: flex;
  padding: 4px;
}
#mobile-navigation__close-button:hover {
  background-color: rgb(216.75, 216.75, 216.75);
}
.mobile-navigation {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: white;
  min-height: 100vh;
  padding-bottom: 40px;
}
@media screen and (min-width: 1008px) {
  .mobile-navigation {
    display: none;
    visibility: hidden;
  }
}
.mobile-navigation__categories {
  font-family: "Red Hat Text", sans-serif;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.mobile-navigation__content-header {
  font-family: "Montserrat", sans-serif;
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding: 16px;
  box-sizing: border-box;
  width: 100%;
}
.desktop-navigation {
  display: none;
  visibility: hidden;
  column-gap: 50px;
}
@media screen and (min-width: 1008px) {
  .desktop-navigation {
    display: flex;
    visibility: visible;
  }
}
.desktop-navigation__category__header {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  transition: transform 0.2s ease-out;
}
.desktop-navigation__category__header:hover {
  transform: scale(1.1);
}
.desktop-navigation__category__content {
  font-family: "Red Hat Text", sans-serif;
  box-shadow: 0px 3px 25px 0px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  top: 40px;
  z-index: 1;
  position: absolute;
  border-radius: 15px;
}
.desktop-navigation__standalone-link {
  font-family: "Montserrat", sans-serif;
  color: #2b3037;
  font-weight: 600;
  transition: transform 0.2s ease-out;
}
.desktop-navigation__standalone-link:hover {
  transform: scale(1.1);
}

/* src/client/components/collapsible/styles.scss */
@keyframes slideDown {
  from {
    height: 0;
    opacity: 0;
  }
  to {
    height: var(--radix-collapsible-content-height);
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 1;
    height: var(--radix-collapsible-content-height);
  }
  to {
    height: 0;
    opacity: 0;
  }
}
.collapsible {
  position: relative;
}
.collapsible__header-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  column-gap: 6px;
}
.collapsible__trigger {
  display: flex;
  align-items: center;
  border: none;
  background-color: transparent;
  transition: 0.2s transform ease-in-out;
  transform: rotate(0);
  transform-origin: 50% 45%;
  cursor: pointer;
}
.collapsible__trigger--is-open {
  transform: rotate(-180deg);
}
.collapsible__content {
  overflow: hidden;
  transform-origin: top center;
}
.collapsible__content[data-state=open] {
  animation: slideDown 300ms ease-in-out;
}
.collapsible__content[data-state=closed] {
  animation: slideUp 300ms ease-in-out;
}

/* src/client/components/navigation-category-horizontal/styles.scss */
.horizontal-navigation-category {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  width: 100%;
  white-space: nowrap;
  text-decoration: none;
  font-family: "Red Hat Text", sans-serif;
  font-size: 14px;
  font-weight: 700;
  background-color: #f6f6f6;
  overflow-x: auto;
}
@media screen and (min-width: 1200px) {
  .horizontal-navigation-category {
    overflow-x: visible;
    margin-left: -16px;
  }
}
.horizontal-navigation-category__links {
  display: flex;
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding: 0;
  list-style-type: none;
}
.horizontal-navigation-category__link-li {
  padding: 17px 16px;
}
.horizontal-navigation-category__link {
  text-decoration: none;
  color: #003552;
}

/* src/client/components/cms-text/styles.scss */
.cms-text {
  font-family: "Red Hat Text", sans-serif;
  color: var(--text-color, black);
}
.cms-text__embedded-image {
  justify-content: center;
  margin: 8px auto;
}
.cms-text__embedded-image img {
  width: auto;
  max-width: 100%;
}
.cms-text__paragraph {
  color: var(--text-color, black);
}
.cms-text__paragraph:not(:first-child) {
  margin-top: 12px;
}
.cms-text__heading {
  font-family: "Montserrat", sans-serif;
  color: var(--text-color, black);
}
.cms-text__heading:first-child {
  margin-top: 0;
}
.cms-text__inline-link {
  color: rgb(237, 28, 36);
  font-weight: bold;
}
.cms-text__inline-content {
  display: inline;
}
.cms-text__inline-content--bold {
  font-weight: bold;
}
.cms-text__inline-content--italic {
  font-style: italic;
}
.cms-text__inline-content--underline {
  text-decoration: underline;
}

/* src/client/components/alert-banner/styles.scss */
@keyframes level-up {
  to {
    z-index: 0;
  }
}
.alert-banner {
  width: 100%;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.15);
  background-color: #de3517;
  height: 0;
  opacity: 0;
  position: relative;
  top: -500px;
  top: var(--top-start);
  z-index: -1;
  transition:
    height 0.3s ease,
    opacity 0.3s ease 0.2s,
    top 0.3s ease;
}
.alert-banner--is-visible {
  height: var(--alert-content-height);
  opacity: 1;
  top: 0;
  animation: level-up 0.1s linear 0.3s forwards;
}
.alert-banner--initial-animation-complete {
  transition: none;
}
.alert-banner__content {
  padding: 16px 48px;
  margin: 0 auto;
  position: relative;
  max-width: 1200px;
  box-sizing: border-box;
  text-align: center;
  color: white;
}
.alert-banner__close-button {
  position: absolute;
  top: 16px;
  right: 16px;
  border-radius: 50px;
  display: flex;
}
.alert-banner__close-button:hover {
  background-color: rgba(255, 255, 255, 0.15);
}
.alert-banner__title {
  color: white;
  text-align: center;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  display: inline-block;
  width: 100%;
  margin-bottom: 8px;
}

/* src/client/components/dot-notification/styles.scss */
.dot-notification {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  border-radius: 50%;
  background-color: #d84127;
  color: white;
  min-width: 20px;
  min-height: 20px;
  font-family: "Red Hat Text", sans-serif;
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
}
.dot-notification--no-count {
  min-width: 12px;
  min-height: 12px;
}

/* src/client/components/button-sign-in/styles.scss */
.sign-in-button {
  background-color: #de3517;
  color: white;
  text-align: center;
  border-radius: 25px;
  padding: 12px 20px;
  font-family: "Red Hat Text", sans-serif;
  font-size: 14px;
  font-weight: bold;
  width: 100%;
  min-width: 103px;
}

/* src/client/components/button-register/styles.scss */
.register-button {
  background-color: white;
  color: #de3517;
  text-align: center;
  border: 2px solid #de3517;
  border-radius: 25px;
  padding: 12px 20px;
  font-family: "Red Hat Text", sans-serif;
  font-size: 14px;
  font-weight: bold;
  width: 100%;
}

/* src/client/components/auth-buttons/styles.scss */
.auth-buttons {
  display: flex;
  width: 100%;
  gap: 16px;
  justify-content: center;
}

/* src/client/components/account-menu/styles.scss */
.account-menu {
  position: relative;
}
.account-menu__account-link {
  padding: 2px;
  border-radius: 4px;
}
.account-menu__account-link:hover {
  background-color: hsl(0, 0%, 115%);
}
.account-menu__auth-buttons-container {
  background-color: rgb(21, 56, 107);
  background-image:
    linear-gradient(
      to bottom,
      rgb(10, 34, 57) 0%,
      rgb(44, 87, 120) 100%);
  z-index: 1;
  min-width: 230px;
  padding: 8px;
  border-radius: 5px;
  margin: 0;
  box-shadow: 0px 3px 25px 0px rgba(0, 0, 0, 0.15);
  position: absolute;
  right: 0;
  background: white;
}
.account-menu__button {
  width: 100%;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
}
.account-menu__button:hover {
  text-decoration: underline;
}
.account-menu__sign-out-button {
  font-family: "Red Hat Text", sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 25px;
  border: 1px solid #ffffff;
}
.account-menu__divider {
  border-top: 0.5px solid #ffffff;
}
.account-menu__list {
  list-style-type: none;
  position: relative;
  left: -8px;
  width: calc(100% + 16px);
  box-sizing: border-box;
  margin: 0;
  padding: 0 8px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.account-menu__menu-container {
  background-color: rgb(21, 56, 107);
  background-image:
    linear-gradient(
      to bottom,
      rgb(10, 34, 57) 0%,
      rgb(44, 87, 120) 100%);
  z-index: 1;
  min-width: 230px;
  padding: 8px;
  border-radius: 5px;
  margin: 0;
  box-shadow: 0px 3px 25px 0px rgba(0, 0, 0, 0.15);
  position: absolute;
  right: 0;
  padding-bottom: 0;
}
.account-menu__item {
  padding: 16px 0;
  border-top: 0.5px solid #ffffff;
}
.account-menu__player-container {
  position: relative;
}
.account-menu__player-notification {
  position: absolute;
  top: -15px;
  right: -5px;
}
.account-menu__player-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: white;
  padding-top: 8px;
  padding-bottom: 16px;
}
.account-menu__player-balance {
  font-family: "Red Hat Text", sans-serif;
  font-size: 14px;
}
.account-menu__player-name {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: bold;
}

/* src/client/components/menu-bar/styles.scss */
.menu-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  width: 100%;
  box-sizing: border-box;
  padding: 16px;
  position: relative;
  z-index: 100;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.menu-bar__content {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
.menu-bar__logo {
  width: 124px;
  height: 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.menu-bar__general {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.menu-bar__player {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.menu-bar__player > * {
  box-sizing: border-box;
}
.menu-bar__cart-container {
  position: relative;
  padding: 5px;
  border-radius: 4px;
}
.menu-bar__cart-container:hover {
  background-color: hsl(0, 0%, 115%);
}
.menu-bar__cart-notification {
  position: absolute;
  top: -10px;
  right: -10px;
}
.menu-bar__mobile-nav-button {
  cursor: pointer;
  background-color: transparent;
  border-radius: 2px;
  display: flex;
  padding: 4px;
}
.menu-bar__mobile-nav-button:hover {
  background-color: hsl(0, 0%, 115%);
}
@media screen and (min-width: 1008px) {
  .menu-bar__mobile-nav-button {
    display: none;
    visibility: hidden;
  }
}

/* src/client/components/breadcrumb/styles.scss */
.breadcrumb {
  display: flex;
  flex-direction: row;
  color: black;
  font-family: "Red Hat Text", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-style: italic;
  font-weight: bold;
  padding: 8px 0;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media screen and (max-width: 1230px) {
  .breadcrumb {
    padding-left: 16px;
  }
}
.breadcrumb__arrow {
  font-family: "Red Hat Text", sans-serif;
  font-weight: normal;
  font-style: italic;
  margin-left: 5px;
  margin-right: 5px;
}
.breadcrumb__arrow--white {
  color: white;
}
.breadcrumb__current-page {
  font-style: italic;
  color: rgb(15, 24, 33);
  font-family: "Red Hat Text", sans-serif;
  font-size: 12px;
  font-style: italic;
  font-weight: normal;
  height: 16px;
  letter-spacing: -0.25px;
}
.breadcrumb__current-page--white {
  color: white;
}
.breadcrumb__link--white {
  color: white;
}
.breadcrumb__link--white:visited {
  color: white;
}
.breadcrumb__link--black {
  color: black;
}
.breadcrumb__link--black:visited {
  color: black;
}

/* src/client/components/page/styles.scss */
.page {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 100px;
  box-sizing: border-box;
  max-width: 1200px;
  outline: none;
  min-height: 50vh;
}
.page__title {
  text-align: center;
  margin: 24px 0;
  font-size: 30px;
  color: black;
  font-family: "Montserrat", sans-serif;
}

/* src/client/components/page-maintenance/styles.scss */
.maintenance-page {
  display: flex;
  text-align: center;
  font-family: "Red Hat Text", sans-serif;
  justify-content: center;
  margin-top: 200px;
}
.maintenance-page h1 {
  font-size: 40px;
  margin: 0;
  margin-bottom: 12px;
}
.maintenance-page__info {
  border-radius: 100%;
  background-color: #dddfe1;
  height: 320px;
  width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 8px;
}

/* src/client/components/modal/styles.scss */
.modal__default-close-button {
  position: absolute;
  background-color: transparent;
  border: none;
  border-radius: 100%;
  right: 10px;
  top: 10px;
  cursor: pointer;
  padding: 4px;
  display: flex;
}
.modal__default-close-button:hover {
  background-color: rgb(216.75, 216.75, 216.75);
}
.modal__content {
  width: 100%;
  max-width: 600px;
  border-radius: 4px;
  box-shadow: 0px 3px 25px 0px rgba(0, 0, 0, 0.15);
  background-color: white;
  box-sizing: border-box;
  overflow-y: auto;
  position: fixed;
  z-index: 3000;
  top: 50%;
  left: 50%;
  max-height: 100vh;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 600px) {
  .modal__content--mobile-fullscreen {
    transform: translate(0, 0);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
  }
}
.modal__overlay {
  background-color: grey;
  opacity: 0.25;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.modal-trigger-button {
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
}

/* src/client/components/cms-cta/styles.scss */
.cta {
  display: inline-block;
  width: fit-content;
  font-family: "Red Hat Text", sans-serif;
  border-radius: 5px;
  box-sizing: border-box;
  padding: 12px 16px;
}
.cta--primary {
  border-radius: 25px;
  padding: 12px;
  font-family: "Red Hat Text", sans-serif;
  font-weight: bold;
  text-align: center;
  background-color: #de3517;
  color: white;
}
.cta--secondary {
  border-radius: 25px;
  padding: 12px;
  font-family: "Red Hat Text", sans-serif;
  font-weight: bold;
  text-align: center;
  background-color: white;
  color: #de3517;
  border: 1px solid #de3517;
}

/* src/client/components/marketing-modal/styles.scss */
.marketing-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: var(--modal-bkg-color, #ffffff);
  box-sizing: border-box;
  padding: 12px;
  gap: 12px;
  padding-bottom: 30px;
}
.marketing-modal__title {
  margin: 0;
  color: var(--modal-title-color, #000000);
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
}

/* src/client/icons/youtube/styles.scss */
.youtube-path {
  fill: #fff;
  stroke: #231f20;
  stroke-miterlimit: 10;
}
.youtube-path:hover {
  fill: rgb(216.75, 216.75, 216.75);
}

/* src/client/icons/facebook/styles.scss */
.facebook-icon {
  fill: #fff;
}
.facebook-icon:hover {
  fill: rgb(216.75, 216.75, 216.75);
}

/* src/client/icons/instagram/styles.scss */
.instagram-icon {
  fill: #fff;
  fill-rule: evenodd;
}
.instagram-icon:hover {
  fill: rgb(216.75, 216.75, 216.75);
}

/* src/client/icons/linkedin/styles.scss */
.linkedin-icon {
  fill: #fff;
  fill-rule: evenodd;
}
.linkedin-icon:hover {
  fill: rgb(216.75, 216.75, 216.75);
}

/* src/client/components/footer/styles.scss */
.footer {
  color: white;
  background-color: rgb(20, 20, 20);
  background-repeat: repeat-x;
  background-position: bottom;
  font-family: "Red Hat Text", sans-serif;
  box-sizing: border-box;
  padding: 50px 16px 16px 16px;
  width: 100%;
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.footer__column {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media screen and (min-width: 1008px) {
  .footer__column {
    gap: 10px;
  }
}
.footer__copyright {
  font-size: 12px;
  text-align: center;
  display: inline-block;
}
@media screen and (min-width: 1008px) {
  .footer__copyright {
    font-size: 14px;
  }
}
.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media screen and (min-width: 1008px) {
  .footer-contact-block {
    gap: 20px;
  }
}
.footer-contact-block__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin: 0;
  font-size: 14px;
  color: white;
}
.footer-contact-block__group {
  gap: 6px;
  display: flex;
  flex-direction: column;
  color: white;
}
.footer-contact-block__group-title {
  color: #ebac11;
}
@media screen and (min-width: 1008px) {
  .footer-contact-block__group-title {
    color: white;
  }
}
.footer-contact-block__link {
  color: white;
}
.footer-desktop {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  width: 100%;
  max-width: 1200px;
}
.footer-desktop__column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-icon-group {
  display: flex;
  gap: 24px;
  flex-direction: column;
  justify-content: center;
  max-width: 170px;
}
.footer-icon-group__icons {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media screen and (min-width: 1008px) {
  .footer-link-group {
    gap: 20px;
  }
}
.footer-link-group__title {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  font-size: 14px;
  color: white;
}
.footer-link-group__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style-type: none;
  font-size: 14px;
  font-family: "Red Hat Text", sans-serif;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 1008px) {
  .footer-link-group__list {
    line-height: 2.5;
  }
}
.footer-link-group__link {
  color: white;
}
.footer-link-group__standalone-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media screen and (min-width: 1008px) {
  .footer-link-group__standalone-links {
    gap: 20px;
  }
}
.footer-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-mobile__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}
.footer-mobile__column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* src/client/components/input-label/styles.scss */
.input-label {
  font-family: "Red Hat Text", sans-serif;
  font-size: 16px;
}
.input-label--error {
  color: red;
}

/* src/client/components/input-error/styles.scss */
.input-error {
  font-family: "Red Hat Text", sans-serif;
  font-size: 14px;
  color: red;
  font-style: italic;
}

/* src/client/components/input-select/styles.scss */
.input-select {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.input-select__chevron {
  position: absolute;
  right: 8px;
  top: 8px;
  pointer-events: none;
  cursor: pointer;
}
.input-select__input {
  border-radius: 4px;
  padding: 8px 12px;
  padding-right: 32px;
  color: black;
  cursor: pointer;
  appearance: none;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 16px;
  border: none;
}
.input-select__input--no-border {
  border: none;
}
.input-select__input--error {
  border: 1px solid red;
}
.input-select select:required:invalid {
  color: #757575;
  font-style: italic;
}
.input-select__input-wrapper {
  position: relative;
  width: 100%;
}
.input-select option[disabled] {
  display: none;
}

/* src/client/components/cms-preview/styles.scss */
.cms-preview {
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-sizing: border-box;
  padding: 20px;
  background-color: white;
}
.cms-preview > * {
  max-width: 300px;
}
.cms-preview__disclaimer {
  font-size: 10px;
  font-family: "Red Hat Text", sans-serif;
  color: rgb(76.5, 76.5, 76.5);
}

/* src/client/components/app/styles.scss */
body {
  margin: 0;
  width: 100%;
  height: 100%;
}
h1 {
  color: black;
}
html {
  background-color: #ececef;
}

/* src/client/components/page-not-found/styles.scss */
.page-not-found {
  display: flex;
  font-family: "Red Hat Text", sans-serif;
  justify-content: center;
  margin-top: 200px;
}
.page-not-found h1 {
  font-size: 40px;
  margin: 0;
  margin-bottom: 12px;
}
.page-not-found__info {
  border-radius: 100%;
  background-color: #dddfe1;
  height: 320px;
  width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 8px;
}
.page-not-found__home-link {
  color: #c2171d;
  font-weight: bold;
}

/* src/client/components/pending-animation/styles.scss */
.pending-animation {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pending-animation--left {
  align-items: flex-start;
}
.pending-animation--right {
  align-items: flex-end;
}
.pending-animation__animation {
  max-width: 100px;
}
.pending-animation__text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #de3517;
  font-style: italic;
  font-weight: 600;
  position: relative;
}
.pending-animation__text--with-asterisk::after {
  content: "*";
  font-size: 10px;
  position: absolute;
  top: 0;
  right: -8px;
}

/* src/client/components/winning-numbers/styles.scss */
.winning-numbers {
  width: 100%;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: "Red Hat Text", sans-serif;
}
.winning-numbers--no-multiple-draws {
  gap: 16px;
}
.winning-numbers__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.winning-numbers__content--left {
  justify-content: flex-start;
}
.winning-numbers__content--center {
  justify-content: center;
}
.winning-numbers__content--right {
  justify-content: flex-end;
}
.winning-numbers__numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 32px;
}
.winning-numbers__base-numbers {
  display: flex;
  flex-wrap: wrap;
  max-width: min(100%, 411px);
  gap: 9px;
}
.winning-numbers__multiplier {
  color: #2b3037;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
}
.winning-numbers__multiplier-text {
  color: #2b3037;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}
.winning-numbers__pending {
  font-size: 16px;
  font-style: italic;
  text-align: center;
}
.winning-numbers__next-draw {
  color: #666666;
  font-size: 12px;
  font-weight: 500;
  font-style: italic;
  text-align: left;
}
.winning-numbers__label {
  font-size: 12px;
  font-weight: 500;
  text-align: left;
}
.winning-numbers__single-number {
  flex-shrink: 0;
  background-color: white;
  border-radius: 100%;
  display: flex;
  width: 33px;
  height: 33px;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
  color: var(--grey-900, #2b3037);
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  border: 1px solid #e7e7e4;
}
.winning-numbers__single-number--powerball {
  background-color: #d64127;
  color: white;
}
.winning-numbers__single-number--megaball {
  background-color: #0449ab;
  color: white;
}
.winning-numbers__single-number--luckyball {
  background-color: #007023;
  color: white;
}
.winning-numbers__single-number--megabucks {
  background-color: #0078c6;
  color: white;
}
.winning-numbers__single-number--default-special {
  background-color: black;
  color: white;
}
.winning-numbers__single-number--with-label {
  width: 32px;
  height: 32px;
  font-size: 20px;
  flex-wrap: wrap;
}
.winning-numbers__single-number--underline {
  text-decoration: underline;
  text-decoration-thickness: 2.2px;
}

/* src/client/components/calendar/styles.scss */
.calendar-month {
  position: absolute;
  left: 0;
  top: 0;
  transition: transform 0.3s ease-in-out;
  transform: translateX(0);
  font-family: "Red Hat Text", sans-serif;
}
.calendar-month--prev {
  transform: translateX(-100%);
}
.calendar-month--next {
  transform: translateX(100%);
}
.calendar-month--current {
  position: relative;
}
.calendar-month__table {
  border-collapse: collapse;
}
.calendar-month__day-header {
  width: 32px;
  height: 32px;
  padding: 0;
  color: #72757c;
  text-align: center;
  font-family: "Red Hat Text", sans-serif;
  font-size: 12px;
}
.calendar-month__day {
  padding: 0;
}
.calendar-day {
  font-family: "Red Hat Text", sans-serif;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  color: black;
  transition: opacity 0.2s;
}
.calendar-day:hover {
  background-color: rgb(229.5, 229.5, 229.5);
}
.calendar-day--is-selected {
  background-color: black;
  color: white;
}
.calendar-day--is-selected:hover {
  background-color: black;
}
.calendar-day--is-disabled {
  color: #757575;
  cursor: not-allowed;
}
.calendar-day--is-in-range {
  background-color: rgb(229.5, 229.5, 229.5);
}

/* src/client/components/date-selector/styles.scss */
.date-selector {
  width: 100%;
  max-width: 300px;
  font-family: "Red Hat Text", sans-serif;
  font-size: 12px;
  font-weight: 600;
}
.date-selector__input {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #231f20;
  font-family: "Red Hat Text", sans-serif;
  font-weight: 600;
  padding-bottom: 6px;
}
.date-selector__input svg {
  padding-top: 4px;
}
.date-selector__modal__content {
  width: auto;
  max-width: 300px;
}
.calendar {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  padding: 20px 24px;
  box-sizing: border-box;
}
.calendar__header-text {
  font-size: 16px;
  font-style: normal;
  font-family: "Red Hat Text", sans-serif;
}
.calendar__input-select {
  gap: 0;
}
.calendar__input-select label {
  padding-left: 10px;
  font-size: 14px;
  color: #72757c;
}
.calendar__month-and-year {
  display: flex;
}
.calendar__month {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-bottom: 7px;
}
.calendar__month-text {
  font-size: 16px;
  font-family: "Red Hat Text", sans-serif;
  margin-right: 2px;
}
.calendar__month-label {
  color: #72757c;
  font-size: 14px;
  font-family: "Red Hat Text", sans-serif;
}
.calendar__month-buttons {
  display: flex;
  column-gap: 8px;
}
.calendar__months-container {
  overflow: hidden;
  position: relative;
  min-height: 224px;
}
.calendar__nav-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* src/client/components/date-selector-with-arrows/styles.scss */
.date-selector-with-arrows {
  display: flex;
  align-items: center;
}
.date-selector-with-arrows__arrow:disabled {
  opacity: 0.5;
}

/* src/client/components/loading-spinner/styles.scss */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.loading-spinner {
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
}
.loading-spinner span {
  box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  margin: 8px;
  border: 4px solid #de3517;
  border-radius: 50%;
  animation: spin 1s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #de3517 transparent transparent transparent;
}
.loading-spinner span:nth-child(1) {
  animation-delay: -0.2s;
}
.loading-spinner span:nth-child(2) {
  animation-delay: -0.15s;
}
.loading-spinner span:nth-child(3) {
  animation-delay: -0.05s;
}

/* src/client/components/error-message/styles.scss */
.error-message {
  font-style: italic;
  color: rgb(76.5, 76.5, 76.5);
  font-size: 14px;
  font-family: "Red Hat Text", sans-serif;
  text-align: center;
  display: block;
}

/* src/client/components/game-calendar-header/styles.scss */
.game-calendar-header {
  background-color: var(--game-bkg-color, white);
  color: var(--game-text-color, black);
  font-family: "Red Hat Text", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

/* src/client/components/game-image-link-card/styles.scss */
.game-card-image-link {
  height: 150px;
  position: relative;
  display: flex;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.game-card-image-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 70%,
      rgb(255, 255, 255));
}

/* src/client/components/winning-numbers-card/styles.scss */
.winning-numbers-card,
.rapid-game-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  min-width: 269px;
  max-width: 350px;
  min-height: 310px;
  border-radius: 15px;
  box-sizing: border-box;
  box-shadow: none;
  font-family: "Red Hat Text", sans-serif;
  background-color: #ffffff;
}
.winning-numbers-card--is-loading,
.rapid-game-card--is-loading {
  align-items: center;
  justify-content: center;
}
.winning-numbers-card--has-error,
.rapid-game-card--has-error {
  align-items: center;
}
.winning-numbers-card__core-content,
.rapid-game-card__core-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px;
}
.winning-numbers-card__error,
.rapid-game-card__error {
  color: #666666;
  text-align: center;
  width: 80%;
  font-size: 14px;
  font-style: italic;
}
.winning-numbers-card__final-link,
.rapid-game-card__final-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #2b3037;
  font-weight: 700;
  padding: 10px 0;
  border-top: 1px solid #ececef;
  margin-top: 10px;
}
.winning-numbers-card__icon-and-date,
.rapid-game-card__icon-and-date {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  min-height: 130px;
  width: 100%;
  gap: 16px;
}
.winning-numbers-card__game-name,
.rapid-game-card__game-name {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}
.winning-numbers-card__loading-container,
.rapid-game-card__loading-container {
  min-height: 72px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.winning-numbers-card__winning-numbers-container,
.rapid-game-card__winning-numbers-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.winning-numbers-card__win-location,
.rapid-game-card__win-location {
  text-align: center;
  font-family: "Red Hat Text", sans-serif;
  font-size: 12px;
  display: flex;
  flex-direction: column;
}
.winning-numbers-card__win-location--no-multiplier,
.rapid-game-card__win-location--no-multiplier {
  margin-top: 24px;
}
.winning-numbers-card__win-location-value,
.rapid-game-card__win-location-value {
  font-weight: bold;
}

/* src/client/components/dot-navigation/styles.scss */
.dot-navigation {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media screen and (min-width: 1008px) {
  .dot-navigation {
    justify-content: center;
    gap: 20px;
  }
}
@media screen and (min-width: 1008px) {
  .dot-navigation--no-desktop-dots > *:not(:first-child, :last-child) {
    display: none;
    visibility: hidden;
  }
}
.dot-navigation--with-gap {
  gap: 20px;
  justify-content: center;
}
.dot-navigation__dot {
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background-color: #7e8d91;
  display: inline-block;
}
.dot-navigation__dot--is-selected {
  background-color: #000000;
}
.dot-navigation__dot--is-light {
  background-color: rgb(180.359375, 184.75, 189.140625);
}
.dot-navigation__dot--is-light-selected {
  background-color: #fff;
}
.dot-navigation__chevron-button {
  display: flex;
}

/* src/client/components/carousel-sliding/styles.scss */
.sliding-carousel {
  max-width: calc(100vw - 16px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 16px;
  position: relative;
}
@media screen and (min-width: 1008px) {
  .sliding-carousel {
    margin: 0 24px;
    max-width: calc(100vw - 24px);
  }
}
@media screen and (min-width: 1224px) {
  .sliding-carousel {
    margin: 0;
  }
}
.sliding-carousel--with-scroll {
  margin-right: 0;
}
.sliding-carousel__items {
  display: grid;
  grid-template-rows: 1fr;
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  width: 100%;
  scroll-behavior: smooth;
  box-sizing: border-box;
  padding-left: 10px;
  padding-bottom: 20px;
}
.sliding-carousel__items--with-scroll > *:last-child {
  padding-right: 16px;
}
@media screen and (min-width: 1008px) {
  .sliding-carousel__items--with-scroll > *:last-child {
    padding-right: 24px;
  }
}
.sliding-carousel__items-container--with-scroll {
  position: relative;
}
.sliding-carousel__items-container--with-scroll::before {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  content: "";
  width: 30px;
  height: calc(100% - 20px);
  top: 0;
  position: absolute;
  background-image:
    linear-gradient(
      to right,
      rgba(78, 78, 78, 0.3),
      transparent 33%);
  left: 0;
}
.sliding-carousel__items-container--with-scroll::after {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  content: "";
  width: 30px;
  height: calc(100% - 20px);
  top: 0;
  position: absolute;
  background-image:
    linear-gradient(
      to left,
      rgba(78, 78, 78, 0.3),
      transparent 33%);
  right: 0;
}
.sliding-carousel__items-container--with-left-scroll-remaining::before {
  opacity: 1;
}
.sliding-carousel__items-container--with-right-scroll-remaining::after {
  opacity: 1;
}
.sliding-carousel__title {
  font-family: "Montserrat", sans-serif;
  color: black;
  font-size: 22px;
  padding-left: 10px;
  margin: 0;
}
.sliding-carousel__title-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sliding-carousel__title-link:hover {
  text-decoration-color: black;
}
@media screen and (min-width: 1008px) {
  .sliding-carousel__title-link {
    align-items: baseline;
  }
}
.sliding-carousel__title-link-helper {
  display: flex;
  align-items: center;
  margin-right: 16px;
  font-size: 18px;
  font-family: "Red Hat Text", sans-serif;
  color: #2b3037;
  gap: 4px;
  font-weight: 600;
}
@media screen and (min-width: 1008px) {
  .sliding-carousel__title-link-helper {
    margin-right: 24px;
  }
}
.sliding-carousel__title-link-helper-text {
  display: none;
  visibility: none;
}
@media screen and (min-width: 1008px) {
  .sliding-carousel__title-link-helper-text {
    display: inline-block;
    visibility: visible;
  }
}

/* src/client/components/jackpot-card/styles.scss */
.jackpot-card {
  height: 100%;
  min-height: 270px;
  width: 350px;
  box-sizing: border-box;
  box-shadow: none;
  border-radius: 15px;
  font-family: "Red Hat Text", sans-serif;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.jackpot-card--is-loading,
.jackpot-card--has-error {
  align-items: center;
  justify-content: center;
}
.jackpot-card__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-between;
  padding: 12px;
  box-sizing: border-box;
  gap: 12px;
}
.jackpot-card__cta {
  min-width: 112px;
  min-height: 40px;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: white;
  box-sizing: border-box;
  padding: 6px 10px;
  background: #de3517;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
}
.jackpot-card__cta svg > path {
  fill: #ffffff;
}
.jackpot-card__info-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.jackpot-card__jackpot-annotation {
  color: #231f20;
  font-size: 12px;
  font-weight: 700;
}
.jackpot-card__jackpot-text {
  color: #231f20;
  font-size: 12px;
  font-weight: 400;
}
.jackpot-card__jackpot-value {
  color: #d84127;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 600;
  display: inline;
  width: fit-content;
}
.jackpot-card__jackpot-value::after {
  content: "*";
  font-size: 14px;
  font-weight: bold;
  font-family: "Red Hat Text", sans-serif;
  top: -12px;
  position: relative;
}
.jackpot-card__jackpot-value--is-pending {
  font-style: italic;
}
.jackpot-card__jackpot-value--is-pending::after {
  content: none;
}
.jackpot-card__jackpot-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.jackpot-card__next-drawing-info {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  font-family: "Red Hat Text", sans-serif;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.jackpot-card__next-drawing-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: #757575;
}
.jackpot-card__primary-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  gap: 14px;
  width: 100%;
}
.jackpot-card__promo-text {
  border-top: 1px solid #dddfe1;
  padding-top: 12px;
  display: flex;
  color: #181919;
  font-size: 10px;
  font-weight: 400;
}
.jackpot-card__space-between-horizontal {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

/* src/client/components/banner-image/styles.scss */
.image-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background-color);
  flex: 1;
}
@media screen and (min-width: 1008px) {
  .image-banner__mobile-image {
    display: none;
    visibility: hidden;
  }
}
.image-banner__desktop-image {
  display: none;
  visibility: hidden;
}
@media screen and (min-width: 1008px) {
  .image-banner__desktop-image {
    display: flex;
    visibility: visible;
  }
}

/* src/client/components/banner-composite/styles.scss */
.composite-banner {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1008px) {
  .composite-banner {
    flex-direction: row;
    justify-content: center;
  }
}
.composite-banner__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
  padding: 20px 18px 30px;
  position: relative;
}
@media screen and (min-width: 1008px) {
  .composite-banner__content {
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    padding: 20px 30px 10px;
  }
}
.composite-banner__content-container {
  position: relative;
  width: 100%;
  background: #303e4a;
  background:
    radial-gradient(
      at right bottom,
      #303e4a,
      #232020);
}
@media screen and (min-width: 1008px) {
  .composite-banner__content-container {
    min-width: 33%;
    max-width: 33%;
  }
  .composite-banner__content-container::before {
    content: "";
    position: absolute;
    top: 40%;
    left: -18px;
    width: 0;
    height: 0;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-right: 18px solid rgb(41.7613636364, 36.9886363636, 38.1818181818);
  }
}
@media screen and (min-width: 1008px) {
  .composite-banner__image-banner {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.composite-banner__header {
  margin: 0;
  font-size: 32px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  font-weight: 600;
  line-height: 1.1;
}
@media screen and (min-width: 1008px) {
  .composite-banner__header {
    text-align: left;
  }
}
.composite-banner__subheader {
  margin-bottom: 20px;
  margin-top: 8px;
  font-size: 18px;
  font-family: "Red Hat Text", sans-serif;
  text-align: center;
  text-align: left;
}
.composite-banner__cta {
  font-size: 14px;
  font-weight: bold;
  border-radius: 25px;
}

/* src/client/components/carousel-spotlight/styles.scss */
.spotlight-carousel {
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.spotlight-carousel--is-loading {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spotlight-carousel__items {
  display: flex;
  width: 100%;
  position: relative;
  transition: all 0.3s ease-in-out;
  list-style: none;
  margin: 0;
  padding: 0;
}
.spotlight-carousel__item {
  font-family: "Red Hat Text", sans-serif;
  min-width: 100%;
}
.spotlight-carousel__item--current {
  position: relative;
}
.spotlight-carousel__dots {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  column-gap: 20px;
}
.spotlight-carousel button.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #dddfe1;
}
.spotlight-carousel button.carousel__dot--is-active {
  background-color: #2b3037;
}

/* src/client/components/account-deposit-widget/styles.scss */
.account-deposit-widget__authenticated {
  display: flex;
  justify-content: space-between;
  background-color: rgb(19, 52, 80);
  font-family: "Red Hat Text", sans-serif;
  color: white;
  width: 100%;
  padding: 12px;
  box-sizing: border-box;
}
.account-deposit-widget__account-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.account-deposit-widget__deposit-button {
  border-radius: 25px;
  padding: 12px;
  font-family: "Red Hat Text", sans-serif;
  font-weight: bold;
  text-align: center;
  background-color: #de3517;
  color: white;
}
.account-deposit-widget__name {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 16px;
}

/* src/client/components/table/styles.scss */
.table {
  width: 100%;
  font-family: "Red Hat Text", sans-serif;
  border-collapse: collapse;
  position: relative;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
}
.table__body {
  display: none;
  visibility: hidden;
}
@media screen and (min-width: 600px) {
  .table__body {
    display: table-row-group;
    visibility: visible;
  }
}
.table__body-row:nth-child(even) {
  background-color: #e8f1f6;
}
.table__body-row:nth-child(odd) {
  background-color: #d0e1eb;
}
.table__body-row--no-footer:last-of-type td:first-child {
  border-bottom-left-radius: 12px;
}
.table__body-row--no-footer:last-of-type td:last-child {
  border-bottom-right-radius: 12px;
}
.table__cell {
  padding: 6px 4px;
}
.table__cell:first-child {
  padding-left: 16px;
}
.table__cell--multi {
  display: none;
  visibility: hidden;
}
@media screen and (min-width: 600px) {
  .table__cell--multi {
    display: table-cell;
    visibility: visible;
  }
}
.table__cell--stacked {
  padding: 0 16px;
}
@media screen and (min-width: 600px) {
  .table__cell--stacked {
    display: none;
    visibility: hidden;
  }
}
.table__cell--stacked:nth-child(even) {
  text-align: right;
}
.table__cell--stacked-header {
  font-weight: bold;
}
.table__cell--single-footer {
  font-weight: 500;
  background-color: #ffffff;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  text-align: center;
}
.table__cell-text {
  display: block;
}
.table__container {
  width: 100%;
}
.table__header-row {
  display: none;
  visibility: hidden;
}
@media screen and (min-width: 600px) {
  .table__header-row {
    display: table-row;
    visibility: visible;
  }
}
.table__header-row th {
  color: #ffffff;
  background-color: #276191;
  position: sticky;
  top: 0;
  text-align: left;
  font-weight: bold;
}
.table__header-row th:first-of-type {
  border-top-left-radius: 12px;
}
.table__header-row th:last-of-type {
  border-top-right-radius: 12px;
}
@media screen and (min-width: 600px) {
  .table__mobile-header {
    display: none;
    visibility: hidden;
  }
}
.table__footer-row {
  font-weight: 500;
  background-color: #ffffff;
  display: none;
  visibility: hidden;
}
@media screen and (min-width: 600px) {
  .table__footer-row {
    display: table-row;
    visibility: visible;
  }
}
.table__footer-row td:first-child {
  border-bottom-left-radius: 12px;
}
.table__footer-row td:last-child {
  border-bottom-right-radius: 12px;
}
.table__footer-stacked-row {
  font-weight: 500;
  background-color: #ffffff;
  display: table-row;
  visibility: visible;
}
@media screen and (min-width: 600px) {
  .table__footer-stacked-row {
    display: none;
    visibility: hidden;
  }
}
.table__footer-stacked-row:nth-child(2) td,
.table__footer-stacked-row:last-child td {
  padding-top: 12px;
  padding-bottom: 12px;
}
.table__footer-stacked-row:last-child td:first-child {
  border-bottom-left-radius: 12px;
}
.table__footer-stacked-row:last-child td:last-child {
  border-bottom-right-radius: 12px;
}
.table__row-group tr {
  border-bottom: 1px solid rgba(137, 137, 137, 0.2);
}
.table__row-group tr td {
  padding-top: 12px;
  padding-bottom: 12px;
}
.table__row-group tr:last-child {
  border-bottom: none;
}
@media screen and (min-width: 600px) {
  .table__row-group tr {
    border-bottom: none;
  }
}
.table__row-group:nth-child(even) {
  background-color: #e8f1f6;
}
.table__row-group:nth-child(odd) {
  background-color: #d0e1eb;
}
.table__row-group:nth-of-type(2) tr:first-child td:first-child {
  border-top-left-radius: 12px;
}
.table__row-group:nth-of-type(2) tr:first-child td:nth-child(2) {
  border-top-right-radius: 12px;
}
.table__row-group--no-footer:last-of-type tr:last-child td:first-child {
  border-bottom-left-radius: 12px;
}
.table__row-group--no-footer:last-of-type tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
}

/* src/client/components/column-layout/styles.scss */
.column-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media screen and (min-width: 600px) {
  .column-layout {
    grid-template-columns: repeat(min(var(--num-columns), 2), 1fr);
  }
}
@media screen and (min-width: 1008px) {
  .column-layout {
    grid-template-columns: repeat(var(--num-columns), 1fr);
  }
}
@media screen and (min-width: 600px) {
  .column-layout--one-third-two-thirds {
    grid-template-columns: 1fr 2fr;
  }
}
@media screen and (min-width: 600px) {
  .column-layout--two-thirds-one-third {
    grid-template-columns: 2fr 1fr;
  }
}
.column-layout__accordion__cta {
  align-self: flex-end;
}
.column-layout__column {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}

/* src/client/components/cms-feed-item/styles.scss */
.feed-item {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.15);
  background-color: white;
  border-radius: 8px;
  padding: 12px;
  box-sizing: border-box;
}
.feed-item__content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  column-gap: 12px;
}
.feed-item__content > *:first-child {
  display: block;
  width: auto;
  border-radius: 5px;
  overflow: hidden;
}
.feed-item__content--no-image {
  grid-template-columns: 1fr;
  gap: 8px;
  justify-items: end;
}
.feed-item__content--no-image > *:first-child {
  justify-self: start;
}
.feed-item__date {
  font-style: italic;
  font-family: "Red Hat Text", sans-serif;
  font-size: 14px;
}
.feed-item__header {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  margin: 0;
}
.feed-item__preview-group {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.feed-item__preview-group--with-cta > *:last-child {
  align-self: flex-end;
}
.feed-item--tile .feed-item__content {
  gap: 8px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
}
.feed-item--tile .feed-item__header {
  text-align: center;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
  background-color: white;
  border-radius: 8px;
  padding: 8px 12px;
  position: relative;
  left: -12px;
  top: -12px;
  width: 100%;
}
.feed-item--tile .feed-item__date {
  color: rgb(76.5, 76.5, 76.5);
  font-weight: 300;
  text-align: center;
}
.feed-item--tile .feed-item__preview-group {
  margin-top: 8px;
  align-items: center;
}
.feed-item--tile .feed-item__preview-group > *:last-child {
  align-self: unset;
}

/* src/client/components/button-toggle/styles.scss */
.toggle-button {
  display: flex;
  column-gap: 4px;
  background-color: rgb(237, 242, 247);
  border-radius: 30px;
  width: fit-content;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.15);
  position: relative;
}
.toggle-button__option {
  padding: 6px 10px;
  border-radius: 30px;
  background-color: transparent;
  position: relative;
  z-index: 1;
  color: gray;
  font-weight: bold;
}
.toggle-button__option--selected {
  color: #1b4b51;
}
.toggle-button__selected-bkg {
  transition: left 0.1s ease-in-out, width 0.1s ease-in-out;
  position: absolute;
  background-color: white;
  border-radius: 30px;
  height: 100%;
}

/* src/client/components/cms-feed/styles.scss */
.feed {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  align-items: center;
}
.feed__header {
  font-family: "Montserrat", sans-serif;
  margin: 0;
}
.feed__header-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.feed__feed-items {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.feed__feed-items--tile {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 600px) {
  .feed__feed-items--tile {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1008px) {
  .feed__feed-items--tile {
    grid-template-columns: repeat(3, 1fr);
  }
}
.feed__show-more {
  border-radius: 25px;
  padding: 12px;
  font-family: "Red Hat Text", sans-serif;
  font-weight: bold;
  text-align: center;
  background-color: #de3517;
  color: white;
}
.feed__show-more:hover {
  background-color: rgb(175.787755102, 41.9673469388, 18.212244898);
}
.feed__show-more:hover:disabled {
  background-color: #de3517;
}

/* src/client/components/cms-accordion/styles.scss */
.cms-accordion {
  background-color: white;
  border-radius: 4px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1490196078);
  padding: 10px;
  box-sizing: border-box;
}
.cms-accordion__accordion-content {
  border-top: 1px solid #dddfe1;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cms-accordion__accordion-header {
  font-family: "Red Hat Text", sans-serif;
  font-size: 16px;
  padding: 10px;
  font-weight: 600;
  box-sizing: border-box;
}

/* src/client/components/home-page/styles.scss */
.home-page {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  align-items: center;
  max-width: unset;
}
.home-page__account-widget-container {
  width: calc(100% - 32px);
  margin: 0 auto;
}
.home-page__loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}
.home-page__carousels {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.home-page__cms-content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
  padding: 0 12px;
}
@media screen and (min-width: 1200px) {
  .home-page__cms-content {
    padding: 0;
  }
}
.home-page__cms-content > * {
  width: 100%;
  margin: 0 auto;
}
.home-page__image-banner {
  width: 100vw;
  left: calc(-50vw + 50%);
  position: relative;
}

/* src/client/components/action-menu/styles.scss */
.action-menu {
  font-family: "Red Hat Text", sans-serif;
}
.action-menu__dots {
  display: flex;
  flex-direction: column;
  row-gap: 2px;
}
.action-menu__content {
  box-shadow: 0px 3px 25px 0px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  background-color: white;
  min-width: 244px;
  overflow: hidden;
}
.action-menu__trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 18px;
  border-radius: 15px;
  background-color: transparent;
  width: 26px;
}
.action-menu__trigger:hover {
  background-color: rgba(216, 216, 216, 0.2274509804);
}

/* src/client/components/favorite-game/styles.scss */
.favorite-game {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-family: "Red Hat Text", sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #186259;
  width: 100%;
  padding: 8px;
  border-radius: 4px;
  cursor: pointer;
}
.favorite-game--large {
  font-size: 16px;
}
.favorite-game > *:last-child {
  transition: transform 0.2s ease-in-out;
  stroke: #186259;
  stroke-width: 2px;
}
.favorite-game:hover {
  text-decoration: underline;
}
.favorite-game:hover > *:last-child {
  transform: scale(1.2);
}
@keyframes jiggle {
  0% {
    transform: scale(1.2) rotate(0);
    fill: transparent;
  }
  25% {
    transform: scale(1.3) rotate(10deg);
  }
  50% {
    transform: scale(1.4) rotate(-10deg);
    fill: #186259;
  }
  75% {
    transform: scale(1.3) rotate(10deg);
  }
  100% {
    transform: scale(1) rotate(0);
    fill: #186259;
  }
}
.favorite-game--favorited > *:last-child {
  animation: jiggle 500ms linear;
  animation-fill-mode: forwards;
}

/* src/client/components/game-action-menu/styles.scss */
.game-action-menu {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.game-action-menu__content {
  padding: 10px 20px;
  display: flex;
  gap: 16px;
  flex-direction: column;
  box-sizing: border-box;
  max-width: 260px;
}
.game-action-menu__ctas {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.game-action-menu__ctas > *:last-child {
  max-width: 50%;
  text-align: right;
}
.game-action-menu__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.game-action-menu__info-text {
  font-family: "Red Hat Text", sans-serif;
  font-weight: 600;
  font-size: 12px;
  display: inline-block;
}
.game-action-menu__primary-cta {
  background-color: #de3517;
  color: white;
  padding: 12px 14px;
  border-radius: 100px;
  font-weight: bold;
  font-size: 14px;
}
.game-action-menu__secondary-cta {
  color: #de3517;
  font-weight: bold;
  font-size: 14px;
}
.game-action-menu__series {
  padding: 10px 20px;
  background-color: var(--series-bkg-color, rgb(21, 56, 107));
  color: var(--series-color, white);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
}
.game-action-menu__tagline {
  font-family: "Red Hat Text", sans-serif;
  font-size: 10px;
}

/* src/client/components/game-ribbon/styles.scss */
.game-ribbon {
  position: absolute;
  z-index: 1;
  top: 41px;
  left: -16px;
  width: 100%;
  max-width: 80px;
  min-width: 35px;
  color: var(--ribbon-text-color, #2b3037);
  transform: rotate(-45deg);
  transform-origin: 0 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  transition:
    transform 0.2s ease-out,
    left 0.2s ease-out,
    top 0.2s ease-out;
}
@media screen and (min-width: 600px) {
  .game-ribbon {
    top: 51px;
    left: -19px;
    max-width: 100px;
    font-size: 14px;
  }
}
.game-ribbon__text {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 4px;
  left: 0;
}
.game-ribbon-icon__main {
  fill: var(--ribbon-bkg-color, #fff);
  filter: url(#outer-glow-1);
}
.game-ribbon-icon__wrap-around {
  fill: hsl(from var(--ribbon-bkg-color, #fff) h s calc(l - 10));
}

/* src/client/components/game-tile/styles.scss */
.game-tile {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  box-shadow: none;
  transition: transform 0.2s ease-out;
}
.game-tile:hover {
  transform: scale(1.05);
}
.game-tile:hover + .game-ribbon {
  transform: scale(1.05) rotate(-45deg);
  left: -27px;
  top: 50px;
}
.game-tile__bottom-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 6px 4px 8px;
  box-sizing: border-box;
  background-color: var(--series-bkg-color, white);
  min-height: 44px;
}
.game-tile__container {
  position: relative;
  display: flex;
  z-index: 0;
}
.game-tile__image-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  background-color: white;
  flex-grow: 1;
  justify-content: center;
  min-width: 160px;
  min-height: 90px;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 500px) {
  .game-tile__image-container {
    min-width: 200px;
    min-height: 130px;
  }
}
.game-tile__image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 90%,
      var(--series-bkg-color, white));
}
.game-tile__image-button {
  position: absolute;
  height: 100%;
  width: 100%;
}
.game-tile__image-link {
  position: absolute;
  width: 100%;
  height: 100%;
}
.game-tile__tagline {
  font-family: "Red Hat Text", sans-serif;
  font-size: 12px;
  font-weight: bold;
  color: var(--series-text-color, black);
}
.game-tile__tagline--is-ilottery {
  color: var(--series-text-color, white);
}
.game-tile-option {
  min-width: 132px;
  font-size: 14px;
}
.game-tile-option__price {
  font-size: 12px;
}

/* src/client/components/game-carousel/styles.scss */
.game-carousel {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  position: relative;
}
.game-carousel__error-ilottery {
  color: white;
}
.game-carousel__header {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: black;
  font-size: 18px;
  padding-left: 12px;
}
.game-carousel__games {
  padding: 12px;
  padding-bottom: 16px;
  position: relative;
  overflow-x: auto;
  display: flex;
  flex-wrap: nowrap;
  column-gap: 8px;
  min-height: 180px;
  border-radius: 4px;
}
.game-carousel__games > * {
  flex: 0 0 auto;
  min-width: 230px;
}
.game-carousel__games--no-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.game-carousel__games--no-content-with-border {
  transition: box-shadow 0.4s ease-out 0.3s;
  box-shadow: 0 0 2px 2px rgba(40, 181, 191, 0.7);
}
.game-carousel__no-content-text {
  width: 100%;
  box-sizing: border-box;
  padding: 16px;
  text-align: center;
  font-family: Rubik;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}
.game-carousel__status-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}
.game-carousel__status-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

/* src/client/components/input-text/styles.scss */
.input-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.input-text__field {
  padding: 12px 16px;
  border-radius: 4px;
  font-family: "Red Hat Text", sans-serif;
  font-size: 16px;
  border: none;
}
.input-text__field::placeholder {
  color: #757575;
}
.input-text__field--error {
  border: 1px solid red;
}
.input-text__field--no-border {
  border: none;
}

/* src/client/components/input-search/styles.scss */
.input-search {
  position: relative;
  width: 100%;
}
.input-search__icon {
  position: absolute;
  right: 16px;
  bottom: 6px;
  pointer-events: none;
  cursor: pointer;
}
.input-search__search-field {
  font-size: 16px;
}

/* src/client/components/button-filter/styles.scss */
.filter-button {
  display: flex;
  padding: 12px 16px;
  align-items: center;
  border-radius: 25px;
  font-family: "Red Hat Text", sans-serif;
  font-weight: bold;
  color: black;
  background-color: white;
}
.filter-button--is-active {
  color: white;
  background-color: black;
}
.filter-button--transparent {
  border: 1px solid white;
  color: white;
  background-color: transparent;
  border-color: white;
}
.filter-button--transparent.filter-button--is-active {
  color: rgb(21, 56, 107);
  background-color: white;
}
.filter-button--yellow {
  color: black;
  border: 2px solid #fdcd0d;
  background-color: #fdcd0d;
}
.filter-button--yellow.filter-button--is-active {
  border: 2px solid black;
  background-color: rgb(253.6270491803, 220.6762295082, 88.8729508197);
}

/* src/client/components/filter-category/styles.scss */
.filter-category {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.filter-category__header {
  margin: 0;
  font-size: 17px;
  font-family: "Red Hat Text", sans-serif;
  font-weight: bold;
}
.filter-category__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* src/client/components/game-lobby-more-filters/styles.scss */
.game-lobby-more-filters {
  position: relative;
  width: 100%;
  min-height: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  background-color: #ececef;
  color: black;
}
.game-lobby-more-filters__header {
  padding: 16px;
}
.game-lobby-more-filters__header h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
}
.game-lobby-more-filters__body {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  padding: 24px 16px 100px;
  justify-content: space-between;
  flex-grow: 1;
}
@media screen and (min-width: 600px) {
  .game-lobby-more-filters__body {
    padding-bottom: 24px;
  }
}
.game-lobby-more-filters__filters {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
.game-lobby-more-filters__close-button {
  align-self: center;
  bottom: 10px;
  border: none;
  width: 80%;
  max-width: 280px;
  border-radius: 25px;
  padding: 12px;
  font-family: "Red Hat Text", sans-serif;
  font-weight: bold;
  text-align: center;
  color: white;
  background: black;
  display: block;
  cursor: pointer;
  left: 0;
  right: 0;
}
.game-lobby-more-filters__sort label {
  font-weight: bold;
}

/* src/client/components/button-text/styles.scss */
.text-button {
  font-family: "Red Hat Text", sans-serif;
  font-size: 14px;
}
.text-button:hover {
  text-decoration: underline;
}

/* src/client/components/game-lobby-query/styles.scss */
.game-lobby-query {
  padding: 16px 0;
  padding-top: 24px;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.game-lobby-query-filters {
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  display: inline-flex;
  column-gap: 16px;
  row-gap: 16px;
}
.game-lobby-query-filters > * {
  flex-shrink: 0;
}
@media screen and (min-width: 1008px) {
  .game-lobby-query-filters {
    align-items: flex-start;
  }
}
.game-lobby-query-filters__filter-by-text {
  font-family: "Red Hat Text", sans-serif;
  font-weight: bold;
  color: black;
  font-size: 14px;
  flex-shrink: 0;
}
.game-lobby-query-filters__filter-by-text--is-ilottery {
  color: white;
}
.game-lobby-query-filters__more-filters-button {
  visibility: visible;
  display: flex;
  padding: 12px 16px;
  align-items: center;
  border-radius: 25px;
  font-family: "Red Hat Text", sans-serif;
  font-weight: bold;
  border: 1px solid white;
  color: black;
  background-color: white;
}
.game-lobby-query-filters__more-filters-button.filter-button--is-active {
  color: white;
  background-color: black;
}
@media screen and (min-width: 1008px) {
  .game-lobby-query-filters__more-filters-button {
    visibility: hidden;
    display: none;
  }
}
.game-lobby-query-filters__spotlight-filters {
  overflow: hidden;
  display: inline-flex;
  column-gap: 16px;
  row-gap: 16px;
}
.game-lobby-query-filters__spotlight-filters > * {
  flex-shrink: 0;
}
@media screen and (min-width: 1008px) {
  .game-lobby-query-filters__spotlight-filters {
    overflow: auto;
    flex-wrap: wrap;
  }
}
.game-lobby-query-filters__spotlight-filters-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  justify-content: flex-start;
}
@media screen and (min-width: 1008px) {
  .game-lobby-query-filters__spotlight-filters-container {
    max-width: 75%;
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }
}
.game-lobby-query-filters__price-select {
  display: none;
  visibility: hidden;
}
@media screen and (min-width: 1008px) {
  .game-lobby-query-filters__price-select {
    display: flex;
    visibility: visible;
    align-items: center;
    gap: 6px;
  }
}
.game-lobby-query__meta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Red Hat Text", sans-serif;
  box-sizing: border-box;
}
@media screen and (min-width: 1008px) {
  .game-lobby-query__meta--mobile {
    display: none;
    visibility: hidden;
  }
}
.game-lobby-query__meta--desktop {
  display: none;
  visibility: hidden;
}
@media screen and (min-width: 1008px) {
  .game-lobby-query__meta--desktop {
    display: flex;
    visibility: visible;
  }
}
.game-lobby-query__meta--desktop [class*=__num-games] {
  font-size: 20px;
}
.game-lobby-query__meta-buttons {
  width: 100%;
  display: flex;
  column-gap: 16px;
  padding-top: 18px;
}
@media screen and (min-width: 1008px) {
  .game-lobby-query__meta-buttons {
    width: auto;
  }
}
.game-lobby-query__num-games {
  margin: 0;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  padding-bottom: 8px;
}
@media screen and (min-width: 1008px) {
  .game-lobby-query__num-games {
    padding-bottom: 12px;
  }
}
.game-lobby-query__reset {
  font-weight: bold;
  font-family: "Red Hat Text", sans-serif;
}
.game-lobby-query__reset:disabled {
  opacity: 1;
  cursor: not-allowed;
  color: rgb(76.5, 76.5, 76.5);
}
.game-lobby-query__desktop-sort {
  max-width: 33%;
  display: flex;
  column-gap: 8px;
  align-items: center;
  font-family: "Red Hat Text", sans-serif;
}
.game-lobby-query__desktop-sort-label {
  text-wrap: nowrap;
  font-family: "Red Hat Text", sans-serif;
}
.game-lobby-query__desktop-sort > *:last-child {
  min-width: 100px;
}

/* src/client/components/game-lobby/styles.scss */
.game-lobby {
  width: 100%;
  margin: auto;
  max-width: 1008px;
  box-sizing: border-box;
  padding-bottom: 100px;
}
.game-lobby__games {
  gap: 12px;
  row-gap: 24px;
  justify-content: center;
  display: grid;
  grid-template-columns: 230px;
  margin-top: 32px;
}
.game-lobby__games img {
  max-height: 150px;
}
@media screen and (min-width: 330px) {
  .game-lobby__games {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 510px) {
  .game-lobby__games {
    grid-template-columns: repeat(auto-fill, 230px);
  }
}
.game-lobby__loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  width: 100%;
}

/* src/client/components/game-collection-footer/styles.scss */
.game-collection-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  background-color: #ececef;
  box-sizing: border-box;
  padding: 60px;
}
@media screen and (min-width: 1008px) {
  .game-collection-footer {
    flex-direction: row;
    justify-content: center;
  }
}
.game-collection-footer__link {
  padding: 12px 16px;
  color: white;
  background-color: #de3517;
  border-radius: 100px;
  font-weight: bold;
}
.game-collection-footer__text {
  margin: 0;
  font-size: 34px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: black;
  text-align: center;
}
@media screen and (min-width: 1008px) {
  .game-collection-footer__text {
    text-align: left;
  }
}
.game-collection-footer__text-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* src/client/components/game-collection/styles.scss */
#game-collection__page {
  max-width: unset;
  margin-top: 0;
  padding-bottom: 0;
}
.game-collection {
  max-width: 1008px;
  margin: auto;
  padding: 0 16px;
  box-sizing: border-box;
}
.game-collection__breadcrumb {
  width: 100%;
  margin: auto;
  max-width: 1008px;
  box-sizing: border-box;
  padding-left: 16px;
}
.game-collection__loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  width: 100%;
}
.game-collection__subtitle {
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: "Red Hat Text", sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 15px;
}
.game-collection__page {
  padding-top: 30px;
}
.game-collection__page h1 {
  margin-bottom: 4px;
}
.game-collection__page::after {
  background-color: #ececef;
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.game-collection__carousel-container {
  box-sizing: border-box;
  width: 100%;
}
.game-collection__image-banner {
  position: relative;
  width: 100vw;
  left: calc(-50vw + 50%);
  background-color: unset;
}
.game-collection__content {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  width: 100%;
  box-sizing: border-box;
  margin-top: 20px;
}

/* src/client/components/game-details-page/styles.scss */
.game-details-page {
  padding: 0 16px;
  box-sizing: border-box;
}
.game-details-page-structure {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 100px;
}
@media screen and (min-width: 1008px) {
  .game-details-page-structure {
    flex-direction: row;
    align-items: flex-start;
  }
}
.game-details-page-structure--no-results {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.game-details-page-structure--no-results .game-details-page-structure__info {
  width: 100%;
}
.game-details-page-structure__info,
.game-details-page-structure__results {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  padding: 8px;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1490196078);
}
@media screen and (min-width: 1008px) {
  .game-details-page-structure__info,
  .game-details-page-structure__results {
    margin-top: 16px;
  }
}
.game-details-page-structure__results {
  align-items: center;
  flex-grow: 2;
}

/* src/client/components/game-rules/styles.scss */
.game-rules {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.game-rules__accordion {
  width: 100%;
}
.game-rules__accordion__header {
  border-top: 1px solid var(--grey-200, #dddfe1);
  box-sizing: border-box;
  padding: 16px;
  font-size: 18px;
  font-family: "Red Hat Text", sans-serif;
}
.game-rules__content {
  width: 100%;
  box-sizing: border-box;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.game-rules .cta {
  align-self: center;
}

/* src/client/components/game-details-page-ctas/styles.scss */
.game-details-ctas {
  display: flex;
  gap: 16px;
  width: 100%;
}
.game-details-ctas__primary-button {
  border-radius: 25px;
  padding: 12px;
  font-family: "Red Hat Text", sans-serif;
  font-weight: bold;
  text-align: center;
  background-color: #de3517;
  color: white;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
}
.game-details-ctas__secondary-button {
  border-radius: 25px;
  padding: 12px;
  font-family: "Red Hat Text", sans-serif;
  font-weight: bold;
  text-align: center;
  background-color: white;
  color: #de3517;
  border: 1px solid #de3517;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
}

/* src/client/components/game-details-page-draw/styles.scss */
.draw-game-details-page__cash-value {
  color: #676b72;
  font-size: 14px;
}
.draw-game-details-page__current-info {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.draw-game-details-page__info {
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 16px;
  font-family: "Red Hat Text", sans-serif;
}
.draw-game-details-page__est-jackpot {
  font-size: 30px;
  font-weight: 600;
  line-height: 32px;
  text-align: right;
}
.draw-game-details-page__game-disclaimer {
  font-size: 10px;
}
.draw-game-details-page__game-image {
  width: fit-content;
  margin: 0 auto;
  overflow: hidden;
}
.draw-game-details-page__info-label {
  font-size: 14px;
  font-family: "Red Hat Text", sans-serif;
  font-weight: 500;
}
.draw-game-details-page__info-values {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.draw-game-details-page__jackpot-info,
.draw-game-details-page__next-drawing-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.draw-game-details-page__next-drawing-break {
  color: #676b72;
  font-size: 14px;
}
.draw-game-details-page__odds-disclaimers {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-direction: column;
}
.draw-game-details-page__overall-odds {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: "Red Hat Text", sans-serif;
}
.draw-game-details-page__overall-odds-text {
  font-weight: bold;
  font-size: 16px;
}
.draw-game-details-page__overall-odds-value {
  margin-left: 4px;
  color: #de3517;
  font-weight: bold;
  font-size: 16px;
}
.draw-game-details-page__prize-table-container {
  gap: 8px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.draw-game-details-page__prize-table-header {
  font-size: 16px;
  font-weight: 600;
  color: #de3517;
  font-family: "Montserrat", sans-serif;
}
.draw-game-details-page__prize-table-section {
  width: 100%;
  display: flex;
  justify-content: center;
}
.draw-game-details-page__state {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.draw-game-details-page__winning-numbers {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  padding-bottom: 20px;
}
@media screen and (max-width: 1008px) {
  .draw-game-details-page__winning-numbers {
    max-width: 420px;
  }
}
.draw-game-details-page__winning-numbers-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.draw-game-details-page__winning-numbers-title {
  font-size: 22px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  margin: 0;
}
.draw-game-details-page__youtube-link {
  font-weight: bold;
  font-size: 16px;
  color: #186259;
}

/* src/client/components/game-details-page-rapid/styles.scss */
.rapid-game-details-page__page-info {
  padding: 0px 16px;
  font-family: "Red Hat Text", sans-serif;
  font-size: 14px;
  color: #2b3037;
  width: 100%;
}
.rapid-game-details-page__bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.rapid-game-details-page__image-container {
  position: relative;
}
.rapid-game-details-page__image {
  display: flex;
  justify-content: center;
}
.rapid-game-details-page__image img {
  border-radius: 16px;
}
.rapid-game-details-page__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 16px 0px;
}
.rapid-game-details-page__horizontal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 360px;
  gap: 16px;
}
.rapid-game-details-page__vertical {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}
.rapid-game-details-page__text {
  font-size: 14px;
  font-weight: 500;
}
.rapid-game-details-page__text--large {
  font-size: 18px;
  font-weight: 600;
}
.rapid-game-details-page__state {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  width: 100%;
}
.keno-app-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 16px;
  padding: 16px;
  border-radius: 2px;
  background-color: #f3f5f6;
  color: #2b3037;
  font-family: "Open Sans";
}
.keno-app-card__horizontal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.keno-app-card__vertical {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.keno-app-card__image {
  max-width: 84px;
  max-height: 84px;
}
.keno-app-card__title {
  font-size: 16px;
  font-weight: 600;
}
.keno-app-card__text {
  font-size: 12px;
  font-weight: 500;
}
.keno-app-card__badge {
  height: 50px;
}
.keno-app-card__badge img {
  object-fit: contain;
}

/* src/client/components/game-price/styles.scss */
.game-price {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  min-width: 45px;
  border-radius: 50px;
  background-color: #276191;
  color: white;
  padding: 6px;
  font-size: 16px;
  border-radius: 0 15px 0 15px;
}

/* src/client/components/game-details-page-scratch/styles.scss */
.scratch-game-details-page__page-info {
  padding: 0px 8px;
  box-sizing: border-box;
  font-family: "Red Hat Text", sans-serif;
  color: #2b3037;
  width: 100%;
}
.scratch-game-details-page__image-container {
  position: relative;
  display: flex;
  justify-content: center;
}
.scratch-game-details-page__image {
  max-width: 360px;
  display: flex;
  justify-content: flex-start;
}
.scratch-game-details-page__image img {
  border-radius: 16px;
}
@media screen and (min-width: 1008px) {
  .scratch-game-details-page__image {
    justify-content: center;
  }
}
.scratch-game-details-page__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 16px 0px;
}
.scratch-game-details-page__horizontal {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.scratch-game-details-page__vertical {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.scratch-game-details-page__title {
  font-size: 30px;
  font-weight: 600;
  font-family: "Red Hat Text", sans-serif;
  margin: 0;
}
.scratch-game-details-page__price {
  margin-top: 12px;
}
.scratch-game-details-page__prize {
  font-size: 18px;
  color: #676b72;
}
.scratch-game-details-page__odds-header {
  font-family: "Red Hat Text", sans-serif;
  font-size: 24px;
  margin: 0;
}
.scratch-game-details-page__results {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.scratch-game-details-page__label {
  font-size: 14px;
  font-weight: 500;
  color: #676b72;
}
.scratch-game-details-page__value {
  font-size: 14px;
  font-weight: 500;
}
.scratch-game-details-page__state {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  width: 100%;
}
.scratch-game-details-page__disclaimer {
  text-align: center;
  font-family: "Red Hat Text", sans-serif;
  font-size: 16px;
}

/* src/client/components/game-details-page-fast-play/styles.scss */
.fast-play-game-details-page {
  font-family: "Red Hat Text", sans-serif;
}
.fast-play-game-details-page__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0;
}
.fast-play-game-details-page__disclaimer {
  font-family: "Red Hat Text", sans-serif;
  font-size: 16px;
  align-self: flex-start;
}
.fast-play-game-details-page__horizontal {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.fast-play-game-details-page__game-name {
  font-size: 30px;
  font-weight: 600;
  font-family: "Red Hat Text", sans-serif;
  margin: 0;
}
.fast-play-game-details-page__image-container {
  position: relative;
  display: flex;
  justify-content: center;
}
.fast-play-game-details-page__info {
  width: 100%;
}
.fast-play-game-details-page__inline-label {
  font-size: 14px;
  font-weight: 500;
  color: #676b72;
}
.fast-play-game-details-page__jackpot-value {
  font-weight: 600;
  color: #186259;
  font-size: 24px;
}
.fast-play-game-details-page__odds-header {
  font-family: "Red Hat Text", sans-serif;
  font-size: 24px;
  margin: 0;
}
.fast-play-game-details-page__price {
  margin-top: 12px;
}
.fast-play-game-details-page__results {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.fast-play-game-details-page__value-and-label {
  display: flex;
  gap: 6px;
  align-items: center;
}

/* src/client/components/winning-numbers-card/rapid-game-card.styles.scss */
.rapid-game-card__ctas {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}
.rapid-game-card__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.rapid-game-card__time {
  font-style: italic;
  font-size: 12px;
}
.rapid-game-card__pace {
  font-size: 16px;
}
.rapid-game-card__primary-link {
  width: 40%;
  border-radius: 25px;
  padding: 12px;
  font-family: "Red Hat Text", sans-serif;
  font-weight: bold;
  text-align: center;
  background-color: #de3517;
  color: white;
}
.rapid-game-card__secondary-link {
  width: 40%;
  border-radius: 25px;
  padding: 12px;
  font-family: "Red Hat Text", sans-serif;
  font-weight: bold;
  text-align: center;
  background-color: white;
  color: #de3517;
  border: 1px solid #de3517;
}

/* src/client/components/winning-numbers-page/styles.scss */
.winning-numbers-page__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  padding: 0 16px;
  justify-items: center;
}
@media screen and (min-width: 768px) {
  .winning-numbers-page__content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1048px) {
  .winning-numbers-page__content {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .winning-numbers-page__content > *:nth-child(even) {
    justify-self: start;
  }
  .winning-numbers-page__content > *:nth-child(odd) {
    justify-self: end;
  }
}
@media screen and (min-width: 1048px) {
  .winning-numbers-page__content > *:nth-child(3n+1) {
    justify-self: end;
  }
  .winning-numbers-page__content > *:nth-child(3n+2) {
    justify-self: unset;
  }
  .winning-numbers-page__content > *:nth-child(3n) {
    justify-self: start;
  }
}

/* src/client/components/past-results-table/styles.scss */
.past-results-cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 16px;
  gap: 6px;
  font-family: "Red Hat Text", sans-serif;
  box-sizing: border-box;
  width: 100%;
}
@media screen and (min-width: 1008px) {
  .past-results-cell {
    display: table-row;
    vertical-align: middle;
  }
  .past-results-cell td {
    padding: 12px 8px;
  }
  .past-results-cell td:first-of-type {
    padding-left: 16px;
  }
  .past-results-cell td:last-of-type {
    padding-right: 16px;
  }
}
@media screen and (min-width: 1008px) {
  .past-results-cell--rapid {
    display: table-row;
    vertical-align: middle;
  }
  .past-results-cell--rapid td {
    min-width: 80px;
  }
  .past-results-cell--rapid td:nth-of-type(2) {
    padding-left: 16px;
  }
}
.past-results-cell--draw-label {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.past-results-cell--draw-label td .winning-numbers {
  align-items: flex-start;
}
.past-results-cell--draw-label td .winning-numbers__content {
  flex-direction: column-reverse;
  gap: 0px;
}
.past-results-cell__your-winnings--winner {
  font-weight: bold;
}
.past-results-cell:nth-of-type(odd) {
  background-color: #e8f1f6;
}
.past-results-cell:nth-of-type(even) {
  background-color: #d0e1eb;
}
.past-results-cell__draw-jackpot {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.past-results-cell__jackpot-won-text {
  font-style: italic;
}
.past-results-cell__rapid-draw-number-and-time {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 1008px) {
  .past-results-cell__rapid-draw-number-and-time {
    display: none;
    visibility: hidden;
  }
}
.past-results-cell__rapid-draw-number,
.past-results-cell__rapid-draw-time {
  display: none;
  visibility: hidden;
}
@media screen and (min-width: 1008px) {
  .past-results-cell__rapid-draw-number,
  .past-results-cell__rapid-draw-time {
    display: table-cell;
    visibility: visible;
  }
}
.past-results-cell .winning-numbers {
  justify-content: flex-start;
  padding-left: 0;
}
.past-results-cell .winning-numbers__numbers {
  justify-content: left;
}
.past-results-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Red Hat Text", sans-serif;
  margin-top: 24px;
}
.past-results-table__clickable-header {
  display: flex;
  gap: 16px;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
}
.past-results-table__header-row {
  font-size: 16px;
  color: white;
  background-color: #276191;
  border-bottom: 1px solid #676b72;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
}
.past-results-table__header-row th {
  text-align: left;
  font-weight: normal;
  padding: 16px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media screen and (min-width: 1008px) {
  .past-results-table__header-row th {
    padding: 16px 8px;
  }
  .past-results-table__header-row th:first-of-type {
    padding-left: 16px;
  }
  .past-results-table__header-row th:last-of-type {
    padding-right: 16px;
  }
}
.past-results-table__header-row th:first-child {
  border-top-left-radius: 5px;
  overflow: hidden;
}
.past-results-table__header-row th:last-child {
  border-top-right-radius: 5px;
  overflow: hidden;
}
.past-results-table__rapid-mobile-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  box-sizing: border-box;
  align-items: flex-start;
}
.past-results-table__rapid-mobile-subheader {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.past-results-table__no-results {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  font-size: 16px;
}
@media screen and (min-width: 1008px) {
  .past-results-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 5px;
  }
  .past-results-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 5px;
  }
}

/* src/client/components/input-number/styles.scss */
.input-number {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.input-number__field {
  padding: 12px 16px;
  border: none;
  border-radius: 4px;
  font-family: "Red Hat Text", sans-serif;
  font-size: 16px;
}
.input-number__field::placeholder {
  color: #757575;
}
.input-number__field--error {
  border: 1px solid red;
}

/* src/client/components/past-results-form/styles.scss */
.past-results-form {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 16px;
  box-sizing: border-box;
  align-items: flex-start;
  margin: auto;
}
@media screen and (min-width: 1008px) {
  .past-results-form {
    padding: 0;
    max-width: unset;
    flex-direction: row;
    align-items: flex-end;
  }
}
@media screen and (min-width: 1008px) {
  .past-results-form--no-game {
    justify-content: space-between;
  }
}
.past-results-form--rapid {
  flex-direction: column;
  align-items: flex-start;
}
.past-results-form__inputs {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-sizing: border-box;
}
@media screen and (min-width: 1008px) {
  .past-results-form__inputs {
    flex-direction: row;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 16px;
  }
}
@media screen and (min-width: 1008px) {
  .past-results-form__inputs > *:not(:last-child) {
    width: 30%;
    max-width: calc((100% - 32px) / 3);
  }
}
.past-results-form button.past-results-form__submit-button {
  padding: 12px 24px;
  border-radius: 25px;
  font-family: "Red Hat Text", sans-serif;
  font-weight: bold;
  background-color: #de3517;
  color: white;
}
@media screen and (min-width: 1008px) {
  .past-results-form button.past-results-form__submit-button {
    margin-bottom: 2px;
  }
}
.past-results-form__your-numbers {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.past-results-form__your-numbers-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 320px;
}
@media screen and (min-width: 1008px) {
  .past-results-form__your-numbers-inputs {
    max-width: unset;
    flex-wrap: nowrap;
  }
}
.past-results-form__your-numbers-inputs > * {
  width: 46px;
}
.past-results-form input.past-results-form__number,
.past-results-form input.past-results-form__special-ball {
  padding-right: 0;
  padding-left: 0;
  text-align: center;
  font-size: 16px;
  appearance: textfield;
  -moz-appearance: textfield;
}
.past-results-form input.past-results-form__number::-webkit-outer-spin-button,
.past-results-form input.past-results-form__number::-webkit-inner-spin-button,
.past-results-form input.past-results-form__special-ball::-webkit-outer-spin-button,
.past-results-form input.past-results-form__special-ball::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.past-results-form input.past-results-form__special-ball {
  border: 2px solid var(--special-ball-color, #676b72);
}
@media screen and (min-width: 1008px) {
  .past-results-form__drawings-select,
  .past-results-form__game-select {
    width: 100%;
    max-width: 315px;
  }
}
.past-results-form__drawings-select select,
.past-results-form__game-select select {
  padding: 12px;
}
.past-results-form__drawings-select__chevron,
.past-results-form__game-select__chevron {
  top: 12px;
}

/* src/client/components/input-date/styles.scss */
.input-date {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 4px;
}
.input-date__field {
  padding: 12px 16px;
  box-sizing: border-box;
  min-height: 45px;
  background-color: white;
  text-align: left;
  border: none;
  border-radius: 4px;
  font-family: "Red Hat Text", sans-serif;
  font-size: 16px;
}
.input-date__field--placeholder {
  color: #757575;
}
.input-date__modal__content {
  width: auto;
  max-width: 300px;
}
.input-date__calendar-icon {
  position: absolute;
  right: 16px;
  bottom: 8px;
}

/* src/client/components/past-results/styles.scss */
@media screen and (min-width: 1008px) {
  .past-results {
    padding: 0 16px;
  }
}
.past-results__state-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  width: 100%;
}
.past-results__load-more-button {
  border-radius: 5px;
  background-color: white;
  color: #de3517;
  padding: 12px 24px;
  font-family: "Red Hat Text", sans-serif;
  font-weight: bold;
  border: 2px solid #de3517;
}
.past-results__load-more-container {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.past-results__download-button {
  display: none;
  visibility: hidden;
}
@media screen and (min-width: 1008px) {
  .past-results__download-button {
    display: inline-block;
    visibility: visible;
    font-size: 17px;
    font-weight: 600;
    margin-top: 24px;
  }
}

/* src/client/components/past-results-page/styles.scss */
.past-results-page {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* src/client/components/input-multi-select/styles.scss */
.input-multi-select {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  font-size: 16px;
}
.input-multi-select__select {
  font-family: "Red Hat Text", sans-serif;
  border-radius: 4px;
}
.input-multi-select__select--error {
  border: 1px solid red;
}
.input-multi-select__control {
  padding: 3px 0;
}

/* src/client/components/prizes-remaining-form/styles.scss */
.prizes-remaining-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: stretch;
  gap: 16px;
}
.prizes-remaining-form__desktop-top-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
@media screen and (min-width: 1008px) {
  .prizes-remaining-form__desktop-top-row {
    flex-direction: row;
    align-items: flex-end;
  }
}
.prizes-remaining-form__desktop-bottom-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
@media screen and (min-width: 1008px) {
  .prizes-remaining-form__desktop-bottom-row {
    flex-direction: row;
    align-items: flex-end;
  }
}
@media screen and (min-width: 1008px) {
  .prizes-remaining-form__desktop-bottom-row > *:first-child {
    width: 40%;
  }
}
@media screen and (max-width: 1008px) {
  .prizes-remaining-form__desktop-bottom-row > *:last-child {
    align-self: flex-start;
  }
}
.prizes-remaining-form__filter-list-title {
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  font-family: "Red Hat Text", sans-serif;
  margin: 0;
}
.prizes-remaining-form__filter-submit-button {
  border-radius: 25px;
  padding: 12px;
  font-family: "Red Hat Text", sans-serif;
  font-weight: bold;
  text-align: center;
  background-color: #de3517;
  color: white;
  padding: 12px 24px;
  border: 1px solid #186259;
  border-radius: 25px;
}
.prizes-remaining-form__filter-remove-button {
  border-radius: 3px;
  font-weight: bold;
  padding: 0;
}
.prizes-remaining-form__meta-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 24px 0;
  font-family: "Red Hat Text", sans-serif;
}

/* src/client/components/prizes-remaining-dropdown-card/styles.scss */
.prizes-remaining-game-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1490196078);
  border-radius: 4px;
  background-color: white;
  font-family: "Red Hat Text", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #2b3037;
}
.prizes-remaining-game-card__subtext {
  font-size: 12px;
  font-weight: 500;
}
.prizes-remaining-game-card__header {
  display: flex;
  gap: 8px;
  color: #ffffff;
  border-radius: 4px;
  padding: 8px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1490196078);
  background-color: #143652;
}
.prizes-remaining-game-card__vertical {
  display: flex;
  flex-direction: column;
}
.prizes-remaining-game-card__price {
  color: #143652;
  background-color: #ffffff;
}
.prizes-remaining-game-card__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 8px;
}
.prizes-remaining-game-card__list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.prizes-remaining-game-card__dropdown {
  border-top: 1px solid #dddfe1;
}
.prizes-remaining-game-card__dropdown__header {
  padding: 8px;
  box-sizing: border-box;
}

/* src/client/components/prizes-remaining/styles.scss */
.prizes-remaining__state {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.prizes-remaining__form-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 370px;
}
.prizes-remaining__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1008px) {
  .prizes-remaining__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.prizes-remaining__lists-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.prizes-remaining__disclaimer {
  font-family: "Red Hat Text", sans-serif;
  padding-top: 24px;
  font-size: 22px;
  line-height: 1.3;
}

/* src/client/components/prizes-remaining-page/styles.scss */
.prizes-remaining-page {
  padding: 0 16px;
  margin-bottom: 100px;
}

/* src/client/components/date-range-selector/styles.scss */
.date-range-selector {
  width: 100%;
  max-width: 300px;
  font-family: "Red Hat Text", sans-serif;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.date-range-selector__input {
  background-color: #ffffff;
  width: 100%;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  gap: 2px;
  color: #231f20;
}
.date-range-selector__calendar-icon {
  padding: 8px;
  margin: 0 8px;
  display: flex;
  border-radius: 2px;
}
.date-range-selector__calendar-icon:hover {
  background-color: lightgray;
}
.date-range-selector__close-button {
  border-radius: 100%;
  padding: 4px;
  display: flex;
}
.date-range-selector__close-button:hover {
  background-color: lightgray;
}
.date-range-selector__label {
  color: #2b3037;
  font-size: 14px;
}
.date-range-selector__text {
  font-family: "Red Hat Text", sans-serif;
  font-size: 16px;
  padding: 10px 16px;
  text-align: left;
  width: 100%;
}
.date-range-selector__text--placeholder {
  color: #757575;
}
.date-range-selector__modal__content {
  width: auto;
  max-width: 300px;
}
.date-range-calendar {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  padding: 20px 24px;
  box-sizing: border-box;
}
.date-range-calendar__header-text {
  font-size: 16px;
  font-style: normal;
  font-family: "Red Hat Text", sans-serif;
}
.date-range-calendar__input-select {
  gap: 0;
}
.date-range-calendar__input-select label {
  padding-left: 10px;
  font-size: 14px;
  color: #72757c;
}
.date-range-calendar__month-and-year {
  display: flex;
}
.date-range-calendar__month {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-bottom: 7px;
}
.date-range-calendar__month-text {
  font-size: 16px;
  font-family: "Red Hat Text", sans-serif;
  margin-right: 2px;
}
.date-range-calendar__month-label {
  color: #72757c;
  font-size: 14px;
  font-family: "Red Hat Text", sans-serif;
}
.date-range-calendar__month-buttons {
  display: flex;
  column-gap: 8px;
}
.date-range-calendar__months-container {
  overflow: hidden;
  position: relative;
  min-height: 224px;
}
.date-range-calendar__nav-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* src/client/components/winners-table/styles.scss */
.winner-cell__col {
  color: #2b3037;
  font-size: 18px;
  font-weight: 500;
  font-family: "Red Hat Text", sans-serif;
  padding: 16px;
}
.winner-cell__container--last {
  float: right;
}
.winner-cell__vertical {
  display: flex;
  flex-direction: column;
  padding: 16px 0px 16px 12px;
  gap: 4px;
}
.winner-cell__date {
  font-size: 16px;
}
.winner-cell__game {
  font-weight: 600;
}
.winner-cell__winner {
  color: #000000;
  font-size: 14px;
}
.winner-cell__prize {
  float: right;
  padding: 16px 12px 16px 10px;
  font-size: 22px;
  font-weight: 600;
}
.winner-cell:nth-of-type(odd) {
  background-color: #e8f1f6;
}
.winner-cell:nth-of-type(even) {
  background-color: #d0e1eb;
}
.winners-table {
  width: 100%;
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 500;
  font-family: "Red Hat Text", sans-serif;
  background-color: #edeff0;
  border-collapse: collapse;
  border-radius: 5px;
  overflow: hidden;
}
.winners-table__header-row {
  color: #ffffff;
  font-weight: 600;
  background-color: #276191;
}
.winners-table__header-row__col {
  padding: 16px;
  border-bottom: 1px solid #676b72;
}
.winners-table__header-row__container {
  display: flex;
  align-items: center;
  gap: 16px;
}
.winners-table__header-row__container--clickable {
  cursor: pointer;
}
.winners-table__header-row__container--last {
  justify-content: flex-end;
}
.winners-table__download-button {
  color: #000000;
  font-size: 17px;
  font-weight: 600;
  font-family: "Red Hat Text", sans-serif;
  padding-bottom: 16px;
}

/* src/client/components/winners-form/styles.scss */
.winners-form {
  color: #2b3037;
  font-family: "Red Hat Text", sans-serif;
}
.winners-form__container {
  display: flex;
  gap: 16px;
  padding: 24px 0px;
}
@media (max-width: 800px) {
  .winners-form__container {
    flex-direction: column;
    gap: 24px;
  }
}
.winners-form__filter-list-title {
  font-size: 22px;
  font-weight: 500;
}
@media (max-width: 800px) {
  .winners-form__filter-list-title {
    font-size: 17px;
  }
}
.winners-form__game-multi-select {
  width: 100%;
  font-weight: normal;
}
.winners-form__game-multi-select label {
  color: #2b3037;
  font-size: 14px;
}
.winners-form__date-range-selector {
  justify-content: flex-end;
  max-width: none;
}
.winners-form__date-range-selector__text {
  padding: 12px;
}
.winners-form__filter-button {
  border-radius: 25px;
  padding: 12px;
  font-family: "Red Hat Text", sans-serif;
  font-weight: bold;
  text-align: center;
  background-color: #de3517;
  color: white;
  padding: 13px 24px;
  font-size: 16px;
  border-radius: 25px;
}
@media (min-width: 800px) {
  .winners-form__filter-button {
    align-self: flex-end;
  }
}
.winners-form__lower-container {
  display: flex;
  justify-content: space-between;
  padding-bottom: 24px;
}
.winners-form__total-results {
  color: #000;
  font-size: 16px;
  font-weight: 500;
}
.winners-form__remove-filters {
  display: flex;
  float: right;
  color: black;
  font-weight: 600;
  font-size: 16px;
}
@media (max-width: 800px) {
  .winners-form__remove-filters {
    font-size: 14px;
  }
}
.winners-form__remove-filters:disabled {
  color: #676b72;
}

/* src/client/components/pagination/styles.scss */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.pagination__button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #186259;
  color: #fff;
  border: none;
  padding: 8px 16px;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  transition: background-color 0.3s;
  max-width: 70px;
}
.pagination__button:hover {
  background-color: #186259;
}
.pagination__button:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}
.pagination__button--previous,
.pagination__button--next {
  font-weight: bold;
  border-radius: 25px;
}
.pagination__page-number {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #000000;
  padding: 8px 12px;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 25px;
  font-size: 14px;
  transition: background-color 0.3s;
}
.pagination__page-number:hover {
  background-color: #f0f0f0;
}
.pagination__page-number--active {
  background-color: #757575;
  color: #ffffff;
}
.pagination__page-number--active:disabled {
  opacity: 1;
}

/* src/client/components/winners/styles.scss */
.winners {
  padding-bottom: 100px;
}
.winners__state-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  width: 100%;
}

/* src/client/components/winners-page/styles.scss */
.winners-page {
  padding: 0px 16px;
}

/* src/client/components/map/styles.scss */
.map {
  width: 100%;
  height: 556px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
  box-sizing: border-box;
}
@media screen and (min-width: 1008px) {
  .map {
    height: 810px;
  }
}

/* src/client/components/retail-finder/styles.scss */
.retailer-info-window {
  font-family: "Red Hat Text", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #2b3037;
}
.retailer-info-window__name {
  font-weight: 600;
  font-size: 16px;
}
.retailer-info-window__address {
  font-size: 14px;
}
.retailer-info-window__phone {
  font-size: 14px;
  font-weight: 600;
}
.retailer-info-window__directions-link {
  color: #2b3037;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
}
.retail-finder {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 200px;
}
.retail-finder__input {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 12px;
}
@media screen and (min-width: 1008px) {
  .retail-finder__input {
    padding: 0;
  }
}
.retail-finder__controls {
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-sizing: border-box;
  width: 100%;
}
@media screen and (min-width: 1008px) {
  .retail-finder__controls {
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
  }
}
.retail-finder__filters {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 1008px) {
  .retail-finder__filters {
    width: 50%;
  }
}
.retail-finder__filter-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
}
.retail-finder__results {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1008px) {
  .retail-finder__results {
    flex-direction: row;
    gap: 12px;
  }
}
.retail-finder__results > *:first-child {
  padding: 0 12px;
}
@media screen and (min-width: 1008px) {
  .retail-finder__results > *:first-child {
    padding: 0;
  }
}
.retail-finder__reset-filters--active {
  font-weight: bold;
}
.retail-finder-list {
  font-family: "Red Hat Text", sans-serif;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (min-width: 1008px) {
  .retail-finder-list {
    width: 55%;
  }
}
.retail-finder-list__address {
  font-size: 16px;
}
.retail-finder-list__phone {
  font-size: 14px;
}
.retail-finder-list__header {
  padding: 16px;
  font-size: 18px;
  font-weight: 600;
  background-color: #276191;
  color: white;
}
.retail-finder-list__name {
  font-size: 18px;
  font-weight: 600;
}
.retail-finder-list__list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  max-height: 756px;
  overflow: auto;
}
.retail-finder-list__loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 300px;
}
.retail-finder-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
}
.retail-finder-list__item:nth-of-type(odd) {
  background-color: #e8f1f6;
}
.retail-finder-list__item:nth-of-type(even) {
  background-color: #d0e1eb;
}
.retail-finder-list__item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.retail-finder-list__no-results {
  margin: 10px auto;
  text-align: center;
  font-style: italic;
  font-size: 16px;
  display: inline-block;
  width: 100%;
}

/* src/client/components/retail-finder-page/styles.scss */
.retail-finder-page {
  display: flex;
  max-width: 1008px;
  margin: auto;
  flex-direction: column;
  align-items: left;
}

/* src/client/components/page-cms/styles.scss */
.cms-page {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  margin-top: 20px;
  margin-bottom: 100px;
  padding: 0 8px;
}
.cms-page__responsive-image,
.cms-page__cta {
  margin: auto;
}
.cms-page__accordion__cta {
  align-self: flex-end;
}
.cms-page__image-banner {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
/*# sourceMappingURL=index.css.map */
