.color-bar {
  height: 80px;
  width: 100vw;
  position: absolute;
  top: 0;
  background-color: var(--primary-1);
}

.promotions-revamp-container {
  padding: 0;
  padding-bottom: 16px;
  position: relative;
}

@media (min-width: 1359.5px) {
  .promotions-revamp-container {
    padding: 0px;
    padding-bottom: 16px;
  }
}

.promotions-revamp-container .header-container .promotions-filters {
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  font-weight: bold;
  justify-content: center;
  width: 100%;
  background-color: var(--primary-1);
  height: 80px;
  max-width: 1360px;
}

.promotions-revamp-container .header-container .promotions-filters .promotions-filter-elements {
  overflow: auto;
  display: flex;
  gap: 16px;
  white-space: nowrap;
  margin-right: auto;
  cursor: pointer;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.promotions-revamp-container .header-container .promotions-filters .promotions-filter-elements::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1023.5px) {
  .promotions-revamp-container .header-container .promotions-filters .promotions-filter-elements {
    gap: 24px;
  }
}

.promotions-revamp-container .header-container .promotions-filters .promotions-filter-elements .category {
  text-transform: uppercase;
  color: var(--primary-9);
}

@media (min-width: 374.5px) {
  .promotions-revamp-container .header-container .promotions-filters .promotions-filter-elements .category {
    font-size: 12px;
  }
}

@media (min-width: 767.5px) {
  .promotions-revamp-container .header-container .promotions-filters .promotions-filter-elements .category {
    font-size: 14px;
  }
}

@media (min-width: 1023.5px) {
  .promotions-revamp-container .header-container .promotions-filters .promotions-filter-elements .category {
    height: 26px;
    font-size: 14px;
  }

  .promotions-revamp-container .header-container .promotions-filters .promotions-filter-elements .category:first-child {
    height: 22px;
    padding-top: 4px;
  }

  .promotions-revamp-container .header-container .promotions-filters .promotions-filter-elements .category:nth-child(n + 2) {
    display: flex;
    gap: 4px;
    align-items: center;
  }
}

.promotions-revamp-container .header-container .promotions-filters .promotions-filter-elements .category:last-child {
  margin-right: var(--spacing-16);
}

.promotions-revamp-container .header-container .promotions-filters .promotions-filter-elements .category:hover {
  color: var(--secondary-3);
  text-decoration: none;
}

@media (min-width: 1023.5px) {
  .promotions-revamp-container .header-container .promotions-filters .promotions-filter-elements .category:hover .active {
    display: initial;
  }
}

.promotions-revamp-container .header-container .promotions-filters .promotions-filter-elements .category:hover .initial {
  display: none;
}

.promotions-revamp-container .header-container .promotions-filters .promotions-filter-elements .category .active {
  display: none;
}

.promotions-revamp-container .header-container .promotions-filters .promotions-filter-elements .category.selected {
  color: var(--secondary-3);
}

.promotions-revamp-container .header-container .promotions-filters .promotions-filter-elements .category.selected .active {
  display: none;
}

@media (min-width: 1023.5px) {
  .promotions-revamp-container .header-container .promotions-filters .promotions-filter-elements .category.selected .active {
    display: initial;
  }
}

.promotions-revamp-container .header-container .promotions-filters .promotions-filter-elements .category.selected .initial {
  display: none;
}

.promotions-revamp-container .header-container .promotions-filters .promotions-filter-elements .category a span {
  font-size: 12px;
}

.promotions-revamp-container .header-container .promotions-filters .promotions-filter-elements .category img {
  display: none;
}

@media (min-width: 1023.5px) {
  .promotions-revamp-container .header-container .promotions-filters .promotions-filter-elements .category img {
    display: initial;
    height: 16px;
    width: 16px;
  }
}

.promotions-revamp-container .header-container .promotions-filters .promotions-more-filters {
  padding: 14px;
  font-size: 14px;
  box-shadow: -50px 0px 30px 0px var(--primary-1);
  z-index: 1;
}

.promotions-revamp-container .header-container .promotions-filters .promotions-more-filters img {
  margin-right: 8px;
  width: 16px;
  height: 16px;
}

