* {
  font-family: "Roboto", 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-attachment: fixed;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  padding: 0;
  margin: 0;
  position: relative;
}
@media (max-width: 640px) {
  body {
    background-position: center top;
    background-size: contain !important;
  }
}

.container {
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1380px) {
  .container {
    padding: 0 20px;
  }
}

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

.main_header_wrap {
  background-color: #fff;
}

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

.main_header_menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding-left: 20px;
}

.main_header_menu_item,
.main_header_bar_menu_item,
.main_header_bar_menu_link {
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  color: #2f334e;
  text-decoration: none;
}

.image-logo-wrap {
  max-width: 342px;
  width: 100%;
  display: flex;
  justify-content: left;
  height: inherit;
}
@media (max-width: 991px) {
  .image-logo-wrap {
    max-width: 224px;
    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;
  height: inherit;
  padding: 3px 0;
}
.image-logo-wrap .logo img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}
@media (max-width: 991px) {
  .image-logo-wrap .logo img {
    max-width: 224px;
  }
}

.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-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1170px) {
  .main_header-wrapper {
    margin-right: 20px;
  }
}

.main_header_bar_menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 75px;
}
@media (max-width: 769px) {
  .main_header_bar_menu {
    display: none;
  }
}

.main_header_bar_menu_item {
  position: relative;
}

.dropdown .dropdown_content {
  position: absolute;
  top: 48px;
  left: -60%;
  border: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 10;
  width: fit-content;
  color: #fff;
  margin: 0;
  padding: 14px 20px;
  grid-template-columns: repeat(2, 126px);
  justify-items: start;
  gap: 0 20px;
  align-items: center;
  display: none;
  border-radius: 0px 0px 8px 8px;
  background: rgba(47, 51, 78, 0.9);
}
.dropdown .dropdown_content .dropdown_content-arrow {
  clip-path: polygon(55% 25%, 0% 100%, 100% 100%);
  background: rgba(47, 51, 78, 0.9);
  width: 26px;
  height: 11px;
  position: absolute;
  top: -10px;
}

.main_header_bar_menu_link svg {
  transition: transform 0.3s ease;
  width: 12px;
  height: 12px;
}

.main_header_bar_menu_link svg.rotate-up {
  transform: rotate(180deg);
}

.dropdown_item {
  display: block;
  color: #fff;
  text-decoration: none;
  width: 80%;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
}
.main_title_block_wrap {
  margin: 0 0 10px;
}

.title-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.main_title_block {
  padding: 56px 0 0 0;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 40px;
  max-width: 1130px;
}

.title-info-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.last_update_block {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  background: rgb(28, 31, 51);
  padding: 8px 18px;
}

.timer_block {
  width: 100%;
  max-width: 161px;
  height: 72px;
}
.timer_block .timer_block_title {
  font-size: 16px;
  line-height: 100%;
  font-weight: 700;
  margin: 0;
  margin-bottom: 2px;
  margin-left: 6px;
  background: linear-gradient(117.41deg, #DAB264 5.83%, #BE895F 48.23%, #996A45 94.17%);
  -webkit-background-clip: text;
  color: transparent;
}
@media (max-width: 991px) {
  .timer_block .timer_block_title {
    font-size: 12px;
    margin-left: 6px;
  }
}
.timer_block .timer_block_wrap {
  display: flex;
  padding: 16px 18px 0 0;
  justify-content: center;
  align-items: baseline;
  background-image: url("../images/slot_machine_bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  max-width: 161px;
  height: 72px;
  position: relative;
  gap: 1px;
}
.timer_block .digital-container-dot-first,
.timer_block .digital-container-dot-second {
  padding: 0;
  margin: 0 2px;
  font-weight: 700;
}
.timer_block .digital-container-dot-first {
  position: absolute;
  top: 26px;
  left: 84px;
}
@media (max-width: 991px) {
  .timer_block .digital-container-dot-first {
    top: 16px;
    left: 37px;
  }
}
.timer_block .digital-container-dot-second {
  position: absolute;
  top: 26px;
  left: 51px;
}
@media (max-width: 991px) {
  .timer_block .digital-container-dot-second {
    top: 16px;
    left: 64px;
  }
}
.timer_block .digit-container {
  overflow: hidden;
  background-image: url("../images/slot_machine_bg_timer.webp");
  background-position: center;
  background-size: cover;
  width: 100%;
  max-width: 32px;
  height: 40px;
}
.timer_block .reel {
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease-out;
}
.timer_block .number {
  height: 40px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
@media (max-width: 991px) {
  .timer_block {
    max-width: 121px;
    height: 56px;
  }
  .timer_block .timer_block_wrap {
    max-width: 121px;
    height: 52px;
    padding: 11px 12px 0 0;
  }
  .timer_block .digit-container {
    max-width: 26px;
    height: 30px;
  }
  .timer_block .number {
    height: 30px;
    font-size: 16px;
  }
}

h1 {
  font-size: 48px;
  margin: 0 0 30px;
  font-weight: 500;
}
h1 .title_date {
  display: block;
}

.title-wrapper {
  display: flex;
  flex-direction: column;
  width: 80%;
}

.main_title {
  font-size: 36px;
  margin: 0 0 24px;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
}

.main_title_mobile {
  display: none;
}

.main_subtitle {
  font-size: 18px;
  font-weight: 400;
  max-width: 812px;
  line-height: 100%;
  margin: 0;
}

.advantages_block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  border-radius: 8px;
  background: rgb(28, 31, 51);
  padding: 10px 20px;
  gap: 30px;
}

.advantage_item {
  display: flex;
  align-items: center;
  gap: 0 20px;
}
.advantage_item img {
  width: 21px;
  height: 21px;
}
.advantage_item span {
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
}

.main_header_menu_notifications_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 4px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  position: relative;
}
.main_header_menu_notifications_btn .notifications_btn__image {
  display: block;
  width: 13px;
  height: 16px;
}
.main_header_menu_notifications_btn .main_header_menu_notifications_btn_wrap {
  position: absolute;
  top: -4px;
  right: -13px;
}
.main_header_menu_notifications_btn .main_header_menu_notifications_btn_wrap .notification_counter {
  color: #fff;
  padding: 4px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  width: 12px;
  height: 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 100%;
  box-sizing: content-box;
}

.notification_offer_popup_overlay {
  position: fixed;
  top: 0;
  right: -1000px;
  width: 424px;
  height: 100%;
  overflow: auto;
  color: #fff;
  z-index: 1000;
  transition: left 0.3s ease-in-out;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .notification_offer_popup_overlay {
    width: 346px;
  }
}

.notification_offer_popup_overlay.open {
  right: 0;
}

.notification_offer_popup_title_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  background: #000;
  gap: 8px;
}
.notification_offer_popup_title_block .notification_offer_popup-star {
  width: 100%;
  max-width: 156px;
}
@media (max-width: 991px) {
  .notification_offer_popup_title_block .notification_offer_popup-star {
    max-width: 126px;
  }
}
.notification_offer_popup_title_block .notification_offer_popup_title {
  font-size: 28px;
  font-weight: 700;
  line-height: 33px;
  color: #fff;
  text-align: left;
  text-transform: uppercase;
  margin: 0;
}
.notification_offer_popup_title_block .notification_offer_popup_title_btn {
  width: 24px;
  height: 24px;
  cursor: pointer;
  position: absolute;
  top: 26px;
  right: 30px;
}

