body * {
  box-sizing: border-box;
}

input {
  outline: none;
}

.green-text {
  color: var(--color-primary);
}

/* HEADER CONTENT START */
.header-content-wrapper {
  width: 100%;
  background-size: cover;
  background-position: center;
}

.header-content {
  max-width: 1320px;
  padding: 50px 0;
  margin: 0 auto 32px auto;
}

.header-content h1 {
  margin-bottom: 30px;
}

.header-content__subtitle {
  line-height: 160%;
}

.header-content h1 {
  text-align: center;
}

.rank-math-breadcrumb {
  margin-bottom: 32px;
}

.rank-math-breadcrumb p {
  margin-bottom: 0;
}

.rank-math-breadcrumb a {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-main);
}

.rank-math-breadcrumb a:last-of-type {
  color: var(--color-text-main);
}

.rank-math-breadcrumb .separator {
  font-size: 12px;
  padding: 0 10px;
}

@media (max-width: 1350px) {
  .header-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 480px) {
  .rank-math-breadcrumb {
    margin-bottom: 24px;
  }
}
/* HEADER CONTENT END */

/* HEADER CONTENT MAIN START */
.header-content-main {
  padding-top: 56px;
  padding-bottom: 127px;
  margin-bottom: 0;
}

.header-content-main h1 {
  max-width: 1077px;
  margin: 0 auto 44px auto;
}

@media (max-width: 480px) {
  .header-content-main {
    padding-top: 36px;
    padding-bottom: 80px;
  }

  .header-content-main h1 {
    margin: 0 auto 24px auto;
  }
}
/* HEADER CONTENT MAIN END */

/* HEADER CONTENT REVIEW START */
.header-content-review {
  padding-top: 24px;
  padding-bottom: 28px;
}

.header-content-review h1 {
  text-align: left;
  margin-bottom: 25px;
}

.header-content-review__wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.header-content-review__title-wrapper {
  width: 868px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 2px 4px 16px rgba(19, 43, 70, 0.12);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 24px;
}

@media (max-width: 1350px) {
  .header-content-review__title-wrapper {
    width: 69%;
  }
}

@media (max-width: 1100px) {
  .header-content-review__title-wrapper {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .header-content-review__wrapper {
    flex-direction: column;
  }

  .header-content-review {
    padding-top: 16px;
  }

  .header-content-review__title-wrapper {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
  }

  .header-content-review h1 {
    text-align: center;
  }

  .header-content-review .header-content__subtitle {
    display: none;
  }
}
/* HEADER CONTENT REVIEW END */

/* HEADER CONTENT BEST START */
.header-content-best {
  padding-top: 24px;
  padding-bottom: 127px;
  margin-bottom: 0;
}

.header-content-best h1 {
  max-width: 768px;
  margin: 0 auto 32px auto;
}

.header-content-best .header-content__subtitle {
  max-width: 900px;
  margin: 0 auto 60px auto;
}

@media (max-width: 480px) {
  .header-content-best {
    padding-top: 16px;
    padding-bottom: 80px;
  }

  .header-content-best h1 {
    margin: 0 auto 24px auto;
  }

  .header-content-best .header-content__subtitle {
    text-align: center;
  }
}
/* HEADER CONTENT BEST END */

/* HEADER CONTENT INFO START */
.header-content-info {
  padding-top: 24px;
  padding-bottom: 28px;
}

.header-content-info h1 {
  max-width: 900px;
  margin: 0 auto 32px auto;
}

.header-content-info .header-content__subtitle {
  max-width: 900px;
  text-align: center;
  margin: 0 auto 70px auto;
}

@media (max-width: 480px) {
  .header-content-info {
    padding-top: 16px;
    padding-bottom: 30px;
  }

  .header-content-info h1 {
    margin: 0 auto 24px auto;
  }
}
/* HEADER CONTENT INFO END */

/* HEADER CONTENT GAME REVIEW START */
.header-content-game-review h1 {
  text-align: left;
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  .header-content-game-review h1 {
    text-align: center;
    margin-bottom: 16px;
  }

  .header-content-game-review .header-content__subtitle {
    text-align: center;
  }
}
/* HEADER CONTENT GAME REVIEW END */

/* CONTENT START */
.content-wrapper {
  width: 100%;
}

.content-container {
  max-width: 960px;
  margin: 0 auto 50px auto;
}

.content-container_wide {
  max-width: 1320px;
  margin: 0 auto 50px auto;
}

.content-container_slim {
  max-width: 868px;
  margin: 0 auto 50px auto;
}

.content-container_border {
  background: #ffffff;
  padding: 36px 24px;
  border: 1px solid var(--color-gray);
  box-shadow: 2px 4px 23px rgba(23, 55, 116, 0.08);
  border-radius: 12px;
  margin-bottom: 50px;
}

.content-gray-bg {
  width: 100%;
  height: 750px;
  background-image: url(../images/gray-bg.png);
  background-position: center;
  background-repeat: repeat-x;
  position: absolute;
  left: 0;
  z-index: -1;
}

.content-sidebar-wrapper {
  display: flex;
  justify-content: space-between;
}

.content-sidebar-wrapper .content-container_slim {
  margin: 0;
  width: 67%;
}

.content-sidebar-wrapper .content-sidebar {
  width: 32%;
}

.content-gray-bg + * {
  padding-top: 28px;
}

@media (max-width: 1350px) {
  .content-container,
  .content-container_wide,
  .content-container_slim {
    padding: 0 16px;
  }

  .content-sidebar-wrapper .content-container_slim,
  .content-sidebar-wrapper .content-container {
    padding: 0;
  }

  .content-gray-bg {
    display: none;
  }

  .content-gray-bg + * {
    padding-top: 0;
  }
}

@media (max-width: 1100px) {
  .content-sidebar-wrapper .content-container_slim {
    max-width: 100%;
    width: 100%;
  }

  .content-sidebar {
    display: none;
  }
}

@media (max-width: 480px) {
  .content-container,
  .content-container_wide,
  .content-container_slim {
    margin-bottom: 30px;
  }

  .content-container_border {
    padding: 16px 12px;
    margin-bottom: 30px;
  }
}
/* CONTENT END */

/* HEADER META START */
.header-meta {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-meta__img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin-right: 16px;
  margin-bottom: 0;
}

.header-meta__content {
  display: flex;
  align-items: center;
}

.header-meta-author {
  position: relative;
  font-size: 12px;
  padding-right: 50px;
  margin-right: 16px;
}

.header-meta-author span {
  font-size: 14px;
  font-weight: 700;
  margin-left: 4px;
}

.header-meta-author::after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 0;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: var(--color-tertiary);
}

.header-meta-author__name {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

.header-meta-author__pos {
  font-size: 14px;
  font-weight: 500;
}

.header-meta-date {
  font-size: 12px;
  margin-right: 20px;
}

.header-meta-date span {
  font-size: 14px;
  font-weight: 700;
}

.header-meta-links {
  position: relative;
}

.header-meta-links__list {
  display: flex;
}

.header-meta-links a {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-primary);
  border-radius: 50%;
}

.header-meta-links a:not(:last-of-type) {
  margin-right: 8px;
}

.header-meta-links i {
  font-size: 20px;
  color: #ffffff;
}

.header-meta-links__share {
  display: none;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  background: var(--color-primary);
  border-radius: 50%;
}

.header-meta-links__share-icon {
  width: auto;
  margin-bottom: 0;
}