.area {
  max-width: 1360px;
}

.area .hidden,
.area .details {
  display: none;
}

.area .swiper-wrapper>.swiper-slide {
  width: auto;
}

.area .swiper-wrapper>.swiper-slide~.swiper-slide {
  margin-left: 0px;
}

.area .static-container {
  display: flex;
  flex-flow: column;
  width: 100%;
  gap: 8px;
}

@media (min-width: 767.5px) {
  .area .static-container {
    flex-flow: row;
    gap: 16px;
  }
}

@media (min-width: 1023.5px) {
  .area .static-container {
    gap: 16px;
  }
}

@media (min-width: 1359.5px) {
  .area .static-container {
    gap: 16px;
  }
}

.area .static-container .hidden,
.area .static-container .details {
  display: none;
}

.area .static-container .tile {
  position: relative;
  width: 100%;
  height: 153px;
  background-color: var(--opacity-1);
}

@media (min-width: 767.5px) {
  .area .static-container .tile {
    width: 50%;
    height: 154px;
  }
}

@media (min-width: 1023.5px) {
  .area .static-container .tile {
    height: 378px;
    width: 648px;
  }
}

@media (min-width: 1359.5px) {
  .area .static-container .tile {
    height: 378px;
    width: 648px;
  }
}

.area .static-container .tile .tile-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  max-width: 50%;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
}

@media (min-width: 1023.5px) {
  .area .static-container .tile .tile-info {
    margin-right: 64px;
  }
}

.area .static-container .tile .tile-info .ribbon {
  display: block;
  background: var(--primary-3);
  padding: 0 8px;
  font-size: 12px;
  color: var(--other-1);
  font-weight: bold;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 8px;
}

@media (min-width: 767.5px) {
  .area .static-container .tile .tile-info .ribbon {
    margin-bottom: 16px;
  }
}

.area .static-container .tile .tile-info .title,
.area .static-container .tile .tile-info .subtitle {
  display: block;
  color: var(--other-1);
  font-size: 32px;
  line-height: 40px;
  font-weight: bold;
  word-break: break-all;
}

@media (min-width: 1359.5px) {

  .area .static-container .tile .tile-info .title,
  .area .static-container .tile .tile-info .subtitle {
    font-size: 32px;
    line-height: 40px;
  }
}

.area .static-container .tile .tile-info .subtitle {
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
}

.area .static-container .tile .tile-info .more-info-button {
  height: 24px;
  width: 75px;
  background-color: var(--primary-2);
  color: var(--primary-1);
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
  line-height: 24px;
  font-weight: bold;
  margin-top: 8px;
  border-radius: 2px;
}

@media (min-width: 767.5px) {
  .area .static-container .tile .tile-info .more-info-button {
    margin-top: 16px;
  }
}

@media (min-width: 1023.5px) {
  .area .static-container .tile .tile-info .more-info-button {
    width: 143px;
    height: 40px;
    font-size: 22px;
    line-height: 40px;
    white-space: nowrap;
  }
}

.area .static-container .tile .tile-info .more-info-button:hover {
  background-color: var(--primary-1);
}

.area .static-container .tile img {
  height: 100%;
  width: 100%;
  border-radius: 10px;
}

.promotions-revamp-container .area[data-name="Recently Claimed"] {
  display: none;
  background-color: var(--primary-2);
}

.promotions-revamp-container .area[data-name="Recently Claimed"] .title-component {
  padding-top: 24px;
  padding-bottom: 16px;
  margin-bottom: 0;
}

@media (min-width: 1359.5px) {
  .promotions-revamp-container .area[data-name="Recently Claimed"] .title-component {
    padding-top: 40px;
    padding-bottom: 24px;
  }
}

.promotions-revamp-container .area[data-name="Recently Claimed"] .title-component img,
.promotions-revamp-container .area[data-name="Recently Claimed"] .title-component span {
  z-index: 2;
}

.dynamic-content .area[data-name="Recently Claimed"] .tiles.promotion-tiles .tile .promotion-time-left span.promotion-days-left {
  font-size: 10px;
}

