:root {
  --gradient: linear-gradient(180deg, rgba(255, 255, 255, 1) 13%, rgba(207, 207, 218, 0.19) 123%);
  --listing-bg: #1d1028;
  --title-color: #160f1d;
  --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: #160f1d;
  border-radius: 10px;
}

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

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}
a {
  transition: 0.3s;
}
a:hover {
  color: #ff872a;
}
.row {
  display: flex;
}
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}
.container-fw {
  max-width: 100%;
  width: 100%;
  padding: 0 20px;
}
.btn {
  display: inline-flex;
  padding: 10px 5px;
  border-radius: 15px;
  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: #160f1d;
  color: #fff;
}
.btn-play {
  background: #ff872a;
  width: 100%;
  max-width: 150px;
}
.btn-simple {
  background: transparent;
  font-size: 12px;
  padding: 8px 15px;
}
.pragmatic-game-body {
  background-image: url(img/game-bg.png);
  background-size: cover;
  background-position-y: -20px;
}
.av_header {
  background: transparent;
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  padding: 8px 0;
  z-index: 500;
  transition: 0.3s background-color;
}
.av_header-active {
  background: #1d1028;
}
.av_header-static {
  position: sticky;
  top: 0;
  background: #1d1028;
}
.av_header:hover {
  background: #1d1028;
}
.av_header .container {
  padding: 0;
}
.av_header__logo {
  position: relative;
  width: 100%;
  max-width: 159px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.av_header__logo img {
  width: 100%;
  position: relative;
  z-index: 5;
}

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

.av_header .lang {
  width: 100%;
  max-width: 10%;
}
.av_header .lang:first-child {
  max-width: 0;
}
.av_header .lang,
.av_mobile_header .lang {
  position: relative;
  justify-content: flex-end;
  display: flex;
}
.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: #160f1d;
  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;
  font-weight: bolder;
  color: #fff;

  white-space: nowrap;
}
.av_header nav ul li.current-menu-item a {
  color: #ff872a;
}
.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: #160f1d;
  color: #fff;
}
.av_header_menu {
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: flex-end;
}
.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: #1d1028;
  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: #160f1d;
}
.av_entry__content p a {
  color: #160f1d;
}
.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: #160f1d;
}
.av_entry__content p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 2;
  color: #737377;
}
.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: 1.5;
  margin-bottom: 10px;
  color: #737377;
}
.av_entry__content form {
  width: 100%;
  padding: 40px;
  background: #f3f3f3;
  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 #737377;
}
.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 #ff872a;
}
.pragmatic-game-body .av_entry__content * {
  color: #fff;
  border-color: #fff;
}
.menu-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: flex-end;
}
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: 90vh;
  position: relative;
}
.av_banner .av_banner__image .swiper-slide img {
  width: 100%;

  height: auto;
}
.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: #1d1028;
  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: #ff872a;
  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: 36px 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: linear-gradient(180deg, #251533, #110816);
  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: #160f1d;
  text-decoration: none;
  padding: 8px 0;
  display: block;
  font-size: 14px;
}
.av-footer-menu-title {
  font-weight: bolder;
  color: #160f1d;
  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: #160f1d;
  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: #160f1d;
  padding: 0.5rem 0 0.5rem 0.5rem;
  border: 1px solid #160f1d;
}
.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: #ff872a;
  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) !important;
}
.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: #d3d3d365;
  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;
}

.pragmatic-slots:before {
  background: url(img/img_wave.png) no-repeat;
  background-size: contain;
  content: "";
  display: block;
  width: 100%;
  height: 64px;
  position: absolute;
  top: 0;
}
.pragmatic-slots:after {
  background: url(img/img_wave.png) no-repeat;
  background-size: contain;
  content: "";
  display: block;
  width: 100%;
  height: 64px;
  position: absolute;
  bottom: 0;
  transform: rotate(180deg);
}
.pragmatic-slots {
  position: relative;
  padding: 84px 0;
  background: #160f1d;
  margin: 40px 0 40px 0;
}