.notification_offer_popup_body_block {
  overflow: auto;
  background-image: url("../images/notification-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  padding: 20px 36px;
}
.notification_offer_popup_body_block .offers_wrap {
  display: flex;
  align-items: center;
  flex-flow: column;
  gap: 20px 0;
}
.notification_offer_popup_body_block .notification_offer_item {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 353px;
  min-height: 339px;
  display: flex;
  flex-direction: column;
}
.notification_offer_popup_body_block .notification_offer_item .brand_rates_wrap:after {
  display: none;
}
@media (max-width: 991px) {
  .notification_offer_popup_body_block .notification_offer_item {
    width: 287px;
    min-height: 262px;
    position: relative;
  }
}
.notification_offer_popup_body_block .notification_offer_logo_wrap {
  height: 110px;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10px 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.notification_offer_popup_body_block .notification_offer_logo {
  height: 56px;
  display: block;
  width: 100%;
  max-width: 140px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .notification_offer_popup_body_block .notification_offer_logo {
    max-width: 104px;
  }
}
.notification_offer_popup_body_block .notification_offer_content_wrap {
  padding: 15px 32px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  gap: 6px;
}
.notification_offer_popup_body_block .notification_offer_welcome_bonus {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.notification_offer_popup_body_block .notification_offer_welcome_bonus a {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 30px;
  color: #1c1f33;
  text-decoration: none;
}
.notification_offer_popup_body_block .notification_offer_welcome_bonus a:nth-child(2) {
  padding: 6px 0;
}
@media (max-width: 991px) {
  .notification_offer_popup_body_block .notification_offer_welcome_bonus a {
    font-size: 21px;
    line-height: 100%;
  }
}
.notification_offer_popup_body_block .notification_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: 208px;
  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-size: 20px;
  font-weight: 800;
  line-height: 23px;
  padding: 0 20px;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .notification_offer_popup_body_block .notification_offer_get_bonus {
    max-width: 148px;
    height: 34px;
    font-size: 14px;
    line-height: 16px;
  }
}
.notification_offer_popup_body_block .notification_offer_visit_link {
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  color: rgb(30, 115, 190);
  margin: 6px 0;
}
@media (max-width: 991px) {
  .notification_offer_popup_body_block .notification_offer_visit_link {
    display: none;
  }
}
.notification_offer_popup_body_block .notification_offer_description,
.notification_offer_popup_body_block .js_text__full a {
  font-size: 8px;
  font-weight: 700;
  line-height: 12px;
  text-align: center;
  color: rgb(168, 168, 168);
  text-decoration: none;
}
.notification_offer_popup_body_block .notification_offer_description .brand_descr_showhide_btn,
.notification_offer_popup_body_block .js_text__full a .brand_descr_showhide_btn {
  color: rgb(0, 182, 122);
}
@media (max-width: 991px) {
  .notification_offer_popup_body_block {
    padding: 16px 30px;
  }
}

#backToTopBtn {
  position: fixed;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  bottom: 28%;
  right: 4%;
  z-index: 9;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 4px grey;
}
#backToTopBtn svg {
  border-radius: 50%;
}

