/* COLORS START */
.primary-text-color {
  color: var(--color-primary) !important;
}

.primary-border-color {
  border-color: var(--color-primary) !important;
}

.primary-bg-color {
  background-color: var(--color-primary) !important;
}

.color-white {
  color: #fff !important;
}
/* COLORS END */

/* FONTS START */
/*@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  src: local("Noto Sans"), url("../fonts/NotoSans-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 700;
  src: local("Noto Sans"), url("../fonts/NotoSans-Bold.woff2")  format("woff2");
}*/
/* FONTS END */

body {
  box-sizing: border-box;
  color: var(--color-text-main);
  background: #e1e3e7;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  width: 100%;
}

body * {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

button,
input {
  outline: none;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--color-text-dark);
}

.good-rating {
  color: #5b8f35;
}

.bad-rating {
  color: #eb8348;
}

.star-full,
.star-empty {
  width: 14px;
  height: 14px;
}

.star-full path {
  fill: var(--color-primary);
}

.star-empty path {
  fill: none;
  stroke: var(--color-primary);
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.align-start {
  align-items: flex-start !important;
}

.casino-flag {
  display: block;
  width: 24px;
  height: 22px;
  border-radius: 50px;
  object-fit: cover;
  margin-right: 8px;
}

.button-link {
  cursor: pointer;
  display: flex;
  align-items: center;
  background: var(--color-primary);
  border-radius: 10px;
  padding: 13px 15px;
  font-weight: 700;
  text-align: center;
  color: var(--color-text-dark) !important;
  text-decoration: none;
}

.button-link:hover {
  box-shadow: 0px 61px 24px rgba(65, 77, 98, 0.01), 0px 34px 20px rgba(65, 77, 98, 0.05), 0px 15px 15px rgba(65, 77, 98, 0.09),
    0px 4px 8px rgba(65, 77, 98, 0.1), 0px 0px 0px rgba(65, 77, 98, 0.1);
}

.button-link img {
  max-width: 100px;
  max-height: 53px;
  margin-left: 5px;
}

.lang-selector {
  display: flex;
}

.lang-selector .lang-selector-visible {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.lang-selector .lang-selector__word {
  color: #fff;
  padding-right: 10px;
  border-right: 1px solid #f2f2f2;
  font-size: 14px;
}

.lang-selector .lang-selector__img {
  margin-left: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.lang-selector .lang-selector-visible .lang-selector__img {
  margin-left: 0;
}

.content-background {
  position: absolute;
  width: 100%;
  height: 550px;
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.content-background-over {
  position: absolute;
  width: 100%;
  top: 50px;
  height: 500px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(248, 248, 249, 0.16) 16.67%,
    rgba(237, 238, 241, 0.46) 40.63%,
    rgba(236, 237, 240, 0.85) 74.48%,
    rgba(236, 237, 240, 0.94) 86.46%,
    #e1e3e7 100%
  );
  z-index: -1;
}

.content-section-wrapper {
  width: 100%;
  position: relative;
}

.two-column-content {
  display: flex;
  justify-content: space-between;
}

.two-column-content .left-column {
  width: 29%;
}

.two-column-content .right-column {
  width: 69%;
}

.casino-review-tabs {

}

.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: #203b6b;
  border-radius: 8px 8px 0 0;
  cursor: default;
}

.casino-review-tabs__area {
  position: relative;
  padding: 14px;
  border: 2px solid #ffffff;
  border-radius: 10px;
  background: #f4f4f6;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.casino-review-tabs__area::before {
  content: '';
  border-top: 2px solid #203b6b;
  border-radius: 10px;
  height: 65px;
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
}
.casino-review-tabs {
  width: 100%;
}
.casino-review-tabs_single .casino-review-tabs__area::before {
  content: none;
  border: none;
  height: 0;
}

.casino-review-tabs__area .casino-review-block_blue {
  background-color: #ffffff;
}
@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;
  }
}

.content-container {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  border-radius: 10px;
  padding: 20px 32px;
  margin: 64px 0;
}

.content-container.opacity {
  background: rgba(255, 255, 255, 0.4);
}

.content-sidebar-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

.content-sidebar-wrapper .content-container {
  width: 69%;
  margin-top: 0;
}
.content-sidebar-wrapper .content-container-inner {
  width: 69%;
  margin-top: 0;
}
.content-sidebar-wrapper .content-container-inner .content-container {
  width: 100%;
}

.content-sidebar {
  width: 29%;
}

.content-section {
  max-width: 1320px;
  margin: 0 auto;
}

.content-section img {
  max-width: 100%;
}

.content-section .table-wrapper {
  width: 100%;
  overflow-x: auto;
  border: 8px solid #203b6b;
  border-radius: 15px;
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  .content-section .table-wrapper {
    border-width: 6px;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #f7f8fb;
  color: var(--color-text-dark);
  max-width: 100%;
}

.table-wrapper table {
  max-width: none;
}

thead tr {
  border-bottom: 1px solid #dcdfe4;
}

tbody tr:not(:last-of-type) {
  border-bottom: 1px solid #dcdfe4;
}

th {
  background: #e7eaee;
  text-align: left;
  padding: 12px 20px;
}

th:first-of-type {
  border-top-left-radius: 10px;
}

th:last-of-type {
  border-top-right-radius: 10px;
}

th:not(:last-of-type),
td:not(:last-of-type) {
  border-right: 1px solid #dcdfe4;
}

td {
  padding: 12px 20px;
}

.horizontal-table th {
  padding: 20px 32px;
  border-radius: 0;
}

.horizontal-table td {
  padding: 20px 28px;
}

.horizontal-table td:first-child {
  font-weight: 700;
  background: #e7eaee;
  text-align: left;
  padding: 20px 32px;
}

.disclaimer-wrapper {
  margin-bottom: 40px;
}

.disclaimer {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text-dark);
  margin-bottom: 40px;
}

.disclaimer .disclaimer__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 44px;
}

.disclaimer .disclaimer-content {
  display: flex;
  align-items: center;
}

.disclaimer .disclaimer-person {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 19px;
}

.disclaimer .disclaimer-person span {
  font-size: 14px;
  font-weight: 700;
}

.disclaimer .disclaimer-person:after {
  content: "";
  position: absolute;
  right: -10px;
  width: 1px;
  background: var(--color-secondary);
  height: 22px;
}

.disclaimer .disclaimer-person__img {
  width: 61px;
  height: 61px;
  border-radius: 50px;
}

.disclaimer .disclaimer-person-info {
  margin-left: 10px;
}

.disclaimer .disclaimer-block__img {
  width: 115px;
  margin-left: 20px;
}

.disclaimer .disclaimer-block__img img {
  width: 100%;
}

.disclaimer-text {
  padding: 0 15px;
}

.search-form {
  display: flex;
  margin-bottom: 30px;
  justify-content: center;
}

.search-form__input {
  position: relative;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  width: 400px;
  padding: 10px;
  margin-right: 10px;
}