@media (min-width: 374.5px) {
  .dynamic-content .area[data-name="Recently Claimed"] .tiles.promotion-tiles .tile .promotion-time-left span.promotion-days-left {
    font-size: 8px;
  }
}

@media (min-width: 767.5px) {
  .dynamic-content .area[data-name="Recently Claimed"] .tiles.promotion-tiles .tile .promotion-time-left span.promotion-days-left {
    font-size: 10px;
  }
}

@media (min-width: 1359.5px) {
  .dynamic-content .area[data-name="Recently Claimed"] .tiles.promotion-tiles .tile .promotion-time-left span.promotion-days-left {
    font-size: 10px;
  }
}

.area[data-name="Recently Claimed"] {
  position: relative;
  padding-bottom: 32px;
}

@media (min-width: 1023.5px) {
  .area[data-name="Recently Claimed"] {
    margin-top: 0px;
  }
}

@media (min-width: 1359.5px) {
  .area[data-name="Recently Claimed"] {
    padding-bottom: 40px;
  }
}

.area[data-name="Recently Claimed"] .background {
  background-color: var(--primary-2);
}

.area[data-name="Recently Claimed"] .swiper .swiper-wrapper .hidden,
.area[data-name="Recently Claimed"] .swiper .swiper-wrapper .details {
  display: none;
}

.area[data-name="Recently Claimed"] .swiper .swiper-wrapper .swiper-slide:last-child {
  margin-right: var(--spacing-24) !important;
}

.area[data-name="Recently Claimed"] .swiper .swiper-wrapper .swiper-slide .tile {
  cursor: pointer;
  height: 136px !important;
  width: 320px !important;
  margin-bottom: 0px;
  transition: 0.3s all;
}

@media (min-width: 374.5px) {
  .area[data-name="Recently Claimed"] .swiper .swiper-wrapper .swiper-slide .tile {
    height: 136px !important;
    width: 320px !important;
  }
}

@media (min-width: 767.5px) {
  .area[data-name="Recently Claimed"] .swiper .swiper-wrapper .swiper-slide .tile {
    height: 160px !important;
    width: 420px !important;
  }
}

@media (min-width: 1023.5px) {
  .area[data-name="Recently Claimed"] .swiper .swiper-wrapper .swiper-slide .tile {
    height: 160px !important;
    width: 427px !important;
  }
}

.area[data-name="Recently Claimed"] .swiper .swiper-wrapper .swiper-slide .tile .promotion-footer {
  display: none !important;
}

.area[data-name="Recently Claimed"] .swiper .swiper-wrapper .swiper-slide .tile:hover {
  transform: scale(1.01);
}

.area[data-name="Recently Claimed"] .swiper .swiper-wrapper .swiper-slide .tile .from-tablet-up {
  width: 100%;
  height: 160px;
}

.area[data-name="Recently Claimed"] .swiper .swiper-wrapper .swiper-slide .tile .up-to-tablet {
  width: 100%;
  height: 160px;
}

.area[data-name="Recently Claimed"] .swiper .swiper-wrapper .swiper-slide .tile .ribbons {
  display: flex;
  align-items: center;
  text-align: center;
  height: 16px;
  gap: 4px;
}

.area[data-name="Recently Claimed"] .swiper .swiper-wrapper .swiper-slide .tile .ribbons .ribbon {
  display: flex;
  height: 16px;
  font-size: 8px;
  font-weight: bold;
  line-height: 12px;
  padding: 0 4px !important;
  align-items: center;
}

.area[data-name="Recently Claimed"] .swiper .swiper-wrapper .swiper-slide .tile .info-box {
  top: 22px;
  display: block;
  overflow: hidden;
  padding-right: 0;
  height: auto;
}

@media (min-width: 767.5px) {
  .area[data-name="Recently Claimed"] .swiper .swiper-wrapper .swiper-slide .tile .info-box {
    top: 32px;
  }
}

.area[data-name="Recently Claimed"] .swiper .swiper-wrapper .swiper-slide .tile .info-box .promotion-time-left img {
  width: 12px;
}

.area[data-name="Recently Claimed"] .swiper .swiper-wrapper .swiper-slide .tile .info-box .promotion-time-left span {
  font-size: 10px;
}