.main_content_block_wrap .container {
  display: flex;
  justify-content: center;
  gap: 8px;
  max-width: 1280px;
}
.main_content_block_wrap .container .content_block {
  width: 100%;
}
.main_content_block_wrap .container .sidebar_block_wrapper {
  width: 100%;
  min-width: 240px;
  margin: 0 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.main_content_block_wrap .container .sidebar_block_wrapper .sidebar_block {
  background-color: #1c1f33;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
}
.main_content_block_wrap .container .sidebar_block_wrapper .sidebar_block:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
}
.main_content_block_wrap .container .sidebar_block_wrapper .sidebar_block:first-child .sidebar_item__text {
  max-width: 172px;
  width: 100%;
}
.main_content_block_wrap .container .sidebar_block_wrapper .sidebar_block:first-child .sidebar_item__text h3 {
  font-size: 21px;
  font-weight: 700;
  line-height: 100%;
}
.main_content_block_wrap .container .sidebar_block_wrapper .sidebar_block:first-child .sidebar_item__text p {
  font-size: 12px;
  font-weight: 500;
  line-height: 100%;
}
.main_content_block_wrap .container .sidebar_block_wrapper .sidebar_block:first-child .sidebar_icon {
  width: 100%;
  max-width: 42px;
  height: 40px;
}
.main_content_block_wrap .container .sidebar_block_wrapper .people_count {
  min-height: 130px;
}
.main_content_block_wrap .container .sidebar_block_wrapper .block-image img {
  width: 100%;
}
.main_content_block_wrap .container .sidebar_block_wrapper .sidebar_block-offer {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  gap: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: unset;
  padding: 0;
}
.main_content_block_wrap .container .sidebar_block_wrapper .sidebar_block-offer .sidebar_link {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.main_content_block_wrap .container .sidebar_block_wrapper .sidebar_block-offer .sidebar_block-offer__content {
  border-radius: 8px;
  min-height: 436px;
  padding: 33px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.main_content_block_wrap .container .sidebar_block_wrapper .sidebar_block-offer .sidebar_block-offer__content img {
  width: 100%;
  margin: 0 auto;
  max-width: 148px;
}
.main_content_block_wrap .container .sidebar_block_wrapper .sidebar_block-offer .sidebar_block-offer__content .sidebar_text {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 5px;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 17px 12px rgba(0, 0, 0, 0.4);
}
.main_content_block_wrap .container .sidebar_block_wrapper .sidebar_block-offer .sidebar_block-offer__content .sidebar_text span {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  color: #fff;
}
.main_content_block_wrap .container .sidebar_block_wrapper .sidebar_block-offer .sidebar_block-offer__content .sidebar_btn {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  color: #E13547;
  cursor: pointer;
}
.main_content_block_wrap .container .sidebar_block_wrapper .sidebar_block-info {
  padding: 24px;
  text-align: center;
}
.main_content_block_wrap .container .sidebar_block_wrapper .sidebar_block-info .sidebar_title {
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
}
.main_content_block_wrap .container .sidebar_block_wrapper .sidebar_block-info .divider {
  border-bottom: 1px solid #fff;
  padding: 10px 0;
  width: 144px;
  margin: 0 auto;
}
.main_content_block_wrap .container .sidebar_block_wrapper .sidebar_block-info .sidebar_block_text {
  font-size: 12px;
  font-weight: 500;
  line-height: 100%;
  text-align: left;
  padding-top: 10px;
}
.main_content_block_wrap .container .sidebar_block_wrapper .sidebar_block-info .sidebar_icon {
  width: 100%;
  max-width: 34px;
  height: 40px;
}
@media (max-width: 1380px) {
  .main_content_block_wrap .container .sidebar_block_wrapper {
    display: none !important;
  }
}
@media (max-width: 1380px) {
  .main_content_block_wrap .container {
    padding: 0 20px;
  }
}

.brand_list_header_wrap {
  margin: 0 0 6px;
}

.brand_list_header {
  background-color: #1c1f33;
  border-radius: 8px;
  height: 50px;
  display: grid;
  grid-template-columns: 300px 280px 160px 150px 245px;
}

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

.brand_list,
.top_list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.brand_item {
  display: flex;
  align-items: stretch;
  min-height: 162px;
  border-radius: 16px;
  background-color: #2f334e;
  margin: 0 auto;
}
.brand_item .brand_logo_wrap {
  width: 300px;
  position: relative;
  background-color: #1c1f33;
  border-radius: 16px 0 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 10px 10px;
  flex-shrink: 0;
}
.brand_item .brand_ribbon {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  min-width: 120px;
  background-color: #e13547;
  display: flex;
  align-items: center;
  padding: 0 20px 0 15px;
  border-radius: 16px 0 16px 0;
  white-space: nowrap;
}
.brand_item .brand_ribbon span {
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  font-size: 14px;
  font-weight: 700;
}
.brand_item .brand_logo {
  display: block;
  max-width: 224px;
  width: 100%;
  height: 78px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.brand_item .brand_content_wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.brand_item .brand_content {
  display: flex;
  align-items: stretch;
  flex-grow: 1;
  width: 100%;
  min-height: 130px;
}
.brand_item .brand_item_part {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.brand_item .brand_welcome_bonus {
  padding: 10px 20px;
  position: relative;
  max-width: 280px;
  width: 100%;
}
.brand_item .brand_welcome_bonus a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
}
.brand_item .brand_welcome_bonus a:nth-of-type(2) {
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  color: #e13547;
  padding: 4px 0;
}
.brand_item .brand_welcome_bonus:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  height: 66px;
  width: 1px;
  background-color: #1c1f33;
  transform: translateY(-50%);
}
.brand_item .brand_welcome_bonus:hover {
  text-decoration: none;
}
.brand_item .brand_rates_wrap {
  min-width: 130px;
  margin: 0 15px;
  position: relative;
}
.brand_item .brand_rates_wrap:after {
  position: absolute;
  content: "";
  top: 50%;
  right: -15px;
  height: 66px;
  width: 1px;
  background-color: #1c1f33;
  transform: translateY(-50%);
}
.brand_item .brand_score {
  font-size: 48px;
  font-weight: 500;
  line-height: 100%;
}
.brand_item .brand_rate_stars_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.brand_item .brand_rate_stars_wrap img {
  width: 16px;
  height: 16px;
  display: block;
  margin: 0 1px;
}
.brand_item .scores_count {
  margin: 3px 0 0;
  white-space: nowrap;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
}
.brand_item .scores_count .scores_text {
  margin: 0 5px 0 0;
}
.brand_item .brand_min_deposit_wrap {
  min-width: 100px;
  margin: 0 25px;
  position: relative;
}
.brand_item .brand_min_deposit_wrap:after {
  position: absolute;
  content: "";
  top: 50%;
  right: -25px;
  height: 66px;
  width: 1px;
  background-color: #1c1f33;
  transform: translateY(-50%);
}
.brand_item .brand_min_deposit {
  text-align: center;
  display: flex;
  gap: 5px;
}
.brand_item .brand_min_deposit a {
  display: block;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  text-decoration: none;
  color: #fff;
}
@media (max-width: 768px) {
  .brand_item .brand_min_deposit a {
    font-size: 12px;
    font-weight: 700;
    line-height: 12px;
  }
}
.brand_item .brand_min_deposit .min-deposit-desktop,
.brand_item .brand_min_deposit .min-deposit-mobile {
  display: none;
}
@media (min-width: 768px) {
  .brand_item .brand_min_deposit .min-deposit-desktop {
    display: inline;
  }
}
@media (max-width: 767px) {
  .brand_item .brand_min_deposit .min-deposit-mobile {
    display: inline;
  }
}
.brand_item .brand_get_bonus_wrap {
  width: 100%;
  gap: 12px;
}
.brand_item .brand_payment_methods_wrap {
  min-width: 90px;
  padding: 0 15px;
  position: relative;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}
.brand_item .brand_payment_methods_wrap a {
  display: block;
  width: 25px;
  height: 25px;
  margin: 0 2px;
  background-size: contain;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: all 0.3s;
}
.brand_item .brand_payment_methods_wrap a:hover {
  transform: scale(1.05);
}
.brand_item .brand_get_bonus {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  flex-shrink: 0;
  max-width: 210px;
  width: 100%;
  border-radius: 25px;
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-weight: 700;
  font-size: 20px;
  transition: box-shadow 0.3s ease-out;
  padding: 0 20px;
  white-space: nowrap;
}
.brand_item .brand_get_bonus:hover {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
}
.brand_item .brand_visit_link {
  color: #ffffff;
  text-decoration: none;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
}
.brand_item .brand_visit_link:hover {
  text-decoration: underline;
}
.brand_item .brand_description {
  min-height: 32px;
  width: 100%;
  background-color: #262a40;
  text-align: center;
  padding: 5px 10px;
  font-size: 7px;
  font-weight: 500;
  line-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 16px 0;
}
.brand_item .brand_description a {
  font-size: 9px;
  color: inherit;
  text-decoration: none;
}

.brand_descr_showhide_btn {
  background: transparent;
  border: none;
  font-size: 7px;
  font-weight: 500;
  line-height: 100%;
  color: #E13547;
  padding: 0;
  text-decoration: underline;
}

.promotion-block,
.top-promotion-block {
  display: none;
}

.promotion-block.desktop-show,
.top-promotion-block.desktop-show {
  display: block;
}

@media (max-width: 768px) {
  .promotion-block.desktop-show,
  .top-promotion-block.desktop-show {
    display: none;
  }
  .promotion-block.mobile-show,
  .top-promotion-block.mobile-show {
    display: block;
  }
}
.review_list_promo_block_wrap,
.top_review_list_promo_wrap {
  display: flex;
  justify-content: space-between;
  position: relative;
  text-decoration: none;
  border-radius: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  gap: 5px;
  min-height: 162px;
  overflow: hidden;
  transition: 1s cubic-bezier(0.39, 0.58, 0.57, 1) background, box-shadow 0.2s;
}
.review_list_promo_block_wrap:hover,
.top_review_list_promo_wrap:hover {
  transform: scale(1.01);
  box-shadow: 0 0 13px 4px rgba(255, 255, 255, 0.2);
}
@media (max-width: 991px) {
  .review_list_promo_block_wrap,
  .top_review_list_promo_wrap {
    min-height: 114px;
    gap: 0;
    border-radius: 8px;
  }
}

.review_list_promo_wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  text-decoration: none;
  background-repeat: no-repeat;
  border-radius: 8px;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='transparent' stroke='%23FFFFFF' stroke-width='4' stroke-dasharray='13%2c 9' stroke-dashoffset='0' stroke-linecap=''/%3e%3c/svg%3e");
  padding: 10px 50px;
  width: 100%;
  max-width: 1040px;
  margin: 15px auto;
  gap: 40px;
}

.top_review_list_promo_wrap {
  min-height: 206px;
}

.review_list_promo__middle img {
  width: 100%;
  max-width: 170px;
}

.review_list_promo__subtitle {
  position: relative;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 37px;
  background: #c1a76a;
  min-height: inherit;
  text-decoration: none;
}
.review_list_promo__subtitle .review_list_promo__subtitle-text {
  white-space: nowrap;
  transform: rotate(-90deg);
}
@media (max-width: 600px) {
  .review_list_promo__subtitle {
    max-width: 31px;
  }
}

.review_list_promo__middle {
  width: 132px;
  height: 64px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 600px) {
  .review_list_promo__middle {
    width: 81px;
    height: 39px;
  }
}

.review_list_promo__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 65%;
  gap: 10px;
  text-align: center;
}
.review_list_promo__text .js_text_wrap {
  font-size: 9px;
  text-align: center;
  color: #fff;
}
.review_list_promo__text .review_list_promo__title {
  font-size: 24px;
  font-weight: 700;
  white-space: normal;
  color: #fff;
  line-height: 28px;
  text-decoration: none;
}
.review_list_promo__text .review_list_promo__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  flex-shrink: 0;
  max-width: 210px;
  width: 100%;
  border: none;
  border-radius: 25px;
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-weight: 700;
  font-size: 20px;
  transition: box-shadow 0.3s ease-out;
  padding: 0 20px;
  white-space: nowrap;
}
.review_list_promo__text .review_list_promo__description p {
  font-size: 7px;
  font-weight: 700;
  line-height: 8px;
  text-align: center;
  margin: 0;
}
@media (max-width: 768px) {
  .review_list_promo__text .review_list_promo__description {
    display: none;
  }
}

