:root {
  --gradient: linear-gradient(180deg, rgba(255, 255, 255, 1) 13%, rgba(207, 207, 218, 0.19) 123%);
  --listing-bg: #222;
  --title-color: #0d131d;
  --dark: #a2a2b0;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v23/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew-.ttf) format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v23/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w-.ttf) format("truetype");
}
@font-face {
  font-family: "Secular One";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/secularone/v10/8QINdiTajsj_87rMuMdKypDl.ttf) format("truetype");
}
/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #0d131d;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #8178d9;
}

* {
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

a {
  transition: 0.3s;
}

a:hover {
  color: #ff2209;
}

.row {
  display: flex;
}

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

.container-fw {
  max-width: 100%;
  width: 100%;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  padding: 10px 5px;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  font-weight: bolder;
  justify-content: center;
  text-align: center;
}

.btn:hover {
  background: #0d131d;
  color: #fff;
}

.btn-play {
  background: #ff2209;
  width: 100%;
  max-width: 150px;
}
.btn-play :hover {
  background: #e82a15;
}

.btn-simple {
  background: transparent;
  font-size: 12px;
  padding: 8px 15px;
}

.av_header {
  background: #0d131d;
  padding: 8px 0;
}

.av_header .container {
  padding: 0;
}

.custom-logo-link {
  position: relative;
  width: 100%;
  flex-basis: 140px;
  display: flex;
  align-items: center;
}

.custom-logo-link img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.av_header .row {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.av_header .lang:first-child {
  max-width: 0;
}

.av_header .lang, .av_mobile_header .lang {
  position: relative;
}

.av_header .lang .lang_item, .av_mobile_header .lang .lang_item {
  cursor: pointer;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.av_header .lang .lang_item img, .av_mobile_header .lang .lang_item img {
  margin-right: 10px;
  border-radius: 5px;
}

.av_header .lang .lang_item svg, .av_mobile_header .lang .lang_item svg {
  margin-left: 10px;
}

.av_header .lang .lang_dropdown, .av_mobile_header .lang .lang_dropdown {
  opacity: 0;
  visibility: hidden;
  border-radius: 5px;
  margin-top: 10px;
  background: #0d131d;
  position: absolute;
  top: 100%;
  left: 0;
  transition: 0.3s;
  z-index: 505;
}

.av_header .lang .lang_dropdown .lang_item, .av_mobile_header .lang .lang_dropdown .lang_item {
  color: #fff;
  padding: 10px;
  font-size: 12px;
}

.av_header .lang .lang_dropdown.active, .av_mobile_header .lang .lang_dropdown.active {
  opacity: 1;
  visibility: visible;
  display: block;
}

.av_header nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.av_header nav ul li a {
  text-decoration: none;
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
}

.av_header nav ul li.menu-item-has-children {
  position: relative;
}

.av_header nav ul li.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.av_header nav ul li.menu-item-has-children .sub-menu {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  background: #fff;
  border-radius: 0 0 15px 15px;
  position: absolute;
  top: 100%;
  margin-top: 10px;
  left: 100%;
  transform: translate(-50%);
  width: 200%;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 505;
  box-shadow: 1px 3px 3px #ddd;
  gap: 5px;
  right: 0;
  max-height: 250px;
  overflow-y: scroll;
}

.av_header nav ul li.menu-item-has-children .sub-menu li {
  width: 100%;
}

.av_header nav ul li.menu-item-has-children .sub-menu li:last-child {
  border-radius: 0 0 15px 15px;
}

.av_header nav ul li.menu-item-has-children .sub-menu li:last-child a {
  border-radius: 0 0 15px 15px;
}

.av_header nav ul li.menu-item-has-children .sub-menu li a {
  padding: 10px 10px;
  font-size: 14px;
  display: block;
  transition: 0.3s;
}

.av_header nav ul li.menu-item-has-children .sub-menu li a:hover {
  background: #0d131d;
  color: #fff;
}

.av_header_menu {
  width: 100%;
  flex-basis: 460px;
  flex-grow: 1;
  display: flex;
  justify-content: flex-start;
}

.av_promo_page__heading {
  margin-bottom: 20px;
}

.av_promo_page__heading .row {
  justify-content: space-between;
  align-items: center;
}

.av_promo_page__heading .row img {
  width: 40%;
  height: 250px;
  object-fit: contain;
  background: #222;
  padding: 20px;
  border-radius: 15px;
}

.av_promo_page__heading .caption {
  width: 50%;
}

.av_promo_page__heading .av_promo_heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.av_section__title {
  padding: 0 0 20px 0;
  margin-bottom: 0 !important;
  font-family: "Secular One", sans-serif;
  font-size: 32px;
  color: #0d131d;
}

.av_entry__content p a {
  color: #0d131d;
}

.av_entry__content iframe {
  width: 49%;
}

.av_entry__content img {
  max-width: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.av_entry__content .alignleft {
  float: left;
  margin-right: 10px;
  border-radius: 10px;
}

.av_entry__content .alignright {
  float: right;
  margin-left: 10px;
  border-radius: 10px;
}

.av_entry__content .aligncenter {
  margin: 0 auto;
  border-radius: 10px;
}

.av_entry__content .size-full {
  width: 100%;
  height: auto;
}

.av_entry__content h1,
.av_entry__content h2,
.av_entry__content h3,
.av_entry__content h4,
.av_entry__content h5 {
  font-family: "Secular One", sans-serif;
  margin-bottom: 20px;
  color: #0d131d;
}

.av_entry__content p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 2;
}

.av_entry__content ul,
.av_entry__content ol {
  padding: 0 0 0 20px;
  margin-bottom: 20px;
}

.av_entry__content ul li,
.av_entry__content ol li {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 10px;
}

.av_entry__content form {
  width: 100%;
  padding: 40px;
  background: #fff;
  border-radius: 10px;
  margin: 20px 0 0 0;
}

.av_entry__content .wpcf7-form {
  background: #f7f7f7;
}

.av-comments-bg {
  background: #f7f7f7 !important;
}

.av-comment-name {
  font-weight: bolder;
  color: var(--dark);
}

.av_entry__content form h2 {
  margin-bottom: 10px;
}

.av_entry__content form p {
  margin-bottom: 0;
}

.av_entry__content form input,
.av_entry__content form textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  min-height: 25px;
  border-radius: 10px;
  border: 1px solid #f4f4f4;
}

.av_entry__content form input::placeholder,
.av_entry__content form textarea::placeholder {
  color: #ddd;
}

.av_entry__content form textarea {
  margin-bottom: 0;
  height: 80px;
}

.av_entry__content form .btn {
  margin-top: 10px;
  border: 1px solid #ff2209;
}

section {
  margin: 40px 0;
}

.av_banner {
  margin: 0 0 40px 0;
}

.av_banner .row {
  max-width: 100%;
  align-items: center;
}

.av_banner .av_banner__image {
  width: 100%;
}

.av_banner .av_banner__image .mainSwiper {
  width: 100%;
}

.av_banner .av_banner__image .swiper-slide {
  width: 100%;
  height: 490px;
  position: relative;
}

.av_banner .av_banner__image .swiper-slide img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  border-radius: 0 0 15px 15px;
}

.av_banner .av_banner__image .swiper-slide .btn {
  position: absolute;
  bottom: 10%;
  right: 10%;
}

.av_banner .av_banner__image .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  border-radius: 0;
  width: 3%;
  height: 2px;
}