.search-form__submit {
  position: relative;
  justify-content: center;
  min-width: 130px;
  font-weight: 700;
}

.search-form__icon {
  position: relative;
  right: 40px;
  bottom: 1px;
}

.pros-cons-wrapper {
  display: flex;
  justify-content: space-between;
}

.pros-cons-block {
  width: 49%;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  padding: 15px;
}

.pros-cons-block .pros-cons-title {
  text-align: center;
  font-weight: 700;
  font-size: 18px;
}

.pros-block .pros-cons-title,
.pros-block li::marker {
  color: #5b8f35;
}

.cons-block .pros-cons-title,
.cons-block li::marker {
  color: #eb8348;
}

.pros-cons-list {
  margin: 20px 0 0 0;
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  font-size: 14px;
}

.pros-cons-list li:last-of-type {
  margin-bottom: 0;
}

.pros-cons-mobile {
  width: 100%;
  display: none;
  background: #ffffff;
  border-radius: 10px;
  padding: 15px;
}

.pros-cons-mobile .pros-cons-tabs {
  display: flex;
  justify-content: space-between;
}

.pros-cons-mobile .pros-cons-tabs__item {
  cursor: pointer;
  width: 49%;
  background: #ffffff;
  border: 1px solid #f1f1f1;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 0;
  text-align: center;
}

.pros-cons-mobile .pros-cons-tabs__item.active {
  background: #f1f1f1;
  border: 1px solid #f1f1f1;
}

.pros-cons-mobile .pros-tabs__item {
  color: #5b8f35;
}

.pros-cons-mobile .cons-tabs__item {
  color: #eb8348;
}

.pros-cons-mobile .pros-cons-list {
  margin: 0;
  padding: 15px 0 0 0;
}

.pros-cons-mobile .pros-cons-tabs-content {
  display: none;
}

.pros-cons-mobile .pros-cons-tabs-content.active {
  display: block;
}

.marquee-wrapper {
  margin-left: 5px;
}

.marquee-wrapper .marquee {
  font-weight: 700;
  color: var(--color-primary);
}

.marquee-wrapper .marquee-cursor {
  color: #fff;
  margin-left: -4px;
  font-weight: 700;
}

@media (max-width: 1350px) {
  .content-section {
    padding: 15px;
  }

  .button-link img {
    max-width: 65px;
  }
}

@media (max-width: 1100px) {
  .content-sidebar-wrapper .content-container {
    width: 100%;
  }
  .content-sidebar-wrapper .content-container-inner {
    width: 100%;
  }

  .content-sidebar {
    display: none;
  }
}

@media (max-width: 1024px) {
  .two-column-content {
    flex-wrap: wrap;
    justify-content: center;
  }

  .two-column-content .left-column,
  .two-column-content .right-column {
    width: 100%;
  }

  .two-column-content .left-column {
    width: 60%;
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .two-column-content .left-column {
    width: 100%;
  }

  .disclaimer {
    background: transparent;
    flex-direction: column;
    padding: 0;
  }

  .disclaimer .disclaimer-content {
    width: 100%;
    background: #fff;
    padding: 3px 6px;
    border-radius: 7px;
    margin-top: 15px;
    justify-content: center;
  }

  .disclaimer .disclaimer__title {
    text-align: center;
  }

  .pros-cons-mobile {
    display: block;
  }

  .pros-cons-block {
    display: none;
  }
}

@media (max-width: 480px) {
  .content-container {
    padding: 16px 12px;
    margin: 36px 0;
  }

  .content-section .table-wrapper {
    margin-bottom: 15px;
  }

  .content-background {
    top: -5px;
  }

  .lang-selector .lang-selector-visible {
    font-size: 12px;
  }

  .lang-selector .lang-selector__img {
    width: 18px;
    height: 18px;
  }

  .disclaimer .disclaimer__title {
    font-size: 12px;
  }

  .disclaimer-wrapper {
    margin-bottom: 15px;
  }

  .disclaimer {
    margin-bottom: 15px;
  }

  .disclaimer .disclaimer-content {
    margin-top: 0;
    justify-content: space-between;
  }

  .disclaimer .disclaimer-person__img {
    width: 40px;
    height: 40px;
  }

  .disclaimer .disclaimer-block__img {
    width: 72px;
  }

  .disclaimer .disclaimer-person-info {
    display: flex;
    align-items: center;
    font-size: 10px;
  }

  .disclaimer .disclaimer-person-name {
    position: relative;
    padding-right: 10px;
    margin-right: 10px;
  }

  .disclaimer .disclaimer-person:after {
    height: 14px;
    top: 11px;
  }

  .disclaimer .disclaimer-person-name:after {
    content: "";
    position: absolute;
    right: 0;
    top: 3px;
    width: 1px;
    background: var(--color-secondary);
    height: 14px;
  }
}

/* QUOTE START */
.quote-wrapper {
  background: #f7f8fb;
  border-radius: 20px;
  padding: 30px;
  margin: 30px 20px;
}

.quote .quote__title {
  font-size: 34px;
  font-weight: 900;
  line-height: 45px;
  color: var(--color-text-dark);
  border-left: 5px solid var(--color-primary);
  padding-left: 20px;
}

.quote .quote__text {
  font-size: 14px;
  line-height: 24px;
  padding: 20px 25px 0 25px;
}

@media (max-width: 480px) {
  .quote-wrapper {
    margin: 15px 0;
    padding: 15px;
  }

  .quote .quote__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 25px;
    padding-left: 15px;
  }

  .quote .quote__text {
    padding: 20px 0 0 0;
    font-size: 10px;
    line-height: 17px;
  }
}
/* QUOTE END */

/* HEADER CONTENT START */
.header-content-wrapper {
  background-size: cover;
}

.header-content-wrapper .rank-math-breadcrumb {
  max-width: 1320px;
  margin: 0 auto;
}

.header-content {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  padding: 30px 0;
  margin-bottom: 40px;
}

.header-content .header-content-left {
  position: relative;
  width: 65%;
}

.header-content .header-content-right {
  position: relative;
  width: 35%;
}