.top_list_title_wrap {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 16px;
  display: flex;
  align-items: center;
  width: 100%;
  height: 90px;
  margin: 6px 0;
  border-radius: 8px;
}
.top_list_title_wrap .top_list_title {
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  text-align: left;
  text-transform: uppercase;
  padding-left: 45px;
}

.rating_explanation_block {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 25px;
}

.rating_explanation_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 173px;
  min-height: 204px;
}

.rating_explanation_item__img {
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1c1f33;
  border-radius: 30px;
  margin: 0 0 8px;
}
.rating_explanation_item__img img {
  display: block;
  max-width: 100px;
  width: 100%;
}

.rating_explanation_item__title {
  font-size: 18px;
  text-align: center;
  font-weight: 500;
}

.rating_explanation_item__separator {
  font-size: 24px;
  color: #8f9eb0;
  font-weight: 500;
  margin: 0 25px;
}

.faq-block-wrap {
  padding: 60px 0 30px 0;
  position: relative;
}
@media (max-width: 991px) {
  .faq-block-wrap {
    padding: 40px 0;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .faq-block-wrap:before {
    display: none;
  }
}
.faq-block-wrap h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
  color: #fff;
  text-align: center;
  margin: 0 0 40px;
}
@media (max-width: 540px) {
  .faq-block-wrap h2 {
    font-size: 24px;
    margin: 0 0 24px;
  }
}
.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: 20px 16px;
  text-align: left;
  color: #fff;
  border-radius: 12px;
  background: #2F334E;
  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;
  line-height: 28px;
  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: 500;
  line-height: 100%;
}
.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: 25px;
  right: 20px;
  width: 35px;
  height: 35px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 640px) {
  .faq-block-wrap .faq-block .faq-block__item .trigger-content {
    top: 18px;
  }
}