.pragmatic-slots-title {
  width: 100%;
  font-size: 40px;
  font-weight: 600;
  color: #fff !important;
}
.pragmatic-slots-descr {
  color: #fff;
}
.pragmatic-slots .container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.pragmatic-slot {
  max-width: calc(100% / 4 - 16px);
  width: 100%;
  position: relative;
}
.pragmatic-play-now {
}
.pragmatic-slot-image {
  display: block;
  position: relative;
}
.pragmatic-slot-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  background: #222222;
  transition: 0.3s;
}
.pragmatic-slot-image:hover .overlay {
  opacity: 0.75;
  visibility: visible;
}
.pragmatic-slot-image:hover .pragmatic-play-now {
  opacity: 1;
  visibility: visible;
}
.pragmatic-play-now {
  position: absolute;
  bottom: 30px;
  left: 50%;
  visibility: hidden;
  transform: translateX(-50%);
  background: #e1e1e1;
  color: #222;
  opacity: 0;
  border-radius: 30px;
  padding: 10px 15px;
  font-size: 13px;
  font-weight: bolder;
}
.pragmatic-play-now:hover {
  background: #ff872a;
}
.pragmatic-slot-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.pragmatic-slot-title {
  margin: 27px 0 10px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 0 32px;
  min-height: 44px;
}
.pragmatic-swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.pragmatic-swiper-caption {
  padding: 0 42px;
  max-width: 42%;
}
.pragmatic-swiper-title {
  color: #fff;
  font-size: 30px;
  font-weight: 900;
}
.pragmatic-swiper-title strong {
  color: #ff872a;
}
.pragmatic-swiper-descr {
  font-size: 22px;
  color: #fff;
  font-weight: 900;
  line-height: 28px;
}
.pragmatic-awards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 740px;
  margin: 0 auto;
}
.pragmatic-awards img {
  max-width: 100px;
  max-height: 65px;
  object-fit: contain;
}
.pragmatic-awards-title {
  font-weight: bolder;
  font-size: 22px;
  color: #fff;
  width: 100%;
  text-align: center;
}
.pragmatic-menu-row {
  padding: 40px 0;
  display: flex;
}
.pragmatic-menu-footer {
  width: 100%;
  flex-basis: calc(100% / 2 - 40px);
  padding: 0 60px;
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  list-style: none;
}
.pragmatic-socials {
  flex-basis: calc(100% / 2);
  flex-grow: 1;
  justify-content: center;
  display: flex;
  gap: 8px;
}
.pragmatic-menu-footer a {
  color: #fff;
  text-decoration: none;
  font-weight: bolder;
  font-size: 12px;
}
.pragmatic-social {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: bolder;
  font-size: 13px;
  color: #a68bbb;
  text-decoration: none;
}
.pragmatic-copyright {
  flex-basis: 50%;
}
.pragmatic-copyright p {
  font-size: 12px;
  color: #c6c6c6;
}
.pragmatic-gallery-wrap {
  flex-basis: 50%;
}
.pragmatic-gallery {
  display: flex;
  justify-content: center;
  gap: 12px;

  flex-wrap: wrap;
}
.pragmatic-gallery img {
  max-width: 180px;
  max-height: 60px;
  width: 100%;
  object-fit: contain;
}
.faq-singular .faq-question h3 {
  color: #222 !important;
}
.faq-singular .faq-item .faq-answer div {
  color: #222 !important;
}
@media (max-width: 1024px) {
  .pragmatic-game-body {
    background-position-y: -100px;
  }
  .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: #160f1d;
    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 {
    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%;
    background: #160f1d;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
  }

  .av_mobile_header .menu-trigger {
    background: #160f1d;
    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;
  }

  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 .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: #1d1028;
  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: 0;
  margin: 0;
}