.area[data-name="Recently Claimed"] .swiper .swiper-wrapper .swiper-slide .tile .info-box .promo-text {
  text-transform: uppercase;
  font-size: 12px;
  padding: 2px;
  line-height: 16px;
}

@media (min-width: 374.5px) {
  .area[data-name="Recently Claimed"] .swiper .swiper-wrapper .swiper-slide .tile .info-box .promo-text {
    font-size: 16px;
    line-height: 20px;
  }
}

@media (min-width: 767.5px) {
  .area[data-name="Recently Claimed"] .swiper .swiper-wrapper .swiper-slide .tile .info-box .promo-text {
    font-size: 20px;
    line-height: 24px;
  }
}

@media (min-width: 1359.5px) {
  .area[data-name="Recently Claimed"] .swiper .swiper-wrapper .swiper-slide .tile .info-box .promo-text {
    font-size: 20px;
    line-height: 24px;
  }
}

.area[data-name="Recently Claimed"] .swiper .swiper-wrapper .swiper-slide .tile .info-box .promo-subtext {
  text-transform: initial;
  margin-top: 2px;
}

@media (min-width: 374.5px) {
  .area[data-name="Recently Claimed"] .swiper .swiper-wrapper .swiper-slide .tile .info-box .promo-subtext {
    font-size: 10px;
    line-height: 12px;
  }
}

@media (min-width: 767.5px) {
  .area[data-name="Recently Claimed"] .swiper .swiper-wrapper .swiper-slide .tile .info-box .promo-subtext {
    font-size: 12px;
    line-height: 14px;
  }
}

.area[data-name="Recently Claimed"] .swiper .swiper-wrapper .swiper-slide .tile .info-box .cta-wrapper {
  display: none;
  width: 80%;
}

@media (min-width: 1359.5px) {
  .area[data-name="Recently Claimed"] .swiper .swiper-wrapper .swiper-slide .tile .info-box .cta-wrapper {
    padding-top: 0px;
  }
}

@media (min-width: 1359.5px) {
  .area[data-name="Recently Claimed"] .swiper .swiper-wrapper .swiper-slide .tile .info-box .cta-wrapper .more-info {
    line-height: 22px;
  }
}

@media (min-width: 1359.5px) {
  .area[data-name="Recently Claimed"] .swiper .swiper-wrapper .swiper-slide .tile .info-box .cta-wrapper .claim {
    line-height: 24px;
  }
}

.unfiltered-content {
  display: block;
  margin-top: 32px;
  width: 100%;
  padding: 0px;
}

.unfiltered-content.hide {
  display: none;
}

@media (min-width: 374.5px) {
  .unfiltered-content .title-component .promotion-category-title {
    padding-right: 90px;
  }
}

@media (min-width: 767.5px) {
  .unfiltered-content .title-component .promotion-category-title {
    padding-right: 122px;
  }
}

@media (min-width: 1023.5px) {
  .unfiltered-content .title-component .promotion-category-title {
    padding-right: 136px;
  }
}

.unfiltered-content .swiper-tiles {
  width: auto !important;
}

.filtered-content {
  display: none !important;
  padding: 0 16px;
}

@media (min-width: 1023.5px) {
  .filtered-content {
    padding: 0px;
  }
}

.filtered-content.show {
  display: block !important;
}

.filtered-content .filtered-title {
  display: flex;
  font-weight: bold;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}

@media (min-width: 767.5px) {
  .filtered-content .filtered-title {
    padding-bottom: 20px;
    padding-top: 20px;
  }
}

@media (min-width: 1023.5px) {
  .filtered-content .filtered-title {
    padding-bottom: 24px;
    padding-top: 24px;
  }
}

.filtered-content .filtered-title .title-component span {
  color: var(--primary-1);
  font-size: 16px;
  line-height: 20px;
  font-weight: bold;
  padding-left: 0px;
}

@media (min-width: 767.5px) {
  .filtered-content .filtered-title .title-component span {
    font-size: 20px;
    line-height: 24px;
  }
}