.content-block-wrap {
  padding: 30px 0 60px 0;
}
.content-block-wrap .content-block-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
  color: #fff;
  text-align: center;
  margin: 0 0 40px;
}
@media (max-width: 540px) {
  .content-block-wrap .content-block-title {
    font-size: 21px;
  }
}
.content-block-wrap .content-block {
  align-items: center;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.content-block-wrap .content-block .content-block__item {
  align-items: flex-start;
  border-radius: 16px;
  display: flex;
  gap: 34px;
  padding: 25px;
  background: rgb(28, 31, 51);
}
@media (max-width: 540px) {
  .content-block-wrap .content-block .content-block__item {
    flex-direction: column;
  }
}
.content-block-wrap .content-block .content-block__item .content-block-image {
  margin: 0 auto;
  max-width: 168px;
  width: 100%;
  padding: 35px;
  background: #2f334e;
  border-radius: inherit;
}
@media (max-width: 540px) {
  .content-block-wrap .content-block .content-block__item .content-block-image {
    margin: 0 auto;
  }
}
.content-block-wrap .content-block .content-block__item .content-block-image img {
  display: block;
  margin: 0 auto;
  height: auto;
  width: 100%;
}
.content-block-wrap .content-block .content-block__item .content-item-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
}
@media (max-width: 540px) {
  .content-block-wrap .content-block .content-block__item .content-item-title {
    margin: 0 auto 10px;
    line-height: 1.2;
    text-align: center;
  }
}
.content-block-wrap .content-block .content-block__item p {
  padding-right: 12px;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
}
@media (max-width: 540px) {
  .content-block-wrap .content-block .content-block__item p {
    text-align: justify;
  }
}

.cookie_block_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 99;
}

.cookie_popup {
  position: fixed;
  bottom: 96px;
  right: 20px;
  width: 281px;
  padding: 20px;
  border-radius: 12px;
  display: none;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s ease;
  z-index: 99;
}
.cookie_popup.visible {
  display: flex;
  transform: translateY(0);
}
.cookie_popup .cookie_popup_title_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cookie_popup .cookie_popup_title_wrap .cookie_popup_title {
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  margin: 0;
  width: 80%;
}
.cookie_popup .cookie_popup_title_wrap svg {
  width: 22px;
  height: 22px;
  cursor: pointer;
}
.cookie_popup p {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  line-height: 12px;
}
.cookie_popup .cookie_popup_accept_btn,
.cookie_popup .cookie_popup_customize_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  flex-shrink: 0;
  max-width: 189px;
  width: 100%;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  transition: box-shadow 0.3s ease-out;
  padding: 0 23px;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

@media (max-width: 991px) {
  .cookie_block_btn {
    display: none;
  }
}
.main_footer_wrap {
  background-color: #1c1f33;
  padding: 60px 0;
}
.main_footer_wrap .container {
  padding: 0 30px;
}
@media (max-width: 991px) {
  .main_footer_wrap {
    padding: 46px 0;
  }
}

.main_footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 47px;
}
@media (max-width: 991px) {
  .main_footer {
    align-items: normal;
    gap: 24px;
  }
}
.main_footer .footer_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 991px) {
  .main_footer .footer_header {
    align-items: normal;
    order: 1;
  }
}
.main_footer .footer_header .footer_logo {
  height: 28px;
  display: block;
  flex-shrink: 0;
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .main_footer .footer_header .footer_logo img {
    width: 100%;
    max-width: 224px;
    height: 42px;
  }
}
.main_footer .footer_header .footer_menu {
  display: flex;
  align-items: center;
  margin: 20px 0 20px auto;
  position: relative;
}
@media (max-width: 991px) {
  .main_footer .footer_header .footer_menu {
    flex-wrap: wrap;
    flex-direction: column;
    margin: 24px 0 0 0;
    width: 100%;
    align-items: normal;
  }
}
.main_footer .footer_header .footer_menu > a {
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  margin: 0 0 0 25px;
}
.main_footer .footer_header .footer_menu > a:hover {
  text-decoration: underline;
}
@media (max-width: 991px) {
  .main_footer .footer_header .footer_menu > a {
    margin: 0 0 20px;
  }
}
.main_footer .footer_text p {
  font-weight: 300;
  margin: 0;
}
@media (max-width: 991px) {
  .main_footer .footer_text {
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    order: 3;
  }
}
.main_footer .awareness_block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 791px;
  margin: 0 auto;
}
.main_footer .awareness_block a img,
.main_footer .awareness_block span img {
  width: 100%;
  height: 50px;
}
@media (max-width: 640px) {
  .main_footer .awareness_block span {
    order: 2;
    display: block;
  }
}
@media (max-width: 991px) {
  .main_footer .awareness_block {
    flex-wrap: wrap;
    gap: 15px;
    order: 2;
  }
}
.main_footer .footer_copyright {
  text-align: center;
  color: #81808E;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .main_footer .footer_copyright {
    font-size: 12px;
    order: 4;
  }
}

.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;
}

.js_showhide_btn {
  cursor: pointer;
}

.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_overlay .bottom_offer_popup_wrap {
  height: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}