.av-game-image {
  padding: 60px 0;
}
.av-game-image-img {
  transition: 0.1s;
  border-radius: 16px;
}
.av_entry__content table {
  border: 1px solid #160f1d;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.av_entry__content table td,
.av_entry__content table th {
  border: 1px solid #160f1d;
  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%;
  max-width: 74%;
}
.av-content-sidebar {
  align-self: flex-start;
  width: 100%;
  border-radius: 10px;
  max-width: calc(100% - 74% - 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;
  border-radius: 16px;
}

.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: #000;
  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: transparent;
  border-radius: 10px;
  font-weight: bolder;
  font-size: 24px;
  width: 100%;
  padding: 8px;
  max-width: 17%;
  text-decoration: none;
  gap: 10px;
}
.av-banner-casino .casino-logo img {
  object-fit: contain;
  width: 100%;
}

.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-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;
}
.av-aside-listing-title {
  background: var(--title-color);
  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: #1d1028;
  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;
}

.av-relative-game img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.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;
}
@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_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;
  }
  .pragmatic-menu-row {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 968px) {
  .pragmatic-slot-title {
    padding: 0 12px;
    margin: 18px 0;
  }
}
@media (max-width: 810px) {
  .pragmatic-slot-image img {
    height: 150px;
  }
}
@media (max-width: 768px) {
  .pragmatic-slot {
    max-width: calc(100% / 3 - 16px);
  }
  .av_banner .av_banner__image .swiper-slide {
    height: 70vh;
  }
  .pragmatic-swiper-caption {
    max-width: 68%;
  }
}
@media (max-width: 640px) {
  .av_footer .row {
    align-items: flex-start;
  }
  .footer_menu_item {
    width: 100%;
  }
  .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;
  }
  .pragmatic-slot {
    max-width: calc(100% / 2 - 16px);
  }
  .pragmatic-socials {
    flex-wrap: wrap;
    margin-top: 16px;
  }
  .pragmatic-gallery-wrap {
    flex-basis: 100%;
    width: 100%;
  }
  .pragmatic-gallery {
    justify-content: space-between;
  }
  .pragmatic-gallery img {
    max-width: unset;
  }
}
@media (max-width: 550px) {
  .av-banner-casino .casino-logo {
    padding: 0;
  }

  .av-banner-casino .casino-bonus .bonus-descr {
    white-space: unset;
  }
  .pragmatic-swiper-caption {
    max-width: 100%;
  }
}
@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: cover;
  width: 320px;
  max-height: 279px;
  height: 279px;
  border-radius: 16px;
}

@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: #1d1028222;
  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;
}
.av_casinos .av_casinos__item .item__logo {
  height: 20px;
}
@media (max-width: 1560px) {
  .av-banner-casino .btn-play {
    max-width: 160px !important;
  }
}
.av_entry__content iframe {
  width: 100%;
}
.top__rated {
  display: none;
}

.av_casinos .av_casinos__item .item__logo {
  max-height: 100px;
  height: 100% !important;
}

.images-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 36px auto;
  padding: 0 20px;
  box-sizing: border-box;
  img {
    max-width: 48% !important;
  }
}
@media (max-width: 768px) {
  .images-container {
    img {
      max-width: 100% !important;
    }
  }
}
footer {
  .pragmatic-gallery {
    align-items: center;
  }
}
.pragmatic-slot .pragmatic-play-now {
  min-width: 120px;
}

.av-game-content.jeux {
	 
  background-color: #302639;
  padding-bottom: 40px;
  padding-top: 40px;
  margin-bottom: 0;
  .title_jeux {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding: 42px 0 32px;
    margin: 0;
    color: #fff;
    opacity: 0.75;
  }
  hr {
    opacity: 0.3;
	   max-width:920px;
	  margin:0 auto;
  }

  .wr_jeuxs {
	   max-width:920px;
    padding: 0 40px;
    flex-wrap: wrap;
    display: flex;
	
    margin: 40px auto;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    img {
      max-width: 60px;
      max-height: 60px;
    }
  }
}
.searchform {
  input::placeholder {
    font-size: 12px;
  }
}