@media (min-width: 1023.5px) {
  .filtered-content .filtered-title .title-component span {
    font-size: 24px;
    line-height: 32px;
  }
}

.filtered-content .filtered-title .clear-filters {
  color: var(--primary-mode-1);
  cursor: pointer;
  font-size: 10px;
  line-height: 14px;
  display: flex;
}

.filtered-content .filtered-title .clear-filters:hover .error {
  background-color: var(--primary-mode-1);
}

.filtered-content .filtered-title .clear-filters .clear-filters-text {
  line-height: 14px;
  font-size: 10px;
  color: var(--primary-mode-1);
  cursor: pointer;
  display: block;
  padding-left: 0;
}

@media (min-width: 767.5px) {
  .filtered-content .filtered-title .clear-filters .clear-filters-text {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (min-width: 1023.5px) {
  .filtered-content .filtered-title .clear-filters .clear-filters-text {
    font-size: 16px;
    line-height: 24px;
  }
}

.filtered-content .filtered-title .clear-filters .error {
  width: 12px;
  height: 12px;
  margin: auto;
  margin-left: 4px;
  background-color: var(--primary-mode-7);
}

@media (min-width: 767.5px) {
  .filtered-content .filtered-title .clear-filters .error {
    width: 16px;
    height: 16px;
    margin-left: 8px;
  }
}

.filtered-content .filtered-title .casino-filter-icon {
  filter: invert(1);
  width: 24px;
  margin-left: 8px;
}

.filtered-content .filtered-title span {
  padding-left: 8px;
  font-size: 16px;
  color: var(--opacity-2);
}

@media (min-width: 767.5px) {
  .filtered-content .filtered-title span {
    font-size: 18px;
  }
}

.filtered-content .filtered-row {
  display: flex;
  flex-direction: row;
  flex-wrap: unset;
  width: 100%;
  grid-gap: 4px;
  overflow-y: auto;
  padding-bottom: 32px;
  padding-top: 8px;
}

@media (min-width: 1023.5px) {
  .filtered-content .filtered-row {
    flex-wrap: wrap;
    grid-gap: 8px;
    overflow-y: unset;
    padding-bottom: 40px;
  }
}

.filtered-content .filtered-row .round {
  height: 38px;
  display: flex;
  gap: 8px;
  border-radius: 20px;
  border: solid 1px var(--primary-9);
  background-color: var(--opacity-2);
  justify-content: center;
  align-items: center;
  position: relative;
  min-width: fit-content;
}

@media (min-width: 1023.5px) {
  .filtered-content .filtered-row .round {
    min-width: unset;
  }
}

.filtered-content .filtered-row .round.sort label:after {
  background-image: url(../../static/images/casino/icons/sort-icon.svg);
  background-size: 14px 20px;
  width: 14px;
  height: 20px;
  border: none;
  content: "";
  top: -5px;
  left: unset;
  transform: none;
  background-color: unset;
}

.filtered-content .filtered-row .round span {
  font-size: 12px;
  font-weight: bold;
  line-height: 18px;
  margin: 0 16px;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--primary-mode-1);
}

@media (min-width: 767.5px) {
  .filtered-content .filtered-row .round span {
    font-size: 14px;
    line-height: 20px;
  }
}

.filtered-content .filtered-row .round input {
  visibility: hidden;
  overflow: visible;
}

.filtered-content .filtered-row .round .clear-filter-type-icon {
  right: 16px;
  position: absolute;
  width: 16px;
  height: 16px;
  cursor: pointer;
  background-color: var(--primary-mode-7);
}

.filtered-content .filtered-row .round label {
  border: 1px solid var(--primary-9);
  border-radius: 50%;
  cursor: pointer;
  height: 16px;
  right: 16px;
  position: absolute;
  top: 11px;
  background: var(--primary-7);
  width: 16px;
}

.filtered-content .filtered-row .round label:before {
  background-color: var(--primary-9);
  transform: rotate(-45deg);
  border: none;
  position: absolute;
  top: 4px;
  left: 1px;
  width: 8px;
  height: 2px;
  content: "";
}

.filtered-content .filtered-row .round label:after {
  background-color: var(--primary-9);
  transform: rotate(45deg);
  border: none;
  position: absolute;
  top: 4px;
  left: 1px;
  width: 8px;
  height: 2px;
  content: "";
  opacity: 1;
}

.filtered-content .filtered-row .round:hover {
  border: 1px solid var(--primary-mode-1);
}

.filtered-content .filtered-row .round:hover .clear-filter-type-icon {
  background-color: var(--primary-mode-1);
}

.filtered-content .filtered-row .clear-filters {
  min-width: fit-content;
  margin-left: 4px;
  display: flex;
  align-items: center;
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
  font-weight: bold;
  color: var(--opacity-2);
}

@media (min-width: 1023.5px) {
  .filtered-content .filtered-row .clear-filters {
    min-width: unset;
  }
}

.filtered-content .persistent-tiles .tile .info-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
  overflow: hidden;
}

