* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}
h1,
h2,
h3,
h5,
.title,
.logo {
  font-family: "Montserrat", sans-serif;
}
a {
  text-decoration: none;
}
.flex {
  display: flex;
}
.f-al-center {
  align-items: center;
}
.f-jc-between {
  justify-content: space-between;
}
.f-jc-center {
  justify-content: center;
}
.f-gap-12 {
  gap: 12px;
}
.f-gap-24 {
  gap: 24px;
}
.f-wrap {
  flex-wrap: wrap;
}
.f-jc-end {
  justify-content: flex-end;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  font-weight: bolder;
  transition: 0.3s opacity;
  border: none;
  width: 100%;
  max-width: 180px;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover {
  opacity: 0.75;
}
.section {
  padding: 24px;
}
.page__section {
  padding: 64px 24px;
}
aside {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 220px;
  height: 100vh;
}
.logo,
.custom-logo-link {
  font-weight: bolder;
  display: flex;
  justify-content: center;
  padding: 19px 0;
  width: 100%;
  max-width: 240px;
  font-size: 18px;
}
.logo img,
.custom-logo-link img {
  object-fit: contain;
  width: 100%;
}
.current__lang {
  cursor: pointer;
}
.langs_dropped {
  position: absolute;
  top: 0;
  padding: 12px;
  right: -9999px;
  transition: 0.3s right;
  display: none;
}
.langs_dropped a img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.langs_dropped_active {
  display: block;
  right: 5%;
  border-radius: 8px;
  background: white;
  top: 60%;
}
.menu {
  list-style: none;
}
.langs_dropped a {
  color: white;
  margin-bottom: 5px;
}
.menu a {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.3s opacity;
}
.menu a:hover {
  opacity: 0.75;
}
.menu .current-menu-item a {
  opacity: 0.75;
}
.tags-flex {
  position: relative;
}
.dropped-providers {
  width: 100%;
  max-width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 24px;
  border-radius: 12px;
  z-index: 500;
  display: none;
}
.dropped-providers_active {
  display: flex;
}
.single__provider {
  width: 100%;
  font-size: 12px;
  max-width: 120px;
  color: white;
}
.main {
  width: 100%;
  padding-left: 222px;
}
.header {
  padding: 12px;
  width: 100%;
  padding-left: 240px;
  position: fixed;
  top: 0;
  z-index: 155;
  left: 0;
}
.header__search {
  background: rgba(34, 34, 34, 0.6901960784);
  padding: 12px 24px;
  border-radius: 12px;
}
.mySwiper {
  width: 100%;
  height: 560px;
}
.parallax-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 130%;
  height: 100%;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
}
.swiperTopParalax .swiper-slide {
  position: relative;
}
.swiperTopParalax .swiper-slide .caption {
  width: 100%;
  max-width: 450px;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}
.swiperTopParalax .swiper-slide .title {
  font-size: 24px;
  font-family: "Roboto", sans-serif;
}
.swiperTopParalax .swiper-slide .subtitle {
  font-size: 48px;
  line-height: 1.2;
  font-weight: bolder;
  font-family: "Montserrat", sans-serif;
}
.swiperTopParalax .swiper-slide p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 24px;
}
.tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}
.dropdown {
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 14px;
}
.section__title {
  font-family: "Montserrat", sans-serif;
  font-weight: bolder;
  font-size: 18px;
  text-transform: uppercase;
  margin: 0 0 24px 0;
}
.section__description {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.5;
  text-align: center;
  font-size: 14px;
}
.big-section__title {
  font-size: 24px;
}
.archive__games {
  margin: 24px 0;
}
.looped__game {
  width: 100%;
  max-width: calc(12.5% - 12px);
  height: 180px;
  border-radius: 12px;
  position: relative;
}
.looped__game:hover .game__overlay {
  opacity: 0.75;
}
.looped__game:hover .game__caption {
  opacity: 1;
}
.label {
  position: absolute;
  top: 3%;
  right: 3%;
  padding: 6px 12px;
  border-radius: 12px 0 12px 0;
  font-size: 12px;
  font-weight: bolder;
}
.game__overlay {
  position: absolute;
  border-radius: 12px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: 0.3s opacity;
}
.game__caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  transition: 0.3s opacity;
}
.game__caption .title {
  font-weight: bolder;
  font-size: 12px;
  margin-bottom: 12px;
  color: #fff;
}
.game__caption .demo {
  display: block;
  margin: 12px 0 0 0;
  font-size: 12px;
  color: #bababa;
}
.bonus__grid {
  width: 100%;
  max-width: calc(50% - 12px);
  padding: 42px 24px;
  border-radius: 12px;
  background-position: center !important;
  color: #fff;
}
.bonus__grid p {
  margin: 0 0 12px 0;
	min-height:38px;
}
.bonus__grid.full {
  width: 100%;
  max-width: 100%;
}
.cs__like {
  max-width: calc(33.3333333333% - 12px);
}
.cs__like img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  height: 240px;
}
.cs__like p {
  line-height: 1.5;
  font-size: 14px;
}