.av_header {
  background: #1d1028 !important;
}
.av_banner {
  padding-top: 50px;
}
.wr-fourth-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  h2 {
    flex-basis: 100%;
  }
}
.wr-fourth-posts.btn.btn-play {
  margin: 24px auto;
  min-width: 280px;
}
.pragmatic-slot-image:hover .pragmatic-play-now {
  text-align: center;
}
.av-frame-ajax-loaded.full-screen {
  iframe {
    height: 100vh;
  }
}

.av-flex_iframe {
  a {
    z-index: 99;
  }
}
.av-flex_iframe {
  position: relative;
}
.btn-open-full-screen-frame {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  color: white;
  background: red;
  border-radius: 8px;
  border: none;
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 999;
  svg {
    height: 30px;
  }
}
.pragmatic-swiper-btn_slots {
  min-width: 100px;
  background: #ff872a;
  display: flex;
  border: none;
  border-radius: 30px;
  padding: 10px;
  color: white;
  text-decoration: none;
  font-size: 28px;
  line-height: 1.5;
  min-width: 280px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  justify-content: center;
}
.searchform {
  margin: 0 16px;
  div {
    display: flex;
    flex-direction: row;
    height: 40px;
    gap: 10px;
    input {
      height: 40px;
      border: none;
      padding: 10px;
      display: flex;
      border-radius: 8px;
    }
    #searchsubmit {
      background: #f19022;
      width: 40px;
      height: 40px;
      border: none;
      border-radius: 8px;

      svg {
        height: 70%;
      }
      svg:hover {
        cursor: pointer;
      }
    }
  }
}
.search-item {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-direction: row;
  margin-bottom: 24px;
  img {
    height: 160px;
    min-width: 160px;
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
  }
  a {
    text-decoration: none;
    color: #f19022;
  }
  p {
    color: #555;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}

.av_banner .av_banner__image .swiper-slide {
  background: black;
}
.av_banner .pragmatic-swiper-slide_picture {
  max-width: 50%;
  left: auto !important;
  right: 0 !important;
  object-fit: contain !important;
  img {
    object-fit: contain !important;
  }
}
.pragmatic-swiper-btn_slots:hover {
  color: white;
}
.pragmatic-swiper-btn_slots_all_banner {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
}
.pragmatic-swiper-caption {
  max-width: 50%;
  height: 100%;
  display: flex;
  gap: 36px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

@media (max-width: 992px) {
  .searchform {
    margin: 5px;
  }
  .searchform {
    div {
      position: relative;
      input {
        width: 100%;
      }
    }
    #searchsubmit {
      position: absolute;
      right: 0;
    }
  }
  .pragmatic-swiper-btn_slots {
    font-size: 18px;
    line-height: 1.1;
    min-width: 180px;
    font-weight: 700;
  }
  .pragmatic-swiper-caption {
    max-width: 100%;
    gap: 24px;
    justify-content: flex-end;

    padding-bottom: 35px !important;
  }
  .av_banner .pragmatic-swiper-slide_picture {
    top: 0;
    max-width: 100%;
    left: 0 !important;
    img {
      height: auto !important;
    }
  }
}
.menu-trigger-close {
  border: none;
  background: transparent;
  margin: 0 0 20px 12px;
  svg {
    height: 24px;
  }
}
.av_banner__image {
  z-index: 0 !important;
}
.av_header .lang,
.av_mobile_header .lang {
  margin: 0 20px;
  color: white;
}
.menu-mobile.active {
  z-index: 999;
}
.menu-mobile {
  padding-top: 20px;
}
.av_banner .av_banner__image .swiper-pagination .swiper-pagination-bullet {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  z-index: 999;
}

.pragmatic-swiper-slide_picture {
  width: 100%;
}
.av-flex_iframe {
  a {
    color: #ff872a;
    text-decoration: none;
  }
}

.av_entry__content.page {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .menu-mobile ul li.menu-item-has-children > a {
    z-index: -9;
    position: relative;
  }
  .menu-mobile ul li.menu-item-has-children ul.sub-menu li a {
    z-index: 9999;
    position: relative;
  }
  #searchform {
    margin: 10px;
    div {
      position: relative;
      right: 0;
      input {
        width: 100%;
      }
    }
    #searchsubmit {
      position: absolute;
      right: 0;
    }
  }
  .av_mobile_header.mobile-only {
    flex-wrap: nowrap;
  }
}
.btn-show-all {
  width: 100%;
  max-width: 250px;
  margin: 24px auto;
  font-size: 14px;
  background: #ff872a;
  display: flex;
  border: none;
}
#breadcrumbs {
  a {
    color: #ff872a !important;
    text-decoration: none;
    font-weight: bold;
  }
}
.sub-menu {
  min-width: 200px;
  left: 0 !important;
  transform: translatex(0) !important;
  overflow: hidden !important;
  background: #f0f0f1 !important;
  color: #3c434a;
  max-height: inherit !important;
}
.av_header nav ul li.menu-item-has-children .sub-menu li a {
  padding: 10px 10px;
  font-size: 14px;
  display: block;
  transition: 0.3s;
  color: #3c434a;
  white-space: normal;
}
.wr-av-list-casinos {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 16px;
  margin: 16px auto;
}
.av-game-banner .av-flex {
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.faq__items.faq-singular {
  .faq-question {
    background: #1d1028;
    border-bottom: none;
  }
  .faq-question * {
    color: white !important;
    font-weight: bold !important;
  }
  .faq-answer {
    background: transparent !important;
  }
  .faq-answer div {
    color: white !important;
  }
}
.av_banner .av_banner__image .swiper-slide {
  height: 90vh;
  width: 100%;
}
.av-flex_iframe {
  width: 100%;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  .av-frame-wrapper {
    width: 100%;
  }
  a {
    background: #ff872a;
    display: inline-flex;
    padding: 15px;
    border-radius: 15px;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    font-weight: bolder;
    justify-content: center;
    text-align: center;
    min-width: 280px;
  }
}

.pragmatic-swiper-slide_picture {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  z-index: -1;
  img {
    object-fit: cover !important;
    height: 100% !important;
  }
}
.av_casinos .av_casinos__item .item__logo {
  height: 20px;
}
@media (max-width: 1560px) {
  .av-banner-casino .btn-play {
    max-width: 160px !important;
  }
}
.av_entry__content iframe {
  width: 100%;
}
.top__rated {
  display: none;
}
@media (max-width: 1024px) {
  .pragmatic-menu-row {
    flex-direction: row;
    align-items: center;
  }
  .pragmatic-socials {
    flex-direction: column;
    gap: 30px;
	  height:100%;
	  justify-content:space-between;
	  margin-left:20px;
  }
  .pragmatic-menu-footer {
    flex-direction: column;
    text-align: left;
    gap: 20px;
    padding: 0;
    justify-content: space-between;
    height: 100%;
  }
}
@media (max-width: 992px) {
  .av_banner {
    padding-top: 0px;
  }
  .av-flex_iframe {
    padding-top: 60px;
    .btn-open-full-screen-frame {
      top: -60px;
    }
  }
}

@media (max-width: 768px) {
  .av_banner .av_banner__image .swiper-slide {
    height: 60vh;
  }
  .av-frame-wrapper {
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0px;
  }
  .av-frame iframe {
    height: 300px;
  }
  .av-frame-ajax-loaded {
    min-height: 300px;
    height: 300px;
  }
  .pragmatic-swiper-caption {
    width: 100%;
    max-width: 100%;
    background: #15141461;
    height: 100%;
    left: 0;
    padding: 0;
  }
  .pragmatic-swiper-title,
  .pragmatic-swiper-descr {
    padding-bottom: 0px;
    font-size: 16px;
    line-height: 1.1;
  }
}
@media (max-width: 560px) {
  .av_mobile_header.mobile-only {
    flex-wrap: wrap;
  }
  .av-banner-casino {
    flex-direction: column;
  }
  .table_wrapper {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .av_404__content {
    margin-top: 104px;
    margin-bottom: 104px;
    display: flex;
    flex-direction: column;
    gap: 34px;
    align-items: center;
  }
  .h1-404 {
    font-size: 38px;
  }
  .sub_title_404 {
    font-weight: bold;
    font-size: 22px;
  }
}
.slots-search {
  width: 100%;

  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(255, 135, 42, 0.3);
}
.slots-search-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.slots-search label {
  color: #fff;
  font-weight: 600;
  font-size: 26px;
  margin: 0 0 10px 0;
  display: block;
}

.search-input-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  width: 100%;
}

.slot-search-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 14px;
  color: #160f1d;
  transition: all 0.3s ease;
}