.filtered-content .persistent-tiles .tile .info-box .block.ribbons {
  justify-content: flex-start;
}

.filtered-content .persistent-tiles .tile .info-box .block.cta-wrapper {
  width: inherit;
}

#back-to-top {
  margin-right: auto;
  margin-left: auto;
  width: 169px;
  display: flex;
  justify-content: center;
  cursor: pointer;
  margin-bottom: 48px;
  white-space: nowrap;
  position: relative;
}

#back-to-top span {
  text-transform: uppercase;
}

#instant-games-section {
  font-size: 14px;
  display: block;
  margin-bottom: var(--spacing-16);
  margin-top: 32px;
}

@media (min-width: 1023.5px) {
  #instant-games-section {
    margin-bottom: var(--spacing-32);
  }
}

#instant-games-section #instant-games-button {
  background-color: var(--primary-2);
  color: var(--other-1);
  cursor: pointer;
  height: 60px;
  align-items: center;
  display: flex;
  position: relative;
  border-radius: 10px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#instant-games-section #instant-games-button:hover {
  background-color: var(--primary-3);
}

#instant-games-section #instant-games-button.active-section {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-color: var(--primary-3);
}

#instant-games-section #instant-games-button span {
  margin: 8px;
  font-weight: bold;
  text-transform: uppercase;
  margin-left: var(--spacing-16);
}

#instant-games-section #instant-games-button .instant-icon {
  width: 20px;
  height: 20px;
  margin: 0px 8px;
}

#instant-games-section #instant-games-button .instant-arrow {
  margin-left: auto;
  margin-right: var(--spacing-16);
  border-radius: 2px;
  transform: rotate(180deg);
  align-self: center;
  background-color: var(--primary-6);
  transition: all 300ms;
  width: 18px;
  height: 18px;
  -webkit-mask-size: 18px !important;
}

#instant-games-section #instant-games-button .instant-arrow.active-section {
  transform: rotate(0);
  border-radius: 2px;
  background-color: var(--other-1);
}

#instant-games-section #instant-games-container {
  -webkit-column-count: 1;
  -moz-column-count: 1;
  column-count: 1;
  display: -webkit-inline-box;
  width: 100%;
  text-align: left;
  color: var(--opacity-2);
}

@media (min-width: 767.5px) {
  #instant-games-section #instant-games-container {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
}

#instant-games-section #instant-games-container .terms-list-block {
  display: flex;
  text-align: left;
}

@media (min-width: 767.5px) {
  #instant-games-section #instant-games-container .terms-list-block {
    text-align: left;
  }
}

@media (min-width: 1023.5px) {
  #instant-games-section #instant-games-container .terms-list-block {
    text-align: justify;
  }
}

#instant-games-section #instant-games-container .terms-list-block ol {
  counter-reset: item;
  width: calc(100% - var(--spacing-32));
  padding: var(--spacing-16) var(--spacing-32);
  margin: 0 0 var(--spacing-2);
  font-size: 14px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

#instant-games-section #instant-games-container .terms-list-block ol>li:before {
  content: counters(item, ".") ". ";
  counter-increment: item;
  margin-right: var(--spacing-2);
  font-weight: 700;
}

#instant-games-section #instant-games-container .terms-list-block ol>li>ul li:before {
  content: "";
}