.big-section {
  padding: 48px 24px;
}
.mystery img {
  width: 100%;
  max-width: 50%;
  border-radius: 12px;
  object-fit: cover;
  height: 300px;
}
.mystery__caption {
  width: 100%;
  padding: 0 48px;
  max-width: 550px;
}
.entry-content {
  text-align: justify;
}
.entry-content .faq-items {
  display: block;
}
.entry-content .faq-items .drop-top {
  padding: 0.5rem;
  cursor: pointer;
  border: 1px solid #efefef;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.entry-content .faq-items .drop-top:after {
  content: "";
  background: url(images/down.svg) no-repeat;
  display: block;
  width: 16px;
  height: 16px;
  background-size: contain;
}
.entry-content .faq-items .drop-top p {
  margin-bottom: 0;
}
.entry-content .faq-items .drop-content {
  padding: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  display: none;
}
.entry-content .faq-items .drop-content__active {
  display: block;
}
.entry-content .faq-items .drop-top__active {
  background: #fff;
  color: #222;
}
.entry-content .faq-items .drop-top__active a {
  color: #222;
}
.entry-content a {
  color: #fff;
}
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5 {
  margin-bottom: 12px;
}
.entry-content p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 12px;
}
.entry-content ul,
.entry-content ol {
  padding: 0 0 0 1rem;
  margin: 0 0 12px 0;
  display: flex;
  flex-direction: column;
  opacity: 0.85;
}
.entry-content li {
  font-size: 14px;
  line-height: 1.5;
}
.entry-content img {
  border-radius: 12px;
}
.entry-content .alignleft {
  float: left;
  margin: 1rem 1rem 1rem 0;
}
.entry-content .alignright {
  float: right;
  margin: 1rem 0 1rem 1rem;
}
.slider__overlay {
  position: absolute;
  top: 0;
  left: 0;

  opacity: 0.55;
  width: 100%;
  height: 100%;
}
.bonusSwiper .swiper-slide {
  position: relative;
  height: 450px;
  padding: 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bonusSwiper .swiper-slide p {
  font-size: 14px;
  margin: 0 0 24px 0;
  line-height: 1.5;
}
.slider__bonus_pic {
  width: 100%;
  max-width: 227px;
  height: 100%;
  max-height: 380px;
  object-fit: contain;
  position: absolute;
  top: 0;
  z-index: -1;
  right: 0;
}
.upper {
  font-size: 14px;
}
.bonus-title {
  font-weight: bolder;
  font-size: 32px;
  margin: 24px 0;
  text-transform: uppercase;
  width: 100%;
  max-width: 320px;
  font-weight: bolder;
  font-family: "Montserrat", sans-serif;
  min-height: 54px;
}
.support-form {
  display: flex;
  flex-direction: column;
}
.form__input {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  margin: 12px 0;
}
.form__checker {
  display: none;
}
.section-subtitle {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}
.container {
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
}
.provs .swiper-slide,
.payments .swiper-slide {
  padding: 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
.provs .swiper-slide img,
.payments .swiper-slide img {
  object-fit: contain;
  width: 122px;
  height: 45px;
}
.payments .swiper-slide img {
  width: 60px;
  height: 32px;
}
.preloader {
  width: 200px;
  height: 200px;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.frame__heading {
  font-size: 16px;
  padding: 12px;
}
.game-h1 {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}
.single__frame {
  width: 100%;
  height: 460px;
  position: relative;
  background: #000;
  border-radius: 12px;
}
.single__frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  object-fit: cover;
}
.copyright {
  width: 100%;
  max-width: 320px;
}
.text p {
  font-size: 10px;
  line-height: 1.5;
  margin: 0 0 6px 0;
}
.menu-title {
  font-weight: bolder;
  font-family: "Montserrat", sans-serif;
  display: block;
  margin-bottom: 12px;
}
.menu-row {
  width: 100%;
  max-width: 600px;
}
.footer__menu-item {
  width: 100%;
  max-width: 360px;
}
.footer__menu-item ul {
  list-style: none;
}
.footer__menu-item a {
  font-size: 14px;
  line-height: 1.5;
  display: block;
}
.lang img {
  border-radius: 12px;
  display: block;
}
.button-85 {
  padding: 0.6em 2em;
  border: none;
  outline: none;
  color: #fff;
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
.button-85:before {
  content: "";
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing-button-85 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 30px;
}
@keyframes glowing-button-85 {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}
.button-85:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #222;
  left: 0;
  top: 0;
  border-radius: 30px;
}
@media (max-width: 1610px) {
  .looped__game {
    max-width: calc(14.2857142857% - 12px);
  }
}
@media (max-width: 1440px) {
  .cs__like {
    max-width: calc(50% - 12px);
  }
  .looped__game {
    max-width: calc(16.6666666667% - 12px);
  }
}
@media (max-width: 1240px) {
  .looped__game {
    max-width: calc(25% - 12px);
  }
}
@media (max-width: 1100px) {
  .entry-content .alignleft,
  .entry-content .alignright {
    width: 100%;
    margin: 1rem auto;
  }
  .tags-container {
    flex-wrap: wrap;
  }
  .tag {
    font-size: 12px;
    white-space: nowrap;
  }
  .mySwiper {
    height: 420px;
  }
  .swiperTopParalax .swiper-slide .subtitle {
    font-size: 36px;
    line-height: 1.3;
  }
  .bonus__grid {
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .looped__game {
    max-width: 48%;
    height: 150px;
  }
}
@media (max-width: 760px) {
  aside {
    left: -9999px;
  }
  .main {
    padding-left: 0;
    overflow-x: hidden;
  }
  .header {
    padding-left: 0;
  }
  .swiperTopParalax .swiper-slide p {
    font-size: 12px;
    margin: 12px 0;
  }
  .swiperTopParalax .swiper-slide .caption {
    max-width: 280px;
  }
  .swiperTopParalax .swiper-slide .subtitle {
    font-size: 22px;
    line-height: 1.3;
  }
  .tags-flex {
    flex-wrap: wrap;
  }
  .tags-container {
    width: 100%;
    max-width: 100%;
  }
  .providers {
    margin: 24px 0 0 0;
    width: 100%;
  }
  .dropdown {
    justify-content: center;
  }
  .mystery-flex {
    flex-wrap: wrap;
  }
  .mystery img {
    width: 100%;
    max-width: 100%;
  }
  .mystery .caption {
    max-width: 100%;
  }
  .container {
    max-width: 100%;
  }
  .footer-flex {
    flex-direction: column-reverse;
  }
  .menu-item {
    width: 100%;
    max-width: 100%;
  }
  .menu-title {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #fff;
    padding: 6px;
  }
  .menu-row {
    max-width: 100%;
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }
}
.all_com_pr span:before {
  color: #bb9b49;
}
.com_block_star {
  margin: 10px 0;
}
.comments-rating {
  border: none;
  padding: 0;
  margin-left: 0;
}
.comments-rating label {
  display: inline-block;
  font-size: 14px;
}
.com_block_star label {
  font-size: 14px;
}
.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: #bb9b49;
  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: #bb9b49;
  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;

  padding: 8px;
  border: 1px solid #efefef;
}
.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: #ff8159;
  color: #fff;
  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 {
  padding: 0.5rem;

  margin-bottom: 0.5rem;
}
.comments-area .comment-list li time {
  display: none;
}
.comments-area .comment-list li p {
  margin: 1rem 0;
  font-size: 14px;
  line-height: 22px;
}
.dashicons-star-filled {
}
.commentmetadata {
  display: none;
}
.reply {
  display: none;
}
.comment-form-email {
  display: none;
}
#reply-title {
  color: #fff;
  font-weight: bolder;
  font-size: 18px;
  display: block;
  margin-bottom: 12px;
}
.required-field-message {
  color: #efefef;
}
.custom-logo-link {
  display: block;
}
.logo img,
.custom-logo-link img {
  width: 100%;
  height: 80px;
  padding: 10px;
}
.bonuses-flex {
  margin-right: -10px;
  gap: 10px;
}
.bonuses-flex .swiper-slide {
  max-width: calc(100% / 4 - 10px);
  padding: 1rem;
  border-radius: 0.5rem;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.bonuses-flex .swiper-slide::after {
  content: "";
  background: #222;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
}
.logged-in-as {
  color: white;
}
.bonus-title {
  font-size: 22px;
}
.bonuses-flex .swiper-slide a {
  margin: 0 auto;
}
.bonuses-flex .bonus-title {
  height: 180px;
}
.bonuses-flex .swiper-slide div,
.bonuses-flex .swiper-slide a {
  position: relative;
  z-index: 5;
  margin: 0 auto;
}
.slider__bonus_pic {
  z-index: 1;
  max-width: 400px;
  object-fit: cover;
  opacity: 0.85;
  height: 400px;
  top: 0;
  left: 0;
  transform: translate(0);
}
.entry-content a {
  color: #4374f6;
}
.entry-content table {
  border-collapse: collapse;
  margin-bottom: 10px;
}
.entry-content td,
.entry-content th {
  font-size: 13px;
  padding: 10px;
  border: 1px solid #bb9b49;
  border-collapse: collapse;
}
@media (max-width: 1280px) {
  .bonuses-flex .swiper-slide {
    max-width: calc(100% / 3 - 10px);
  }
}
@media (max-width: 1024px) {
  .bonuses-flex .swiper-slide {
    max-width: calc(100% / 2 - 10px);
  }
}
@media (max-width: 600px) {
  .bonuses-flex .swiper-slide {
    max-width: calc(100%);
  }
}
.all_com_pr span:before {
  color: #bb9b49;
}
.com_block_star {
  margin: 10px 0;
}
.comments-rating {
  border: none;
  padding: 0;
  margin-left: 0;
}
.comments-rating label {
  display: inline-block;
  font-size: 14px;
}
.com_block_star label {
  font-size: 14px;
}
.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: #bb9b49;
  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: #bb9b49;
  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;

  padding: 8px;
  border: 1px solid #efefef;
}
.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: #ff8159;
  color: #fff;
  border-radius: 30px;
  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 {
  padding: 0.5rem;

  margin-bottom: 0.5rem;
}
.comments-area .comment-list li time {
  display: none;
}
.comments-area .comment-list li p {
  margin: 1rem 0;
  font-size: 14px;
  line-height: 22px;
}
.dashicons-star-filled {
}
.commentmetadata {
  display: none;
}
.reply {
  display: none;
}
.comment-form-email {
  display: none;
}
#reply-title {
  color: #fff;
  font-weight: bolder;
  font-size: 18px;
  display: block;
  margin-bottom: 12px;
}
.required-field-message {
  color: #efefef;
}
.custom-logo-link {
  display: block;
}
.logo img,
.custom-logo-link img {
  width: 100%;
  height: 80px;
  padding: 10px;
}
.bonuses-flex {
  margin-right: -10px;
  gap: 10px;
}
.bonuses-flex .swiper-slide {
  max-width: calc(100% / 4 - 10px);
  padding: 1rem;
  border-radius: 0.5rem;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.bonuses-flex .swiper-slide::after {
  content: "";
  background: #222;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
}
.logged-in-as {
  color: white;
}
.bonus-title {
  font-size: 22px;
}
.bonuses-flex .swiper-slide a {
  margin: 0 auto;
}
.bonuses-flex .bonus-title {
  height: 180px;
}
.bonuses-flex .swiper-slide div,
.bonuses-flex .swiper-slide a {
  position: relative;
  z-index: 5;
  margin: 0 auto;
}
.slider__bonus_pic {
  z-index: 1;
  max-width: 400px;
  object-fit: cover;
  opacity: 0.85;
  height: 400px;
  top: 0;
  left: 0;
  transform: translate(0);
}
.entry-content a {
  color: #4374f6;
}
.entry-content table {
  border-collapse: collapse;
  margin-bottom: 10px;
}
.entry-content td,
.entry-content th {
  font-size: 13px;
  padding: 10px;
  border-collapse: collapse;
}
@media (max-width: 1280px) {
  .bonuses-flex .swiper-slide {
    max-width: calc(100% / 3 - 10px);
  }
}
@media (max-width: 1024px) {
  .bonuses-flex .swiper-slide {
    max-width: calc(100% / 2 - 10px);
  }
}
@media (max-width: 600px) {
  .bonuses-flex .swiper-slide {
    max-width: calc(100%);
  }
}
.parallax-bg {
  width: 100%;
}
.swiperTopParalax .swiper-slide .caption {
  max-width: 90%;
}
.copyright {
  max-width: inherit;
  margin-right: 20px;
}
.copyright img {
  max-width: 120px;
  width: 100%;
}
footer .text {
  font-size: 12px;
}
.slider__bonus_pic {
  object-fit: contain;
}
.entry-content table {
  width: 100%;
}
.tag {
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.tag i {
  max-width: 30px;
  width: 100%;
  max-height: 30px;
  color: #ffa92d !important;
}
.all_com_pr span:before {
  color: #bb9b49;
}
.com_block_star {
  margin: 10px 0;
}
.comments-rating {
  border: none;
  padding: 0;
  margin-left: 0;
}
.comments-rating label {
  display: inline-block;
  font-size: 14px;
}
.com_block_star label {
  font-size: 14px;
}
.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: #bb9b49;
  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: #bb9b49;
  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;

  padding: 8px;
  border: 1px solid #efefef;
}
.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: #bb9b49;
  color: #fff;
  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 {
  padding: 0.5rem;

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

.commentmetadata {
  display: none;
}
.reply {
  display: none;
}
.comment-form-email {
  display: none;
}
#reply-title {
  font-weight: bolder;
  font-size: 18px;
  display: block;
  margin-bottom: 12px;
}

.custom-logo-link {
  display: block;
}
.logo img,
.custom-logo-link img {
  width: 100%;
  height: 80px;
  padding: 10px;
}
.bonuses-flex {
  margin-right: -10px;
  gap: 10px;
}
.bonuses-flex .swiper-slide {
  max-width: calc(100% / 4 - 10px);
  padding: 1rem;
  border-radius: 0.5rem;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.bonuses-flex .swiper-slide::after {
  content: "";
  background: #222;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
}

.bonus-title {
  font-size: 22px;
}
.bonuses-flex .swiper-slide a {
  margin: 0 auto;
}
.bonuses-flex .bonus-title {
  height: 180px;
}
.bonuses-flex .swiper-slide div,
.bonuses-flex .swiper-slide a {
  position: relative;
  z-index: 5;
  margin: 0 auto;
}
.slider__bonus_pic {
  z-index: 1;
  max-width: 400px;
  object-fit: cover;
  opacity: 0.85;
  height: 400px;
  top: 0;
  left: 0;
  transform: translate(0);
}

.entry-content table {
  border-collapse: collapse;
  margin-bottom: 10px;
}
.entry-content td,
.entry-content th {
  font-size: 13px;
  padding: 10px;
  border: 1px solid #bb9b49;
  border-collapse: collapse;
}
@media (max-width: 1280px) {
  .bonuses-flex .swiper-slide {
    max-width: calc(100% / 3 - 10px);
  }
}
@media (max-width: 1024px) {
  .bonuses-flex .swiper-slide {
    max-width: calc(100% / 2 - 10px);
  }
}
@media (max-width: 600px) {
  .bonuses-flex .swiper-slide {
    max-width: calc(100%);
  }
}
.parallax-bg {
  width: 100%;
}
.swiperTopParalax .swiper-slide .caption {
  max-width: 90%;
}
.copyright {
  max-width: inherit;
  margin-right: 20px;
}
.copyright img {
  max-width: 120px;
  width: 100%;
}
footer .text {
  font-size: 12px;
}
.slider__bonus_pic {
  object-fit: contain;
}
.entry-content table {
  width: 100%;
}
.copyright img {
  max-width: 50px;
  object-fit: contain;
}
.entry-content .alignright {
  float: right;
  margin: 1rem 0 1rem 1rem;
}
.entry-content .alignleft {
  float: left;
  margin: 1rem 1rem 1rem 0;
}
.entry-content .aligncenter {
  margin: 1rem auto;
  display: block;
}
.alignleft {
  float: left;
  padding: 1rem 1rem 1rem 0;
}
.alignright {
  float: right;
  padding: 1rem 0 1rem 1rem;
}
.aligncenter {
  margin: 1rem auto;
  display: block;
}

.parallax-bg {
  background-position: 100%;
}
.button-85,
.button-85:after,
.tag * {
  color: #fff !important;
  background-color: #1e489c;
  border-radius: 30px;
}
.tag {
  background-color: #1e489c;
  border: none;
  color: #fff !important;
  padding: 12px;
  white-space: nowrap;
  font-weight: 700;
  line-height: 1.4;
  border-radius: 30px;
}
.single__provider {
  color: white !important;
}
.dropdown.providers__dropdown {
  color: white;
  border: none;
  background: #163779;
  font-weight: 700;
  border-radius: 30px;
  text-transform: uppercase;
  line-height: 1.4;
  border-radius: 30px;
}
.provs .swiper-slide,
.payments .swiper-slide {
  background: rgb(241, 241, 242);
  width: 215.5px;
  margin-right: 30px;
}
.has-vivid-cyan-blue-background-color {
  color: white !important;
  background: #1e489c !important;
}
.btn {
  color: white !important;
  border-radius: 30px;
}
.footer {
  background: #f1f1f2;
  color: #163779;
}
.footer .text,
.menu-title,
.footer__menu-item a {
  color: #163779 !important;
}
.section.page__section iframe {
  width: 100%;
}
::placeholder {
  color: white !important;
}
.support-form {
  margin: 20px 0;
}
.see__all {
  font-size: 12px;
  padding: 6px 12px;
  max-width: 100px;
  color: #163779 !important;
}
.wr-sidebar-btn {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.buttons {
  padding: 12px 24px;
  justify-content: start;
}
.menu-undermenu {
  position: relative;
}
.all_com_pr span:before {
  color: #bb9b49;
}
.com_block_star {
  margin: 10px 0;
}
.comments-rating {
  border: none;
  padding: 0;
  margin-left: 0;
}
.comments-rating label {
  display: inline-block;
  font-size: 14px;
}
.com_block_star label {
  font-size: 14px;
}
.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: #bb9b49;
  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: #bb9b49;
  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;

  padding: 8px;
  border: 1px solid #efefef;
}
.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: #ff8159;
  color: #fff;
  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 {
  padding: 0.5rem;

  margin-bottom: 0.5rem;
}
.comments-area .comment-list li time {
  display: none;
}
.comments-area .comment-list li p {
  margin: 1rem 0;
  font-size: 14px;
  line-height: 22px;
}
.dashicons-star-filled {
}
.commentmetadata {
  display: none;
}
.reply {
  display: none;
}
.comment-form-email {
  display: none;
}
#reply-title {
  color: #fff;
  font-weight: bolder;
  font-size: 18px;
  display: block;
  margin-bottom: 12px;
}
.required-field-message {
  color: #efefef;
}
.custom-logo-link {
  display: block;
}
.logo img,
.custom-logo-link img {
  width: 100%;
  height: 80px;
  padding: 10px;
}
.bonuses-flex {
  margin-right: -10px;
  gap: 10px;
}
.bonuses-flex .swiper-slide {
  max-width: calc(100% / 4 - 10px);
  padding: 1rem;
  border-radius: 0.5rem;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.bonuses-flex .swiper-slide::after {
  content: "";
  background: #222;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
}
.logged-in-as {
  color: white;
}
.bonus-title {
  font-size: 22px;
}
.bonuses-flex .swiper-slide a {
  margin: 0 auto;
}
.bonuses-flex .bonus-title {
  height: 180px;
}
.bonuses-flex .swiper-slide div,
.bonuses-flex .swiper-slide a {
  position: relative;
  z-index: 5;
  margin: 0 auto;
}
.slider__bonus_pic {
  z-index: 1;
  max-width: 400px;
  object-fit: cover;
  opacity: 0.85;
  height: 400px;
  top: 0;
  left: 0;
  transform: translate(0);
}
.entry-content a {
  color: #4374f6;
}
.entry-content table {
  border-collapse: collapse;
  margin-bottom: 20px;
}
table {
  border-collapse: collapse;
  margin-bottom: 20px;
}
.entry-content td,
.entry-content th {
  font-size: 13px;
  padding: 10px;
  border-collapse: collapse;
}
@media (max-width: 1280px) {
  .bonuses-flex .swiper-slide {
    max-width: calc(100% / 3 - 10px);
  }
}
@media (max-width: 1024px) {
  .bonuses-flex .swiper-slide {
    max-width: calc(100% / 2 - 10px);
  }
}
@media (max-width: 600px) {
  .bonuses-flex .swiper-slide {
    max-width: calc(100%);
  }
}
.parallax-bg {
  width: 100%;
}
.swiperTopParalax .swiper-slide .caption {
  max-width: 90%;
}
.copyright {
  max-width: inherit;
  margin-right: 20px;
}
.copyright img {
  max-width: 120px;
  width: 100%;
}
footer .text {
  font-size: 12px;
}
.slider__bonus_pic {
  object-fit: contain;
}
.entry-content table {
  width: 100%;
}
.copyright img {
  max-width: 50px;
  object-fit: contain;
}
.entry-content .alignright {
  float: right;
  margin: 1rem 0 1rem 1rem;
}
.entry-content .alignleft {
  float: left;
  margin: 1rem 1rem 1rem 0;
}
.entry-content .aligncenter {
  margin: 1rem auto;
  display: block;
}
.alignleft {
  float: left;
  padding: 1rem 1rem 1rem 0;
}
.alignright {
  float: right;
  padding: 1rem 0 1rem 1rem;
}
.aligncenter {
  margin: 1rem auto;
  display: block;
}
.entry-content-404 .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 140px 0;
  justify-content: start;
  max-width: 500px;
  margin-left: 30px;
}
.title_404 {
  color: white;
  font-size: 38px;
  font-weight: bolder;
}
.text_404 {
  font-size: 1.5rem;
  color: white;
}
.link-go-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  text-align: center;
  font-weight: bolder;
  transition: 0.3s opacity;
  border: none;
  width: 100%;
  max-width: 180px;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 30px;
  background: linear-gradient(90deg, #ebd197 4%, #bb9b49 50%);

  color: #f1f1f2 !important;
}
.entry-content-404 {
  background: url(images/bg_404.webp) no-repeat;
  background-size: cover;
}
@media (max-width: 992px) {
  .entry-content-404 {
    background-position: right !important;
    padding: 20px;
  }
  .entry-content-404 .container {
    margin: auto;
  }
}
.entry-content a {
	color:#bb9b49;
}