@media (max-width: 480px) {
  .header-meta {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .header-meta__content {
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
  }

  .header-meta__img {
    margin-right: 12px;
  }

  .header-meta-author {
    padding-right: 0;
    margin-right: 8px;
    margin-bottom: 8px;
  }

  .header-meta-author__name {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-meta-author__name span {
    margin-top: 2px;
    margin-left: 0;
  }

  .header-meta-author::after {
    display: none;
  }

  .header-meta-links__share {
    display: flex;
  }

  .header-meta-links__list {
    display: none;
    position: absolute;
    top: 52px;
    z-index: 10;
  }

  .header-meta-links__list a {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }

  .header-meta-links.open .header-meta-links__list {
    display: block;
  }
}
/* HEADER META END */

/* REVIEW CASINO CARD START */
.review-casino-card-wrapper {
  width: 420px;
  position: absolute;
  top: 0;
  right: 0;
}

.review-casino-card {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: var(--color-tertiary);
  box-shadow: 2px 4px 23px rgba(23, 55, 116, 0.08);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}

.review-casino-card.fixed {
  position: fixed;
  top: 16px;
  right: 400px;
}

.review-casino-card__header {
  width: 100%;
  background: linear-gradient(0deg, rgba(19, 43, 70, 0.04), rgba(19, 43, 70, 0.04)), #ffffff;
  border: 1px solid rgba(19, 43, 70, 0.05);
  box-shadow: 2px 4px 23px rgba(23, 55, 116, 0.08);
  border-radius: 10px;
  margin-bottom: 12px;
}

.review-casino-card__logo {
  display: block;
  width: 100%;
  height: 180px;
  background-position: center;
  background-size: cover;
  border-radius: 8px;
}

.review-casino-card__bonuses {
  display: flex;
  align-items: center;
  padding: 12px 24px;
}

.review-casino-card__bonus-icon {
  width: 40px;
  height: 40px;
  margin-right: 28px;
  margin-bottom: 0;
}

.review-casino-card__bonus {
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
}

.review-casino-card__rating {
  width: 48%;
  background: linear-gradient(0deg, rgba(19, 43, 70, 0.04), rgba(19, 43, 70, 0.04)), #ffffff;
  border: 1px solid rgba(19, 43, 70, 0.05);
  box-shadow: 2px 4px 23px rgba(23, 55, 116, 0.08);
  border-radius: 10px;
  padding: 8px 20px;
  margin-bottom: 12px;
}

.review-casino-card__rating-number {
  color: var(--color-text-add);
  margin-bottom: 8px;
}

.review-casino-card__rating-number span {
  font-size: 32px;
  font-weight: 600;
  color: var(--color-text-main);
}

.review-casino-card__rating-stars {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.review-casino-card__rating-star {
  width: auto;
  margin-bottom: 0;
  border-radius: 0;
}

.review-casino-card__flag-wrapper {
  position: relative;
  width: 48%;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  line-height: 170%;
  background: linear-gradient(0deg, rgba(19, 43, 70, 0.04), rgba(19, 43, 70, 0.04)), #ffffff;
  border: 1px solid rgba(19, 43, 70, 0.05);
  box-shadow: 2px 4px 23px rgba(23, 55, 116, 0.08);
  border-radius: 10px;
  padding: 8px 20px;
  margin-bottom: 12px;
}

.review-casino-card__flag {
  width: 30px;
  height: 22px;
  border-radius: 4px;
  margin-bottom: 0;
  margin-bottom: 8px;
}

.review-casino-card__flag-wrapper::after {
  content: url(../images/lang-check-mini.svg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 7px;
  left: 43px;
}

.review-casino-card__features {
  width: 100%;
  color: #ffffff;
  margin-bottom: 12px;
}

.review-casino-card__features-item {
  position: relative;
  line-height: 160%;
  padding-left: 30px;
  margin-bottom: 12px;
}

.review-casino-card__features-item::before {
  content: url(../images/features-icon.svg);
  position: absolute;
  left: 3px;
}

.review-casino-card__link {
  position: relative;
  width: 100%;
  background: var(--color-secondary);
  color: #ffffff;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  padding: 16px 0;
  border-radius: 10px;
}

.review-casino-card__link::after {
  content: url(../images/white-arrow.svg);
  position: relative;
  top: 1px;
  left: 15px;
}

.review-casino-card__subtitle {
  display: none;
}

@media (max-width: 1350px) {
  .review-casino-card-wrapper {
    width: 30%;
  }

  .review-casino-card__rating-star {
    width: 20px;
  }
}

@media (max-width: 1100px) {
  .review-casino-card-wrapper {
    display: none;
  }
}

@media (max-width: 480px) {
  .review-casino-card-wrapper {
    display: block;
    width: 100%;
    height: auto !important;
    position: static;
  }

  .review-casino-card-wrapper .recommended-grid,
  .review-casino-card-wrapper .news-grid {
    display: none;
  }

  .review-casino-card {
    padding: 12px;
    margin-bottom: 0;
  }

  .review-casino-card__subtitle {
    order: 2;
    display: block;
    color: var(--color-gray);
    line-height: 170%;
    margin-bottom: 16px;
  }

  .review-casino-card__rating-stars {
    display: none;
  }

  .review-casino-card__rating {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32%;
    padding: 8px 15px;
  }

  .review-casino-card__rating-number {
    position: relative;
    margin-bottom: 0;
    padding-left: 25px;
  }

  .review-casino-card__rating-number span {
    font-size: 20px;
  }

  .review-casino-card__rating-number::before {
    content: url(../images/rating-star.svg);
    position: absolute;
    bottom: 3px;
    left: 0;
  }

  .review-casino-card__flag-wrapper {
    width: 66%;
    flex-direction: row;
    align-items: center;
    font-size: 14px;
    padding: 8px 15px;
  }

  .review-casino-card__flag-wrapper::after {
    top: 20px;
    left: 35px;
  }

  .review-casino-card__flag {
    margin-bottom: 0;
    margin-right: 12px;
  }

  .review-casino-card__link {
    order: 1;
    font-size: 16px;
    margin-bottom: 24px;
    padding: 12px 0;
  }

  .review-casino-card__features {
    order: 3;
    margin-bottom: 0;
  }

  .review-casino-card-wrapper.fixed {
    z-index: 1000;
  }

  .fixed .review-casino-card {
    position: fixed;
    top: auto;
    left: 0;
    bottom: 0;
    border-radius: 0;
    margin-bottom: 0;
  }

  .fixed .review-casino-card__rating,
  .fixed .review-casino-card__flag-wrapper,
  .fixed .review-casino-card__subtitle,
  .fixed .review-casino-card__features {
    display: none;
  }

  .fixed .review-casino-card__header {
    display: flex;
    height: 47px;
  }

  .fixed .review-casino-card__logo {
    width: 92px;
    height: 45px;
    margin-right: 20px;
  }

  .fixed .review-casino-card__bonuses {
    padding: 4px 0;
  }

  .fixed .review-casino-card__bonus {
    font-size: 14px;
  }

  .fixed .review-casino-card__bonus-icon {
    margin-right: 12px;
  }

  .fixed .review-casino-card__link {
    margin-bottom: 0;
  }
}
/* REVIEW CASINO CARD END */

/* SECTIONS START */
.sections {
  width: 100%;
}

.sections-tabs {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  z-index: 10;
}

.sections-tabs__item {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  padding: 16px 35px 16px 20px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 2px 4px 16px rgba(19, 43, 70, 0.12);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  z-index: 1000;
}

.sections-tabs__item.active {
  border: 8px solid var(--color-primary);
}

.sections-tabs__item.active::after {
  content: "";
  position: absolute;
  left: calc(50% - 25px);
  bottom: -50px;
  border: 25px solid transparent;
  border-top: 25px solid var(--color-primary);
}

.sections-tabs__icon-wrapper {
  margin-right: 16px;
}

.section-tabs__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0;
}

.sections-tabs__title {
  font-weight: 700;
}

.sections-content {
  width: 100%;
}

.sections-tabs__content {
  width: 100%;
  margin-top: 30px;
  display: none;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 2px 4px 16px rgba(19, 43, 70, 0.12);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 28px 24px;
  order: 6;
}

.sections-tabs__content.active {
  display: block;
}

.sections-tabs__content-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 20px;
}

.sections-tabs__content-text {
  line-height: 160%;
  margin-bottom: 24px;
}

.sections-tabs__content-button {
  display: inline-block;
  color: #ffffff;
  background: var(--color-secondary);
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  border-radius: 12px;
  padding: 20px 44px;
}

@media (max-width: 1350px) {
  .sections-tabs {
    flex-wrap: wrap;
  }

  .sections-tabs__item {
    margin-right: 5px;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .sections-tabs__item {
    width: 100%;
    padding: 8px 35px 8px 20px;
    margin-bottom: 15px;
    margin-right: 0;
  }

  .sections-tabs__item.active {
    border-width: 4px;
  }

  .sections-tabs__item.active::after {
    display: none;
  }

  .sections-tabs__item::before {
    content: url(../images/sections-arrow.svg);
    width: 15px;
    height: 10px;
    position: absolute;
    left: auto;
    top: calc(50% - 8px);
    right: 12px;
    border: none;
  }

  .sections-tabs__item.active::before {
    top: calc(50% - 2px);
    right: 9px;
    transform: rotate(180deg);
  }

  .sections-tabs__content {
    order: unset;
    margin: 0 0 15px 0;
  }
}

@media (max-width: 480px) {
  .sections-tabs__item {
    padding: 4px 8px;
    margin-bottom: 8px;
  }

  .sections-tabs__content {
    padding: 16px 12px;
    margin-bottom: 8px;
  }

  .sections-tabs__content-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .sections-tabs__content-text {
    margin-bottom: 16px;
  }

  .sections-tabs__content-button {
    font-size: 16px;
    padding: 12px 28px;
  }

  .section-tabs__icon {
    width: 36px;
    height: 36px;
  }
}
/* SECTIONS END */

/* CASINO CARDS START */
.casino-cards {
  display: flex;
  justify-content: space-between;
}

.casino-cards_main {
  margin-top: -80px;
}

.casino-card {
  width: 32%;
  background: #ffffff;
  border: 1px solid var(--color-gray);
  box-shadow: 2px 4px 23px rgba(23, 55, 116, 0.08);
  border-radius: 12px;
  padding: 12px 24px;
}

.casino-card__header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  height: 34px;
}

.casino-card__pos {
  width: 27px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  line-height: 130%;
  font-weight: 700;
  color: #ffffff;
  background: var(--color-tertiary);
  border-radius: 8px 0px;
}

.casino-card__pos_1 {
  width: 28px;
  height: 34px;
  color: var(--color-text-main);
  background-color: transparent;
  background-image: url(../images/casino-pos1.svg);
}

.casino-card__pos_2 {
  width: 28px;
  height: 34px;
  color: var(--color-text-main);
  background-color: transparent;
  background-image: url(../images/casino-pos2.svg);
}

.casino-card__pos_3 {
  width: 28px;
  height: 34px;
  color: var(--color-text-main);
  background-color: transparent;
  background-image: url(../images/casino-pos3.svg);
}

.casino-card__name {
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  color: var(--color-text-main);
}

.casino-card__logo {
  position: relative;
  display: block;
  width: 100%;
  height: 178px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 8px;
  margin-bottom: 16px;
}

.casino-card__rating {
  background: #ffffff;
  color: var(--color-text-add);
  height: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0 8px 0 0;
  padding: 4px 15px 4px 40px;
}

.casino-card__rating span {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-main);
}

.casino-card__rating::before {
  content: url(../images/rating-star.svg);
  position: absolute;
  top: 6px;
  left: 13px;
}

.casino-card__flag-wrapper {
  background: #ffffff;
  height: 30px;
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 8px 0 0 0;
  padding: 7px 12px;
}

.casino-card__flag {
  position: relative;
  width: 24px;
  height: 18px;
  border-radius: 4px;
  margin-bottom: 0;
}

.casino-card__flag-wrapper::after {
  content: url(../images/lang-check-mini.svg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 5px;
  right: 9px;
}

.casino-card__bonuses {
  position: relative;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(19, 43, 70, 0.04);
  box-shadow: 2px -4px 8px rgba(74, 85, 143, 0.06), 2px 4px 8px rgba(74, 85, 143, 0.06);
  padding: 16px 24px;
  margin-left: -24px;
  margin-right: -24px;
  margin-bottom: 15px;
}

.casino-card__bonus-icon {
  width: auto;
  margin-right: 16px;
  margin-bottom: 0;
}

.casino-card__bonus {
  flex: 1;
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
}

.casino-card__features {
  height: 100px;
  margin-bottom: 16px;
}

.casino-card__features-item {
  position: relative;
  line-height: 160%;
  margin-bottom: 10px;
  padding-left: 25px;
}

.casino-card__features-item::before {
  content: url(../images/features-icon.svg);
  position: absolute;
  left: 0;
}

.casino-card__license {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  color: var(--color-text-add);
  margin-bottom: 12px;
  text-decoration: underline;
}

.casino-card__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.casino-card__play-link {
  display: flex;
  justify-content: center;
  width: 250px;
  background: var(--color-secondary);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  border-radius: 10px;
  padding: 16px 0;
}

.casino-card__play-link::after {
  content: url(../images/play-link-icon.svg);
  position: relative;
  top: 1px;
  left: 15px;
}

.casino-card__promocode.promocode-wrapper {
  height: 42px;
}

.casino-card__promocode .promocode-icon {
  width: 60px;
}

.casino-card__promocode .promocode-tooltip__content {
  bottom: 30px;
}

.casino-card__disclaimer {
  margin-top: 12px;
  font-size: 12px;
  color: var(--color-text-add);
  line-height: 150%;
}

.casino-card-promocode {
  margin-left: 10px;
}

.casino-card-promocode .casino-card-promocode__button {
  position: relative;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  width: 62px;
  height: 52px;
  background: var(--color-primary);
  border-radius: 8px;
  z-index: 2;
}

.casino-card-promocode .casino-card-promocode__arrow {
  width: 8px;
  margin-bottom: 0;
  border-radius: 0;
  margin-left: 12px;
  transform: rotate(180deg);
}

.casino-card-promocode .casino-card-promocode__counter {
  position: absolute;
  top: -12px;
  right: -12px;
  width: auto;
  margin-bottom: 0;
  border-radius: 0;
}

.casino-card-promocode .promocode-icon {
  width: 44px;
  background-color: transparent;
  border: none;
}

.casino-card-promocode .casino-card-promocode__wrapper {
  display: none;
  position: absolute;
  top: 18px;
  left: 24px;
  width: calc(100% - 48px);
  height: 52px;
  border-radius: 8px;
  background: #ddf7ec;
  padding: 8px 75px 8px 12px;
  z-index: 1;
}

.casino-card-promocode .casino-card-promocode__inner {
  position: relative;
  background: #fff;
  border: none;
  border-radius: 8px;
}

.casino-card-promocode .promocode-tooltip {
  position: absolute;
  top: 10px;
  right: 10px;
}

.casino-card-promocode .promocode__text {
  margin-right: 0;
}

.casino-card-promocode:hover .casino-card-promocode__wrapper {
  display: block;
}

.casino-card-promocode:hover .casino-card-promocode__arrow {
  transform: none;
}

@media (max-width: 1350px) {
  .casino-card__features {
    height: 150px;
  }

  .casino-card__play-link {
    width: 200px;
    padding: 12px 0;
  }
}

@media (min-width: 1201px) {
  .casino-cards_desktop-hide {
    display: none;
  }
}

@media (max-width: 1200px) {
  .casino-cards_mobile-hide {
    display: none;
  }

  .content-container_slim .casino-cards_desktop-hide {
    display: none;
  }

  .casino-cards {
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .casino-card {
    margin-bottom: 12px;
  }

  .casino-card__links {
    flex-wrap: wrap;
  }

  .casino-card__play-link {
    width: 100%;
    margin-bottom: 8px;
    text-align: center;
  }

  .casino-card__review-link {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 1000px) {
  .casino-card__bonuses {
    padding: 16px 12px;
  }
}

@media (max-width: 900px) {
  .casino-card {
    width: 49%;
  }

  .content-container_slim .casino-cards_desktop-hide {
    display: flex;
  }
}

@media (max-width: 600px) {
  .casino-card {
    width: 100%;
  }

  .casino-card__promocode .promocode-tooltip__content {
    top: 40px;
    bottom: auto;
  }
}

@media (max-width: 480px) {
  .casino-card {
    padding: 12px;
  }

  .casino-card__pos {
    margin-right: 12px;
  }

  .casino-card__bonuses {
    height: auto;
    margin-left: -12px;
    margin-right: -12px;
  }

  .casino-card__bonus {
    font-size: 16px;
  }

  .casino-card__features {
    height: auto;
    margin-bottom: 8px;
  }

  .casino-card__features-item {
    padding-left: 30px;
    font-size: 14px;
    margin-bottom: 8px;
  }

  .casino-card__features-item::before {
    left: 5px;
  }

  .casino-card__play-link {
    width: 49%;
    font-size: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
    margin-bottom: 0;
  }

  .casino-card__review-link {
    width: 49%;
  }

  .casino-card__promocode.promocode-wrapper {
    height: 34px;
  }

  .casino-card__promocode .promocode-icon {
    width: 48px;
  }
}
/* CASINO CARDS END */

/* CASINO TABLE START */
.casino-table__tabs {
  display: flex;
  margin-bottom: 18px;
}

.casino-table__tab {
  color: var(--color-text-add);
  font-weight: 400;
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid var(--color-gray);
  box-shadow: 2px 4px 12px rgba(23, 55, 116, 0.04);
  padding: 8px 32px;
  margin-right: 8px;
  border-radius: 8px;
}

.casino-table__tab.active {
  color: var(--color-text-main);
  background: rgba(19, 43, 70, 0.04);
  box-shadow: 2px 4px 16px rgba(23, 55, 116, 0.08);
}

.casino-table-button-wrapper {
  display: flex;
  justify-content: center;
}

.casino-table-show-more {
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  padding: 12px;
  border-radius: 6px;
  background: var(--color-secondary);
  color: #fff;
}

@media (max-width: 1200px) {
  .casino-table-button-wrapper {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .casino-table-button-wrapper {
    margin-top: 10px;
  }

  .casino-table-show-more {
    font-size: 16px;
  }
}

.casino-table-item {
  width: 100%;
  height: 168px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(19, 43, 70, 0.04);
  box-shadow: 2px 4px 23px rgba(23, 55, 116, 0.08);
  border-radius: 12px;
  margin-bottom: 24px;
}

.casino-table__item-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 16px 16px 10px 16px;
}

.casino-table-item__pos {
  width: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  background: var(--color-tertiary);
  border-radius: 12px 0px 0px 12px;
}

.casino-table-item__pos_1 {
  color: var(--color-text-main);
  background: linear-gradient(175.62deg, #ffe259 9.05%, #ffc956 75.81%, #ffa751 113.61%);
}
.casino-table-item__pos_2 {
  color: var(--color-text-main);
  background: linear-gradient(354deg, #757f9a -14.89%, #b8bfcf 26.16%, #d7dde8 100%);
}
.casino-table-item__pos_3 {
  color: var(--color-text-main);
  background: linear-gradient(356.24deg, #d86e21 -2.44%, #f3b04e 100%);
}

.casino-table-item__img-wrapper {
  width: 209px;
  height: 114px;
}

.casino-table-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0;
}

.casino-table-item__wrapper {
  max-width: 200px;
  width: 100%;
}

.casino-table-item__name {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  color: var(--color-text-main);
  margin-bottom: 8px;
}

.casino-table-item__rating {
  position: relative;
  color: var(--color-text-add);
  border-radius: 0 8px 0 0;
  padding: 0 0 0 25px;
  margin-bottom: 8px;
}

.casino-table-item__rating span {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-main);
}

.casino-table-item__rating ::before {
  content: url(../images/rating-star.svg);
  position: absolute;
  top: 0;
  left: 0;
}

.casino-table-item__bonuses {
  max-width: 286px;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  background: linear-gradient(0deg, rgba(19, 43, 70, 0.04), rgba(19, 43, 70, 0.04)), #ffffff;
  border: 1px solid rgba(19, 43, 70, 0.05);
  box-shadow: 2px 4px 23px rgba(23, 55, 116, 0.08);
  border-radius: 10px;
  padding: 16px 10px 16px 20px;
}

.casino-table-item__bonus-icon {
  width: auto;
  margin-right: 16px;
  margin-bottom: 0;
}

.casino-table-item__bonus {
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  text-align: center;
}

.casino-table-item__features {
  max-width: 270px;
  width: 100%;
}

.casino-table-item__features-item {
  position: relative;
  font-size: 14px;
  line-height: 130%;
  padding-left: 25px;
  margin-bottom: 10px;
}

.casino-table-item__features-item:last-of-type {
  margin-bottom: 0;
}

.casino-table-item__features-item::before {
  content: url(../images/features-icon.svg);
  position: absolute;
  left: 0;
}

.casino-table-item__links {
  max-width: 206px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.casino-table-item__play-link {
  width: 100%;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-secondary);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  border-radius: 10px;
  padding: 12px 0;
  margin-bottom: 12px;
}

.casino-table-item__play-link::after {
  content: url(../images/play-link-icon.svg);
  position: relative;
  left: 15px;
}

.casino-table-item__review-link {
  margin-bottom: 12px;
}

.casino-table-item__flag-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 170%;
}

.casino-table-item__flag {
  position: relative;
  width: 24px;
  height: 18px;
  border-radius: 4px;
  margin-right: 12px;
  margin-bottom: 0;
}

.casino-table-item__flag-wrapper::after {
  content: url(../images/lang-check-mini.svg);
  display: flex;
  align-items: center;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 0px;
  left: 18px;
}

.casino-table-item__disclaimer {
  position: absolute;
  bottom: 6px;
  width: 100%;
  height: 16px;
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-add);
}

@media (max-width: 1320px) {
  .casino-table-item__img-wrapper {
    width: 130px;
    height: 90px;
    margin-right: 16px;
  }

  .casino-table-item__bonuses {
    max-width: 250px;
    padding: 16px 16px;
    margin-right: 16px;
  }

  .casino-table-item__bonus {
    font-size: 16px;
  }

  .casino-table-item__links {
    max-width: 190px;
  }

  .casino-table-item__play-link {
    margin-bottom: 8px;
  }

  .casino-table-item__review-link {
    margin-bottom: 8px;
  }
}

@media (max-width: 1200px) {
  .casino-table {
    display: none;
  }
}
/* CASINO TABLE END */

/* CASINO TABLE SLIM START */
.casino-table-slim-item {
  width: 100%;
  height: 296px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(19, 43, 70, 0.04);
  box-shadow: 2px 4px 23px rgba(23, 55, 116, 0.08);
  border-radius: 12px;
  margin-bottom: 24px;
}

.casino-table-slim-item__img-wrapper {
  display: flex;
  align-items: center;
  width: 186px;
  height: 100%;
  border-radius: 12px;
}

.casino-table-slim-item__img {
  width: 186px;
  height: 101px;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 0;
}

.casino-table-slim__item-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  padding: 16px;
}

.casino-table-slim__col:first-of-type {
  width: 53%;
}

.casino-table-slim__col:last-of-type {
  width: 47%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.casino-table-slim-item__wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.casino-table-slim-item__pos {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  background: var(--color-tertiary);
  border-radius: 8px;
  margin-right: 16px;
}

.casino-table-slim-item__pos_1 {
  color: var(--color-text-main);
  background: linear-gradient(175.62deg, #ffe259 9.05%, #ffc956 75.81%, #ffa751 113.61%);
}
.casino-table-slim-item__pos_2 {
  color: var(--color-text-main);
  background: linear-gradient(354deg, #757f9a -14.89%, #b8bfcf 26.16%, #d7dde8 100%);
}
.casino-table-slim-item__pos_3 {
  color: var(--color-text-main);
  background: linear-gradient(356.24deg, #d86e21 -2.44%, #f3b04e 100%);
}

.casino-table-slim-item__name {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  color: var(--color-text-main);
}

.casino-table-slim-item__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--color-text-add);
  margin-top: 8px;
}

.casino-table-slim-item__rating span {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-main);
}

.casino-table-slim-item__stars {
  display: flex;
  margin-right: 12px;
}

.casino-table-slim-item__star {
  width: 24px;
  height: 24px;
  margin-right: 4px;
  margin-bottom: 0;
}

.casino-table-slim-item__license {
  font-size: 12px;
  font-weight: 400;
  line-height: 170%;
  color: var(--color-text-main);
  text-decoration: underline;
  margin-left: 30px;
}

.casino-table-slim-item__bonuses {
  width: 100%;
  max-width: 320px;
  height: 80px;
  display: flex;
  align-items: center;
  background: linear-gradient(0deg, rgba(19, 43, 70, 0.04), rgba(19, 43, 70, 0.04)), #ffffff;
  border: 1px solid rgba(19, 43, 70, 0.05);
  box-shadow: 2px 4px 23px rgba(23, 55, 116, 0.08);
  border-radius: 10px;
  padding: 12px 20px;
  margin-bottom: 12px;
}

.casino-table-slim-item__bonus-icon {
  width: auto;
  margin-right: 16px;
  margin-bottom: 0;
}

.casino-table-slim-item__bonus {
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
}

.casino-table-slim-item__features {
  width: 100%;
  max-width: 320px;
}

.casino-table-slim-item__features-item {
  position: relative;
  line-height: 160%;
  margin-bottom: 8px;
  padding-left: 30px;
  font-size: 14px;
  line-height: 130%;
}

.casino-table-slim-item__features-item:last-of-type {
  margin-bottom: 0;
}

.casino-table-slim-item__features-item::before {
  content: url(../images/features-icon.svg);
  position: absolute;
  left: 5px;
}

.casino-table-slim-item__links-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.casino-table-slim-item__links {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.casino-table-slim-item__play-link {
  width: 182px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-secondary);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  border-radius: 10px;
}

.casino-table-slim-item__play-link::after {
  content: url(../images/play-link-icon.svg);
  position: relative;
  top: 1px;
  left: 15px;
}

.casino-table-slim-item__review-link {
  margin-left: 20px;
}

.casino-table-slim-item__flag-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 170%;
  margin-bottom: 12px;
}

.casino-table-slim-item__flag {
  position: relative;
  width: 24px;
  height: 18px;
  border-radius: 4px;
  margin-right: 12px;
  margin-bottom: 0;
}

.casino-table-slim-item__flag-wrapper::after {
  content: url(../images/lang-check-mini.svg);
  display: flex;
  align-items: center;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 0px;
  left: 18px;
}

.casino-table-slim-item__disclaimer {
  font-size: 12px;
  line-height: 150%;
  color: var(--color-text-add);
}

.casino-table-slim-item__promocode.promocode-wrapper {
  height: 40px;
  margin-bottom: 28px;
}

.casino-table-slim-item__promocode .promocode-icon {
  width: 58px;
}

@media (max-width: 1200px) {
  .casino-table-slim-item__bonus {
    font-size: 16px;
  }

  .casino-table-slim__col:last-of-type {
    width: 45%;
  }
}

@media (max-width: 900px) {
  .casino-table-slim {
    display: none;
  }
}
/* CASINO TABLE SLIM END */

/* CRITERIAS START */
.criterias {
  width: 100%;
}

.criterias-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.criterias-item {
  width: 32%;
  position: relative;
  background-size: cover;
  border: 1px solid var(--color-gray);
  box-shadow: 2px 4px 23px rgba(23, 55, 116, 0.08);
  border-radius: 12px;
  padding: 28px 20px;
  margin-bottom: 30px;
}

.content-container_slim .criterias-item {
  width: 48%;
}

.criterias-item__title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  z-index: 1;
}

.criterias-item__text {
  position: relative;
  line-height: 160%;
  z-index: 1;
}

@media (max-width: 900px) {
  .criterias-item {
    width: 48%;
  }
}

@media (max-width: 600px) {
  .criterias-item {
    width: 100% !important;
    margin-bottom: 16px;
  }
}

@media (max-width: 480px) {
  .criterias-item {
    padding: 16px 12px;
  }

  .criterias-item__title {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
/* CRITERIAS END */

.blog-news-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.blog-news-wrapper .blog-grid {
  width: 64%;
}

.blog-news-wrapper .news-grid {
  width: 34%;
}

.content-container_slim .blog-grid {
  width: 100%;
}

.content-container_slim .news-grid {
  display: none;
}

@media (max-width: 1100px) {
  .blog-news-wrapper .blog-grid,
  .blog-news-wrapper .news-grid {
    width: 49%;
  }

  .content-container_slim .blog-grid {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .blog-news-wrapper .blog-grid,
  .blog-news-wrapper .news-grid {
    width: 100%;
  }

  .content-container_slim .news-grid {
    display: block;
  }
}

/* BLOG GRID START */
.blog-grid-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.blog-grid-item {
  width: 48.5%;
  background-position: center;
  background-size: cover;
  border-radius: 12px;
  height: 280px;
  display: flex;
  align-items: flex-end;
  color: var(--color-text-main);
  margin-bottom: 32px;
}

.blog-grid-item__content {
  width: 100%;
  height: 85px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  border-radius: 0px 0px 12px 12px;
  padding: 12px;
}

.blog-grid-item__title {
  margin-bottom: 4px;
  line-height: 130%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-grid-item__date {
  font-size: 12px;
  font-weight: 400;
}

@media (max-width: 1100px) {
  .blog-grid-item {
    width: 100%;
  }

  .content-container_slim .blog-grid-item {
    width: 49%;
  }
}

@media (max-width: 600px) {
  .blog-grid-item {
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  .blog-grid-item {
    margin-bottom: 20px;
  }
}
/* BLOG GRID END */

/* NEWS GRID START */
.news-grid {
  margin-bottom: 32px;
}

.news-grid-list {
  margin-top: -12px;
  margin-left: -12px;
}

.news-grid-item {
  display: flex;
  color: var(--color-text-main);
  padding: 12px;
  border: 1px solid transparent;
}

.news-grid-item:hover {
  display: flex;
  background: #ffffff;
  border: 1px solid var(--color-gray);
  box-shadow: 2px 4px 23px rgba(23, 55, 116, 0.08);
  border-radius: 12px;
}

.news-grid-item__img {
  width: 133px;
  height: 93px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 16px;
  margin-bottom: 0;
}

.news-grid-item__date {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 4px;
}

.news-grid-item__title {
  line-height: 130%;
}

.news-grid__read-more {
  display: block;
  width: 100%;
  background: #f5f5f5;
  border: 1px solid #e2e2e2;
  box-shadow: 2px 4px 16px rgba(23, 55, 116, 0.12);
  border-radius: 8px;
  text-align: center;
  padding: 18px 0;
  color: var(--color-text-main);
  margin-top: 16px;
}

.news-grid__read-more::after {
  content: url(../images/green-arrow.svg);
  position: relative;
  top: 2px;
  left: 20px;
}

@media (max-width: 480px) {
  .news-grid-item__img {
    width: 100px;
    height: 70px;
  }

  .news-grid-item__title {
    height: 42px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .news-grid__read-more {
    padding: 16px 0;
  }
}
/* NEWS GRID END */

/* SLOTS GRID START */
.slots-grid-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.slots-grid-item {
  position: relative;
  width: 19%;
  background: #ffffff;
  border: 1px solid var(--color-gray);
  box-shadow: 2px 4px 23px rgba(23, 55, 116, 0.08);
  border-radius: 12px;
  color: var(--color-text-main);
  padding: 12px;
  margin-bottom: 16px;
}

.content-container_slim .slots-grid-item {
  width: 32%;
}

.slots-grid-item__img {
  width: 100%;
  max-height: 140px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.slots-grid-item__name {
  margin-bottom: 4px;
}

.slots-grid-item__provider {
  font-weight: 400;
  color: var(--color-text-add);
}

.slots-grid-item__link-wrapper {
  display: none;
}

.slots-grid-item:hover .slots-grid-item__link-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.slots-grid-item__link-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #132b46;
  opacity: 0.56;
  box-shadow: 2px 4px 23px rgba(23, 55, 116, 0.08);
  border-radius: 12px;
}

.slots-grid-item__link {
  text-align: center;
  width: 85%;
  position: relative;
  border-radius: 10px;
  color: #ffffff;
  background: var(--color-secondary);
  padding: 12px 0;
  z-index: 1;
}

.slots-grid-item__link::after {
  content: url(../images/play-link-icon.svg);
  position: relative;
  top: 2px;
  left: 10px;
}

@media (max-width: 1100px) {
  .slots-grid-item {
    width: 23%;
  }
}

@media (max-width: 768px) {
  .slots-grid-item {
    width: 31%;
  }
}

@media (max-width: 480px) {
  .slots-grid-list {
    justify-content: space-between;
  }

  .slots-grid-item {
    width: 49% !important;
    margin-bottom: 12px;
  }
}
/* SLOTS GRID END */

/* GAMES GRID START */
.games-grid-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.games-grid-item {
  position: relative;
  height: 146px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid var(--color-gray);
  box-shadow: 2px 4px 23px rgba(23, 55, 116, 0.08);
  border-radius: 12px;
  padding: 16px 0;
}

.games-grid-item__img {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
}

.games-grid-item__name {
  color: var(--color-text-main);
}

.games-grid-item__button {
  display: none;
  width: 32px;
  height: 88px;
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(40, 206, 138, 0.16);
  border-radius: 0px 12px 12px 0px;
}

.games-grid-item__button::after {
  content: url(../images/green-arrow.svg);
  position: absolute;
  top: calc(50% - 5px);
  left: calc(50% - 5px);
}

@media (max-width: 1200px) {
  .games-grid-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .games-grid-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .games-grid-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .games-grid-item {
    height: 70px;
    padding: 8px;
  }

  .games-grid-item__img {
    width: 36px;
    height: 36px;
    margin-right: 0;
    margin-bottom: 4px;
  }

  .games-grid-item__name {
    font-size: 16px;
    font-weight: 400;
  }
}

@media (max-width: 480px) {
  .games-grid-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px 4px;
  }

  .games-grid-item {
    padding: 8px 4px;
  }

  .games-grid-item__name {
    font-size: 12px;
    max-width: 58px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
/* GAMES GRID END */

/* GRID MOBILE SPOILER START */
.grid-with-spoiler {
  position: relative;
}

.grid-with-spoiler.open .grid-mobile-spoiler {
  display: none;
}

.grid-with-spoiler.open .grid-with-spoiler-list {
  max-height: none;
}

.grid-mobile-spoiler {
  display: none;
  width: 100%;
  height: 100px;
  position: absolute;
  bottom: -16px;
  background: linear-gradient(
          180deg,
          rgba(255, 255, 255, 0) 24.02%,
          rgba(255, 255, 255, 0.49) 47.48%,
          rgba(255, 255, 255, 0.84) 62.71%,
          rgba(255, 255, 255, 0.94) 79.59%,
          #fff 92.46%
  );
}

.grid-mobile-spoiler_big {
  height: 180px;
}

.grid-mobile-spoiler__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(19, 43, 70, 0.5);
  border: 1px solid rgba(19, 43, 70, 0.17);
  margin-bottom: 16px;
}

.grid-mobile-spoiler__button img {
  width: 16px;
  height: 16px;
  margin-bottom: 0;
  border-radius: 0;
}

@media (max-width: 480px) {
  .grid-with-spoiler-list {
    max-height: 115px;
    overflow: hidden;
  }

  .grid-with-spoiler-list_big {
    max-height: 235px;
  }

  .grid-mobile-spoiler {
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
}
/* GRID MOBILE SPOILER END */

/* FAQ START */
.faq {
  width: 100%;
}

.faq-list {
}

.faq-item {
  position: relative;
  border-bottom: 1px dashed rgba(19, 43, 70, 0.28);
}

.faq-item::after {
  content: url(../images/green-arrow.svg);
  position: absolute;
  top: 35px;
  right: 3px;
  transform: rotate(90deg);
}

.faq-item.open::after {
  transform: rotate(-90deg);
}

.faq-item__question {
  position: relative;
  cursor: pointer;
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  line-height: 170%;
  padding: 28px 0;
  z-index: 1;
}

.faq-item__question-text {
  display: block;
  width: 90%;
}

.faq-item__answer {
  display: none;
  line-height: 170%;
  margin-bottom: 28px;
}

.faq-item.open .faq-item__answer {
  display: block;
}

@media (max-width: 480px) {
  .faq-item::after {
    top: 23px;
  }

  .faq-item__question {
    font-size: 16px;
    padding: 16px 0;
  }

  .faq-item__answer {
    margin-bottom: 16px;
  }
}
/* FAQ END */

/* RECOMMENDED GRID START */
.recommended-grid {
  width: 100%;
  margin-bottom: 32px;
}

.recommended-grid-item {
  position: relative;
  width: 100%;
  height: 80px;
  display: flex;
  background: #ffffff;
  color: var(--color-text-main);
  border: 1px solid var(--color-gray);
  box-shadow: 2px 4px 23px rgba(23, 55, 116, 0.08);
  border-radius: 8px;
  margin-bottom: 16px;
}

.recommended-grid-item__img {
  width: 146px;
  height: 100%;
  border-radius: 8px;
  margin-bottom: 0;
}

.recommended-grid-item__content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 6px 10px;
}

.recommended-grid-item__name {
  font-size: 12px;
  font-weight: 400;
  margin-right: 10px;
}

.recommended-grid-item__rating {
  position: relative;
  font-size: 12px;
  color: var(--color-text-add);
  border-radius: 0 8px 0 0;
  padding: 4px 0 4px 30px;
}

.recommended-grid-item__rating span {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-main);
}

.recommended-grid-item__rating::before {
  content: url(../images/rating-star.svg);
  position: absolute;
  top: 0;
  left: 7px;
}

.recommended-grid-item__bonuses {
  width: 100%;
  display: flex;
  align-items: center;
}

.recommended-grid-item__bonus-icon {
  width: 32px;
  height: 32px;
  margin-right: 8px;
  margin-bottom: 0;
}

.recommended-grid-item__bonus {
  font-size: 14px;
}

.recommended-grid-item__button {
  width: 32px;
  height: 78px;
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(234, 47, 93, 0.15);
  border-radius: 0px 8px 8px 0px;
}

.recommended-grid-item__button::after {
  content: url(../images/pink-arrow.svg);
  position: absolute;
  top: calc(50% - 5px);
  left: calc(50% - 5px);
}

.recommended-grid-item:hover .recommended-grid-item__button {
  background: var(--color-secondary);
}

.recommended-grid-item:hover .recommended-grid-item__button::after {
  content: url(../images/white-arrow.svg);
}

@media (max-width: 1350px) {
  .recommended-grid-item__bonus-icon {
    display: none;
  }
}
/* RECOMMENDED GRID END */

/* AUTHOR START */
.author {
  background: #ffffff;
  border: 1px solid var(--color-gray);
  box-shadow: 2px 4px 23px rgba(23, 55, 116, 0.08);
  border-radius: 12px;
  padding: 16px 24px;
}

.author__header {
  display: flex;
  margin-bottom: 20px;
}

.author__img {
  width: 98px;
  height: 98px;
  border-radius: 8px;
  margin-right: 24px;
  margin-bottom: 0;
}

.author__name {
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  margin-top: 2px;
  margin-bottom: 4px;
}

.author__pos {
  margin-bottom: 10px;
}

.author__links {
  display: flex;
}

.author__links a {
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-primary);
  border-radius: 50%;
  margin-right: 12px;
}

.author__links i {
  font-size: 20px;
  color: #ffffff;
}

.author__text {
  line-height: 160%;
  margin-bottom: 12px;
}

.author__date {
  font-size: 12px;
}

.author__date span {
  font-size: 14px;
  font-weight: 700;
  margin-left: 5px;
}

@media (max-width: 480px) {
  .author {
    padding: 12px;
  }

  .author__header {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .author__img {
    margin-right: 16px;
  }

  .author__name {
    font-size: 16px;
  }

  .author__date {
    font-size: 14px;
  }

  .author__links a {
    width: 32px;
    height: 32px;
  }
}
/* AUTHOR END */

/* CASINO DETAILS START */
.casino-details {
}

.casino-details__list {
}

.casino-details__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 16px 0;
}

.casino-details__item:not(:last-of-type) {
  border-bottom: 1px dashed rgba(19, 43, 70, 0.28);
}

.casino-detais__icon {
  width: 28px;
  height: 28px;
  margin-right: 20px;
  margin-bottom: 0;
  border-radius: 0;
}

.casino-details__prop {
  width: 30%;
  margin-right: 20px;
  font-weight: 700;
}

.casino-details__value {
  width: 60%;
}

.casino-details__flag {
  width: 30px;
  height: 22px;
  border-radius: 4px;
  margin-right: 12px;
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .casino-details__value {
    width: 100%;
    padding-left: 48px;
  }
}

@media (max-width: 480px) {
  .casino-details__item {
    padding: 12px 0;
  }

  .casino-details__item .grid-mobile-spoiler {
    bottom: 4px;
  }

  .casino-details__prop {
    width: 80%;
    margin-right: 0;
    margin-bottom: 8px;
  }

  .casino-details__flag {
    width: 24px;
    height: 18px;
    margin-right: 8px;
    margin-bottom: 8px;
  }
}
/* CASINO DETAILS END */

/* PROS CONS START */
.pros-cons {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pros-cons__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 12px;
}

.pros-cons__item {
  position: relative;
  line-height: 160%;
  padding-left: 30px;
}

.pros-cons__item:not(:last-of-type) {
  margin-bottom: 12px;
}

.pros-cons__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
}

.pros {
  width: 49%;
}

.pros .pros-cons__item::before {
  content: url(../images/pros.svg);
}

.cons {
  width: 49%;
}

.cons .pros-cons__item::before {
  content: url(../images/cons.svg);
}

@media (max-width: 768px) {
  .pros {
    margin-bottom: 16px;
  }

  .pros,
  .cons {
    width: 100%;
  }

  .pros-cons__item:not(:last-of-type) {
    margin-bottom: 8px;
  }
}
/* PROS CONS END*/

/* LOGOS GRID START */
.logos-grid {
}

.logos-grid__list {
  display: flex;
  flex-wrap: wrap;
}

.logos-grid__item {
  width: 83px;
  height: 54px;
  background: #ffffff;
  border: 1px solid var(--color-gray);
  box-shadow: 2px 4px 23px rgba(23, 55, 116, 0.08);
  border-radius: 8px;
  margin-right: 8px;
  margin-bottom: 8px;
  padding: 5px;
}

.logos-grid__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  margin-bottom: 0;
}

@media (min-width: 1350px) {
  .logos-grid__item:nth-of-type(9n) {
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .logos-grid__item {
    width: 18%;
    height: auto;
    margin-right: 6px;
  }

  .logos-grid__item:nth-of-type(5n) {
    margin-right: 0;
  }
}
/* LOGOS GRID END */

/* LINKING SIDEBAR START */
.linking-sidebar {
  width: 100%;
  margin-bottom: 32px;
}

.linking-sidebar-list {
  width: 100%;
}

.linking-sidebar-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 21px 8px;
  border-top: 1px dashed #b0b3c4;
  color: var(--color-text-main);
}

.linking-sidebar-item:last-of-type {
  border-bottom: 1px dashed #b0b3c4;
}

.linking-sidebar-item:hover {
  background: var(--color-primary);
  color: #fff;
  border: none;
}

.linking-sidebar-item:hover + .linking-sidebar-item {
  border-top: none;
}

.linking-sidebar-item::after {
  content: url(../images/green-arrow.svg);
  position: absolute;
  top: calc(50% - 5px);
  right: 10px;
}

.linking-sidebar-item:hover:after {
  content: url(../images/white-arrow.svg);
}

.linking-sidebar-item__title {
  width: 95%;
}
/* LINKING SIDEBAR END */

/* LINKING GRID START */
.linking-grid-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.linking-grid-item {
  width: 32%;
  background-position: center;
  background-size: cover;
  border-radius: 12px;
  height: 280px;
  display: flex;
  align-items: flex-end;
  color: var(--color-text-main);
  margin-bottom: 32px;
}

.linking-grid-item__content {
  width: 100%;
  height: 85px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  border-radius: 0px 0px 12px 12px;
  padding: 12px;
}

.linking-grid-item__title {
  margin-bottom: 4px;
  line-height: 130%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.linking-grid-item__date {
  font-size: 12px;
  font-weight: 400;
}

@media (max-width: 900px) {
  .linking-grid-item {
    width: 49%;
  }
}

@media (max-width: 600px) {
  .linking-grid-item {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .linking-grid-item {
    margin-bottom: 20px;
  }
}
/* LINKING GRID END */

/* MODAL START */
.modal-wrapper {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  padding: 16px;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.modal-wrapper.open {
  display: flex;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(6, 10, 19, 0.72);
  opacity: 0.5;
  width: 100%;
  height: 100%;
}

.modal {
  position: relative;
}

.modal .modal__close-button {
  cursor: pointer;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 30px;
  right: 20px;
}

@media (max-width: 480px) {
  .modal .modal__close-button {
    top: 12px;
    right: 8px;
  }
}
/* MODAL END */

/* MODAL ALTERNATIVE CASINOS START */
.alternative-casinos {
  max-width: 860px;
  width: 100%;
  border-radius: 10px;
  background: var(--color-tertiary);
  padding: 24px 20px;
}

.alternative-casinos__title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 24px auto;
}

.alternative-casinos-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
}

.alternative-casinos-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
}

.alternative-casinos-item__logo {
  display: block;
  width: 100%;
  height: 204px;
  margin-bottom: 8px;
}

.alternative-casinos-item__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.alternative-casinos-item__header {
  width: 100%;
}

.altertnative-casinos__name-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.alternative-casinos-item__name {
  font-size: 20px;
  line-height: 170%;
  color: #fff;
  text-decoration: none;
  margin-bottom: 4px;
}

.alternative-casinos-item__rating {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #a9adb9;
  margin-bottom: 8px;
}

.alternative-casinos-item__stars {
  margin-right: 12px;
}

.alternative-casinos-item__stars img {
  width: 20px;
  height: 20px;
  margin-bottom: 0;
}

.alternative-casinos-item__rating span {
  font-size: 18px;
  font-weight: 700;
}

.alternative-casinos-item__bonuses {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.alternative-casinos-item__bonuses-text {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #a9adb9;
}

.alternative-casinos-item__bonuses-text img {
  width: 24px;
  margin-bottom: 0;
  margin-right: 8px;
}

.alternative-casinos-item__bonus {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
}

.alternative-casinos-item__bonus span {
  font-size: 32px;
  line-height: 170%;
  padding: 0 5px;
}

.altertnative-casinos__name-wrapper .alternative-casinos-item__link-wrapper {
  display: none;
}

.alternative-casinos-item__link-wrapper {
  width: 100%;
  padding: 18px 16px;
}

.alternative-casinos-item__link {
  justify-content: center;
  width: 100%;
  font-size: 14px;
  width: 100%;
  display: flex;
  justify-content: center;
  background: var(--color-secondary);
  font-weight: 700;
  color: #ffffff;
  border-radius: 10px;
  padding: 12px 0;
}

@media (max-width: 900px) {
  .alternative-casinos-item__bonus span {
    font-size: 24px;
  }

  .alternative-casinos-item__link-wrapper {
    display: none;
  }

  .altertnative-casinos__name-wrapper .alternative-casinos-item__link-wrapper {
    display: block;
  }
}

@media (max-width: 768px) {
  .alternative-casinos__title {
    width: 95%;
    text-align: left;
    margin: 0 0 24px 0;
  }

  .alternative-casinos-list {
    display: block;
  }

  .alternative-casinos-item {
    width: 100%;
    margin-bottom: 12px;
  }

  .alternative-casinos-item__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
  }

  .alternative-casinos-item__logo {
    width: 40%;
    height: 180px;
    margin-bottom: 0;
  }

  .altertnative-casinos__name-wrapper {
    width: 60%;
    padding: 12px 12px 0 12px;
  }

  .alternative-casinos-item__link-wrapper {
    margin-top: 40px;
    padding: 0;
  }

  .alternative-casinos-item__bonus span {
    font-size: 32px;
  }

  @media (max-width: 480px) {
    .alternative-casinos {
      padding: 12px;
    }

    .alternative-casinos__title {
      font-size: 14px;
      margin-bottom: 16px;
    }

    .alternative-casinos-item__logo {
      height: 120px;
    }

    .altertnative-casinos__name-wrapper {
      padding: 8px 8px 0 8px;
    }

    .alternative-casinos-item__name {
      font-size: 14px;
      margin-bottom: 0;
    }

    .alternative-casinos-item__rating span {
      font-size: 16px;
    }

    .alternative-casinos-item__link-wrapper {
      margin-top: 0;
    }

    .alternative-casinos-item__link {
      height: 36px;
    }

    .alternative-casinos-item__bonuses {
      height: 94px;
      padding: 0;
    }

    .alternative-casinos-item__bonus {
      font-size: 16px;
    }

    .alternative-casinos-item__bonuses-text {
      font-size: 12px;
    }

    .alternative-casinos-item__bonus span {
      font-size: 24px;
    }
  }

  @media (max-width: 375px) {
    .alternative-casinos-item__logo {
      height: 100px;
    }
  }
}
/* MODAL ALTERNATIVE CASINOS END */

/* HIDE SUBTITLE START */
.hide-subtitle-wrapper {
  position: relative;
}

.hide-subtitle {
  max-height: 80px;
  overflow: hidden;
  background: linear-gradient(180deg, #272727 47.04%, rgba(39, 39, 39, 0.27) 78.57%, rgba(39, 39, 39, 0) 100.5%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hide-subtitle-wrapper.open .hide-subtitle {
  background: transparent;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  max-height: none;
  overflow: visible;
}

.hide-subtitle-wrapper.open .hide-subtitle-btn.open {
  display: none;
}

.hide-subtitle-btn-wrapper {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

.hide-subtitle-btn {
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-image: url(../images/arrow_down_black.svg);
  background-repeat: no-repeat;
  background-position: 50% 55%;
  background-color: rgba(19, 43, 70, 0.32);
  border: 1px solid rgba(19, 43, 70, 0.17);
}

@media (max-width: 480px) {
  .hide-subtitle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
/* HIDE SUBTITLE END */

/* GAME REVIEW START */
.header-game-review {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

.header-game-card {
  position: relative;
  background-image: url(../images/game-reviews-bg.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-color: var(--color-tertiary);
  backdrop-filter: blur(2px);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 65%;
  border-radius: 10px;
  height: 540px;
}

.header-game-links {
  max-width: 500px;
  display: flex;
  justify-content: space-between;
  border-radius: 8px;
  background: rgba(115, 115, 124, 0.04);
  padding: 16px;
  box-shadow: -2.85333px 2.85333px 2.85333px 0px rgba(255, 255, 255, 0.28) inset, 1px -1px 2.85333px 0px rgba(200, 200, 208, 0.28) inset;
  backdrop-filter: blur(19.687999725341797px);
}

.header-game-card a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  height: 60px;
}

.header-game-links__first-link {
  background: var(--color-secondary);
  color: #fff;
  border-radius: 10px;
  width: 250px;
}

.header-game-links__second-link {
  width: 100%;
  background: var(--color-primary);
  border-radius: 10px;
  margin-top: 12px;
  color: #132b46;
}

.header-game-links__text {
  width: 100%;
  font-size: 12px;
  text-align: center;
  color: #a9adb9;
  margin-top: 5px;
}

.header-game-links__text_mobile {
  display: none;
}

.header-game-links__logo-wrapper {
  margin-right: 12px;
}

.header-game-links__logo {
  width: 200px;
  height: 109px;
  border-radius: 10px;
  margin-bottom: 0;
}

.header-game-card .game-rating {
  position: absolute;
  top: 12px;
  right: 12px;
}

.game-rating {
  display: flex;
}

.game-rating__item {
  display: flex;
  align-items: center;
  background: #f1f2f4;
  border-radius: 8px;
  padding: 8px 16px;
}

.game-rating__item:not(:last-of-type) {
  margin-right: 12px;
}

.game-rating__item svg {
  margin-right: 4px;
}

.header-game-info {
  width: 33%;
  background: #132b46;
  border-radius: 10px;
  padding: 2px;
  color: #fff;
}

.header-game-info__logo-wrapper {
  border-radius: 10px;
  padding: 22px;
  background: #f1f2f4;
  box-shadow: 2px 4px 16px 0px rgba(19, 43, 70, 0.12);
  backdrop-filter: blur(8px);
  margin-bottom: 12px;
}

.header-game-info__logo {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 0;
}

.header-game-info__rows {
  padding: 0 25px;
}

.header-game-info__row {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 12px 0;
}

.header-game-info__row:not(:last-of-type) {
  border-bottom: 1px solid #2e435a;
}

.header-game-info__row::before {
  content: "";
  position: relative;
  top: 5px;
  margin-right: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}

.header-game-info__property {
  width: 50%;
}

.header-game-info__value {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  width: 49%;
}

.header-game-info__value span {
  display: flex;
  color: var(--color-secondary);
  font-weight: 700;
}

@media (min-width: 1200px) {
  .header-content-game-review-wrapper {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
  }
}

@media (max-width: 1200px) {
  .header-game-card {
    width: 59%;
  }

  .header-game-info {
    width: 39%;
  }
}

@media (max-width: 900px) {
  .header-game-review {
    flex-wrap: wrap;
  }

  .header-game-card,
  .header-game-info {
    width: 100%;
  }

  .header-content-game-review {
    max-height: none;
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .header-game-review {
    margin-top: 20px;
  }

  .header-game-links {
    flex-direction: column;
    padding: 36px;
  }

  .header-game-links__logo-wrapper {
    width: 100%;
    margin-right: 0;
    margin-bottom: 12px;
  }

  .header-game-links__logo {
    width: 100%;
  }

  .header-game-links__text {
    display: none;
  }

  .header-game-info {
    font-size: 16px;
  }

  .header-game-card a {
    width: 100%;
    font-size: 16px;
    height: 45px;
  }

  .header-game-card {
    height: auto;
    padding: 84px 24px 24px;
    margin-bottom: 20px;
  }

  .header-game-card .game-rating {
    top: 24px;
    right: 24px;
  }

  .header-game-links__text_mobile {
    display: block;
    font-size: 14px;
    margin-top: 12px;
  }

  .game-rating__item {
    font-size: 14px;
    padding: 8px 14px;
  }

  .header-game-info__logo-wrapper {
    padding: 12px;
  }

  .header-game-info__rows {
    padding: 0 12px;
  }
}
/* GAME REVIEW END */

/* PROMOCODE START */
.promocode-wrapper {
  position: relative;
  width: 100%;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.promocode-icon {
  background-color: var(--color-primary);
  background-image: url(../images/promocode_icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 100%;
  border-radius: 8px 0px 0px 8px;
  border: 1px solid var(--color-primary);
}

.promocode {
  position: relative;
  cursor: pointer;
  flex: 1;
  display: flex;
  align-content: center;
  justify-content: center;
  height: 100%;
  border-radius: 0 8px 8px 0;
  border: 1px solid #e1e3eb;
  background: #ebecf2;
  padding: 4px 8px;
}

.promocode__text-wrapper {
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #b0b3c4;
}

.promocode__text {
  color: #b0b3c4;
  text-transform: uppercase;
  margin-right: 6px;
}

.promocode:hover .promocode__text {
  color: #272727;
}

.promocode-tooltip__icon {
  width: 16px;
  height: 16px;
  background: url(../images/promocode_tooltip_icon.svg);
}

.promocode:hover .promocode-tooltip__icon {
  background: url(../images/promocode_tooltip_hover_icon.svg);
}

.promocode-tooltip__content {
  position: absolute;
  right: -1px;
  bottom: 20px;
  padding-bottom: 20px;
  z-index: 1;
}

.promocode-tooltip__inner {
  display: none;
  width: 370px;
  border-radius: 10px;
  border: 1px solid #ebedef;
  background: #f6f7f8;
  box-shadow: 2px 4px 12px 0px rgba(23, 55, 116, 0.04);
  padding: 12px 16px;
  line-height: 160%;
}

.promocode:hover .promocode-tooltip__inner {
  display: block;
}

@media (max-width: 480px) {
  .promocode-tooltip__inner {
    width: 100%;
  }
}
/* PROMOCODE END */

/* BONUSES GRID START */
.bonuses-grid-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.bonuses-grid-item {
  display: flex;
  align-items: center;
  border-radius: 10px;
  border: 1px solid rgba(19, 43, 70, 0.05);
  background: linear-gradient(0deg, rgba(19, 43, 70, 0.04) 0%, rgba(19, 43, 70, 0.04) 100%), #fff;
  box-shadow: 2px 4px 23px 0px rgba(23, 55, 116, 0.08);
  padding: 12px 16px;
}

.bonuses-grid-item__icon {
  width: auto;
  margin-right: 16px;
  margin-bottom: 0;
}

.bonuses-grid-item__bonus {
  flex: 1;
  font-family: Archivo;
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
}

@media (max-width: 768px) {
  .bonuses-grid-list {
    grid-template-columns: 100%;
  }
}

@media (max-width: 480px) {
  .bonuses-grid-list {
    gap: 8px;
  }

  .bonuses-grid-item {
    padding: 8px 12px;
  }

  .bonuses-grid-item__icon {
    margin-right: 12px;
  }

  .bonuses-grid-item__bonus {
    font-size: 16px;
  }
}
/* BONUSES GRID END */

.best-bonuses__wrap {
  background: #ffffff;
  padding: 14px 19px;
  border: 1px solid var(--color-gray);
  box-shadow: 2px 4px 23px rgba(23, 55, 116, 0.08);
  border-radius: 12px;
  margin-bottom: 30px;
}
.best-bonuses__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}
.best-bonuses__line {
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 10px;
  padding: 7px 12px;
  background: linear-gradient(0deg, rgba(19, 43, 70, 0.04), rgba(19, 43, 70, 0.04));
  border: 1px solid #132B460D;
  box-shadow: 2px 4px 23px 0 #17377414;
}
.best-bonuses__line:not(:last-child) {
  margin-bottom: 12px;
}
.best-bonuses__bonus {
  margin-right: 16px;
  display: flex;
  flex-grow: 1;
  background-color: transparent;
}
.best-bonuses__bonus-button {
  border-radius: 8px;
  padding: 5px 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 170%;
  color: #28CE8A;
  background: #DDF7EC;
  border: 1px solid #28CE8A14;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.best-bonuses__bonus-button::before {
  content: '';
  width: 24px;
  height: 24px;
  margin-right: 5px;
  object-fit: cover;
  background-image: url(../images/bonus_icon-chips.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.best-bonuses__bonus-text {
  font-weight: 700;
  font-size: 20px;
  line-height: 170%;
  color: #171e34;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: left;
  flex-grow: 1;
}
.best-bonuses__promocode.promocode {
  width: auto;
  min-height: 44px;
  margin: 0 16px 0 0;
}
.best-bonuses__line .promocode-wrapper {
  width: auto;
  height: 46px;
  margin-bottom: 0;
  margin-right: 16px;
}
.best-bonuses__line .promocode__text-wrapper {
  border-bottom: none;
}
.best-bonuses__line .promocode__text {
  margin-right: 16px;
  border-bottom: 1px dashed #b0b3c4;
  padding: 2px 0;
}
.best-bonuses__line .promocode {
  padding: 10px 6px 10px 20px;
}
.best-bonuses__button {
  background: var(--color-secondary);
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  padding: 12px 12px;
  border-radius: 10px;
  width: 175px;
}

.casino-review-tabs {
  width: 100%;
}
.casino-review-tabs__list {
  display: flex;
  padding: 0 16px;
  gap: 0 10px;
}
.casino-review-tabs__link {
  font-weight: 700;
  font-size: 14px;
  line-height: 170%;
  color: #a9adb9;
  text-decoration: none;
  padding: 8px 40px;
}
.casino-review-tabs__link.casino-review-tabs__link_active {
  color: #fff;
  background: var(--color-secondary);
  border-radius: 8px 8px 0 0;
  cursor: default;
}
.casino-review-tabs__area {
  position: relative;
  padding: 14px;
  border: 2px solid #ffffff;
  border-radius: 10px;
  background: transparent;
  box-shadow: 2px 4px 23px 0 #17377414;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.casino-review-tabs__area::before {
  content: '';
  border-top: 2px solid var(--color-secondary);
  border-radius: 10px;
  height: 65px;
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
}
.casino-review-tabs_single .casino-review-tabs__area {
  box-shadow: none;
  padding: 0;
  border: none;
  border-radius: initial;
}
.casino-review-tabs_single .casino-review-tabs__area::before {
  content: none;
  border: none;
  height: 0;
}
.casino-review-tabs__area .widget {
  width: 100%;
}
.casino-review-tabs_mult .widget-casino-info .content-container_border {
  border: none;
  box-shadow: none;
  border-radius: initial;
  padding: 5px;
}
.casino-review-tabs_mult .widget-casino-info .casino-details__list {
  border: 1px solid var(--color-gray);
  box-shadow: 2px 4px 23px rgba(23, 55, 116, 0.08);
  border-radius: 12px;
  overflow: hidden;
}
.casino-review-tabs_mult .widget-casino-info .casino-details__item {
  margin: 0 18px;
}
.casino-review-tabs__area > .content-container {
  max-width: 98%;
}
@media (max-width: 1024px) {
  .casino-review-tabs__area {
    margin-bottom: 20px;
  }
  .casino-review-tabs {
    margin: 0 -15px;
    width: calc(100% + 30px);
    overflow: hidden;
  }
  .casino-review-tabs__list {
    margin: 0 15px;
  }
}
@media (max-width: 900px) {
}

@media (max-width: 768px) {
  .casino-review-tabs_single .casino-review-tabs__area {
    padding: 10px;
    display: block;
  }
  .best-bonuses__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
    margin-bottom: 10px;
  }
  .best-bonuses__line {
    flex-wrap: wrap;
  }
  .best-bonuses__bonus {
    width: 100%;
    margin-right: 0;
    margin-bottom: 12px;
  }
  .best-bonuses__bonus-button {
    font-size: 14px;
  }
  .best-bonuses__bonus-text {
    font-size: 16px;
  }
  .best-bonuses__line .promocode-wrapper {
    width: calc(50% - 4px);
    height: 40px;
    margin-right: 8px;
  }
  .best-bonuses__button {
    width: calc(50% - 4px);
    padding: 9px 5px;
  }
  .best-bonuses__button.best-bonuses__button_wide {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .casino-review-tabs__list {
    padding: 0;
  }

  .casino-review-tabs__area {
  }

  .casino-review-tabs__link {
    line-height: 140%;
    border-radius: 8px;
    padding: 6px 16px;
  }
  .best-bonuses__line .promocode__text {
    font-size: 14px;
  }
  .best-bonuses__line .promocode {
    padding: 10px 6px 10px 6px;
  }
  .best-bonuses__line .promocode-icon {
    background-size: 16px 16px;
  }
}

.all-bonuses__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

.all-bonuses__area {
  border-radius: 10px;
  padding: 6px;
  background: #DDF7EC;
  border: 1px solid #28CE8A14;
  box-shadow: 2px 4px 23px 0 #17377414;
  display: flex;
  align-items: center;
  width: 100%;
  color: #272727;
}

.all-bonuses__wrap {
  width: 100%;
  margin-bottom: 20px;
}
.all-bonuses__area:not(:last-child) {
  margin-bottom: 28px;
}

.all-bonuses__box {
  flex-grow: 1;
  margin-right: 16px;
  border: 1px solid #28CE8A;
  border-radius: 8px;
  display: flex;
  align-items: center;
  background: #ffffff;
}

.all-bonuses__image {
  border-radius: 8px;
  width: 54%;
  max-width: 286px;
  height: 168px;
  margin: 0;
  object-fit: cover;
}

.all-bonuses__inner {
  padding: 0 15px;
  flex-grow: 1;
}

.all-bonuses__deposit {
  position: relative;
  display: flex;
  font-size: 16px;
  line-height: 170%;
  padding-left: 42px;
  margin-bottom: 10px;
}

.all-bonuses__deposit::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  width: 32px;
  height: 32px;
  background-image: url("../images/icon-best-bonuses.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  object-fit: cover;
}

.all-bonuses__text {
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 20px;
  line-height: 170%;
  color: #272727;
}

.all-bonuses__link.button-link {
  display: block;
  width: 100%;
  margin: 0 auto;
  background: var(--color-secondary);
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  padding: 13px 12px;
  border-radius: 10px;
}

.all-bonuses__info {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
  max-width: 270px;
  width: 100%;
  padding-right: 9px;
}

.all-bonuses__info-item {
  display: flex;
}

.all-bonuses__info-icon {
  margin-right: 8px;
  width: 28px;
  height: 28px;
  margin-bottom: 0;
}

.all-bonuses__info-name {
  font-weight: 700;
  font-size: 16px;
  line-height: 170%;
}

.all-bonuses__info-value {
  margin-left: auto;
  font-size: 16px;
  line-height: 170%;
}
@media (max-width: 1200px) {
  .all-bonuses__area {
    position: relative;
    flex-direction: column;
    padding: 0 0 80px;
  }

  .all-bonuses__area:not(:last-child) {
    margin-bottom: 12px;
  }

  .all-bonuses__image {
    height: 184px;
    margin-bottom: 12px;
    width: 100%;
    max-width: none;
  }

  .all-bonuses__inner {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .all-bonuses__deposit {
    margin-bottom: 4px;
    font-size: 16px;
  }

  .all-bonuses__box {
    margin-bottom: 16px;
    width: 94%;
    padding: 0 0 8px 0;
    flex-direction: column;
    margin-top: 7px;
    margin-left: auto;
    margin-right: auto;
  }
  .all-bonuses__info {
    padding-right: 0;
    max-width: none;
    width: 92%;
    margin: 0 auto;
  }

  .all-bonuses__link.button-link {
    position: absolute;
    bottom: 16px;
    left: 12px;
    right: 12px;
    width: auto;
  }

  .all-bonuses__text {
    margin-bottom: 0;
    font-size: 16px;
  }

  .all-bonuses__info-name, .all-bonuses__info-value {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .all-bonuses__title {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 140%;
  }
}