#instant-games-section #instant-games-container .terms-list-block li {
  margin-bottom: var(--spacing-16);
  list-style: none;
  position: relative;
  color: var(--primary-mode-1);
  font-weight: bold;
}

#instant-games-section #instant-games-container .terms-list-block li:before {
  content: counters(item, ".") ". ";
  counter-increment: item;
  margin-right: var(--spacing-2);
}

#instant-games-section #instant-games-container .terms-list-block li>ol {
  margin: 0;
  padding-bottom: 0;
  padding-left: var(--spacing-16);
}

#instant-games-section #instant-games-container .terms-list-block li>ul {
  margin-top: var(--spacing-2);
  padding-inline-start: var(--spacing-24);
}

#instant-games-section #instant-games-container .terms-list-block li>ol>li {
  font-weight: normal;
}

#instant-games-section #instant-games-container .terms-list-block li>ul>li {
  list-style-type: disc;
  font-weight: normal;
  margin-bottom: 0px;
}

#instant-games-section #instant-games-container .terms-container {
  padding: 0 var(--spacing-24);
}

#instant-games-section #instant-games-container .terms-container .terms-header-conversion-table {
  display: flex;
  height: 32px;
  justify-content: center;
  align-items: center;
  padding-bottom: var(--spacing-20);
}

#instant-games-section #instant-games-container .terms-container .terms-header-conversion-table .terms-header-column {
  flex: 1;
  font-size: 16px;
  font-weight: bold;
  color: var(--primary-mode-1);
  text-transform: uppercase;
}

#instant-games-section #instant-games-container .terms-container .terms-header {
  display: flex;
  height: 44px;
  justify-content: center;
  align-items: center;
}

#instant-games-section #instant-games-container .terms-container .terms-header .terms-header-column {
  display: flex;
  align-items: center;
  height: 100%;
  flex: 1;
  font-size: 14px;
  font-weight: bold;
  background-color: var(--primary-mode-10);
  color: var(--primary-mode-1);
  border: 1px solid var(--primary-mode-9);
  padding: 0 var(--spacing-12);
}

#instant-games-section #instant-games-container .terms-container .terms-row {
  display: flex;
  height: 44px;
  margin-top: 1px;
}

#instant-games-section #instant-games-container .terms-container .terms-row .terms-col {
  flex: 1;
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 14px;
  color: var(--primary-mode-1);
  border: 1px solid var(--primary-mode-9);
  padding: 0 var(--spacing-12);
}

#instant-games-section #instant-games-container .terms-container .terms-row:nth-child(odd) {
  background-color: var(--other-mode-1);
}

#instant-games-section #instant-games-container .terms-container .terms-row:nth-child(even) {
  background-color: var(--primary-mode-11);
}

#instant-games-section #instant-games-container.hidden {
  display: none;
}

#instant-games-section #instant-games-container .category-wrapper {
  margin-top: 16px;
}

@media (min-width: 767.5px) {
  #instant-games-section #instant-games-container .category-wrapper {
    margin-top: 0px;
  }
}

#instant-games-section #instant-games-container .category-wrapper .game-wrapper {
  margin-bottom: 16px;
  column-count: 2;
}

@media (min-width: 767.5px) {
  #instant-games-section #instant-games-container .category-wrapper .game-wrapper {
    margin-bottom: 0px;
    column-count: unset;
  }
}

#instant-games-section #instant-games-container .category-title {
  border-bottom: 1px solid var(--secondary-1);
  font-size: 12px;
  padding-bottom: 8px;
  padding-top: 10px;
  margin-bottom: 8px;
  text-transform: uppercase;
  color: var(--opacity-1) !important;
}

#instant-games-section #instant-games-container .category-title:first-child {
  padding-top: 0px;
}

#instant-games-section #instant-games-container .quick-game {
  margin-bottom: 16px;
  line-height: 18px;
}

#instant-games-section #instant-games-container .game-launch-name {
  color: var(--opacity-1) !important;
  font-size: 12px;
}

#instant-games-section #instant-games-container .game-launch-name:hover {
  color: var(--primary-2) !important;
  text-decoration: underline;
}

.no-events {
  pointer-events: none;
}