.bottom_offer_popup_overlay .bottom_offer_popup {
  width: 100%;
  position: relative;
}
.bottom_offer_popup_overlay .bottom_offer_popup_close_btn {
  width: 25px;
  height: 25px;
  background-image: url(../images/close-icon.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: 17px;
  padding: 10px 20px 40px 30px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.2s ease-in-out;
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: transparent;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.bottom_offer_popup_overlay .bottom_offer_popup_close_btn:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}
@media (max-width: 1170px) {
  .bottom_offer_popup_overlay .bottom_offer_popup_close_btn {
    top: 10%;
    right: 3%;
  }
}
@media (max-width: 864px) {
  .bottom_offer_popup_overlay .bottom_offer_popup_close_btn {
    background-image: url(../images/close-icon-mob.svg);
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 540px) {
  .bottom_offer_popup_overlay .bottom_offer_popup_close_btn {
    top: 4%;
    right: 3%;
  }
}
.bottom_offer_popup_overlay .offer_wrap {
  display: flex;
  align-items: stretch;
}
.bottom_offer_popup_overlay .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;
}
@media (max-width: 864px) {
  .bottom_offer_popup_overlay .bottom_offer_item {
    flex-direction: column;
  }
}
.bottom_offer_popup_overlay .bottom_offer_logo_wrap {
  width: 100%;
  max-width: 300px;
  position: relative;
  background: #1c1f33;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 1;
}
@media (max-width: 864px) {
  .bottom_offer_popup_overlay .bottom_offer_logo_wrap {
    max-width: 100%;
    min-height: 100px;
  }
}
.bottom_offer_popup_overlay .bottom_offer_logo {
  display: block;
  max-width: 216px;
  width: 100%;
  height: 80px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 864px) {
  .bottom_offer_popup_overlay .bottom_offer_logo {
    max-width: 140px;
  }
}
.bottom_offer_popup_overlay .bottom_offer_content_wrap {
  padding: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  justify-content: space-around;
  width: 100%;
}
@media (max-width: 864px) {
  .bottom_offer_popup_overlay .bottom_offer_content_wrap {
    flex-direction: column;
    gap: 10px;
    padding: 10px 20px;
  }
}
.bottom_offer_popup_overlay .bottom_offer_text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 643px;
  width: 100%;
}
.bottom_offer_popup_overlay .bottom_offer_text-block .brand_description {
  min-height: 32px;
  width: 100%;
  background-color: inherit;
  color: #1C1F33;
  text-align: center;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 16px 0;
}
.bottom_offer_popup_overlay .bottom_offer_text-block .brand_description span a {
  color: #1C1F33;
  text-decoration: none;
}
@media (max-width: 864px) {
  .bottom_offer_popup_overlay .bottom_offer_text-block .brand_description {
    font-size: 10px;
  }
}
.bottom_offer_popup_overlay .bottom_offer_text-block .brand_descr_showhide_btn {
  background: transparent;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: #232936;
  padding: 0;
  cursor: pointer;
  margin: 0 0 0 5px;
  text-decoration: underline;
}
@media (max-width: 864px) {
  .bottom_offer_popup_overlay .bottom_offer_text-block .brand_descr_showhide_btn {
    font-size: 10px;
  }
}
.bottom_offer_popup_overlay .bottom_offer_text-block .bottom_offer_welcome_bonus {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0 5px;
}
.bottom_offer_popup_overlay .bottom_offer_text-block .bottom_offer_welcome_bonus a {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  line-height: 21px;
  color: #1C1F33;
  text-decoration: none;
  text-transform: uppercase;
}
@media (max-width: 864px) {
  .bottom_offer_popup_overlay .bottom_offer_text-block .bottom_offer_welcome_bonus a {
    font-size: 20px;
    line-height: 17px;
  }
}
@media (max-width: 540px) {
  .bottom_offer_popup_overlay .bottom_offer_text-block .bottom_offer_welcome_bonus a {
    display: block;
  }
}
@media (max-width: 864px) {
  .bottom_offer_popup_overlay .bottom_offer_text-block .bottom_offer_welcome_bonus a:nth-child(2) {
    padding: 6px 0;
  }
}
@media (max-width: 991px) {
  .bottom_offer_popup_overlay .bottom_offer_text-block .bottom_offer_welcome_bonus {
    padding: 0;
  }
}
.bottom_offer_popup_overlay .bottom_offer_get_bonus {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 49px;
  flex-shrink: 0;
  max-width: 233px;
  width: 100%;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  text-shadow: rgba(0, 0, 0, 0.25) 0 4px 4px;
  font-size: 20px;
  box-shadow: rgba(0, 0, 0, 0.25) 0 4px 4px 0;
  border-radius: 25px;
  text-decoration: none;
  padding: 0 20px;
  white-space: nowrap;
  font-weight: 600;
}
@media (max-width: 540px) {
  .bottom_offer_popup_overlay .bottom_offer_get_bonus {
    height: 40px;
    max-width: 186px;
    font-size: 16px;
  }
}

.three_offer_popup_overlay {
  display: none;
  background: rgba(47, 51, 78, 0.75);
  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_overlay .three_offer_popup_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  min-height: 595px;
  max-width: 1134px;
  width: 100%;
  margin: 0 auto;
}
.three_offer_popup_overlay .three_offer_popup {
  position: relative;
  padding: 50px 34px 40px;
  border-radius: 24px;
  min-height: inherit;
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
.three_offer_popup_overlay .three_offer_popup_close_btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.2s ease-in-out;
  position: absolute;
  top: 43px;
  right: 28px;
}
.three_offer_popup_overlay .three_offer_popup_close_btn:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}
.three_offer_popup_overlay .three_offer_popup_title {
  text-align: center;
  font-size: 36px;
  text-transform: uppercase;
  line-height: 100%;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}