.av_banner .av_banner__caption {
  padding: 0 20px;
  text-align: justify;
}

.av_casinos .row {
  gap: 10px;
}

.av_casinos .av_casinos__item {
  flex-basis: 100%;
  background: #222;
  padding: 10px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-around;
}

.av_casinos .av_casinos__item.col-3 {
  flex-basis: 32%;
  flex-grow: 1;
  flex-direction: column;
  justify-content: center;
}

.av_casinos__item.col-3 .rating, .av_casinos__item.col-3 .bonus {
  margin: 10px 0;
}

.av_casinos .av_casinos__item .buttons .btn-simple {
  display: inline-flex;
  margin-top: 10px;
}

.top__rated {
  text-transform: uppercase;
  position: absolute;
  top: -10px;
  padding: 10px;
  background: #ff2209;
  color: #fff;
  right: -10px;
  /* border-radius: 10px; */
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.29);
}

.bonus__size {
  font-size: 14px;
  text-align: center;
  color: #fff;
}

.av_casinos {
  max-width: 1070px;
  margin: 0 auto;
}

.av_casinos .av_casinos__item .item__title {
  color: #fff;
  font-weight: bolder;
  text-align: center;
  font-size: 12px;
}

.av_casinos__item__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 240px;
}

.av_casinos__item__buttons .btn {
  width: 100%;
  max-width: 200px;
}

.av_casinos .av_casinos__item .item__logo {
  width: 100%;
  height: 65px;
  object-fit: contain;
  display: block;
}

.av_casinos .av_casinos__item .btn {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  font-size: 14px;
}

.av_casinos .av_casinos__item .btn-simple {
  font-size: 7px;
  border: 1px solid #fff;
  width: 85%;
}

.av_footer {
  background: #f3f4f8;
  padding: 40px;
}

.av_footer .row {
  justify-content: space-between;
  flex-wrap: wrap;
}

.av_footer .row .item {
  flex-basis: 49%;
}

