@font-face {
  font-family: 'Mont';
  src: local('Mont Light'), local('Mont-Light'),
  url('/assets/css/fonts/Mont-Light.woff2') format('woff2'),
  url('/assets/css/fonts/Mont-Light.woff') format('woff'),
  url('/assets/css/fonts/Mont-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Mont';
  src: local('Mont Regular'), local('Mont-Regular'),
  url('/assets/css/fonts/Mont-Regular.woff2') format('woff2'),
  url('/assets/css/fonts/Mont-Regular.woff') format('woff'),
  url('/assets/css/fonts/Mont-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Mont';
  src: local('Mont Semi Bold'), local('Mont-Semi-Bold'),
  url('/assets/css/fonts/Mont-SemiBold.woff2') format('woff2'),
  url('/assets/css/fonts/Mont-SemiBold.woff') format('woff'),
  url('/assets/css/fonts/Mont-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Mont';
  src: local('Mont Bold'), local('Mont-Bold'),
  url('/assets/css/fonts/Mont-Bold.woff2') format('woff2'),
  url('/assets/css/fonts/Mont-Bold.woff') format('woff'),
  url('/assets/css/fonts/Mont-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  font-family: "Mont", sans-serif;
  box-sizing: border-box;
  outline: none !important;
}

html {
  scroll-behavior: smooth;
  min-height: 100vh;
}

@keyframes animatedgradient {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
body {
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  padding: 0;
  margin: 0;
  position: relative;
}

.no-scroll {
  overflow: hidden;
}

.container {
  max-width: 1152px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.m-0 {
  margin: 0 !important;
}

.main_header_wrap {
  background-color: transparent;
}

.main_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 75px;
  gap: 20px;
}

.image-logo-wrap {
  max-width: 225px;
  width: 100%;
  display: flex;
  justify-content: left;
}
@media (max-width: 991px) {
  .image-logo-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    justify-content: center;
  }
}
.image-logo-wrap .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-logo-wrap .logo img {
  width: 100%;
  height: 36px;
}

.text-logo-wrap {
  display: flex;
  justify-content: left;
}
@media (max-width: 768px) {
  .text-logo-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.text-logo-wrap .logo {
  font-size: 28px;
  text-transform: uppercase;
  font-family: "Mont-SemiBold", sans-serif;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 30px;
  white-space: nowrap;
  border-radius: 10px;
  min-width: 194px;
  height: 36px;
  text-decoration: none;
}
@media (max-width: 768px) {
  .text-logo-wrap .logo {
    padding: 3px 20px;
    border-radius: 6px;
    font-size: 18px;
    height: 26px;
  }
}

.main_header_menu {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 254px;
}

.main_header_menu_item {
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  min-width: 105px;
  height: 41px;
  border-radius: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  text-align: center;
}
.main_header_menu_item:hover {
  text-decoration: underline;
}

.main_title_block_wrap {
  margin: 0;
}

.main_title_block {
  max-width: 835px;
  padding: 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin: 0 auto 0 0;
}
.main_title_block h1 {
  font-size: 48px;
  font-weight: 700;
  text-align: left;
  margin: 0;
  text-transform: capitalize;
}

.main_subtitle {
  font-size: 24px;
  text-align: left;
  font-weight: 500;
  margin: 10px 0;
}

.advantages_block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 965px;
  width: 100%;
  margin: 0 auto;
  gap: 20px;
}

.advantage_item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.advantage_item:nth-child(1) img {
  height: 18px;
}
.advantage_item img {
  height: 24px;
  display: block;
}
.advantage_item span {
  font-weight: 500;
  white-space: nowrap;
}

.brand_list_header_wrap {
  margin: 0 auto 10px;
}

.brand_list_header {
  background: #000980;
  border-radius: 8px;
  height: 50px;
  display: grid;
  grid-template-columns: minmax(250px, 280px) minmax(240px, 267px) minmax(220px, 263px) minmax(150px, 1fr);
  gap: 20px;
}

.brand_list_header_item {
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
}

/* .brand_list_wrap .container,
.top_list_wrap .container {
  max-width: 1455px;
} */

.brand_list,
.top_list {
  position: relative;
}
.brand_list .brand_item,
.top_list .brand_item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 147px;
  margin: 0 auto;
  z-index: 1;
}
.brand_list .brand_item:not(.highlighted),
.top_list .brand_item:not(.highlighted) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.top_list .brand_item.highlighted:before,
.top_list .brand_item.highlighted:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(84.68deg, #FBF7EC 3.08%, #F2EACE 35.14%, #EFE7C9 37.03%, #E7DFBD 38.92%, #E3DBB6 39.86%, #635E48 97.39%);
  left: 0;
  background-size: 300% 300%;
  animation: animatedgradient 3s ease alternate infinite;
}
.brand_list .brand_item.highlighted:before,
.top_list .brand_item.highlighted:before {
  top: 0;
}
.brand_list .brand_item.highlighted:after,
.top_list .brand_item.highlighted:after {
  bottom: 0;
}
.brand_list .brand_item.highlighted .gradient-border,
.top_list .brand_item.highlighted .gradient-border {
  display: block;
}
.brand_list .brand_item.highlighted .brand_ribbon,
.top_list .brand_item.highlighted .brand_ribbon {
  top: -14px;
}
.brand_list .brand_item .brand_item_wrapper,
.top_list .brand_item .brand_item_wrapper {
  max-width: 1152px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  height: 100%;
}
.brand_list .brand_logo_wrap,
.top_list .brand_logo_wrap {
  width: 100%;
  max-width: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand_list .brand_logo_wrap.with-ribbon,
.top_list .brand_logo_wrap.with-ribbon {
  padding: 25px 5px 10px 10px;
}
.brand_list .brand_ribbon,
.top_list .brand_ribbon {
  position: absolute;
  top: -15px;
  left: 0;
  height: 28px;
  min-width: 169px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px 0 15px;
  border-right: 5px solid rgba(0, 0, 0, 0);
  clip-path: polygon(0 0, 100% 0%, 94% 50%, 100% 100%, 0 100%, 0% 50%);
  white-space: nowrap;
  text-transform: uppercase;
  border-radius: 16px 0 0 0;
}
.brand_list .brand_ribbon span,
.top_list .brand_ribbon span {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
.brand_list .brand_logo,
.top_list .brand_logo {
  display: block;
  max-width: 198px;
  width: 100%;
  height: 74px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 1100px) {
  .brand_list .brand_logo,
  .top_list .brand_logo {
    width: 90%;
  }
}
.brand_list .brand_content_wrap,
.top_list .brand_content_wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.brand_list .brand_content,
.top_list .brand_content {
  display: flex;
  align-items: stretch;
  flex-shrink: 1;
  width: 100%;
  height: 100%;
  gap: 35px;
  /* max-width: 786px; */
  margin: 0 auto;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .brand_list .brand_content,
  .top_list .brand_content {
    justify-content: center;
  }
}
.brand_list .brand_item_part,
.top_list .brand_item_part {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.brand_list .brand_welcome_bonus,
.top_list .brand_welcome_bonus {
  position: relative;
  max-width: 277px;
  width: 100%;
}
.brand_list .brand_welcome_bonus a,
.top_list .brand_welcome_bonus a {
  color: #fff;
  text-decoration: none;
  width: 100%;
  display: block;
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
}
.brand_list .brand_welcome_bonus:hover,
.top_list .brand_welcome_bonus:hover {
  text-decoration: none;
}
.brand_list .brand_welcome_bonus .no-wagering,
.top_list .brand_welcome_bonus .no-wagering {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  margin-top: 2px;
}
.brand_list .brand_rates_wrap,
.top_list .brand_rates_wrap {
  min-width: 230px;
  position: relative;
  flex-direction: row;
  justify-content: space-between;
}
.brand_list .brand_rates,
.top_list .brand_rates {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  max-width: 121px;
}
.brand_list .brand_score,
.top_list .brand_score {
  font-size: 52px;
  color: #fff;
  font-weight: 800;
}
.brand_list .brand_rate_stars_wrap,
.top_list .brand_rate_stars_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.brand_list .brand_rate_stars_wrap img,
.top_list .brand_rate_stars_wrap img {
  width: 18px;
  height: 18px;
  display: block;
}
.brand_list .brand_rates_value,
.top_list .brand_rates_value {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  white-space: nowrap;
  text-align: center;
  padding-top: 5px;
}
.brand_list .betting-options-wrap,
.top_list .betting-options-wrap {
  width: 100%;
  max-width: 122px;
  padding: 0;
  position: relative;
  flex-direction: row;
  justify-content: center;
}
.brand_list .betting-options-wrap .betting-options,
.top_list .betting-options-wrap .betting-options {
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  display: flex;
}
.brand_list .betting-options-wrap .betting-options .betting-option,
.top_list .betting-options-wrap .betting-options .betting-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  width: 36px;
  height: 46px;
}
.brand_list .betting-options-wrap .betting-options .betting-option .betting-option__icon,
.top_list .betting-options-wrap .betting-options .betting-option .betting-option__icon {
  display: block;
  width: 31px;
  height: 24px;
  transform: scale(1);
  transition: all 0.3s;
}
.brand_list .betting-options-wrap .betting-options .betting-option .betting-option__icon:hover,
.top_list .betting-options-wrap .betting-options .betting-option .betting-option__icon:hover {
  transform: scale(1.05);
}
.brand_list .betting-options-wrap .betting-options .betting-option .betting-option__text,
.top_list .betting-options-wrap .betting-options .betting-option .betting-option__text {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
.brand_list .brand_payment_methods_wrap,
.top_list .brand_payment_methods_wrap {
  min-width: 90px;
  padding: 0 15px;
  position: relative;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}
.brand_list .brand_payment_methods_wrap a,
.top_list .brand_payment_methods_wrap a {
  display: block;
  width: 25px;
  height: 25px;
  margin: 0 2px;
  background-size: contain;
  transform: scale(1);
  transition: all 0.3s;
}
.brand_list .brand_payment_methods_wrap a:hover,
.top_list .brand_payment_methods_wrap a:hover {
  transform: scale(1.05);
}

.brand_list:before {
  content: "";
  position: absolute;
  width: 155px;
  height: 0;
  box-shadow: -20px -20px 185px 79px rgba(87, 115, 255, 0.75);
  top: 58%;
  right: 30px;
  z-index: -1;
  transform: rotate(45deg);
}
.brand_list:after {
  content: "";
  position: absolute;
  width: 350px;
  height: 0;
  box-shadow: -18px -20px 147px 68px rgb(158, 0, 0);
  bottom: 10%;
  left: 0;
  z-index: -1;
  transform: rotate(25deg);
}
@media (max-width: 991px) {
  .brand_list:before, .brand_list:after {
    display: none;
  }
}

.brand_get_bonus_wrap {
  width: 100%;
  max-width: 248px;
  padding: 0;
}

.brand_get_bonus {
  background: #1273EB;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  flex-shrink: 0;
  max-width: 248px;
  width: 100%;
  border-radius: 10px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: box-shadow 0.3s ease-out;
  padding: 0 20px;
  white-space: nowrap;
}
.brand_get_bonus:hover {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
}

.brand_visit_link {
  color: #fff;
  text-decoration: none;
  margin: 7px 0;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}
.brand_visit_link:hover {
  text-decoration: underline;
}

.brand_description, .brand_description__sticky-popup, .brand_description__mobile {
  min-height: 32px;
  width: 100%;
  background-color: inherit;
  color: #fff;
  text-align: center;
  padding: 5px 10px;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  font-weight: 500;
}
@media (max-width: 991px) {
  .brand_description, .brand_description__sticky-popup, .brand_description__mobile {
    display: none;
  }
}

.brand_description__mobile {
  display: none;
  border-radius: unset;
}
@media (max-width: 991px) {
  .brand_description__mobile {
    font-size: 7px;
    display: flex;
    position: relative;
    border-radius: 0 0 16px 16px;
    z-index: 1;
    min-height: unset;
    padding: 0 10px 6px;
    align-items: center;
    background: #fff;
  }
  .brand_description__mobile:before {
    content: "";
    width: 50%;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    z-index: -1;
    border-radius: 0 0 0 16px;
    background: #E5E5E5;
  }
}

@media (max-width: 991px) {
  .brand_description__sticky-popup {
    font-size: 7px;
    display: flex;
    position: relative;
    border-radius: 0 0 16px 16px;
    z-index: 1;
    min-height: unset;
    padding: 6px 10px 6px;
    align-items: center;
  }
}

.brand_description span a,
.brand_description__mobile span a,
.brand_description__sticky-popup span a {
  text-decoration: none;
  color: inherit;
}

.brand_descr_showhide_btn {
  background: transparent;
  border: none;
  font-size: 9px;
  color: inherit;
  padding: 0;
  cursor: pointer;
  margin: 0 0 0 5px;
  font-weight: inherit;
}

.top_list_wrap {
  margin: 0;
}

.top_list_title {
  position: relative;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  max-width: 760px;
  margin: 3px auto 15px;
  background: #000980;
  border-radius: 8px;
  padding: 22px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text_section_wrap {
  padding: 35px 0 100px;
}

.text_section h3 {
  margin: 0 0 15px;
  font-size: 24px;
  font-weight: 500;
}
.text_section p {
  margin: 0 0 15px;
  font-size: 14px;
  color: #fff;
  text-align: justify;
}

.text_section_title {
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0 0 25px;
  text-align: center;
}

.faq-block-wrap {
  padding: 30px 0 70px;
  position: relative;
}
@media (max-width: 991px) {
  .faq-block-wrap {
    padding: 30px 0;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .faq-block-wrap:before {
    display: none;
  }
}
.faq-block-wrap:before {
  content: "";
  position: absolute;
  width: 350px;
  height: 0;
  box-shadow: -20px -20px 185px 90px rgba(87, 115, 255, 0.75);
  top: 33%;
  left: 0;
  z-index: -1;
  transform: rotate(-21deg);
}
.faq-block-wrap h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
@media (max-width: 540px) {
  .faq-block-wrap h2 {
    font-size: 21px;
  }
}
.faq-block-wrap .faq-block {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px 10px;
  flex-wrap: wrap;
}
.faq-block-wrap .faq-block .faq-block__item {
  width: 49%;
  position: relative;
  display: flex;
  padding: 15px 15px;
  text-align: left;
  color: #fff;
  border-radius: 12px;
  background: transparent;
  min-height: 87px;
  align-items: flex-start;
  gap: 10px;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 640px) {
  .faq-block-wrap .faq-block .faq-block__item {
    width: 100%;
  }
}
.faq-block-wrap .faq-block .faq-block__item h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  max-width: 90%;
}
@media (max-width: 864px) {
  .faq-block-wrap .faq-block .faq-block__item h3 {
    max-width: 85%;
  }
}
.faq-block-wrap .faq-block .faq-block__item .faq-block__item-content {
  font-size: 12px;
  font-weight: 600;
}
.faq-block-wrap .faq-block .faq-block__item .faq-block__item-content.toggle-content.hide {
  display: none;
}
.faq-block-wrap .faq-block .faq-block__item .faq-block__item-content.toggle-content.show {
  display: block;
}
.faq-block-wrap .faq-block .faq-block__item .trigger-content {
  position: absolute;
  content: "";
  top: 20px;
  right: 20px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: none;
  background: rgb(18, 115, 235);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.benefits-section {
  position: relative;
  padding: 0 0 50px;
}
.benefits-section:before {
  content: "";
  position: absolute;
  top: 3%;
  left: 13%;
  width: 500px;
  height: 379px;
  background-image: url(../images/bg-flag.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1100px) {
  .benefits-section:before {
    left: 0;
  }
}
@media (max-width: 991px) {
  .benefits-section:before {
    display: none;
  }
}
@media (max-width: 991px) {
  .benefits-section {
    padding: 25px 0;
  }
}
.benefits-section .benefits-section__title {
  text-align: center;
  font-size: 48px;
  margin: 0 0 45px;
}
@media (max-width: 991px) {
  .benefits-section .benefits-section__title {
    font-size: 24px;
    margin-bottom: 23px;
  }
}
.benefits-section .benefits-section__wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: row-reverse;
  column-gap: 50px;
}
@media (max-width: 991px) {
  .benefits-section .benefits-section__wrap {
    flex-direction: column-reverse;
    align-items: center;
    row-gap: 30px;
  }
}
.benefits-section .benefits-section__content-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  max-width: 600px;
  width: 100%;
  margin-bottom: 0;
  gap: 10px;
}
@media (max-width: 991px) {
  .benefits-section .benefits-section__content-wrap {
    gap: 35px;
  }
}
.benefits-section .benefits-section__item {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin: 0;
  min-height: 157px;
  gap: 35px;
}
@media (max-width: 991px) {
  .benefits-section .benefits-section__item {
    flex-direction: column;
    align-items: center;
    max-width: 290px;
    gap: 20px;
  }
}
.benefits-section .benefits-section__logo-wrap {
  min-width: 136px;
  width: 136px;
  height: 136px;
  margin: 0;
  background: rgb(0, 9, 128);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .benefits-section .benefits-section__logo-wrap {
    margin: 0 0 10px;
    min-width: 120px;
    width: 120px;
    height: 120px;
  }
}
.benefits-section .benefits-section__logo-wrap img {
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.benefits-section .benefits-section__text-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 991px) {
  .benefits-section .benefits-section__text-wrap {
    text-align: center;
    align-items: center;
  }
}
.benefits-section .benefits-section__text-wrap .benefits-section__subtitle {
  font-size: 24px;
  line-height: 1.25;
  margin: 0;
  color: #fff;
}
.benefits-section .benefits-section__text-wrap .benefits-section__text {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .benefits-section .benefits-section__text-wrap .benefits-section__text {
    font-size: 14px;
  }
}
.benefits-section .benefits-section__text-wrap .benefits-section__text.toggle-content.hide {
  display: none;
}
.benefits-section .benefits-section__text-wrap .trigger-content {
  margin: 10px auto 20px 0;
  font-size: 16px;
  background: rgba(0, 0, 0, 0);
  border: none;
  color: #fff;
  min-width: 141px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  cursor: pointer;
}
@media (max-width: 991px) {
  .benefits-section .benefits-section__text-wrap .trigger-content {
    margin: 10px auto 20px;
  }
}
.benefits-section .benefits-section__icons-wrap {
  position: relative;
  padding: 0;
  max-width: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 25px;
}
@media (max-width: 991px) {
  .benefits-section .benefits-section__icons-wrap .benefits-section__icon-wrap-top {
    max-width: 217px;
    width: 100%;
    position: relative;
  }
}
@media (max-width: 991px) {
  .benefits-section .benefits-section__icons-wrap .benefits-section__icon-wrap-top img {
    width: 100%;
    height: auto;
  }
}
.benefits-section .benefits-section__icon-wrap-bottom {
  max-width: 344px;
  height: 73px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .benefits-section .benefits-section__icon-wrap-bottom img {
    width: 37px;
    height: 37px;
  }
}

.content-blocks {
  position: relative;
  padding: 45px 0;
  color: #fff;
}
.content-blocks:before {
  content: "";
  position: absolute;
  width: 450px;
  height: 0;
  box-shadow: -20px -19px 202px 160px rgba(158, 0, 0, 0.5);
  top: 29%;
  right: 0;
  z-index: -1;
  transform: rotate(25deg);
}
@media (max-width: 991px) {
  .content-blocks:before {
    display: none;
  }
}
.content-blocks .content-blocks__title {
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
}
.content-blocks .info-wrap {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  column-gap: 40px;
  margin: 20px auto;
}
@media (max-width: 991px) {
  .content-blocks .info-wrap {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin: 35px auto;
  }
}
.content-blocks .info-wrap:nth-of-type(1) .image-wrap {
  margin: 0;
}
.content-blocks .info-wrap .image-wrap {
  position: relative;
  max-width: 245px;
  height: 245px;
  margin: 55px 0 0;
  width: 100%;
  background: rgb(0, 9, 128);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .content-blocks .info-wrap .image-wrap {
    margin: 0;
    width: 100%;
  }
}
.content-blocks .info-wrap .image-wrap img {
  width: 75%;
  height: auto;
}
.content-blocks .info-wrap .content-wrap {
  max-width: 837px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
@media (max-width: 991px) {
  .content-blocks .info-wrap .content-wrap {
    max-width: 90%;
    display: block;
  }
  .content-blocks .info-wrap .content-wrap .toggle-content.hide {
    display: none;
  }
}
.content-blocks .info-wrap .content-wrap .subtitle {
  font-size: 20px;
  font-weight: 700;
  margin-top: 0;
}
@media (max-width: 991px) {
  .content-blocks .info-wrap .content-wrap .subtitle {
    text-align: center;
  }
}
.content-blocks .info-wrap .content-wrap .text {
  display: block !important;
  text-align: left;
  font-size: 16px;
  line-height: 1.21;
  color: #fff;
  margin: 0 0 30px;
}
@media (max-width: 991px) {
  .content-blocks .info-wrap .content-wrap .text {
    display: block !important;
    text-align: center;
    font-size: 14px;
  }
}
.content-blocks .info-wrap .content-wrap .trigger-content {
  display: none;
}
@media (max-width: 991px) {
  .content-blocks .info-wrap .content-wrap .trigger-content {
    margin: 30px auto 0;
    font-size: 12px;
    background: rgba(0, 0, 0, 0);
    border: none;
    color: rgb(18, 115, 235);
    min-width: 141px;
    display: block;
    padding: 0;
    text-transform: uppercase;
  }
}

.bottom_list_wrap {
  width: 100%;
  margin: 0;
  padding: 20px 0;
}
.bottom_list_wrap .bottom_list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
  padding: 30px 12px;
  scrollbar-color: rgba(3, 58, 166, 0.2) rgba(3, 58, 166, 0.2);
}
@media (max-width: 1170px) {
  .bottom_list_wrap .bottom_list {
    overflow-x: auto;
  }
}
.bottom_list_wrap .bottom_list::-webkit-scrollbar-track {
  background-color: rgba(3, 58, 166, 0.15);
  height: 4px;
  width: 4px;
}
.bottom_list_wrap .bottom_list::-webkit-scrollbar {
  height: 4px;
  width: 4px;
  background-color: rgba(3, 58, 166, 0.2);
}
.bottom_list_wrap .bottom_list::-webkit-scrollbar-thumb {
  border-radius: 5px;
  height: 4px;
  width: 4px;
  background-color: rgba(3, 58, 166, 0.15);
}
.bottom_list_wrap .bottom_list .bottom_list__item {
  position: relative;
  background: rgb(0, 9, 128);
  border-radius: 16px;
  width: 350px;
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  padding: 25px 20px;
  min-height: 504px;
  gap: 20px;
  transform: scale(1);
  transition: all 0.3s;
}
.bottom_list_wrap .bottom_list .bottom_list__item:hover {
  transform: scale(1.005);
}
@media (max-width: 640px) {
  .bottom_list_wrap .bottom_list .bottom_list__item {
    width: 190px;
    padding: 15px 10px;
    min-height: 333px;
  }
}
.bottom_list_wrap .bottom_list .bottom_list__item.primary {
  padding: 35px 20px 20px;
}
@media (max-width: 640px) {
  .bottom_list_wrap .bottom_list .bottom_list__item.primary {
    padding: 30px 10px 10px;
  }
}
.bottom_list_wrap .bottom_list .bottom_list__item_logo_wrap {
  border-radius: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  max-width: 297px;
  margin: 0 auto;
  height: 297px;
}
@media (max-width: 640px) {
  .bottom_list_wrap .bottom_list .bottom_list__item_logo_wrap {
    height: 148px;
  }
}
.bottom_list_wrap .bottom_list .bottom_list__item_logo_wrap .brand_ribbon {
  top: -17px;
  left: -39px;
  --s: 1.8em;
  --d: .8em;
  --c: .8em;
  position: absolute;
  padding: 0 var(--c) var(--d) calc(var(--s) + 0.5em);
  line-height: 1.8;
  background: conic-gradient(at left var(--s) bottom var(--d), rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.5333333333) 0 37.5%, rgba(0, 0, 0, 0.2666666667) 0);
  clip-path: polygon(calc(100% - var(--c)) 0%, 0 0%, var(--s) 0%, 13% 74%, 15% 83%, 12% 100%, calc(var(--s) + var(--d)) 100%, calc(var(--s) + var(--d)) calc(100% - var(--d)), calc(100% - var(--c)) calc(100% - var(--d)), 100% calc(50% - var(--d) / 2));
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 47px;
}
@media (max-width: 640px) {
  .bottom_list_wrap .bottom_list .bottom_list__item_logo_wrap .brand_ribbon {
    top: -12px;
    left: -30px;
    --s: 1.2em;
    --d: .7em;
    --c: .7em;
    padding: 0 var(--c) var(--d) calc(var(--s) + 0.1em);
    clip-path: polygon(calc(100% - var(--c)) 0%, 0 0%, var(--s) 0%, 13% 72%, 15% 83%, 12% 100%, calc(var(--s) + var(--d)) 100%, calc(var(--s) + var(--d)) calc(100% - var(--d)), calc(100% - var(--c)) calc(100% - var(--d)), 100% calc(50% - var(--d) / 2));
    height: 35px;
  }
}
.bottom_list_wrap .bottom_list .bottom_list__item_logo_wrap .brand_ribbon span {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 0 10px;
}
@media (max-width: 640px) {
  .bottom_list_wrap .bottom_list .bottom_list__item_logo_wrap .brand_ribbon span {
    font-size: 10px;
  }
}
.bottom_list_wrap .bottom_list .bottom_list__item_logo_wrap a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bottom_list_wrap .bottom_list .bottom_list__item_logo_wrap a .bottom_list__item_logo {
  height: 90px;
  display: block;
  width: 80%;
  max-width: 250px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.bottom_list_wrap .bottom_list .bottom_list__item_content_wrap {
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  height: 100%;
  gap: 15px;
}
.bottom_list_wrap .bottom_list .bottom_list__item_content_wrap > a {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .bottom_list_wrap .bottom_list .bottom_list__item_content_wrap > a {
    font-size: 16px;
  }
}
.bottom_list_wrap .bottom_list .bottom_list__item_welcome_bonus {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.bottom_list_wrap .bottom_list .bottom_list__item_welcome_bonus a {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  text-transform: capitalize;
}
@media (max-width: 640px) {
  .bottom_list_wrap .bottom_list .bottom_list__item_welcome_bonus a {
    font-size: 16px;
  }
}
.bottom_list_wrap .bottom_list .three_offer_rates_wrap {
  margin: auto 0 10px;
}
.bottom_list_wrap .bottom_list .three_offer_rates_wrap .brand_score {
  font-weight: 600;
  font-size: 48px;
  color: #232936;
  text-align: center;
}
.bottom_list_wrap .bottom_list .three_offer_get_bonus {
  background: linear-gradient(117.41deg, #DAB264 5.83%, #BE895F 48.23%, #996A45 94.17%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  flex-shrink: 0;
  max-width: 200px;
  width: 100%;
  border-radius: 25px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-weight: 600;
  font-size: 20px;
  margin: 10px 0 0;
  padding: 0 20px;
  white-space: nowrap;
}

#backToTopBtn {
  position: fixed;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  bottom: 44%;
  right: 10%;
  z-index: 9;
  display: none;
  box-shadow: 0 0 9px 2px #607D8B;
}
@media (max-width: 640px) {
  #backToTopBtn {
    width: 40px;
    height: 40px;
    right: 6%;
  }
}
#backToTopBtn img {
  width: 100%;
  height: auto;
}

.main_footer_wrap {
  background: transparent;
  padding: 40px 0;
}
.main_footer_wrap .main_footer {
  max-width: 1029px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 35px;
}

.footer_menu_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.footer_menu {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}
.footer_menu a {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  text-align: center;
  min-width: 141px;
  transition: color 0.2s ease-in-out;
}
.footer_menu a.active {
  color: #0091FF;
}
.footer_menu a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .footer_logo .image-logo-wrap,
  .footer_logo .text-logo-wrap {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
  }
}

.footer_menu_title {
  font-size: 20px;
  color: #ffffff;
  margin: 0;
}

.responsible-gaming-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  width: 100%;
  max-width: fit-content;
  margin: 0;
}
@media (max-width: 640px) {
  .responsible-gaming-logos {
    justify-content: center;
  }
}

.responsible-gaming-logos a, .responsible-gaming-logos span {
  margin-bottom: 10px;
}

.responsible-gaming-logos a:first-child img {
  height: 40px;
}
.responsible-gaming-logos a img,
.responsible-gaming-logos span img {
  width: 100%;
  height: 56px;
}

.footer-text {
  width: 100%;
  max-width: 596px;
  margin: 0 auto;
}
.footer-text p, .footer-text ul li {
  font-size: 12px;
  line-height: normal;
  text-align: center;
}
.footer-text p a, .footer-text ul li a {
  text-decoration: none;
}
@media (max-width: 640px) {
  .footer-text p, .footer-text ul li {
    font-size: 9px;
  }
}
.footer-text p span, .footer-text ul li span {
  display: block;
}
.footer-text p, .footer-text ul {
  margin: 0;
}
.footer-text a {
  color: #fff;
  text-decoration: underline;
}

.js_text__short,
.js_text__full,
.js_showhide_btn {
  display: none;
}

.js_text__short.show,
.js_text__full.show,
.js_showhide_btn.show {
  display: initial;
}

.bottom_offer_popup_overlay {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  width: 100%;
  z-index: 101;
  overflow-y: auto;
}
.bottom_offer_popup_overlay.show {
  display: block;
}

.bottom_offer_popup_wrap {
  height: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}

.bottom_offer_popup {
  width: 100%;
  position: relative;
}

.bottom_offer_popup_close_btn {
  border: none;
  cursor: pointer;
  transition: box-shadow 0.2s ease-in-out;
  position: absolute;
  top: 20px;
  right: 30px;
  background-color: transparent;
  z-index: 9;
}
.bottom_offer_popup_close_btn:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.offer_wrap {
  display: flex;
  align-items: stretch;
}

.bottom_offer_item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  min-height: 120px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  box-shadow: 0 0 9px 2px #607D8B;
  border: none;
}

.bottom_offer_logo_wrap {
  width: 100%;
  max-width: 300px;
  position: relative;
  background: #000980;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 1;
}

.bottom_offer_logo {
  display: block;
  max-width: 178px;
  width: 100%;
  height: 86px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.bottom_offer_content_wrap {
  background: #000980;
  padding: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  justify-content: space-around;
  width: 100%;
}

.bottom_offer_content {
  max-width: 489px;
  width: 100%;
  padding: 0 5px;
}

.bottom_offer_welcome_bonus {
  display: block;
  width: 100%;
  text-align: center;
}
.bottom_offer_welcome_bonus a {
  text-align: center;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}
.bottom_offer_welcome_bonus .no-wagering {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 24px;
  margin-top: 2px;
  display: block;
}

.bottom_offer_get_bonus {
  background: #1273EB;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  flex-shrink: 0;
  max-width: 248px;
  width: 100%;
  border-radius: 10px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: box-shadow 0.3s ease-out;
  padding: 0 20px;
  white-space: nowrap;
}
.bottom_offer_get_bonus:hover {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
}

.three_offer_popup_overlay {
  display: none;
  background: rgba(21, 28, 54, 0.7490196078);
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 101;
  overflow-y: auto;
}
.three_offer_popup_overlay.show {
  display: block;
}

.three_offer_popup_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  min-height: 656px;
  max-width: 1156px;
  width: 100%;
  margin: 0 auto;
}

.three_offer_popup {
  position: relative;
  padding: 30px;
  border-radius: 24px;
  width: 100%;
  min-height: 656px;
  background-image: url(../images/three-offer-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.three_offer_popup_close_btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.2s ease-in-out;
  position: absolute;
  top: 35px;
  right: 35px;
}
.three_offer_popup_close_btn:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.three_offer_popup_title {
  text-align: center;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  padding: 0 50px;
}

.offers_wrap {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
}

.three_offer_item {
  position: relative;
  border-radius: 16px;
  width: 330px;
  height: 413px;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.three_offer_item .three_offer_item-container {
  padding: 40px 20px 20px;
  background: rgb(0, 9, 128);
  border-radius: inherit;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
}
.three_offer_item.highlighted {
  width: 355px;
  min-height: 460px;
}
.three_offer_item.highlighted .gradient-border {
  display: block;
}
.three_offer_item.highlighted .three_offer_logo {
  height: 86px;
  width: 100%;
  max-width: 243px;
}
.three_offer_item.highlighted .brand_ribbon {
  top: -2px;
  left: -2px;
}
.three_offer_item .brand_ribbon {
  position: absolute;
  top: 0;
  left: 0;
  height: 28px;
  min-width: 158px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px 0 15px;
  border-right: 5px solid rgba(0, 0, 0, 0);
  clip-path: polygon(0 0, 100% 0%, 94% 50%, 100% 100%, 0 100%, 0% 50%);
  white-space: nowrap;
  text-transform: uppercase;
  border-radius: 16px 0 0 0;
}
.three_offer_item .brand_ribbon span {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.three_offer_logo_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  max-width: 275px;
  height: 103px;
  border-radius: 16px;
  margin: 0 auto;
}

.three_offer_logo {
  height: 72px;
  display: block;
  width: 100%;
  max-width: 204px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.three_offer_content_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  gap: 5px;
  justify-content: space-evenly;
}

.three_offer_welcome_bonus {
  text-align: center;
}
.three_offer_welcome_bonus a {
  display: inline;
  text-align: center;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}
.three_offer_welcome_bonus .no-wagering {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  display: block;
  width: 100%;
  margin-top: 3px;
}

.three_offer_rates_wrap .brand_rate_stars_wrap img {
  width: 14px;
  height: 14px;
}
.three_offer_rates_wrap .brand_rates_value {
  font-size: 12px;
  width: 100%;
  text-align: center;
  display: flex;
  gap: 3px;
}
.three_offer_rates_wrap .brand_score {
  font-weight: 700;
  font-size: 36px;
  color: #fff;
  text-align: center;
}
.three_offer_get_bonus {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 33px;
  flex-shrink: 0;
  max-width: 166px;
  width: 100%;
  border-radius: 4px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  padding: 0 20px;
  white-space: nowrap;
  background: rgb(18, 115, 235);
}

.three_offer_item.highlighted .three_offer_get_bonus {
  height: 56px;
  max-width: 248px;
  font-size: 18px;
}

.centered-highlight {
  margin: 0 auto;
}

.gradient-border {
  display: none;
  --borderWidth: 2px;
  position: absolute;
  top: calc(-1 * var(--borderWidth));
  left: calc(-1 * var(--borderWidth));
  height: calc(100% + var(--borderWidth) * 2);
  width: calc(100% + var(--borderWidth) * 2);
  background: linear-gradient(84.68deg, #FBF7EC 3.08%, #F2EACE 35.14%, #EFE7C9 37.03%, #E7DFBD 38.92%, #E3DBB6 39.86%, #635E48 97.39%);
  border-radius: 16px;
  z-index: -1;
  animation: animatedgradient 3s ease alternate infinite;
  background-size: 300% 300%;
}
@media (max-width: 1200px) {
  .gradient-border {
    width: calc(100% + var(--borderWidth) * 2);
    left: calc(-1 * var(--borderWidth));
  }
}
@media (max-width: 830px) {
  .gradient-border {
    width: calc(100% + var(--borderWidth) * 2);
    left: calc(-1 * var(--borderWidth));
  }
}

.brand_rates_wrap__mobile,
.brand_welcome_bonus__mobile,
.mobile_menu_btn,
.menu_close_btn,
.brand_payment_methods_wrap__mobile,
.betting-options-wrap__mobile {
  display: none;
}

.brand-link-hidden {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
}

.age-popup-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(36, 36, 36, 0.75);
  z-index: 999;
  display: none;
}
.age-popup-overlay .age-popup-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.age-popup-overlay .age-popup-wrap .age-popup {
  position: relative;
  width: 100%;
  max-width: 500px;
  min-height: 304px;
  border-radius: 16px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
}
@media (max-width: 640px) {
  .age-popup-overlay .age-popup-wrap .age-popup {
    max-width: 348px;
    min-height: 194px;
    gap: 5px;
    padding: 15px 10px;
  }
}
.age-popup-overlay .age-popup-wrap .age-popup__close_btn {
  position: absolute;
  content: "";
  top: 20px;
  right: 20px;
  cursor: pointer;
}
@media (max-width: 640px) {
  .age-popup-overlay .age-popup-wrap .age-popup__close_btn {
    top: 14px;
    right: 14px;
  }
}
.age-popup-overlay .age-popup-wrap .age-popup__title {
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  text-align: center;
  max-width: 378px;
  margin: 0;
}
.age-popup-overlay .age-popup-wrap .age-popup__text {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  max-width: 378px;
}
.age-popup-overlay .age-popup-wrap .age-popup label {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.age-popup-overlay .age-popup-wrap .age-popup label input[type=checkbox] {
  position: relative;
  cursor: pointer;
  width: 16px;
  height: 16px;
  border: 2px solid #FFFFFF;
  border-radius: 2px;
  left: -10%;
  top: 0;
}
.age-popup-overlay .age-popup-wrap .age-popup label input[type=checkbox]:checked:before {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #C60C30;
}
.age-popup-overlay .age-popup-wrap .age-popup label input[type=checkbox]:before {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background-color: #C60C30;
}
.age-popup-overlay .age-popup-wrap .age-popup label input[type=checkbox]:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 1px solid #fff;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  position: absolute;
  top: 0;
  left: 50px;
  transition: all 0.2s linear;
}
.age-popup-overlay .age-popup-wrap .age-popup label input[type=checkbox]:checked:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  left: 2px;
  top: 0;
}
.age-popup-overlay .age-popup-wrap .age-popup label .text {
  font-size: 14px;
  font-weight: 500;
}
.age-popup-overlay .age-popup-wrap .age-popup label #age_error {
  position: absolute;
  top: 18px;
  color: #e70909;
  font-size: 14px;
}
.age-popup-overlay .age-popup-wrap .age-popup .buttons-block {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
@media (max-width: 640px) {
  .age-popup-overlay .age-popup-wrap .age-popup .buttons-block {
    width: 85%;
  }
}
.age-popup-overlay .age-popup-wrap .age-popup .buttons-block .agree-btn,
.age-popup-overlay .age-popup-wrap .age-popup .buttons-block .reject-btn {
  width: 100%;
  max-width: 208px;
  height: 48px;
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(117.41deg, #DAB264 5.83%, #BE895F 48.23%, #996A45 94.17%);
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2509803922);
  border-radius: 100px;
  border: none;
  cursor: pointer;
  position: relative;
  transform: scale(1);
  text-shadow: 0 5px 4px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}
.age-popup-overlay .age-popup-wrap .age-popup .buttons-block .agree-btn:hover,
.age-popup-overlay .age-popup-wrap .age-popup .buttons-block .reject-btn:hover {
  transform: scale(1.03);
}
@media (max-width: 640px) {
  .age-popup-overlay .age-popup-wrap .age-popup .buttons-block .agree-btn,
  .age-popup-overlay .age-popup-wrap .age-popup .buttons-block .reject-btn {
    max-width: 134px;
    height: 36px;
    font-size: 14px;
  }
}

.age-popup-overlay.show {
  display: block;
}

.offer-payment {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  margin: 5px;
}
.offer-payment img {
  width: 24px;
  height: 24px;
  margin: 2px;
  filter: drop-shadow(0.4rem 0.4rem 0.45rem rgba(0, 0, 30, 0.5));
}

.offer-link {
  color: #FFFFFF;
  font-size: 12px;
  padding-top: 5px;
}

@media (max-width: 1170px) {
  .brand_list_header {
    grid-template-columns: minmax(270px, 275px) minmax(250px, 255px) minmax(140px, 150px) minmax(250px, 280px);
    gap: 35px;
  }
  .brand_welcome_bonus:before {
    display: none;
  }
  .brand_list .brand_logo_wrap,
  .top_list .brand_logo_wrap {
    max-width: 270px;
  }
  .brand_list .brand_welcome_bonus a,
  .top_list .brand_welcome_bonus a {
    font-size: 18px;
  }
  .brand_list .brand_score,
  .top_list .brand_score {
    font-size: 26px;
  }
  .bottom_offer_popup_close_btn {
    top: 10%;
    right: 3%;
  }
}
@media (max-width: 1024px) {
  .three_offer_popup_overlay,
  .three_offer_popup_overlay.show {
    display: none;
  }
  .hidden-md {
    display: none !important;
  }
  .brand_list_header {
    grid-template-columns: 180px minmax(200px, 275px) minmax(158px, 191px) minmax(218px, 248px);
    gap: 20px;
  }
  .brand_list_header_item {
    font-size: 12px;
    text-align: center;
  }
  .brand_list .brand_logo_wrap,
  .top_list .brand_logo_wrap {
    max-width: 180px;
  }
  .brand_rates_wrap {
    margin: 0 15px;
  }
  .rating_explanation_block {
    flex-wrap: wrap;
  }
  .rating_explanation_item {
    max-width: unset;
    width: 45%;
    margin: 0 0 5px;
  }
  .rating_explanation_item__title {
    font-size: 15px;
  }
  .rating_explanation_item__separator {
    margin: 0 10px 50px;
  }
  .rating_explanation_item__separator.last_item {
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }
}
@media (max-width: 991px) {
  .brand-link-hidden,
  .brand_list_header_wrap {
    display: none;
  }
  .brand_list .brand_welcome_bonus,
  .brand_list .brand_payment_methods_wrap,
  .brand_list .brand_rates_wrap,
  .brand_list .betting-options-wrap,
  .top_list .brand_welcome_bonus,
  .top_list .brand_payment_methods_wrap,
  .top_list .brand_rates_wrap,
  .top_list .betting-options-wrap {
    display: none;
  }
  .container {
    padding: 0 10px;
  }
  .main_header_wrap .container {
    padding: 0;
  }
  .main_header {
    height: 48px;
    position: relative;
  }
  .mobile_menu_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    margin: 0 0 0 10px;
  }
  .mobile_menu_btn img {
    display: block;
    width: 18px;
  }
  .main_header_menu {
    position: fixed;
    bottom: 100%;
    left: 0;
    top: 0;
    width: 100%;
    flex-direction: column;
    z-index: 999;
    transform: translateY(-1000px);
    transition: all 0.3s ease-in-out;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    gap: 0;
  }
  .main_header_menu.show {
    transform: translateY(0);
  }
  .main_header_menu_item {
    margin: 0;
    font-size: 18px;
    background-color: #000980;
    padding: 10px;
    width: 100%;
    text-align: center;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }
  .menu_close_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border: none;
    background: #151c36;
    font-size: 18px;
    padding: 10px;
    color: #fff;
    font-weight: 500;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 2px 7px 0px #607D8B;
  }
  .main_title_block_wrap {
    margin: 0 0 10px;
    min-height: auto;
  }
  .main_title_block {
    padding: 15px 0 0;
    max-width: 78%;
    margin: 0 auto;
    align-items: center;
  }
  .main_title_block h1 {
    font-size: 32px;
    line-height: 33px;
    margin: 0;
    text-align: center;
  }
  .main_subtitle {
    font-size: 18px;
    line-height: 23px;
    text-align: center;
  }
  .last_update_block {
    font-size: 14px;
    margin: 0 0 10px;
    min-width: unset;
  }
  .advantages_block {
    display: grid;
    grid-template-columns: auto auto;
    row-gap: 0;
    column-gap: 10px;
    max-width: 350px;
    margin: 0 auto;
    padding-bottom: 5px;
  }
  .advantage_item {
    margin: 0 0 10px;
    width: unset;
    font-size: 10px;
    gap: 10px;
  }
  .advantage_item img {
    height: 18px;
  }
  .advantage_item:nth-child(1) img {
    height: 16px;
    width: 24px;
  }
  .brand_list .brand_item,
  .top_list .brand_item {
    min-height: 174px;
    width: 100%;
    max-width: 600px;
    flex-wrap: wrap;
  }
  .brand_list .brand_item.highlighted .brand_ribbon,
  .top_list .brand_item.highlighted .brand_ribbon {
    top: 4px;
  }
  .brand_list .brand_ribbon,
  .top_list .brand_ribbon {
    height: 21px;
    padding: 3px 10px;
    top: 3px;
    left: 0;
  }
  .brand_list .brand_ribbon span,
  .top_list .brand_ribbon span {
    line-height: 1;
    font-size: 12px;
  }
  .brand_list .brand_logo_wrap,
  .top_list .brand_logo_wrap {
    position: unset;
    max-width: unset;
    width: 50%;
    display: flex;
    flex-direction: column;
  }
  .brand_list .brand_logo_wrap.with-ribbon,
  .top_list .brand_logo_wrap.with-ribbon {
    padding: 10px 5px 5px;
  }
  .brand_list .brand_logo,
  .top_list .brand_logo {
    height: 48px;
    max-width: 136px;
    margin: 0 0 5px;
  }
  .brand_list .betting-options-wrap__mobile,
  .top_list .betting-options-wrap__mobile {
    min-width: 104px;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
    margin: 4px 0;
  }
  .brand_list .betting-options-wrap__mobile .betting-option,
  .top_list .betting-options-wrap__mobile .betting-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    width: 30px;
    height: 35px;
  }
  .brand_list .betting-options-wrap__mobile .betting-option .betting-option__icon,
  .top_list .betting-options-wrap__mobile .betting-option .betting-option__icon {
    display: block;
    width: 21px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: scale(1);
    transition: all 0.3s;
  }
  .brand_list .betting-options-wrap__mobile .betting-option .betting-option__icon:hover,
  .top_list .betting-options-wrap__mobile .betting-option .betting-option__icon:hover {
    transform: scale(1.05);
  }
  .brand_list .betting-options-wrap__mobile .betting-option .betting-option__text,
  .top_list .betting-options-wrap__mobile .betting-option .betting-option__text {
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    color: #fff;
  }
  .brand_list .brand_rates_wrap__mobile,
  .top_list .brand_rates_wrap__mobile {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    align-items: center;
  }
  .brand_list .brand_rates_wrap__mobile span,
  .top_list .brand_rates_wrap__mobile span {
    height: auto;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
  .brand_list .brand_score,
  .top_list .brand_score {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin: 0 auto;
  }
  .brand_list .brand_rate_stars_wrap,
  .top_list .brand_rate_stars_wrap {
    height: 13px;
  }
  .brand_list .brand_rate_stars_wrap img,
  .top_list .brand_rate_stars_wrap img {
    width: 13px;
    height: 13px;
  }
  .brand_list .brand_rates_value,
  .top_list .brand_rates_value {
    font-size: 12px;
    width: 100%;
    text-align: center;
    display: flex;
    gap: 3px;
  }
  .brand_list .brand_content_wrap,
  .top_list .brand_content_wrap {
    width: 50%;
  }
  .brand_list .brand_get_bonus_wrap,
  .top_list .brand_get_bonus_wrap {
    padding: 5px 10px 5px 0;
  }
  .brand_list .brand_welcome_bonus__mobile,
  .top_list .brand_welcome_bonus__mobile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 0 10px;
    text-transform: uppercase;
  }
  .brand_list .brand_welcome_bonus__mobile a,
  .top_list .brand_welcome_bonus__mobile a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    line-height: 18px;
    display: block;
    text-align: center;
  }
  .brand_list .brand_welcome_bonus__mobile .no-wagering,
  .top_list .brand_welcome_bonus__mobile .no-wagering {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    margin-top: 2px;
  }
  .brand_list .brand_get_bonus,
  .top_list .brand_get_bonus {
    height: 33px;
    font-size: 12px;
    max-width: 166px;
  }
  .brand_list .brand_visit_link,
  .top_list .brand_visit_link {
    order: 2;
    margin: 1px 0 3px;
    font-size: 12px;
  }
  .brand_list .brand_payment_methods_wrap__mobile,
  .top_list .brand_payment_methods_wrap__mobile {
    min-width: 90px;
    margin: 5px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .brand_list .brand_payment_methods_wrap__mobile a,
  .top_list .brand_payment_methods_wrap__mobile a {
    display: block;
    width: 21px;
    height: 21px;
    margin: 0 2px;
    background-size: contain;
  }
  .brand_descr_showhide_btn {
    font-size: 7px;
  }
  .top_list_title {
    font-size: 21px;
    margin: 5px auto;
    padding: 10px;
  }
  .text_section_wrap .container {
    padding: 0 15px;
  }
  .text_section_title {
    font-size: 21px;
  }
  .main_footer_wrap {
    margin: 0;
    padding: 35px 0;
  }
  .footer_menu_wrap {
    flex-wrap: wrap;
  }
  .footer_menu {
    margin: 0;
    padding: 0 25px;
    width: 100%;
    display: grid;
    grid-template-columns: auto auto;
  }
  .footer_menu a {
    font-size: 14px;
    font-weight: 400;
    text-align: left;
  }
  .responsible-gaming-logos a img,
  .responsible-gaming-logos span img {
    height: 40px;
  }
  .responsible-gaming-logos a:first-child {
    display: block;
    width: 100%;
  }
  .footer_text {
    margin: 5px 0;
  }
  .footer_text .copyright {
    margin: 0 0 20px;
  }
  .footer_text p {
    font-size: 12px;
    line-height: 14px;
  }
  .footer_logo_wrap {
    margin: 0 0 20px;
  }
  .bottom_offer_welcome_bonus {
    padding: 0;
  }
}
@media (max-width: 864px) {
  .bottom_offer_item {
    flex-direction: column;
  }
  .bottom_offer_logo_wrap {
    width: 100%;
    max-width: 100%;
    min-height: 100px;
  }
  .bottom_offer_content_wrap {
    flex-direction: column;
    gap: 15px;
  }
  .bottom_offer_welcome_bonus a {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .footer_menu {
    flex-direction: column;
  }
}
@media (max-width: 540px) {
  .main_title_block_wrap {
    background-position: center bottom;
    margin: 0;
  }
  .main_title_block {
    max-width: 100%;
  }
  .bottom_offer_popup_close_btn {
    top: 7%;
    right: 6%;
    width: 20px;
    height: 20px;
  }
  .bottom_offer_popup_close_btn svg {
    width: 20px;
    height: 20px;
  }
  .bottom_offer_welcome_bonus a {
    font-size: 16px;
    display: inline;
  }
  .bottom_offer_welcome_bonus .no-wagering {
    font-size: 16px;
  }
}
@media (max-width: 350px) {
  .brand_get_bonus {
    font-size: 11px;
  }
  .rating_explanation_item {
    width: 42%;
  }
  .rating_explanation_item__img {
    width: 100px;
    height: 100px;
  }
  .rating_explanation_item__img img {
    max-width: 80px;
  }
}

/*# sourceMappingURL=main.css.map */

.age-verification {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.age-verification-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  z-index: -1;
}

.popup-body {
  background-color: #000424;
  color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.popup-content h5 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: #ffebcd;
}

.popup-content p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #dcdcdc;
}

.checkbox-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.custom-checkbox {
  position: relative;
  display: inline-block;
  margin-right: 10px;
}

.custom-checkbox input {
  opacity: 0;
  position: absolute;
  cursor: pointer;
}

.checkmark {
  width: 20px;
  height: 20px;
  background-color: #3b0000;
  border: 1px solid #fff;
  display: inline-block;
  border-radius: 3px;
  position: relative;
}

.custom-checkbox input:checked + .checkmark:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.agree-terms {
  font-size: 0.875rem;
  color: #dcdcdc;
}

.agree-terms a {
  color: #E50011;
}

.error-msg {
  color: #ff6347;
  font-size: 0.875rem;
  margin-bottom: 15px;
}

.popup-buttons-cover {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

.popup-btns {
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  color: #ffffff;
  transition: background-color 0.3s;
}

.age-verification_yes {
  background-color: #3b0000;
}

.age-verification_no {
  background-color: #0e1447;
}

.popup-btns:hover {
  background-color: #ff6347;
}

.cookies-popup {
  position: fixed;
  width: 100%;
  max-width: 900px;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px 20px;
  background-color: #03030D;
  border: 1px solid #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 999;
  color: #ffffff;
  gap: 15px;
}

.cookies-wrap p {
  margin: 0;
  font-size: 1rem;
  color: #dcdcdc;
}

.cookies-wrap a {
  color: #0091FF;
  text-decoration: underline;
}

.confirm-cookie {
  background: linear-gradient(180deg, #6DCB0D 0%, #1DC31C 100%);
  border: none;
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.confirm-cookie:hover {
  background: linear-gradient(180deg, #0091FF 0%, #03030D 100%);
}
.close-popup {
  position: absolute;
  top: 0px;
  right: 6px;
  font-size: 1.5rem;
  color: #ffffff;
  cursor: pointer;
  font-weight: bold;
}

.section-content {
  padding: 0 0 60px;
}

.section-content .container {
  max-width: 1170px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.section-content .content-blocks {
  border-radius: 8px;
    padding: 40px 30px;
    background: #151C36;
}

.main_title_block {
  min-height: 110px;
  max-width: 682px;
  padding: 60px 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto 0 0;
}
.header-disclamer {
  width: 100%;
  padding: 4px 20px;
  box-sizing: border-box;
  text-align: center;
  font-size: 14px;
  color: #c5c5c5;
  background-color: #3B0000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
}

.header-disclamer img {
  max-height: 30px;
}

@media screen and (max-width: 680px) { 
  .header-disclamer {
    font-size: 8px;
    padding: 6px 10px 3px;
  }
}

ol, ul {
    list-style: none;
}

.sub-header {
  width: 100%;
  max-width: 930px;
  margin: 5px auto 7px;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (max-width: 680px) {
.sub-header {
    padding: 0 5px;
    margin: 5px auto 10px;
}
}