.three_offer_popup_overlay .offers_wrap {
  display: flex;
  align-items: flex-start;
  margin: 20px 0 0;
}
.three_offer_popup_overlay .three_offer_get_bonus_block {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}
.three_offer_popup_overlay .three_offer_item {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  width: 353px;
  height: 100%;
  min-height: 366px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.three_offer_popup_overlay .three_offer_item .brand_rates_wrap:after {
  display: none;
}
.three_offer_popup_overlay .three_offer_item:nth-child(2) {
  margin: 0 10px;
}
.three_offer_popup_overlay .three_offer_item:nth-child(2) .three_offer_content_wrap {
  padding: 23px 32px;
}
.three_offer_popup_overlay .three_offer_item:nth-child(2) .three_offer_content_wrap {
  gap: 12px;
}
.three_offer_popup_overlay .three_offer_logo_wrap {
  height: 130px;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10px 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.three_offer_popup_overlay .three_offer_logo {
  height: 70px;
  display: block;
  width: 100%;
  max-width: 200px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.three_offer_popup_overlay .three_offer_content_wrap {
  padding: 12px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  height: 100%;
}
.three_offer_popup_overlay .three_offer_welcome_bonus {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.three_offer_popup_overlay .three_offer_welcome_bonus a {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  text-decoration: none;
}
.three_offer_popup_overlay .three_offer_welcome_bonus a:nth-child(2) {
  padding: 6px 0;
  font-size: 28px;
}
.three_offer_popup_overlay .three_offer_get_bonus {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  flex-shrink: 0;
  max-width: 208px;
  width: 100%;
  border-radius: 25px;
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-weight: 800;
  font-size: 20px;
  line-height: 100%;
  padding: 0 20px;
  white-space: nowrap;
}
.three_offer_popup_overlay .three_offer_visit_link {
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  color: rgb(30, 115, 190);
}
.three_offer_popup_overlay .three_offer_offer_description,
.three_offer_popup_overlay .js_text__full a {
  font-size: 8px;
  font-weight: 700;
  line-height: 12px;
  text-align: center;
  color: rgb(168, 168, 168);
  width: 90%;
  text-decoration: none;
}
.three_offer_popup_overlay .three_offer_offer_description .brand_descr_showhide_btn,
.three_offer_popup_overlay .js_text__full a .brand_descr_showhide_btn {
  color: rgb(0, 182, 122);
}

.brand_description__mobile,
.brand_rates_wrap__mobile,
.brand_welcome_bonus__mobile,
.mobile_menu_btn,
.menu_close_btn,
.brand_min_deposit_wrap__mobile,
.brand_payment_methods_wrap__mobile,
.main_header_menu_mobile {
  display: none;
}

@media (max-width: 1170px) {
  .three_offer_popup_overlay,
  .three_offer_popup_overlay.show,
  .brand_welcome_bonus:after,
  .brand_rates_wrap:after,
  .brand_min_deposit_wrap:after {
    display: none;
  }
  .brand_list_header {
    grid-template-columns: 270px 1fr 160px 150px 1fr;
  }
  .brand_logo_wrap {
    max-width: 270px;
  }
  .brand_get_bonus_wrap {
    padding: 0 15px;
  }
}
@media (max-width: 1024px) {
  .hidden-md {
    display: none !important;
  }
  .advantage_item span {
    font-size: 16px;
  }
  .brand_list_header {
    grid-template-columns: 180px 1fr 160px 150px 1fr;
  }
  .brand_list_header_item {
    font-size: 12px;
    text-align: center;
  }
  .brand_get_bonus {
    font-size: 18px;
  }
  .brand_logo_wrap {
    max-width: 180px;
  }
  .brand_welcome_bonus {
    padding: 10px 15px;
  }
  .brand_welcome_bonus a {
    font-size: 18px;
  }
  .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__separator {
    margin: 0 10px 50px;
  }
  .rating_explanation_item__separator.last_item {
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }
}
@media (max-width: 991px) {
  .brand_list_header_wrap,
  .main_subtitle {
    display: none;
  }
  .brand_list .brand_welcome_bonus,
  .brand_list .brand_payment_methods_wrap,
  .brand_list .brand_rates_wrap,
  .brand_list .brand_description,
  .brand_list .brand_min_deposit_wrap,
  .brand_list .brand_payment_methods_wrap,
  .top_list .brand_welcome_bonus,
  .top_list .brand_payment_methods_wrap,
  .top_list .brand_rates_wrap,
  .top_list .brand_description,
  .top_list .brand_min_deposit_wrap,
  .top_list .brand_payment_methods_wrap {
    display: none;
  }
  .container {
    padding: 0 20px;
  }
  .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_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    display: none;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .main_header_menu_overlay.show {
    display: flex;
  }
  .main_header_menu_notifications_btn {
    width: 24px;
    height: 24px;
  }
  .main_header_menu {
    position: relative;
    top: 48px;
    left: -100%;
    width: 80%;
    max-width: 316px;
    height: auto;
    background-color: #000;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    transition: left 0.3s ease-in-out;
    transform: translateY(-1000px);
    padding: 0;
  }
  .main_header_menu.show {
    left: 0;
    transform: translateY(0);
    gap: 0;
    flex-wrap: nowrap;
    max-height: 80%;
    overflow-y: auto;
  }
  .main_header_bar_menu_item {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    width: 100%;
    color: #fff;
    text-align: left;
  }
  .main_header_bar_menu_item .dropdown_content {
    position: static;
    top: 0;
    grid-template-columns: none;
    border-radius: 0;
    width: 100%;
    background-color: #000;
    flex-direction: column;
  }
  .main_header_bar_menu_item .dropdown_content .dropdown_content-arrow {
    display: none;
  }
  .main_header_bar_menu_item .desktop-only {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 24px;
  }
  .main_header_bar_menu_item .dropdown_item {
    padding: 0 0 0 14px;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
  }
  .main_header_bar_menu_item .main_header_bar_menu_link {
    color: #fff;
  }
  .main_header_bar_menu_item .main_header_bar_menu_link svg {
    stroke: #fff;
  }
  .title-wrapper {
    width: 100%;
  }
  .main_header-wrapper {
    margin-right: 26px;
  }
  .padding-link-mobile {
    padding: 18px 48px 18px 23px;
  }
  .menu_close_btn_icon {
    padding: 15px;
    color: #fff;
  }
  .menu_close_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background: #2F334E;
    font-size: 18px;
    padding: 10px;
    color: #fff;
    font-weight: 500;
    width: 100%;
  }
  .main_header_menu_mobile {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #fff;
  }
  .image-logo-wrap-mobile {
    max-width: 224px;
  }
  .image-logo-wrap-mobile .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: inherit;
    padding: 3px 0;
  }
  .image-logo-wrap-mobile .logo img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
  }
  .main_title_block_wrap {
    margin: 0 0 10px;
  }
  .main_title_block {
    padding: 18px 0 0 0;
    gap: 20px;
  }
  .last_update_block {
    display: none;
  }
  .main_title {
    display: none;
  }
  h1 {
    margin: 0;
  }
  .main_title_mobile {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    text-transform: uppercase;
  }
  .main_title_mobile span {
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
  }
  .advantages_block {
    gap: 12px;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    padding: 8px 12px;
    width: 100%;
  }
  .advantage_item {
    white-space: nowrap;
    gap: 0 12px;
  }
  .advantage_item img {
    height: 16px;
    width: 16px;
  }
  .advantage_item span {
    font-size: 10px;
  }
  .brand_item {
    min-height: 154px;
    margin: 0;
    border-radius: 16px 16px 0 0;
  }
  .brand_ribbon {
    height: 21px;
    padding: 1px 10px 0;
  }
  .brand_ribbon span {
    font-weight: 500;
    line-height: 1;
  }
  .brand_list .brand_logo_wrap,
  .top_list .brand_logo_wrap {
    max-width: unset;
    width: 50%;
    border-radius: 16px 0 0 0;
    display: flex;
    flex-direction: column;
    padding: 24px 5px 5px;
    justify-content: center;
    gap: 8px;
  }
  .brand_list .brand_logo,
  .top_list .brand_logo {
    height: 48px;
    max-width: 128px;
    margin: 0 0 5px;
  }
  .brand_list .brand_rates_wrap__mobile,
  .top_list .brand_rates_wrap__mobile {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .brand_list .brand_rate_stars_block,
  .top_list .brand_rate_stars_block {
    display: flex;
    flex-direction: column;
  }
  .brand_list .brand_score,
  .top_list .brand_score {
    font-size: 33px;
    font-weight: 500;
    text-align: center;
    line-height: 1;
  }
  .brand_list .brand_rate_stars_wrap img,
  .top_list .brand_rate_stars_wrap img {
    width: 14px;
    height: 14px;
  }
  .brand_list .scores_count,
  .top_list .scores_count {
    font-size: 10px;
  }
  .brand_list .scores_count .scores_text,
  .top_list .scores_count .scores_text {
    margin: 0 2px 0 0;
  }
  .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: 16px 2px 6px;
  }
  .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 auto;
  }
  .brand_list .brand_welcome_bonus__mobile a,
  .top_list .brand_welcome_bonus__mobile a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
  }
  .brand_list .brand_welcome_bonus__mobile a:nth-of-type(2),
  .top_list .brand_welcome_bonus__mobile a:nth-of-type(2) {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color: #e13547;
    padding: 2px 0;
  }
  .brand_list .brand_get_bonus,
  .top_list .brand_get_bonus {
    height: 34px;
    font-size: 14px;
    max-width: 148px;
  }
  .brand_list .brand_visit_link,
  .top_list .brand_visit_link {
    display: none;
  }
  .brand_list .brand_min_deposit_wrap__mobile,
  .top_list .brand_min_deposit_wrap__mobile {
    display: block;
    margin: 0 auto;
  }
  .brand_list .brand_payment_methods_wrap__mobile,
  .top_list .brand_payment_methods_wrap__mobile {
    min-width: 90px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px 0;
  }
  .brand_list .brand_payment_methods_wrap__mobile a,
  .top_list .brand_payment_methods_wrap__mobile a {
    display: block;
    width: 21px;
    height: 21px;
    margin: 0 3px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .brand_list .brand_description__mobile,
  .top_list .brand_description__mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #262a40;
    font-size: 8px;
    color: #ffffff;
    text-align: center;
    min-height: 38px;
    width: 100%;
    border-radius: 0 0 16px 16px;
    padding: 5px 15px;
    margin: 0 auto;
    font-weight: 300;
  }
  .brand_list .brand_description__mobile a,
  .top_list .brand_description__mobile a {
    color: inherit;
    font-size: 8px;
    text-decoration: none;
  }
  .brand_descr_showhide_btn {
    font-size: 9px;
    font-weight: 300;
  }
  .top_list_title_wrap .top_list_title {
    font-size: 21px;
    padding-left: 16px;
    width: 70%;
  }
}
@media (max-width: 640px) {
  .review_list_promo_wrap {
    justify-content: flex-end;
    min-height: 114px;
    gap: 20px;
    margin: 8px 10px;
    padding: 5px 15px;
    border-radius: 5px;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='transparent' stroke='%23FFFFFF' stroke-width='2' stroke-dasharray='4%2c 3' stroke-dashoffset='0' stroke-linecap=''/%3e%3c/svg%3e");
  }
  .top_review_list_promo_wrap {
    min-height: 140px;
  }
  .review_list_promo_wrap .review_list_promo__text,
  .top_review_list_promo_wrap .review_list_promo__text {
    width: 55%;
    margin: 0;
    justify-content: center;
  }
  .review_list_promo_wrap .review_list_promo__text .review_list_promo__title,
  .top_review_list_promo_wrap .review_list_promo__text .review_list_promo__title {
    font-size: 15px;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
  }
  .review_list_promo_wrap .review_list_promo__text .review_list_promo__cta,
  .top_review_list_promo_wrap .review_list_promo__text .review_list_promo__cta {
    font-size: 14px;
    max-width: 148px;
    height: 34px;
    padding: 0 10px;
  }
  .review_list_promo_wrap .js_text_wrap,
  .top_review_list_promo_wrap .js_text_wrap {
    display: none;
  }
  .review_list_promo_wrap .review_list_promo__middle img,
  .top_review_list_promo_wrap .review_list_promo__middle img {
    max-width: 88px;
  }
}
@media (max-width: 387px) {
  .review_list_promo_wrap {
    gap: 10px;
  }
  .review_list_promo_wrap .review_list_promo__text,
  .top_review_list_promo_wrap .review_list_promo__text {
    width: 60%;
  }
}
@media (max-width: 416px) {
  .advantages_block {
    gap: 8px;
  }
  .advantage_item {
    gap: 0 8px;
  }
}
@media (max-width: 991px) {
  .container {
    padding: 0 10px;
  }
  .main_content_block_wrap .container {
    padding: 0 10px;
  }
  .advantages_block {
    gap: 6px;
    padding: 6px;
  }
  .advantage_item {
    gap: 0 6px;
  }
  .main_header-wrapper {
    margin-right: 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 */