.av_footer .navs {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.av_footer nav ul {
  list-style: none;
}

.av_footer nav ul li a {
  color: #0d131d;
  text-decoration: none;
  padding: 8px 0;
  display: block;
  font-size: 14px;
}

.av-footer-menu-title {
  font-weight: bolder;
  color: #0d131d;
  margin-bottom: 10px;
}

.av_footer nav ul li.menu-item-has-children .sub-menu {
  display: none;
}

.av_footer .item_copyright {
  font-size: 14px;
  line-height: 1.5;
}

.av_footer p {
  font-size: 14px;
  line-height: 1.5;
}

.av_faq_section .item {
  width: 100%;
  margin-bottom: 10px;
}

.av_faq_section .item:last-child {
  margin-bottom: 0;
}

.av_faq_section .item span {
  cursor: pointer;
  display: block;
  padding: 10px;
}

.av_faq_section .item .question {
  border-bottom: 1px solid #bababa;
  background: #0d131d;
  color: #fff;
}

.av_faq_section .item .answer {
  display: none;
  font-size: 16px;
  line-height: 1.5;
  color: #525252;
  background: #efefef;
}

.av_faq_section .item .answer.active {
  display: block;
}

.mobile-only {
  display: none;
}

.all_com_pr span:before {
  color: #FB9C30;
}

.com_block_star {
  margin: 10px 0;
}

.comments-rating {
  border: none;
  padding: 0;
  margin-left: 0;
}

.comments-rating label {
  display: inline-block;
  font-size: 18px;
}

.rating-container {
  font-size: 0;
  unicode-bidi: bidi-override;
  direction: rtl;
}

.rating-container * {
  font-size: 1.4rem;
}

.rating-container > input {
  display: none;
}

.rating-container > input + label {
  font-family: "dashicons";
  display: inline-block;
  overflow: hidden;
  text-indent: 9999px;
  width: 1em;
  white-space: nowrap;
  cursor: pointer;
  margin: 0;
}

.rating-container > input + label:before {
  display: inline-block;
  text-indent: -9999px;
  content: "\f154";
  color: #888;
}

.rating-container > input:checked ~ label:before,
.rating-container > input + label:hover ~ label:before,
.rating-container > input + label:hover:before {
  content: "\f155";
  color: #FB9C30;
  text-shadow: 0 0 1px #888;
}

.rating-container > .star-cb-clear + label {
  text-indent: -9999px;
  width: 0.5em;
  margin-left: -0.5em;
}

.rating-container > .star-cb-clear + label:before {
  width: 0.5em;
}

.rating-container:hover > input + label:before {
  content: "\f154";
  color: #888;
  text-shadow: none;
}

.rating-container:hover > input + label:hover ~ label:before,
.rating-container:hover > input + label:hover:before {
  content: "\f155";
  color: #FB9C30;
  text-shadow: 0 0 1px #888;
}

.comment-respond {
  margin: 1.5rem 0 0 0;
}

.comment-respond h3 {
  margin-bottom: 0.75rem;
}

.comments-area .comment-form .comment-form-author label,
.comments-area .comment-form .comment-form-email label,
.comments-area .comment-form .comment-form-comment label {
  display: block;
  margin-bottom: 0.5rem;
}

.comments-area .comment-form input,
.comments-area .comment-form textarea {
  border-radius: 8px;
  color: #0d131d;
  padding: 0.5rem 0 0.5rem 0.5rem;
  border: 1px solid #0d131d;
}

.comments-area .comment-form input::placeholder,
.comments-area .comment-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.comments-area .comment-form textarea {
  width: 50%;
  height: 100px;
}

.comments-area .comment-form input {
  width: 50%;
}

.comments-area .comment-form .submit {
  background: #ff2209;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  padding: 0.75rem;
  cursor: pointer;
}

.comments-area .comment-notes {
  display: none;
}

.comments-area .comment-list {
  list-style: none;
  padding: 0;
}

.comments-area .comment-list li {
  width: 100%;
  padding: 20px;
  background: #efefef;
  margin-bottom: 0.75rem;
}

.comments-area .comment-list li a {
  text-decoration: none;
  display: none;
}

.comments-area .comment-list li time {
  display: none;
}

.comments-area .comment-list li p {
  margin: 1rem 0;
  font-size: 14px;
  line-height: 22px;
}

.comments-area .comment-form-url {
  display: none;
}

.comments-area .comment-form-email {
  display: none;
}

.dashicons-star-filled {
  color: #fb9c30 !important;
}

.av_casinos__item_heading {
  width: 100%;
  max-width: 260px;
  justify-content: center;
  text-align: center;
}

.rating {
  width: 100%;
  max-width: 220px;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}

.title {
  width: 100%;
  color: #fff;
  font-weight: bolder;
  margin-bottom: 10px;
  text-align: center;
}

.vote__stars {
  display: flex;
  gap: 5px;
}

.jq-star svg {
  width: 16px;
  height: 16px;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f7f7f7;
  padding: 16px 16px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}

.faq-question svg {
  width: 24px;
  height: 24px;
  color: var(--title-color);
}

.faq-answer {
  padding: 16px 32px;
  font-size: 14px;
  line-height: 1.8;
  background: var(--gradient);
  display: none;
}

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

.faq-item:first-child .faq-question {
  border-radius: 10px 10px 0 0;
}

.faq-item:last-child .faq-answer, .faq-item:last-child .faq-question {
  border-radius: 0 0 10px 10px;
  border-bottom: 0;
}

.faq-question-title {
  margin-bottom: 0 !important;
  font-size: 18px;
  line-height: 1.5;
}

.av-frame-wrapper {
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.av-frame-ajax-loaded {
  min-height: 450px;
}

.av-game-chars-mobile {
  display: none;
  margin: 0 10px;
}

.av-game-chars-mobile .av-game-chars {
  display: none;
}

.av-game-chars-mobile .av-aside-listing-title {
  background: #fff !important;
  border: 1px solid var(--dark);
  color: var(--dark);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.av-aside-listing-title .av-chars-dropdown {
  display: none;
}

.av-comments-form {
  position: relative;
}

.av-comments-accepted {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(211, 211, 211, 0.3960784314);
  border-radius: 10px;
  transition: 0.3s opacity;
  backdrop-filter: blur(20px);
}

.av-comments-accepted-active {
  opacity: 1;
  visibility: visible;
}

.av-comments-accepted svg {
  width: 120px;
  height: 120px;
  color: #72a24c;
}

.av-footer-logo {
  display: block;
  margin: 0 0 20px 0;
  width: 130px;
  height: 99px;
}

.av-footer-logo img {
  width: 100%;
  object-fit: contain;
  height: auto;
}

.av-footer-copyright {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.av-footer-caption {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.av-footer-gallery {
  display: flex;
  gap: 16px;
  align-items: center;
}

.av_footer .navs {
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  max-width: 40%;
  justify-content: space-between;
}

.av-casino-chars {
  margin: 0 0 10px 0;
  background: #f7f7f7;
  border-radius: 10px;
}

.av-casino-char {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding: 12px 12px;
  justify-content: space-between;
}

.av-char-key {
  text-align: left;
}

.av-char-value {
  text-align: right;
  font-weight: bolder;
}

@media (max-width: 1024px) {
  .av_promo_page__heading .row {
    flex-wrap: wrap;
  }
  .av_promo_page__heading .row img {
    width: 100%;
    margin-bottom: 20px;
  }
  .av_promo_page__heading .row .caption {
    width: 100%;
  }
  .av_entry__content iframe {
    width: 100%;
    margin-bottom: 10px;
    padding: 0 10px;
  }
  .av_entry__content form {
    width: 100%;
  }
  .av_entry__content form p {
    width: 100%;
  }
  .container {
    padding: 0 10px;
  }
  .mobile-only {
    display: block;
  }
  .av_header {
    display: none;
  }
  .av_header .row {
    flex-wrap: wrap;
  }
  .av_casinos .row {
    flex-wrap: wrap;
    gap: 10px;
  }
  .av_casinos .av_casinos__item {
    width: 100%;
    max-width: 100%;
    flex-grow: 1;
    gap: 10px;
  }
  .av_casinos__item .rating, .av_casinos__item .bonus {
    display: none;
  }
  .av_casinos .av_casinos__item.col-3 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .av_casinos .av_casinos__item:nth-child(2) {
    order: -1;
  }
  .av_casinos .av_casinos__item .btn {
    width: 100%;
    font-size: 12px;
    white-space: nowrap;
  }
  .top__rated {
    top: -20px;
    right: -5px;
    font-size: 10px !important;
  }
  .av_casinos .av_casinos__item .btn-simple {
    font-size: 10px;
    padding: 5px;
  }
  .menu-mobile.active {
    left: 0;
  }
  .menu-mobile {
    width: 50%;
    height: 100vh;
    position: fixed;
    z-index: 500;
    left: -100%;
    top: 0;
    overflow-y: scroll;
    padding: 120px 0 0 0;
    background: #f3f4f8;
    transition: 0.3s;
  }
  .menu-mobile::-webkit-scrollbar {
    width: 0;
  }
  .menu-mobile .wrap {
    width: 100%;
  }
  .menu-mobile ul {
    list-style: none;
  }
  .menu-mobile ul li a {
    padding: 10px;
    display: block;
    font-size: 16px;
    color: #0d131d;
    text-decoration: none;
  }
  .menu-mobile ul li.menu-item-has-children > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .menu-mobile ul li.menu-item-has-children > a:after {
    content: "";
    background: url(img/dropdown.png) no-repeat;
    background-size: contain;
    width: 18px;
    height: 18px;
    display: block;
  }
  .menu-mobile ul li.menu-item-has-children ul.sub-menu {
    width: 100%;
    height: 0;
    visibility: hidden;
    opacity: 0;
  }
  .menu-mobile ul li.menu-item-has-children ul.sub-menu li a {
    font-size: 12px;
  }
  .menu-mobile ul li.menu-item-has-children ul.sub-menu.active {
    height: 100%;
    visibility: visible;
    opacity: 1;
    background: #efefef;
  }
  .av_header__logo img {
    transform: translateY(10px);
    width: 100px;
    height: 55px;
  }
  .av_header__logo:before {
    top: 98%;
    height: 60px;
    width: 180px;
  }
  .av_mobile_header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 505;
    width: 100%;
    backdrop-filter: blur(40px);
    background: rgba(52, 52, 52, 0.8);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px;
  }
  .av_mobile_header .menu-trigger {
    background: #0d131d;
    color: #fff;
    border-radius: 10px;
    border: none;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .av_mobile_header .menu-trigger svg {
    width: 20px;
    height: 20px;
  }
  .av_banner .av_banner__image .swiper-slide {
    height: 250px;
  }
  body.overflow-disabled {
    overflow-y: hidden;
  }
  .av_footer {
    padding: 20px 0;
  }
  .av_footer .row .item {
    flex-basis: 100%;
  }
  .av_footer .navs {
    flex-wrap: wrap;
  }
  .av_footer .navs nav {
    width: 100%;
  }
  .av_footer nav ul {
    flex-wrap: wrap;
  }
  .av_header .lang .lang_dropdown, .av_mobile_header .lang .lang_dropdown {
    left: -100%;
    display: none;
  }
}
.av_header {
  display: none;
}

.av_header .container {
  position: relative;
}

.av_header .lang .lang_dropdown, .av_mobile_header .lang .lang_dropdown {
  left: -100%;
}

.av_banner .av_banner__image .mainSwiper {
  z-index: -1;
}

.frameContainer {
  width: 100%;
  margin: 0 auto 20px;
  max-width: 650px;
  position: relative;
  background: #222;
  height: 450px;
}

.frameContainer iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.frameContainer .preloader {
  width: 42px;
  height: 42px;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.av_casinos .row {
  flex-wrap: wrap;
}

.av-game-banner {
  padding: 70px 0 20px 0;
  margin: 0;
}

.av-game-image {
  padding: 60px 0;
}

.av-game-image-img {
  transition: 0.1s;
}

.av_entry__content table {
  border: 1px solid #0d131d;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.av_entry__content table td,
.av_entry__content table th {
  border: 1px solid #0d131d;
  padding: 10px;
  border-collapse: collapse;
}

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

.av-content-flex {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.av-content-flex .av_entry__content {
  width: 100%;
  flex-grow: 1;
  flex-basis: 74%;
}

.av-content-sidebar {
  position: sticky;
  top: -270px;
  align-self: flex-start;
  width: 100%;
  border-radius: 10px;
  max-width: calc(26% - 20px);
}

.av-game-chars {
  background: #f7f7f7;
  padding: 10px 20px;
  border-radius: 0 0 10px 10px;
}

.av-char {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

.av-char:last-child {
  border-bottom: 0;
}

.av-char div {
  width: 100%;
  max-width: 50%;
  padding: 10px 10px;
}

.av-char .char-name {
  text-transform: uppercase;
  color: var(--dark);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.av-char .char-value {
  font-size: 14px;
  font-weight: bolder;
  line-height: 1.5;
  color: var(--title-color);
}

.av-aside-listing {
  position: sticky;
  top: 0;
  margin: 20px 0 0 0;
}

.listing-title {
  font-weight: bolder;
  font-size: 18px;
  text-align: center;
  margin-bottom: 10px;
}

.av-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.av-game-image {
  width: 100%;
  max-width: 50%;
  display: flex;
  justify-content: center;
}

.av-game-image img {
  object-fit: contain;
  width: 100%;
}

.av-game-banner .listing-title {
  font-size: 24px;
  text-align: center;
  color: #fff;
}

.av-banner-listing {
  width: 100%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.av-banner-casino {
  padding: 10px;
  border-radius: 10px;
  background: #1f1f1f;
  display: flex;
  width: 100%;
  max-width: 740px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.av-banner-casino .casino-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #303030;
  border-radius: 10px;
  font-weight: bolder;
  font-size: 24px;
  width: 100%;
  height: 80px;
  max-width: 25%;
  text-decoration: none;
  gap: 10px;
  padding: 8px;
  overflow: hidden;
}

.av-banner-casino .casino-logo img {
  object-fit: contain;
  height: auto;
  width: 100%;
  transition: 0.3s transform;
}
.av-banner-casino .casino-logo img :hover {
  transform: scale(1.05);
}

.av-banner-casino .casino-bonus {
  display: flex;
  width: 100%;
  max-width: 70%;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 0 10px 0 20px;
  border-left: 1px solid var(--dark);
  border-right: 1px solid var(--dark);
}

.av-banner-casino .btn-play {
  max-width: 15%;
}

.av-banner-casino .casino-bonus .bonus-title {
  display: block;
  font-weight: normal;
  font-size: 14px;
}

.av-frame {
  width: 100%;
}

.av-frame iframe {
  width: 100%;
}

.av-content-casino-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.av-btn-showmore-wrap {
  display: flex;
  margin-bottom: 20px;
  justify-content: center;
}

.av-btn-showmore {
  border: none;
  text-transform: capitalize;
}

.av-hide-casinos-block {
  opacity: 0;
  visibility: hidden;
  height: 0;
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: 0.3s opacity, 0.3s height;
}

.av-hide-casinos-block-active {
  opacity: 1;
  visibility: visible;
  height: auto;
  position: static;
}

.av-content-casino {
  max-width: 100%;
}

.av-banner-casino .casino-bonus .bonus-descr {
  font-size: 20px;
  width: 100%;
  max-width: 100%;
  font-weight: bolder;
  text-align: center;
  white-space: nowrap;
  color: #d4af38;
}

.av-aside-listing-title {
  background: #1e0235;
  color: #fff;
  font-weight: bolder;
  border-radius: 10px 10px 0 0;
  padding: 10px;
  text-align: center;
}

.av-aside-listing {
  border-radius: 10px;
  align-self: auto;
}

.av-aside-casino {
  display: flex;
  align-items: center;
  padding: 16px;
  background: #f7f7f7;
  justify-content: space-between;
}

.av-aside-casino:last-child {
  border-radius: 0 0 10px 10px;
}

.av-aside-casino .btn-play {
  border-radius: 10px;
  max-width: 32px;
}

.av-aside-casino .casino-logo {
  background: #310852;
  padding: 10px;
  border-radius: 10px;
  width: 100px;
}

.av-aside-casino-bonus {
  font-size: 14px;
  padding: 0 16px;
  font-weight: bolder;
  line-height: 1.8;
  width: 210px;
  color: var(--title-color);
}

.av-aside-casino .casino-logo img {
  object-fit: contain;
  width: 100%;
  height: 25px;
}

.av-comments {
  margin: 40px 0;
  padding: 40px;
  background: #f7f7f7;
  border-radius: 10px;
  gap: 10px;
}

.vote__stars {
  margin: 10px 0;
}

.av-comment {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
}

.av-comment-name date {
  font-size: 14px;
  font-weight: lighter;
  color: var(--dark);
}

.av-comments-bg {
  background: #f7f7f7;
}

.av-input-group span {
  display: block;
  font-weight: bolder;
  margin-bottom: 10px;
  color: var(--dark);
}

.av-author {
  display: flex;
  gap: 24px;
  background: #f7f7f7;
  padding: 24px 24px 0 0;
  border-radius: 10px;
  align-items: flex-end;
}

.av-author-image {
  width: 100%;
  max-width: 240px;
  height: 240px;
}

.av-author-caption {
  padding: 0 0 20px 0;
}

.av-user-name {
  font-weight: bolder;
  text-decoration: none;
  color: var(--dark);
  font-size: 16px;
  margin-bottom: 10px;
  display: block;
}

.av-author img {
  display: block;
  width: 100%;
  height: 100%;
  object-position: top center;
  object-fit: cover;
  border-radius: 0 0 0 10px !important;
}

.av-author-description p {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 10px;
}

.linked {
  color: blue;
}

.av-relative-game {
  padding: 10px;
  border-radius: 10px;
  text-decoration: none;
}

.av-relative-game img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.av_single-casino-logo {
  object-fit: contain;
}

.av-relative-title {
  color: #fff;
  font-weight: bolder;
  font-size: 24px;
  line-height: 1.5;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.av-relative-game-caption {
  display: flex;
  text-decoration: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px 0 0 0;
}

.av-relative-game-title {
  font-size: 16px;
  font-weight: 900;
}

.av-relative-game-provider {
  opacity: 0.55;
  font-size: 12px;
  letter-spacing: 0.35px;
}

.av-relative-controls {
  display: flex;
  align-items: center;
  gap: 5px;
}

.av-button-control {
  padding: 5px;
  border-radius: 10px;
  width: 32px;
  height: 32px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.swiper-button-disabled {
  opacity: 0.5;
}

.av_single-casino {
  margin: 0;
}

.av_single-casino-header {
  background: #1e0235;
  padding: 60px 0 30px 0;
}

.av_single-casino-header-container {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.av_single-casino-ratings {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 320px;
  gap: 12px;
}

.av_single-casino-bonus {
  padding: 20px 10px;
  border-radius: 10px;
  border: 1px solid #9244d0;
  color: #fff;
  flex-basis: 360px;
  text-align: center;
}

.av_bonus-title {
  font-weight: bolder;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.av_bonus-descr {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
}

.av_rating-block {
  color: #fff;
  width: 100%;
  flex-basis: calc(50% - 12px);
}

.av_rating-title {
  font-weight: 900;
  font-size: 14px;
}

.av-content-sidebar-casino {
  top: 0;
}

.av-table-contents {
  display: flex;
  flex-direction: column;
  background: #f7f7f7;
  border-radius: 10px;
}

.av-table-contents a {
  display: block;
  text-decoration: none;
  font-weight: 900;
  color: #1e0235;
  font-size: 14px;
  gap: 12px;
  padding: 10px 10px 10px 40px;
  position: relative;
}

.av-table-contents .active {
  color: #ff2209;
}

.av-table-contents a svg {
  width: 16px;
  height: 16px;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.av-table-contents a:first-child {
  border-radius: 10px 10px 0 0;
}

.av-table-contents a:last-child {
  border-radius: 0 0 10px 10px;
}

.av-table-contents a:hover {
  background: #efefef;
}

.av-casino-sidebar-logo {
  background: #3a2c4d;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px 10px 0 0;
  padding: 10px 0;
}

.av-casino-sidebar-logo img {
  object-fit: contain;
}

.av-without-chars {
  margin-bottom: 20px;
  border-radius: 10px;
}

.av-casino-sidebar-bonus {
  background: linear-gradient(-45deg, #ffffff, #eaeaea, #f1f1f1, #ffffff);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  margin: 0 0 20px 0;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 20px;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.av-casino-sidebar-bonus .btn-play {
  margin: 0 auto;
  box-shadow: 1px 3px 8px rgba(58, 44, 77, 0.45);
}

.av-casino-sidebar-bonus .av_bonus-descr {
  line-height: 1.5;
  color: #3a2c4d;
  padding: 20px 10px 10px;
}

@media (max-width: 1920px) {
  .av-body-es .av-banner-casino .btn-play, .av-body-pt .av-banner-casino .btn-play {
    font-size: 12px;
  }
  .av-body-es .av-banner-casino .casino-bonus .bonus-descr, .av-body-pt .av-banner-casino .casino-bonus .bonus-descr {
    font-size: 16px;
  }
}
@media (max-width: 1660px) {
  .av-game-image {
    max-width: 30%;
  }
  .av-flex {
    justify-content: center;
  }
  .av-banner-listing {
    max-width: 45%;
  }
  .av-game-image {
    max-width: 45%;
  }
  .av-banner-casino {
    justify-content: flex-start;
  }
  .av-banner-casino .btn-play {
    font-size: 12px;
  }
}
@media (max-width: 1468px) {
  .av-banner-casino .casino-bonus .bonus-descr {
    font-size: 16px;
  }
  .av-body-es .av-banner-casino .btn-play, .av-body-pt .av-banner-casino .btn-play {
    font-size: 10px;
  }
}
@media (max-width: 1366px) {
  .av-banner-casino .casino-logo {
    font-size: 18px;
  }
  .av-game-image {
    max-width: 49%;
  }
  .av-banner-listing {
    max-width: 49%;
  }
  .av-banner-casino .casino-bonus .bonus-descr {
    white-space: nowrap;
    font-size: 18px;
  }
  .av-banner-listing {
    padding: 0 16px;
  }
  .av-banner-casino .casino-bonus {
    border: none;
    padding: 0 10px;
  }
  .av_header .lang:first-child {
    max-width: 1%;
  }
  .av_header .row {
    justify-content: space-around;
  }
  .av_header .container {
    padding: 0 10px;
  }
}
@media (max-width: 1280px) {
  .av_header nav ul li a {
    font-size: 14px;
  }
  .av-banner-casino .casino-bonus .bonus-descr {
    font-size: 16px;
  }
  .av-banner-casino {
    gap: 8px;
  }
  .av-banner-casino .btn-play {
    white-space: nowrap;
    font-size: 12px;
  }
  .av-body-es .av-banner-casino .btn-play, .av-body-pt .av-banner-casino .btn-play {
    white-space: unset;
  }
  .av-body-pt .av_header__logo, .av-body-es .av_header__logo {
    max-width: 8%;
  }
  .av-body-pt .av_header__logo img, .av-body-es .av_header__logo img {
    width: 100%;
  }
}
@media (max-width: 1260px) {
  .av-game-chars {
    padding: 10px;
  }
  .av-aside-casino .casino-logo {
    width: 100%;
    max-width: 30%;
  }
  .av-aside-casino .casino-logo img {
    object-fit: contain;
    width: 100%;
  }
  .av-body-pt .av_header nav ul li a, .av-body-es .av_header nav ul li a {
    font-size: 12px;
  }
  .av-body-pt .av_header__logo, .av-body-es .av_header__logo {
    order: -1;
  }
  .av-body-de .av-banner-casino .btn-play {
    white-space: unset;
  }
  .av-body-de .av_entry__content form .btn {
    white-space: nowrap;
    min-width: 200px;
  }
}
@media (max-width: 1240px) {
  .av_casinos .av_casinos__item {
    flex-basis: 100%;
  }
}
@media (max-width: 1180px) {
  .av_header .lang .lang_item svg, .av_mobile_header .lang .lang_item svg {
    display: none;
  }
  .av_single-casino-header-container {
    flex-direction: column;
    align-items: center;
  }
  .av_single-casino-header-container * {
    flex-basis: unset;
  }
  .av_single-casino-ratings {
    flex-wrap: nowrap;
    width: 100%;
    justify-content: center;
  }
  .av_rating-block {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: calc(25% - 12px);
  }
  .av_header .lang .lang_dropdown.active, .av_mobile_header .lang .lang_dropdown.active {
    left: unset;
    right: 0;
  }
  .av-banner-listing {
    max-width: 55%;
  }
  .av-body-es .av-banner-listing {
    max-width: 100%;
  }
  .av-body-es .av-banner-casino .btn-play {
    white-space: unset;
    font-size: 10px;
  }
  .av-flex {
    padding-bottom: 20px;
    flex-wrap: wrap;
  }
  .av-game-banner {
    padding: 0 0 20px 0;
  }
  .av-game-image {
    max-width: 100%;
  }
  .av-game-image img {
    height: 200px;
  }
}
@media (max-width: 1160px) {
  .av-content-flex {
    flex-direction: column;
  }
  .av-content-sidebar {
    display: none;
  }
  .av-game-chars-mobile {
    display: flex;
    flex-direction: column;
  }
  .av-game-chars-mobile .av-aside-listing-title .av-chars-dropdown {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
  }
  .av-game-chars-mobile .av-game-chars {
    flex-direction: column;
    align-items: flex-start;
  }
  .av-game-chars-mobile .av-game-chars-active {
    display: flex;
  }
  .av-char {
    width: 100%;
  }
  .av-aside-casino .casino-logo {
    max-width: 15%;
    height: 35px;
  }
  .av-aside-casino .casino-logo img {
    object-fit: contain;
    height: 100%;
    width: 100%;
  }
  .av-content-flex .av_entry__content {
    max-width: 100%;
  }
  .av_footer .row .item {
    flex-basis: 50%;
  }
  .av-body-pt .av_header__logo, .av-body-es .av_header__logo {
    max-width: 5%;
  }
}
@media (max-width: 1024px) {
  .av-body-pt .av_header__logo, .av-body-es .av_header__logo {
    order: 0;
    max-width: 20%;
  }
  .av-banner-casino .casino-bonus {
    border-left: 0;
  }
  .av-banner-listing {
    max-width: 100%;
    padding: 0 10px;
  }
  .av-author {
    align-items: center;
  }
  .av-banner-casino .casino-bonus {
    text-align: center;
    padding: 0 15px;
    align-items: center;
  }
  .av-banner-casino .casino-bonus .bonus-descr {
    font-size: 14px;
    text-align: center;
  }
  .av-banner-casino .casino-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .av-banner-casino .btn-play {
    max-width: 100px;
    font-size: 12px;
  }
  .av-game-image {
    margin-bottom: 0;
    padding: 40px 0 0 0;
  }
  .av_footer .row {
    flex-direction: column-reverse;
    align-items: center;
  }
  .av_footer .navs {
    flex-direction: column;
    max-width: 100%;
  }
  .av_footer .row .item {
    flex-basis: 100%;
    max-width: 100%;
    width: 100%;
  }
  .av-footer-caption {
    width: 100%;
    max-width: 100%;
  }
  .av-footer-gallery {
    flex-wrap: wrap;
  }
}
@media (max-width: 640px) {
  .av_single-casino-ratings {
    flex-wrap: wrap;
  }
  .av_rating-block {
    max-width: calc(50% - 12px);
  }
  .av_footer .row {
    align-items: flex-start;
  }
  .footer_menu_item {
    width: 100%;
  }
  .av_bonus-descr {
    font-size: 20px;
  }
  .av-footer-menu-title {
    padding: 10px 0;
    border-bottom: 1px solid var(--dark);
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
  }
  .av-footer-menu-title:after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: url(img/dropdown.png) no-repeat;
    background-size: contain;
  }
  .footer_menu_item nav {
    display: none;
  }
  .footer_menu_item_active nav {
    display: block;
  }
  .av_footer .navs {
    gap: 0;
  }
}
@media (max-width: 550px) {
  .av-banner-casino .casino-logo {
    padding: 0;
  }
  .av-banner-casino .casino-bonus .bonus-descr {
    white-space: unset;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .av_casinos .av_casinos__item.col-3 {
    max-width: 32.4%;
  }
  .av_casinos__item .rating, .av_casinos__item .bonus {
    display: flex;
    max-width: 130px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (min-width: 1241px) and (max-width: 1278px) {
  .av_casinos .av_casinos__item {
    flex-basis: 100%;
  }
}
/**
ADDITIONAL STYLES USING CUSTOMIZE (ADD HERE)
 */
.bonus {
  width: 100%;
  max-width: 200px;
}

.av-game-image {
  width: 100%;
  max-width: 50%;
}

.av-game-image img {
  object-fit: contain;
  height: 220px;
}

@media (max-width: 1024px) {
  .av-game-image {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .av-game-image img {
    max-height: 330px;
  }
}
@media (max-width: 1000px) {
  .av-author {
    flex-direction: column-reverse;
  }
  .av-author-image {
    border-radius: 0;
    align-self: flex-start;
  }
  .av-author img {
    border-radius: 0;
  }
  .av-author h2 {
    padding: 0 20px;
  }
  .av-user-name {
    padding: 0 20px;
  }
  .av-user-socials {
    padding: 0 0 0 20px;
  }
  .av-author-description p {
    margin-bottom: 0 !important;
  }
  .av-author-description {
    padding: 0 20px;
  }
}
@media (max-width: 690px) {
  .faq-question-title {
    font-size: 14px;
  }
  .av-content-casino {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  .av_header__logo:before {
    z-index: -1;
  }
  .av-content-casino .casino-bonus {
    border: none;
  }
  .av-banner-casino .casino-bonus {
    border: none;
  }
  .av-banner-casino .casino-logo {
    height: 60px;
    max-width: 24%;
  }
  .av-banner-casino .casino-logo img {
    padding: 0 5px;
  }
  .av-content-casino .casino-logo {
    max-width: 50%;
    padding: 10px;
  }
  .av-banner-casino .btn-play {
    font-size: 10px;
    max-width: 75px;
  }
  .av-banner-casino .casino-bonus .bonus-title {
    font-size: 12px;
  }
  .av-flex {
    padding: 0 0 20px 0;
  }
  section {
    margin: 20px 0;
  }
  .av-relative-game img {
    height: 120px;
  }
  .av_header .lang .lang_item img, .av_mobile_header .lang .lang_item img {
    width: 24px;
    height: 24px;
  }
  .av_entry__content .alignright, .av_entry__content .alignleft {
    float: unset;
    margin: 10px auto;
    display: block;
  }
}
@media (max-width: 576px) {
  .av-game-image img {
    max-height: 220px;
  }
}
@media (max-width: 480px) {
  .av-game-image img {
    max-height: 180px;
  }
}
.av_entry__content img {
  display: block;
}

.av_entry__content .size-full {
  width: auto !important;
  height: auto;
}

.av-frame-ajax-loaded {
  width: 100%;
  position: relative;
  background: #222222;
  border-radius: 10px;
}

.av-frame-ajax-loaded iframe {
  border-radius: 10px;
}

.av-frame-preloader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

.header__langs {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: flex-start;
}
.header__langs .current {
  background: #d4af38;
  border-radius: 10px 0 0 10px;
  padding: 10px;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.header__langs .current img {
  width: 24px;
  height: 24px;
  border-radius: 10px;
}
.header__langs .dd {
  transition: 0.3s max-width;
  max-width: 0;
  background: #b49435;
  display: flex;
  flex-direction: column;
  border-bottom-left-radius: 10px;
}
.header__langs .dd a {
  text-transform: uppercase;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bolder;
  transition: 0.3s background-color;
}
.header__langs .dd a:hover {
  background: #d4af38;
}
.header__langs .dd img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 5px;
}

.langs.active .dd {
  max-width: 320px;
}