.header-content .header-center {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.header-content .header-title {
  text-align: left;
}

.header-content .header-center .header-title {
  max-width: 1128px;
  text-align: center;
}

.header-content .header-subtitle {
  color: var(--color-text-add);
  line-height: 25px;
}

.header-content .header-subtitle a {
  color: var(--color-primary);
}

.header-content .header-center .header-subtitle {
  max-width: 870px;
  text-align: center;
}

.header-content .header-brands {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  flex-wrap: wrap;
}

.header-content .header-brands-item {
  max-width: 24%;
  object-fit: contain;
  margin-right: 10px;
  margin-bottom: 10px;
}

.header-content .header-text {
  margin-top: 30px;
  font-size: 12px;
}

.header-content .header-content-right {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.header-content .header-link {
  justify-content: center;
  padding: 10px;
}

.header-content .header-link-text {
  margin-top: 10px;
  color: #fff;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  padding: 5px 10px;
}

.header-content .header-meta {
  margin-top: 36px;
}

.header-meta {
  display: flex;
  align-items: center;
  color: #7e8394;
  font-size: 14px;
}

.header-meta .header-meta-person {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 20px;
  margin-right: 20px;
}

.header-meta .header-meta-person::after {
  content: "";
  position: absolute;
  right: 0;
  width: 1px;
  height: 22px;
  background: #7e8394;
}

.header-meta .header-meta-person__img {
  width: 48px;
  height: 48px;
  border-radius: 50px;
  margin-right: 12px;
}

.header-meta .header-meta-person__info {
  margin-right: 16px;
}

.header-meta .header-meta-person__pos {
  font-size: 12px;
  line-height: 19px;
}

.header-meta .header-meta-person__name {
  font-weight: 700;
}
.header-meta .header-meta-person__name a {
  font-weight: 700;
  color: #7e8394;
  font-size: 14px;
  line-height: 1.2em;
  text-decoration: none;
}

.header-meta .header-meta-update {
  margin-right: 32px;
}

.header-meta .header-meta-update__text {
  font-size: 12px;
  line-height: 19px;
}

.header-meta .header-meta-update__date {
  font-weight: 700;
}

.header-meta .header-meta-socials__mobile {
  display: none;
}

.header-meta .header-meta-socials__list {
  display: flex;
  align-items: center;
}

.header-meta .header-meta-socials__item {
  display: flex;
  align-items: center;
  position: relative;
}

.header-meta .header-meta-socials__item:not(:last-of-type) {
  padding-right: 12px;
  margin-right: 12px;
}

.header-meta .header-meta-socials__item:not(:last-of-type)::after {
  content: "";
  position: absolute;
  right: 0;
  width: 1px;
  height: 22px;
  background: #7e8394;
}

.header-author-tooltip {
  display: none;
  position: absolute;
  bottom: 12px;
  left: 0;
  padding: 0 0 40px 0;
  width: 400px;
  background: transparent;
  z-index: 4;
}
.casino-review-author__name .header-author-tooltip {
  top: 20px;
  bottom: auto;
  padding: 20px 0 0 0;
}
.header-meta-person__name:hover .header-author-tooltip {
  display: block;
}
.casino-review-author__name:hover .header-author-tooltip {
  display: block;
}
.header-author-tooltip .author {
  border: 2px solid #ffffff;
  border-radius: 10px;
  background: #f8f8f8;
  padding: 10px;
}
.header-author-tooltip .author__header {
  margin-bottom: 4px;
}
.header-author-tooltip .author__text {
  line-height: 1.3em;
  font-weight: normal;
  color: #171e34;
}
@media (max-width: 600px) {
  .header-meta .header-meta-person {
    position: static;
  }
  .header-meta {
    position: relative;
  }
  .header-author-tooltip {
    width: 90%;
    bottom: 100px;
    padding: 0 0 20px 0;
  }
}

.header-casino__img {
  position: absolute;
  top: -170px;
  z-index: 0;
}

.header-casino-info {
  position: relative;
}

.header-review-content .header-content-right_review {
  align-items: center;
  flex-direction: column;
  margin-top: 10px;
}

.header-casino-info .header-casino-info-content {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  z-index: 1;
  width: 345px;
  margin-bottom: 4px;
}

.header-casino-info .header-casino-review-link {
  max-width: 263px;
  width: 100%;
  height: 70px;
  font-size: 20px;
  text-transform: uppercase;
  margin-right: 12px;
}

.header-casino-info .header-casino-info__logo {
  width: 70px;
  height: 70px;
  border-radius: 10px;
}

.header-casino-bonuses {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 70px;
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-top: 12px;
  border: 1px solid;
}

.header-casino-bonus {
  flex-grow: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header-casino-bonus:nth-of-type(2) {
  margin-left: 10px;
  padding-left: 10px;
}

.header-casino-bonus:nth-of-type(2)::before {
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
  height: 38px;
  background: #b0b4bf;
}

.header-casino-bonus__number {
  display: flex;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.header-casino-bonus__number .has-border {
  margin-right: 8px;
  padding-right: 8px;
  border-right: 1px solid #7e8394;
}

.header-casino-bonus__number span {
  font-size: 20px;
}

.header-casino-bonus__number small {
  font-size: 16px;
  margin: 0 4px;
}

.header-casino-bonus__text {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.header-link-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-link-wrapper .casino-link-text {
  font-size: 14px;
  font-weight: 700;
  color: #7e8394;
}

.header-features-grid {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
}

.header-features-grid .header-features-grid-item {
  position: relative;
  width: 240px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 10px;
  border: 1px solid;
}

.header-features-grid .header-features-grid-item__icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -30px;
  left: calc(50% - 30px);
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  border-radius: 10px;
}

.header-features-grid .header-features-grid-item__icon {
  width: 44px;
  height: 44px;
}

.header-features-grid .header-features-grid-item__text {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-add);
  text-align: center;
  padding: 36px 12px 24px 12px;
}

.header-features-grid .header-features-grid-item__text::after {
  content: "";
  position: absolute;
  bottom: 12px;
  left: calc(50% - 30px);
  width: 60px;
  height: 1px;
  background: var(--color-primary);
}

.header-content.main-v2 {
  margin-bottom: 0;
}

.header-trust-wrapper {
  width: 100%;
  background: #1f3866;
  opacity: 0.85;
  display: flex;
  justify-content: center;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  margin-bottom: 50px;
}

.header-trust {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 16px 0;
  overflow: auto;
}

.header-trust .header-trust__item {
  max-width: 270px;
  max-height: 35px;
}

.header-trust .header-trust__item:not(:last-of-type) {
  margin-right: 50px;
}

@media (max-width: 1350px) {
  .header-content {
    padding: 15px !important;
  }

  .header-content-wrapper .rank-math-breadcrumb {
    padding: 15px 15px 0 15px !important;
  }

  .header-content .header-brands {
    margin-top: 40px;
  }

  .header-features-grid .header-features-grid-item {
    width: 190px;
  }
}

@media (max-width: 1024px) {
  .header-content {
    flex-wrap: wrap;
  }

  .header-content .header-content-left,
  .header-content .header-content-right {
    width: 100%;
  }

  .header-review-content .header-content-right_review {
    margin-top: 50px;
  }

  .header-features-grid {
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-features-grid .header-features-grid-item {
    margin: 0 32px 48px 0;
  }
}

@media (max-width: 900px) {
  .header-trust {
    justify-content: flex-start;
  }

  .header-trust .header-trust__item {
    max-width: 200px;
  }

  .header-trust .header-trust__item:not(:last-of-type) {
    margin-right: 25px;
  }
}

@media (max-width: 768px) {
  .header-content .header-subtitle {
    font-size: 14px;
  }

  .header-trust .header-trust__item {
    max-width: 154px;
  }
}

@media (max-width: 600px) {
  .header-content .header-meta {
    font-size: 12px;
    margin-top: 16px;
  }
  .header-meta .header-meta-person__name a {
    font-size: 12px;
  }

  .header-meta .header-meta-person {
    margin-right: 12px;
    padding-right: 12px;
  }

  .header-meta .header-meta-person__img {
    width: 28px;
    height: 28px;
  }

  .header-meta .header-meta-person__pos,
  .header-meta .header-meta-update__text {
    font-size: 10px;
    line-height: 13px;
  }

  .header-meta .header-meta-person__sign {
    width: 49px;
  }

  .header-meta .header-meta-person__info {
    margin-right: 8px;
  }

  .header-meta .header-meta-update {
    margin-right: 12px;
  }

  .header-meta .header-meta-socials {
    position: relative;
  }

  .header-meta .header-meta-socials__mobile {
    display: block;
  }

  .header-meta .header-meta-socials__list {
    display: none;
  }

  .header-meta .header-meta-socials:hover .header-meta-socials__list {
    display: flex;
    position: absolute;
    right: 0;
    bottom: -40px;
    background: #162a4d;
    padding: 5px 10px;
    border-radius: 8px;
  }

  .casino-review-tabs__list {
    padding: 0;
  }

  .casino-review-tabs__area {
  }

  .casino-review-tabs__link {
    line-height: 140%;
    border-radius: 8px;
    padding: 6px 16px;
  }
}

@media (max-width: 480px) {
  .header-content {
    margin-bottom: 0;
  }

  .header-content .header-title {
    text-align: center;
  }

  .header-content .header-subtitle {
    font-size: 14px;
  }

  .header-content .header-brands {
    margin-top: 20px;
    justify-content: center;
  }

  .header-content .header-text {
    margin-top: 20px;
    font-size: 8px;
    line-height: 12px;
  }

  .header-content .header-content-right {
    margin-top: 40px;
  }

  .header-content .header-link-text {
    font-size: 8px;
  }

  .header-casino__img {
    max-width: 238px;
    top: -65px;
    opacity: 0.5;
  }

  .header-casino-info .header-casino-info-content {
    width: 100%;
    justify-content: space-between;
  }

  .header-casino-info .header-casino-review-link {
    max-width: none;
    margin-right: 0;
    margin-top: 12px;
    order: 3;
    font-size: 16px;
    height: 54px;
  }

  .header-casino-info .header-casino-bonuses {
    max-width: 320px;
    width: 83%;
    height: 48px;
    order: 1;
    padding: 7px 20px;
    margin-top: 0;
    margin-right: 8px;
  }

  .header-casino-info .header-casino-bonus__number {
    font-size: 14px;
  }

  .header-casino-info .header-casino-bonus__number span {
    font-size: 16px;
  }

  .header-casino-info .header-casino-bonus__text {
    font-size: 12px;
  }

  .header-casino-info .header-casino-info__logo {
    width: 48px;
    height: 48px;
    order: 2;
  }

  .header-link-wrapper .casino-link-text {
    font-size: 12px;
    font-weight: 400;
  }

  .header-casino-info .header-casino-bonus:nth-of-type(2)::before {
    height: 25px;
  }

  .header-features-grid {
    margin-top: 50px;
    justify-content: space-evenly;
  }

  .header-features-grid .header-features-grid-item {
    width: 158px;
    margin-right: 12px;
  }

  .header-features-grid .header-features-grid-item__icon-wrapper {
    width: 44px;
    height: 44px;
    left: calc(50% - 22px);
  }

  .header-features-grid .header-features-grid-item__icon {
    width: 32px;
    height: 32px;
  }

  .header-features-grid .header-features-grid-item__text {
    font-size: 14px;
    padding: 24px 12px 18px 12px;
  }

  .header-features-grid .header-features-grid-item__text::after {
    bottom: 10px;
  }

  .header-trust-wrapper {
    margin-bottom: 12px;
  }

  .header-trust {
    padding: 8px 0 8px 0;
  }

  .header-trust::-webkit-scrollbar {
    width: 0;
  }

  .header-trust {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .header-trust .header-trust__item {
    max-height: 26px;
  }

  .header-trust .header-trust__item {
    margin-right: 10px !important;
    margin-left: 10px;
  }
}
/* HEADER CONTENT END */

/* CONTENT BANNER START */
.content-banner {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 336px;
  border-radius: 20px;
}

@media (max-width: 900px) {
  .content-banner {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .content-banner {
    height: 85px;
    border-radius: 5px;
  }
}
/* CONTENT BANNER END */

/* CUSTOM LIST START */
.custom-list-wrapper {
  display: flex;
  justify-content: center;
  background: #f7f8fb;
  border: 1px solid #dcdfe4;
  border-radius: 20px;
  margin: 20px;
  padding: 0 20px;
}

.custom-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 20px 0 0 0 !important;
  list-style: none !important;
}

.custom-list .custom-list-item {
  width: 24%;
  margin: 0 0 20px 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  color: var(--color-text-dark);
}

.custom-list .custom-list-item::before {
  content: url(../images/li_before.svg);
  margin-right: 15px;
}

@media (max-width: 768px) {
  .custom-list .custom-list-item {
    width: 32%;
  }
}

@media (max-width: 480px) {
  .custom-list-wrapper {
    padding: 0 35px;
  }

  .custom-list .custom-list-item {
    width: 49%;
    margin-bottom: 10px;
  }
}
/* CUSTOM LIST END */

/* FAQ START */
.faq {
  width: 100% !important;
  margin: 0;
}

.faq .faq__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 52px;
  color: var(--color-text-dark);
}

.faq .faq__intro {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  border: 2px solid #fff;
  margin-bottom: 16px;
  padding: 20px;
}

.faq .faq-item {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  border: 2px solid #fff;
  margin-bottom: 16px;
}

.faq .faq-item:hover {
  background: rgba(255, 255, 255, 0.7);
}

.faq .faq-question {
  cursor: pointer;
  color: var(--color-text-dark);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.faq .faq-answer {
  display: none;
  margin: 0;
  padding: 0 20px 20px 20px;
}

.faq .faq-answer.active {
  display: block;
}

.faq .faq-question__icon-open,
.faq .faq-question__icon-close {
  display: none;
  width: 18px;
  height: 18px;
}

.faq .faq-question__icon-open.active {
  display: block;
}

.faq .faq-question__icon-close.active {
  display: block;
}

@media (max-width: 480px) {
  .faq {
    margin: 15px 0;
  }

  .faq .faq__title {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 15px;
  }

  .faq .faq__intro {
    font-size: 10px;
    padding: 15px;
  }

  .faq .faq-question {
    padding: 15px;
    font-size: 10px;
    line-height: 16px;
  }

  .faq .faq-answer {
    margin-left: 0;
    font-size: 10px;
  }

  .faq .faq-question__text {
    max-width: 90%;
    font-size: 12px;
  }

  .faq .faq-question__icon-open,
  .faq .faq-question__icon-close {
    width: 12px;
    height: 12px;
  }
}
/* FAQ END */

/* BREADCRUMBS START */
.rank-math-breadcrumb {
  padding: 10px 0;
}

.rank-math-breadcrumb a,
.rank-math-breadcrumb span {
  color: #cdd6dd !important;
  text-decoration: none;
  font-size: 12px;
}

.rank-math-breadcrumb p {
  margin: 0;
}

.rank-math-breadcrumb p a:last-of-type {
  color: #7b8c98;
}
/* BREADCRUMBS END */

/* 404 PAGE START */
.page-404-wrapper {
  padding: 100px 15px;
}

.page-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, #ffffff 100%);
  border-radius: 10px;
  padding: 60px 100px;
  max-width: 750px;
  text-align: center;
  margin: auto;
  color: var(--color-text-dark);
}

.page-404 .page-404__logo {
  max-width: 130px;
}

.page-404 .page-404__svg-wrap {
  margin: 20px 0;
}

.page-404 .page-404__error {
  position: relative;
  font-size: 20px;
  margin-bottom: 40px;
}

.page-404 .page-404__error::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: calc(50% - 19px);
  width: 38px;
  height: 3px;
  background: var(--color-secondary);
}

.page-404 .page-404__text {
  font-size: 14px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .page-404 {
    padding: 25px 40px;
  }
}

@media (max-width: 480px) {
  .page-404-wrapper {
    padding: 50px 15px;
  }

  .page-404__svg-wrap svg {
    height: 70px;
  }

  .page-404 .page-404__error {
    font-size: 16px;
  }

  .page-404 .page-404__text {
    font-size: 10px;
  }
}
/* 404 PAGE END */

/* STATIC PAGE START */
.static-page {
  max-width: 925px;
  margin: 0 auto;
  padding-top: 30px;
}

.static-page .static-page-content {
  background: #ffffff;
  opacity: 0.8;
  border-radius: 10px;
  padding: 20px;
}

@media (max-width: 480px) {
  .static-page {
    padding-top: 15px;
  }
}
/* STATIC PAGE END */

/* DEFAULT GRID START */
.default-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.default-grid .default-grid-item {
  width: 24%;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8.40772px);
  border: 1px solid #fff;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 10px;
  text-decoration: none;
}

.default-grid .default-grid-item:hover {
  background: linear-gradient(180deg, #ffffff -20.15%, rgba(242, 242, 242, 0.6) 100%);
}

.default-grid .default-grid-item__img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 10px;
}

.default-grid .default-grid-item__title {
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  color: var(--color-text-dark);
}

@media (max-width: 1024px) {
  .default-grid .default-grid-item {
    width: 23%;
  }

  .default-grid .default-grid-item__img {
    height: 160px;
  }
}

@media (max-width: 800px) {
  .default-grid .default-grid-item {
    width: 31%;
  }
}

@media (max-width: 600px) {
  .default-grid .default-grid-item {
    width: 48%;
  }
}

@media (max-width: 480px) {
  .default-grid .default-grid-item {
    width: 100%;
  }

  .default-grid .default-grid-item__img {
    height: 180px;
  }

  .default-grid .default-grid-item__title {
    font-size: 16px;
  }
}
/* DEFAULT GRID END */

/* SEARCH START */
.search {
  padding-top: 30px;
}

@media (max-width: 480px) {
  .search {
    padding-top: 15px;
  }
}
/* SEARCH END */

/* CATEGORY START */
.category {
  padding-top: 30px;
}

@media (max-width: 480px) {
  .category {
    padding-top: 15px;
  }
}
/* CATEGORY END */

/* INFO START */
.header-info {
  flex-direction: column;
  padding: 0;
}

.header-info .header-meta {
  margin-top: 65px;
  margin-bottom: 125px;
}

.content-container-info-wrapper {
  width: 69%;
}

.content-container-info {
  width: 100%;
  border-radius: 10px;
  background: #f8f8f8;
  padding: 20px 32px;
  margin: -125px auto 0 auto;
}

.info-faq {
  margin: 30px auto 0 auto;
}

.info .info__title {
  font-weight: 700;
  line-height: 51px;
  margin-bottom: 32px;
  color: var(--color-text-dark);
}

.info .info__img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 10px;
}

.info .info-content {
  padding: 32px;
}

.info .info-content img {
  border-radius: 12px;
  margin-bottom: 20px;
}

.info .info-content table {
  width: 100%;
}

@media (max-width: 1100px) {
  .content-container-info-wrapper {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .header-info {
    padding: 0 15px;
  }

  .info .info__img {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .header-info .header-meta {
    margin-top: 16px;
    margin-bottom: 85px;
  }

  .info {
    margin-top: -50px;
  }

  .info .info__title {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 25px;
  }

  .info .info-content {
    padding: 12px;
  }

  .info .info-content p {
    font-size: 12px;
    line-height: 20px;
  }

  .info .info-content li {
    margin-bottom: 12px;
  }
}

/* INFO END */

/* AUTHOR BLOCK START */
.author-block {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  margin: 32px auto;
  padding: 24px 32px;
  max-width: 925px;
}

.author-block_full-size {
  max-width: none;
}

.author-block .author-block-header {
  display: flex;
  justify-content: space-between;
}

.author-block .author-block-person {
  display: flex;
  align-items: center;
}

.author-block .author-block__img {
  width: 65px;
  height: 65px;
  border-radius: 50px;
  margin-right: 16px;
}

.author-block .author-block-links__item img {
  width: 100%;
  padding: 8px;
}

.author-block .author-block-socials__mobile {
  display: none;
}

.author-block .author-block-socials__list {
  display: flex;
  align-items: center;
}

.author-block .author-block-socials__list a {
  display: flex;
  align-items: center;
  position: relative;
  border: none;
}

.author-block .author-block-socials__list a:not(:last-of-type) {
  padding-right: 12px;
  margin-right: 12px;
}

.author-block .author-block-socials__list a:not(:last-of-type)::after {
  content: "";
  position: absolute;
  right: 0;
  width: 1px;
  height: 22px;
  background: #7e8394;
}

.author-block .author-block__name {
  color: var(--color-text-dark);
  font-weight: 700;
}
.author-block .author-block__name a {
  color: var(--color-text-dark);
  font-weight: 700;
  text-decoration: none;
}

.author-block .author-block__pos {
  font-size: 14px;
  font-weight: 700;
  color: #eb8348;
}

.author-block .author-block-body {
  margin-top: 20px;
}

.author-block .author-block-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.author-block .author-block-date {
  margin-left: 10px;
  font-weight: 700;
  color: var(--color-text-dark);
}

@media (max-width: 480px) {
  .author-block {
    flex-wrap: wrap;
    padding: 12px;
  }

  .author-block .author-block__img {
    width: 48px;
    height: 48px;
  }

  .author-block .author-block-body {
    margin-top: 16px;
  }

  .author-block .author-block__text {
    font-size: 12px;
    line-height: 20.4px;
  }

  .author-block .author-block__name {
    font-size: 12px;
  }

  .author-block .author-block-links {
    order: 2;
  }

  .author-block .author-block__pos {
    font-size: 10px;
  }

  .author-block .author-block-update {
    font-size: 12px;
  }

  .author-block .author-block-footer img {
    width: 62px;
  }
}
/* AUTHOR BLOCK END */

/* CONTENT CASINO REVIEW START */
.content-casino-review .content-casino-review__disclaimer {
  padding: 0 20px 20px 20px;
}

.header-review-content {
  flex-wrap: wrap;
}

.header-review-content .header-title {
  width: 90%;
  z-index: 10;
}

@media (max-width: 1024px) {
  .header-review-content .header-title {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .header-review-content .header-subtitle {
    text-align: center;
  }
}
/* CONTENT CASINO REVIEW END */

/* GAME REVIEW START */
.header-game-review-content {
  padding: 0 0 24px 0;
  display: block;
}

.header-game-review-content .header-subtitle {
  line-height: 27px;
}

.header-game-review {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

.header-game-card {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 69%;
  border-radius: 10px;
  height: 500px;
}

.header-game-card .header-game-links {
  max-width: 340px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.header-game-card a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  height: 70px;
  color: var(--color-text-main);
}

.header-game-card .header-game-links__first-link {
  width: 250px;
}

.header-game-card .header-game-links__second-link {
  width: 100%;
  background: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  border: 2px solid #ffffff;
  border-radius: 10px;
  margin-top: 16px;
  color: #fff;
}

.header-game-card .header-game-links__text {
  width: 100%;
  text-align: center;
  color: #a9adb9;
  margin-top: 8px;
}

.header-game-card .header-game-links__logo {
  width: 70px;
  height: 70px;
  border-radius: 10px;
}

.header-game-card .game-rating {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.game-rating {
  display: flex;
}

.game-rating .game-rating__item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid #ffffff;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  padding: 5px 10px;
  margin-right: 12px;
}

.game-rating .game-rating__item svg {
  margin-right: 8px;
}

.header-game-info {
  width: 29%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  color: #a9adb9;
}

.header-game-info .header-game-info__logo {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 10px;
}

.header-game-info .header-game-info__row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 16px;
}

.header-game-info .header-game-info__property {
  width: 50%;
}

.header-game-info .header-game-info__value {
  display: flex;
  flex-wrap: wrap;
  width: 49%;
}

.header-game-info .header-game-info__value span {
  display: flex;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  margin: 0 10px 5px 0;
}

@media (max-width: 1200px) {
  .header-game-card {
    width: 59%;
  }

  .header-game-info {
    width: 39%;
  }
}

@media (max-width: 768px) {
  .header-game-review {
    flex-wrap: wrap;
  }

  .header-game-card,
  .header-game-info {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .header-game-review-content .header-subtitle {
    max-width: 100%;
    text-align: center;
  }

  .header-game-review {
    margin-top: 20px;
  }

  .header-game-card .header-game-links {
    justify-content: center;
    width: 240px;
  }

  .header-game-info {
    font-size: 16px;
  }

  .header-game-card a {
    font-size: 16px;
    height: 57px;
  }

  .header-game-card {
    height: 300px;
    margin-bottom: 24px;
  }

  .header-game-card .game-rating {
    left: auto;
    bottom: 12px;
    right: 12px;
  }

  .header-game-card .header-game-links__first-link {
    width: 192px;
  }

  .header-game-card .header-game-links__logo {
    display: none;
  }

  .header-game-info .header-game-info__property {
    width: 55%;
  }

  .header-game-info .header-game-info__value {
    display: flex;
    flex-wrap: wrap;
    width: 44%;
  }
}

.game-review-content-wrapper {
  max-width: 900px;
}

.content-sidebar-wrapper .game-review-content-wrapper {
  width: 69%;
}

.game-review-content {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  border-radius: 10px;
  width: 100%;
  padding: 20px 32px;
  margin-bottom: 50px;
}

@media (max-width: 1100px) {
  .game-review-content-wrapper {
    width: 100% !important;
    max-width: none;
  }
}
/* GAME REVIEW END */

/* SLOT GRID START */
.slot-grid-wrapper {
  margin-bottom: 30px;
}

.slot-grid-wrapper .slot-grid-title {
  text-align: left;
  margin-bottom: 24px;
}

.slot-grid__more-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.slot-grid__more {
  cursor: pointer;
  padding: 10px 28px;
  background: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  color: var(--color-text-dark);
}

.slot-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.slot-grid a {
  color: var(--color-text-main) !important;
  border: none !important;
}

.slot-grid .slot-grid-item {
  width: 19%;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  margin-bottom: 20px;
}

.slot-grid .slot-grid-item:hover {
  background: rgba(255, 255, 255, 0.7);
}

.slot-grid .slot-grid-item__logo-wrapper {
  display: block;
  padding: 12px;
}

.slot-grid .slot-grid-item__logo {
  width: 100%;
  height: 143px;
  object-fit: cover;
  border-radius: 10px;
}

.slot-grid .slot-grid-item__name {
  display: block;
  font-weight: 700;
  padding: 0 12px 8px 12px;
}

.slot-grid .slot-grid-item__provider {
  font-size: 14px;
  padding: 0 12px 17px 12px;
}

.slot-grid .slot-grid-item-footer {
  display: flex;
  justify-content: space-between;
  background: #fff;
  border-radius: 10px;
  padding: 8px 16px;
  color: #4a5b68;
  font-size: 14px;
}

.slot-grid .slot-grid-item-rating {
  display: flex;
}

.slot-grid .slot-grid-item-rating__item {
  display: flex;
  align-items: center;
  margin-right: 12px;
}

.slot-grid .slot-grid-item-rating__item img {
  margin-right: 6px;
}

.slot-grid .slot-grid-item__rtp span {
  color: var(--color-primary);
  margin-left: 5px;
}

@media (max-width: 1200px) {
  .slot-grid .slot-grid-item-footer {
    flex-direction: column;
  }
}

@media (max-width: 1100px) {
  .slot-grid .slot-grid-item {
    width: 24%;
  }
}

@media (max-width: 768px) {
  .slot-grid .slot-grid-item {
    width: 32%;
  }
}

@media (max-width: 480px) {
  .slot-grid-wrapper .slot-grid-title {
    margin-bottom: 16px;
  }

  .slot-grid {
    justify-content: space-between;
  }

  .slot-grid .slot-grid-item {
    width: 48%;
    margin-bottom: 16px;
  }

  .slot-grid .slot-grid-item__logo {
    height: 90px;
  }

  .slot-grid .slot-grid-item__name {
    font-size: 16px;
    padding-bottom: 4px;
  }

  .slot-grid .slot-grid-item__provider {
    font-size: 12px;
    padding-bottom: 12px;
  }

  .slot-grid .slot-grid-item-footer {
    flex-direction: row;
    font-size: 10px;
    padding: 6px 12px;
  }

  .slot-grid .slot-grid-item-rating__item {
    margin-right: 8px;
  }

  .slot-grid .slot-grid-item-rating__item img {
    width: 15px;
  }
}

@media (max-width: 400px) {
  .slot-grid .slot-grid-item-footer {
    padding: 6px;
  }

  .slot-grid .slot-grid-item-rating__item {
    margin-right: 4px;
  }
}

@media (max-width: 375px) {
  .slot-grid .slot-grid-item-rating__item img {
    margin-right: 2px;
  }

  .slot-grid .slot-grid-item__rtp span {
    margin-left: 0;
  }
}
/* SLOT GRID END */

/* SLOTS HUB START */
.header-slots-hub-content .header-subtitle {
  max-width: 1082px !important;
  margin-bottom: 70px;
}

.slots-hub-container {
  background: #fff;
}

.slots-hub-container .casino-table-wrapper {
  border: none;
}

.slots-hub-container .casino-table {
  padding: 0;
}

.slots-hub-container .casino-table-text {
  margin-left: 0;
}

@media (max-width: 480px) {
  .header-slots-hub-content .header-subtitle {
    margin-bottom: 20px;
  }
}
/* SLOTS HUB END */

/* SLOT SEARCH START */
.slot-search {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  padding: 16px 24px;
  margin-bottom: 28px;
}

.slot-search__input {
  width: 69%;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(169, 173, 185, 0.3);
  border-radius: 8px;
  height: 48px;
  padding-left: 56px;
}

.slot-search__input:focus {
  border: 1px solid rgba(169, 173, 185, 0.7);
}

.slot-search__input::placeholder {
  font-size: 16px;
}

.slot-search::before {
  content: url(../images/slot-search.svg);
  position: absolute;
  top: calc(50% - 11px);
  left: 40px;
  z-index: 10;
}

@media (max-width: 600px) {
  .slot-search__input {
    width: 100%;
    height: 40px;
    margin-bottom: 8px;
  }

  .slot-search::before {
    width: 18px;
    height: 18px;
    top: calc(27% - 9px);
  }
}

@media (max-width: 480px) {
  .slot-search {
    padding: 12px 8px;
    margin-bottom: 16px;
  }

  .slot-search__input {
    padding-left: 46px;
  }

  .slot-search__input::placeholder {
    font-size: 14px;
  }

  .slot-search::before {
    left: 20px;
  }
}
/* SLOT SEARCH END */

/* FILTER  PROVIDER START */
.filter-provider {
  position: relative;
  width: 30%;
}

.filter-provider__selected {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 100%;
  height: 48px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(169, 173, 185, 0.3);
  border-radius: 8px;
}

.filter-provider__selected::after {
  content: url(../images/filter-arrow.svg);
  position: absolute;
  right: 16px;
}

.filter-provider__list {
  display: none;
  width: 100%;
  position: absolute;
  top: 55px;
  left: 0;
  background: #ffffff;
  border: 1px solid rgba(169, 173, 185, 0.3);
  border-radius: 8px;
  max-height: 313px;
  overflow: auto;
}

.filter-provider.open .filter-provider__list {
  display: block;
}

.filter-provider__item {
  cursor: pointer;
  padding: 12px 0;
  margin: 0 16px;
}

.filter-provider__item:not(:last-of-type) {
  border-bottom: 1px dashed #a9adb9;
}

@media (max-width: 600px) {
  .filter-provider {
    width: 100%;
  }

  .filter-provider__selected {
    height: 40px;
  }

  .filter-provider__list {
    top: 47px;
  }
}
/* FILTER  PROVIDER END */

/* HIDE SUBTITLE START */
.hide-subtitle-wrapper {
  position: relative;
}

.hide-subtitle {
  max-height: 80px;
  overflow: hidden;
  background: linear-gradient(180deg, #a9adb9 33.95%, rgba(169, 173, 185, 0.27) 80.45%, rgba(169, 173, 185, 0) 97.67%);
  -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-wrapper.open .hide-subtitle-btn.close {
  display: inline-block;
}

.hide-subtitle-btn {
  cursor: pointer;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px dashed #ffffff;
  margin-top: 4px;
}

.hide-subtitle-btn.close {
  display: none;
}

@media (max-width: 480px) {
  .hide-subtitle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
/* HIDE SUBTITLE END */

/* RECOMMENDED GRID START*/
.recommended-grid {
  width: 100%;
  margin-bottom: 48px;
}

.recommended-grid-list {
  width: 100%;
}

.recommended-grid-item {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.28);
}

.recommended-grid-item:not(:last-of-type) {
  margin-bottom: 16px;
}

.recommended-grid-item__content {
  width: 180px;
  padding: 10px;
}

.recommended-grid-item__button {
  width: 123px;
  height: 50px;
  font-size: 14px;
  justify-content: center;
  margin-top: 13px;
}

.recommended-grid__img-wrapper {
  width: 70px;
  height: 70px;
}

.recommended-grid-item__img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
}

.recommended-grid-item__name {
  font-size: 14px;
  font-weight: 700;
  color: #171e34;
  text-decoration: none;
}

.recommended-grid-item__rating {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.recommended-grid-item__rating span {
  font-size: 16px;
  font-weight: 700;
}

.recommended-grid-item__stars {
  margin-right: 8px;
}

.recommended-grid-item__stars svg {
  width: 12px;
  height: 12px;
}

.recommended-grid-item__bonuses {
  display: flex;
  justify-content: space-around;
  width: 100%;
  border-radius: 10px;
  background: #fff;
  padding: 10px 0;
  margin-top: 4px;
}

.recommended-grid-item__bonus {
  position: relative;
  color: #171e34;
  font-weight: 700;
}

.recommended-grid-item__bonus span {
  font-size: 20px;
}

.recommended-grid-item__bonus:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: 3px;
  right: -25px;
  width: 1px;
  height: 22px;
  background: #a9adb9;
}

@media (max-width: 1350px) {
  .recommended-grid-item__content {
    width: auto;
  }

  .recommended-grid-item__button {
    width: 95%;
    margin: 6px auto 0 auto;
  }

  .recommended-grid-item__bonuses {
    margin-top: 8px;
  }

  .recommended-grid-item__bonus:not(:last-of-type)::after {
    right: -15px;
  }
}
/* RECOMMENDED GRID END*/

/* ARTICLES GRID START */
.articles-grid {
  width: 100%;
  margin-bottom: 48px;
}

.articles-grid-list {
  width: 100%;
}

.articles-grid-item {
  width: 100%;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.28);
  text-decoration: none;
  color: #4a5b68 !important;
}

.articles-grid-item:not(:last-of-type) {
  margin-bottom: 16px;
}

.articles-grid-item__content {
  display: flex;
  padding: 16px 12px;
}

.articles-grid-item__img-wrapper {
  display: block;
  width: 109px;
  height: 67px;
  margin-right: 16px;
}

.articles-grid-item__img {
  max-width: none !important;
  width: 109px;
  height: 67px;
  border-radius: 8px;
}

.articles-grid-item__title {
  height: 54px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #171e34 !important;
  text-decoration: none;
  line-height: 170%;
}

.articles-grid-item__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  background: #fff;
  padding: 8px 12px;
}

.articles-grid-item__date {
  font-size: 12px;
  font-weight: 400;
}

.articles-grid-item__link {
  display: block;
  text-decoration: none;
  position: relative;
  font-size: 14px;
  padding-right: 20px;
}

.articles-grid-item__link::after {
  content: url(../images/arrow_right_blue.svg);
  position: absolute;
  top: 2.5px;
}
/* ARTICLES GRID END */

/* LINKING SIDEBART START */
.linking-sidebar {
  width: 100%;
  margin-bottom: 48px;
}

.linking-sidebar-list {
  width: 100%;
}

.linking-sidebar-item {
  position: relative;
  display: block;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.4);
  color: #171e34;
  text-decoration: none;
  padding: 16px 12px;
}

.linking-sidebar-item:not(:last-of-type) {
  margin-bottom: 12px;
}

.linking-sidebar-item__title {
  width: 90%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.linking-sidebar-item::after {
  content: url(../images/arrow_right_blue.svg);
  position: absolute;
  top: calc(50% - 12px);
  right: 10px;
}
/* LINKING SIDEBART END */

/* LINKING GRID START */
.linking-grid {
  width: 100%;
  margin-bottom: 48px;
}

.linking-grid-list {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.linking-grid-item {
  width: 24%;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.52);
  padding: 16px;
  margin-bottom: 16px;
}

.linking-grid-item__img-wrapper {
  display: block;
  width: 100%;
  height: 172px;
  margin-bottom: 12px;
}

.linking-grid-item__img {
  width: 100%;
  height: 172px;
  border-radius: 8px;
}

.linking-grid-item__title {
  display: block;
  height: 54px;
  overflow: hidden;
  color: #171e34;
  text-decoration: none;
  margin-bottom: 20px;
}

.linking-grid-item__footer {
  display: flex;
  justify-content: space-between;
}

.linking-grid-item__date {
  font-size: 12px;
  color: #4a5b68;
}

.linking-grid-item__link {
  text-decoration: none;
  padding-right: 25px;
  position: relative;
}

.linking-grid-item__link::after {
  content: url(../images/arrow_right_blue.svg);
  position: absolute;
  top: calc(50% - 12px);
  right: 0;
}

@media (max-width: 1100px) {
  .linking-grid-item {
    width: 32%;
  }
}

@media (max-width: 768px) {
  .linking-grid-list {
    justify-content: space-between;
  }

  .linking-grid-item {
    width: 48%;
  }

  .linking-sidebar-item__title{
    width: calc(90% - 24px);
  }
}
@media (max-width: 480px) {
  .linking-grid-item {
    padding: 8px;
    margin-bottom: 12px;
  }

  .linking-grid-item__img-wrapper {
    height: 86px;
  }

  .linking-grid-item__img {
    height: 86px;
  }

  .linking-grid-item__title {
    font-size: 12px;
    line-height: 120%;
    height: 28px;
  }

  .linking-grid-item__date {
    font-size: 10px;
  }

  .linking-grid-item__link span {
    display: none;
  }
}
/* LINKING GRID END */

/* IMPORTANT BLOCK START */
.important-block {
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 32px;
  margin: 20px 0;
}

.important-block__content {
  font-size: 20px;
  font-weight: 700;
  line-height: 170%;
  color: #203b6b;
}

.important-block::before,
.important-block::after {
  content: "";
  position: absolute;
  width: 172px;
  height: 4px;
  background: var(--color-primary);
}

.important-block::before {
  top: 20px;
  left: 32px;
}

.important-block::after {
  bottom: 20px;
  right: 32px;
}

@media (max-width: 600px) {
  .important-block {
    padding: 28px 12px;
  }

  .important-block::before,
  .important-block::after {
    width: 94px;
  }

  .important-block::before {
    top: 16px;
    left: 12px;
  }

  .important-block::after {
    bottom: 16px;
    right: 12px;
  }
}

@media (max-width: 480px) {
  .important-block__content {
    font-size: 14px;
    line-height: 140%;
  }
}

/* IMPORTANT BLOCK END */

/* CASINO PROS CONS LISTS START */
.casino-pros-list,
.casino-cons-list {
  width: 49%;
  border-radius: 10px;
  background: #e7eaee;
  padding: 16px;
}

.casino-pros-cons-list {
  padding: 15px;
  background: #f8f9fa;
  border: 1px solid #dcdfe4;
  border-radius: 10px;
  margin-top: 12px;
  margin-bottom: 0 !important;
}

.casino-pros-cons-list li {
  margin-left: 20px !important;
  margin-bottom: 15px !important;
}

.casino-pros-cons-list li:last-of-type {
  margin-bottom: 0 !important;
}

.casino-pros-list__title {
  text-align: center;
  font-weight: 700;
  color: #5b8f35;
}

.casino-pros-list li::marker {
  color: #5b8f35;
}

.casino-cons-list__title {
  text-align: center;
  font-weight: 700;
  color: #eb8348;
}

.casino-cons-list li::marker {
  color: #eb8348;
}

@media (max-width: 480px) {
  .pros-cons-block {
    flex-wrap: wrap;
    padding: 0;
    border: none;
  }

  .pros-cons-block .casino-pros-list,
  .pros-cons-block .casino-cons-list {
    width: 100%;
    margin-bottom: 16px;
  }

  .casino-pros-cons-list li {
    margin-left: 15px !important;
  }
}
/* CASINO PROS CONS LISTS 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: linear-gradient(186deg, #162a4d 0%, #060a13 100%);
  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: baseline;
  font-size: 14px;
  color: #a9adb9;
  margin-bottom: 8px;
}

.alternative-casinos-item__stars {
  margin-right: 12px;
}

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

@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 */

.static-page.author-static-page {
  max-width: none;
}
.ahb-wrap {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 20px;
}
.ahb-name {
  width: 100%;
  color: var(--color-text-dark);
  text-align: left;
}
h1.ahb-name {}
.ahb-heading {
  display: flex;
  flex-direction: column;
  width: 34%;
  margin-right: 2%;
}
.ahb-image {
  display: block;
  max-width: 300px;
  height: auto;
  margin-bottom: 16px;
}
.ahb-meta {
  font-size: 14px;
  font-weight: 700;
  color: #eb8348;
  line-height: 1.2em;
  margin-bottom: 6px;
}
.ahb-socials {}
.ahb-body {
  width: 64%;
}
.author-static-page .rank-math-breadcrumb a, .author-static-page .rank-math-breadcrumb span {
  color: #171e34 !important;
}
@media (max-width: 768px) {
  .ahb-heading {
    width: 100%;
    margin-right: 0;
    text-align: center;
  }
  .ahb-image {
    margin: 0 auto 16px auto;
  }
  .ahb-body {
    width: 100%;
  }
}

.apb-wrap {
  position: relative;
  max-width: 1320px;
  margin: 30px auto 30px auto;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.apb-wrap h2 {
  text-align: center;
}
@media (max-width: 768px) {
}