.slot-search-input:focus {
  outline: none;
  background: #fff;
  border-color: #ff872a;
  box-shadow: 0 0 5px rgba(255, 135, 42, 0.3);
}

.slot-search-input::placeholder {
  color: #666;
}

.slot-search-btn {
  background: #ff872a;
  border: none;
  border-radius: 8px;
  padding: 12px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slot-search-btn:hover {
  background: #e6761f;
  transform: translateY(-1px);
}

.slot-search-btn svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.clear-search {
  color: #ff872a;
  text-decoration: none;
  font-size: 14px;
  padding: 5px 10px;
  border: 1px solid #ff872a;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: inline-block;
}

.clear-search:hover {
  background: #ff872a;
  color: #fff;
}

.no-results-message {
  text-align: center;
  color: #fff;
  font-size: 16px;
  padding: 20px;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 8px;
  margin: 20px 0;
}
@media (max-width: 640px) {
  .av_entry__content table td,
  .av_entry__content table th {
    font-size: 12px;
  }
  .pragmatic-gallery {
    justify-content: center;
  }
}
.game-info-content {
  table td,
  table th {
    border: 1px solid #3a2452 !important;
  }
  table {
    border: none;
    margin-top: 36px;
    margin-bottom: 36px;
  }
  table tbody {
    tr:nth-of-type(1) {
      border-bottom: solid 2px #b9671d !important;
      th {
        border-top: none !important;
        text-transform: uppercase;
        border-bottom: solid 2px #3a2452 !important;
        color: #3a2452;
        text-align: left;
      }
    }
    tr:last-of-type {
      border-bottom: none !important;
      td {
        border-bottom: none !important;
      }
    }

    th,
    td {
      border-right: none !important;
      border-left: none !important;
    }
  }
  td:first-child {
    background: inherit !important;
    color: white !important;
  }

  tr:nth-child(odd) {
    background-color: #2e1b48 !important;
  }
  tr:nth-child(even) {
    background-color: #25153b !important;
  }
}
@media (max-width: 992px) {
	.pragmatic-gallery-wrap {
		margin-bottom:36px;
		margin-top:36px;
	}
	.pragmatic-menu-row{
padding:20px;
	}
  .game-info-content {
    & table tbody {
      & tr:nth-of-type(1) {
        th {
          font-size: 12px;
        }
      }
    }
  }
  td,
  thead th {
    font-size: 12px;
    width: auto;
  }
}
@media (max-width: 768px) {
  .game-info-table {
    border-collapse: collapse;
    width: 100%;
    min-width: 100%;
    td,
    thead th {
      width: 100% !important;
    }
  }
}

