main {
  margin-top: 96px;
  overflow: hidden;
  min-height: calc(100vh - 80px);
}
@media (max-width: 990px) {
  main {
    margin-top: 65px;
  }
}

body, html {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  background: #f5f9fc;
}

p {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5 {
  margin: 0;
}

img {
  color: transparent;
}

img:not([src]) {
  visibility: hidden;
}

.container {
  width: 100%;
  box-sizing: border-box;
  max-width: 1300px;
  padding: 0;
  margin: 0 auto;
}

.padding {
  padding: 0 15px;
}

.margin {
  margin-bottom: 40px;
}
@media (max-width: 990px) {
  .margin {
    margin-bottom: 25px;
  }
}

a, button {
  cursor: pointer;
}

a {
  text-decoration: none;
}

.overlay {
  overflow: hidden;
}

input, button {
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  font-family: "Nunito", sans-serif;
}

textarea {
  font-family: "Nunito", sans-serif;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

button {
  border: none;
  font-family: "Nunito", sans-serif;
  box-shadow: none;
  width: 100%;
  appearance: none;
  cursor: pointer;
}

.sidebar__content a {
  color: #1B1112;
  pointer-events: none;
}

.button-ref {
  background: transparent;
  box-shadow: none;
}

.header {
  box-shadow: 2px 4px 11px 0 rgba(0, 0, 0, 0.0392156863);
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  background: #fff;
  width: 100%;
  z-index: 9;
  box-sizing: border-box;
  height: 66.3px;
}
@media (max-width: 990px) {
  .header {
    height: 54.3px;
  }
}
.header__search {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 576px) {
  .header__search {
    position: static;
  }
}
.header__search-btn {
  height: 32px;
  position: relative;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 990px) {
  .header__search-btn {
    height: 24px;
    width: 24px;
  }
}
.header__search-btn svg {
  position: absolute;
  left: 0;
  top: 0;
  height: 32px;
  width: 32px;
}
@media (max-width: 990px) {
  .header__search-btn svg {
    height: 24px;
    width: 24px;
  }
}
.header__search-btn svg:nth-child(1) {
  z-index: 2;
}
.header__search-btn svg:nth-child(2) {
  opacity: 0;
}
.header__search-btn-active svg:nth-child(1) {
  opacity: 0;
}
.header__search-btn-active svg:nth-child(2) {
  opacity: 1;
}
.header__search-output {
  max-width: 300px;
  min-width: 300px;
  width: 300px;
  box-sizing: border-box;
  position: absolute;
  top: 120%;
  right: 0;
  padding: 15px;
  display: none;
  background: #F5F9FC;
  border-radius: 10px;
  border: 0.5px solid #B0B8CE;
  box-shadow: 2px 4px 11px 0px rgba(0, 0, 0, 0.0392156863);
}
@media (max-width: 576px) {
  .header__search-output {
    top: 115%;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
}
.header__search-output ::-webkit-scrollbar {
  background-color: #F5F9FC;
  border-radius: 4px;
  width: 4px;
}
.header__search-output ::-webkit-scrollbar-thumb {
  background: #B0B8CE;
  width: 4px;
  border-radius: 4px;
}
.header__search-output input {
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  padding: 0;
  background: transparent;
  outline: none;
  border: none;
  border-bottom: 1px solid #B0B8CE;
}
.header__search-output .result-search {
  display: none;
}
.header__search-output .result-search-list {
  margin-top: 10px;
  display: none;
  max-height: 320px;
  overflow-y: auto;
}
.header__search-output .result-search-list a {
  padding-bottom: 5px;
  border-bottom: 0.5px solid #B0B8CE;
  font-size: 16px;
  line-height: normal;
  display: block;
  width: 100%;
  box-sizing: border-box;
  font-weight: 400;
  color: #000;
  margin-bottom: 5px;
}
.header__search-output .result-search-list a:last-child {
  border-bottom: none;
  padding: 0;
  margin: 0;
}
.header__search-output .preloader {
  width: 100%;
  display: flex;
  margin-top: 10px;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  box-sizing: border-box;
}
.header__wrap {
  display: grid;
  padding: 15px 0;
  grid-template-columns: 195px 1fr 110px 32px 32px 32px;
  grid-gap: 20px;
  align-items: center;
  position: relative;
}
@media (max-width: 1200px) {
  .header__wrap {
    grid-gap: 10px;
    grid-template-columns: 175px 1fr 100px 32px 32px 32px;
  }
}
@media (max-width: 990px) {
  .header__wrap {
    padding: 15px 0;
    grid-template-columns: 20px 1fr 90px 24px 24px 24px;
  }
}
@media (max-width: 390px) {
  .header__wrap {
    grid-template-columns: 20px 1fr 70px 24px 24px 24px;
  }
}
.header__call {
  display: none;
}
@media (max-width: 990px) {
  .header__call {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 20px;
    width: 20px;
  }
}
.header__call img {
  display: block;
  position: absolute;
}
.header__call img:nth-child(2) {
  opacity: 0;
  display: none;
}
.header__call-active img:nth-child(1) {
  opacity: 0;
  display: none;
}
.header__call-active img:nth-child(2) {
  opacity: 1;
  display: block;
}
.header__bonus {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__bonus img {
  animation: pulsing 2.5s infinite;
}
@media (max-width: 990px) {
  .header__bonus img {
    height: 24px;
    width: 24px;
  }
}
@media (max-width: 990px) {
  .header__icon {
    height: 24px;
    width: 24px;
  }
}
@-webkit-keyframes pulsing {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.15, 1.15);
  }
  100% {
    transform: scale(1, 1);
  }
}
.header__logo {
  display: flex;
}
.header__logo img {
  max-width: 100%;
  display: block;
  object-fit: contain;
  height: auto;
  width: 100%;
}
@media (max-width: 990px) {
  .header__logo img {
    width: 125px;
  }
}
@media (max-width: 990px) {
  .header__nav-wrap {
    height: 80%;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
  }
}
.header .arrow_mob {
  position: absolute;
  height: 15px;
  width: 15px;
  right: -17px;
  top: 4px;
}
@media (max-width: 1200px) {
  .header .arrow_mob {
    position: absolute;
    height: 10px;
    width: 10px;
    right: -10px;
    top: 7px;
  }
}
@media (max-width: 990px) {
  .header .arrow_mob {
    right: 0;
    height: 15px;
    width: 15px;
    top: 4px;
  }
}
.header .arrow_mob::after {
  content: "";
  background: url("../img/arr-menu.svg");
  background-size: 15px 15px;
  height: 15px;
  width: 15px;
  transition: 0.3s;
  display: block;
}
@media (max-width: 1200px) {
  .header .arrow_mob::after {
    background-size: 10px 10px;
    height: 10px;
    width: 10px;
  }
}
@media (max-width: 990px) {
  .header .arrow_mob::after {
    background-size: 15px 15px;
    height: 15px;
    width: 15px;
  }
}
.header .arr_active::after {
  transform: rotate(180deg);
}
.header__nav {
  margin-left: auto;
}
@media (max-width: 990px) {
  .header__nav {
    transform: translateX(-110%);
    position: absolute;
    padding: 25px 15px;
    top: 54px;
    width: 70vw;
    left: 0;
    height: 100vh;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
    display: none;
    background: #fff;
    overflow-y: auto;
  }
}
@media (max-width: 576px) {
  .header__nav {
    left: -20px;
    padding-left: 20px;
  }
}
.header__nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 990px) {
  .header__nav ul {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 5px;
  }
}
.header__nav ul li {
  position: relative;
  margin: 0 12px;
}
@media (max-width: 1200px) {
  .header__nav ul li {
    margin: 0 12px 0 0;
  }
}
@media (max-width: 990px) {
  .header__nav ul li {
    margin: 0;
  }
}
.header__nav ul li:hover ul {
  opacity: 1;
  pointer-events: auto;
}
.header__nav ul li ul {
  left: 0;
  top: 115%;
  position: absolute;
  background: #fff;
  display: block;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1019607843);
  pointer-events: none;
  opacity: 0;
}
@media (max-width: 990px) {
  .header__nav ul li ul {
    opacity: 1;
    top: 0;
    padding: 5px;
    position: relative;
    display: none;
    pointer-events: auto;
    box-shadow: none;
    padding: 0;
  }
}
.header__nav ul li ul::after {
  content: "";
  top: -2.4%;
  position: absolute;
  width: 100%;
  height: 12px;
  left: 0;
  display: block;
}
@media (max-width: 990px) {
  .header__nav ul li ul::after {
    display: none;
  }
}
.header__nav ul li ul .arrow_mob {
  right: -2px;
  transform: rotate(-90deg);
  top: 13px;
  pointer-events: none;
}
@media (max-width: 990px) {
  .header__nav ul li ul .arrow_mob {
    transform: rotate(0);
    top: 4px;
    right: 0;
    pointer-events: auto;
  }
}
.header__nav ul li ul li {
  margin: 0 0 2.5px 0;
  padding-bottom: 2.5px;
  position: static;
  border-bottom: 1px solid #000;
}
@media (max-width: 990px) {
  .header__nav ul li ul li {
    padding-bottom: 5px;
  }
}
.header__nav ul li ul li:hover ul {
  opacity: 1 !important;
  pointer-events: auto !important;
}
.header__nav ul li ul li ul {
  left: 105%;
  top: 0;
  pointer-events: none !important;
  position: absolute;
  background: #fff;
  opacity: 0 !important;
  display: block;
}
@media (max-width: 990px) {
  .header__nav ul li ul li ul {
    opacity: 1 !important;
    top: 0;
    position: relative;
    display: none;
    pointer-events: auto !important;
    box-shadow: none;
    padding: 0;
    left: 0;
  }
}
.header__nav ul li ul li ul::after {
  content: "";
  top: 0;
  position: absolute;
  width: 25px;
  height: 100%;
  left: -10%;
  display: block;
  background: transparent;
}
@media (max-width: 990px) {
  .header__nav ul li ul li ul::after {
    display: none;
  }
}
.header__nav ul li ul li:last-child {
  border: none;
  margin-bottom: 0;
}
.header__nav ul a {
  font-size: 15px;
  line-height: normal;
  font-weight: 400;
  color: #1B1112;
  transition: 0.3s;
  white-space: nowrap;
}
.header__nav ul a:hover {
  color: #b2283f;
}
@media (max-width: 990px) {
  .header__nav ul a {
    font-size: 14px;
    font-weight: 700;
  }
}
.header__nav .grid-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 10px;
}
@media (max-width: 990px) {
  .header__nav .grid-list {
    grid-gap: 0;
    display: none;
  }
}
.header__nav-active {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
  display: block;
}

.bg {
  background: #000;
  display: none;
  opacity: 0.7;
  position: fixed;
  z-index: 99;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100vh;
  width: 100vw;
  pointer-events: none;
  visibility: hidden;
}

.header-modal {
  pointer-events: none;
  visibility: hidden;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 25px 20px 20px 20px;
  border-radius: 16px;
  max-width: 320px;
  width: 95%;
  display: none;
  z-index: 999;
}
.header-modal__close {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  height: 15px;
  width: 15px;
}
.header-modal__top {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
}
.header-modal__casino {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 15px;
}
.header-modal__casino-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  grid-gap: 10px;
  align-items: center;
}
.header-modal__casino-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-modal__casino-img img {
  border-radius: 16px;
  height: 64px;
  width: 64px;
  object-fit: cover;
}
.header-modal__casino-bonus {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #1B1112;
}
.header-modal__casino-btn {
  grid-column-start: 1;
  grid-column-end: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 21px;
  font-weight: 700;
  width: 100%;
  box-sizing: border-box;
  color: #fff;
  background: #F3B552;
  padding: 8px;
  border-radius: 12px;
}

.active-modal {
  display: block;
  pointer-events: auto;
  visibility: visible;
}

.footer-casino {
  position: fixed;
  transition: 0.3s;
  transform: translateY(110%);
  bottom: 0;
  overflow: hidden;
  left: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  background: #FAEAED;
  padding: 15px;
  z-index: 99;
  box-shadow: 2px 4px 10px 0 rgba(0, 0, 0, 0.0705882353);
}
@media (max-width: 990px) {
  .footer-casino {
    padding: 10px;
  }
}
.footer-casino .container {
  position: relative;
}
.footer-casino__close {
  position: absolute;
  right: 10px;
  cursor: pointer;
  top: 10px;
}
.footer-casino .container {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-gap: 50px;
  align-items: center;
}
@media (max-width: 990px) {
  .footer-casino .container {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
}
.footer-casino__img {
  display: grid;
  grid-template-columns: 75px 1fr;
  grid-gap: 15px;
  align-items: center;
}
@media (max-width: 990px) {
  .footer-casino__img {
    grid-template-columns: 48px 1fr;
    max-width: 300px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }
}
.footer-casino__img img {
  height: 75px;
  width: 75px;
  border-radius: 16px;
}
@media (max-width: 990px) {
  .footer-casino__img img {
    height: 48px;
    width: 48px;
  }
}
.footer-casino__name {
  font-size: 25px;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  position: relative;
  z-index: 2;
  color: #000;
}
@media (max-width: 990px) {
  .footer-casino__name {
    font-size: 16px;
  }
}
.footer-casino__title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  line-height: 19px;
  font-weight: 700;
  margin-bottom: 3px;
  position: relative;
  color: #000;
  z-index: 2;
}
.footer-casino__text {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  z-index: 2;
}
@media (max-width: 990px) {
  .footer-casino__text {
    font-size: 15px;
    line-height: normal;
  }
}
.footer-casino__btn {
  position: relative;
  z-index: 2;
}
.footer-casino__btn a {
  background: #F3B552;
  padding: 12px;
  text-align: center;
  color: #fff;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  cursor: pointer;
}
@media (max-width: 990px) {
  .footer-casino__btn a {
    max-width: 225px;
    padding: 10px;
    font-size: 14px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
}
.footer-casino__btn button {
  background: #F3B552;
  padding: 12px;
  text-align: center;
  color: #fff;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  cursor: pointer;
}
@media (max-width: 990px) {
  .footer-casino__btn button {
    max-width: 225px;
    width: 100%;
    font-size: 14px;
    padding: 10px;
    margin: 0 auto;
    box-sizing: border-box;
  }
}
.footer-casino__bonus {
  position: relative;
}
@media (max-width: 990px) {
  .footer-casino__bonus {
    position: static;
  }
}
.footer-casino__bonus img {
  max-width: 100%;
  height: 118px;
}
.footer-casino__bonus img:first-child {
  position: absolute;
  left: 0;
  bottom: -25px;
}
@media (max-width: 990px) {
  .footer-casino__bonus img:first-child {
    bottom: -15px;
    left: -65px;
  }
}
.footer-casino__bonus img:last-child {
  position: absolute;
  right: 0;
  bottom: -25px;
}
@media (max-width: 990px) {
  .footer-casino__bonus img:last-child {
    bottom: -15px;
    right: -65px;
  }
}

.footer-casino-active {
  transform: translateY(0);
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  select:focus, textarea:focus, input:focus {
    font-size: 16px;
  }
}
button {
  transition: 0.3s;
}
button:hover {
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.5);
}
button:active {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
}

.quiz .active {
  transition: 0.3s;
}
.quiz .active:hover {
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.5);
}
.quiz .active:active {
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25);
}

.up-to {
  position: fixed;
  right: 20px;
  bottom: 70px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
@media (max-width: 990px) {
  .up-to {
    right: 10px;
    bottom: 75px;
  }
}

.up-to-active {
  opacity: 1;
  pointer-events: auto;
}

.top-info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .top-info {
    margin-bottom: 10px;
    justify-content: space-between;
  }
}
.top-info__btn {
  cursor: pointer;
  position: relative;
  z-index: 8;
}
.top-info__btn:hover p {
  opacity: 1;
  pointer-events: auto;
}
.top-info__btn:hover span {
  text-decoration: none;
}
.top-info__btn span {
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  text-align: center;
  color: #F3B552;
  text-decoration: underline;
}
.top-info__btn p {
  position: absolute;
  width: 100%;
  max-width: 400px;
  min-width: 400px;
  border-radius: 16px;
  box-sizing: border-box;
  padding: 15px;
  background: #FFFFFF;
  box-shadow: 2px 4px 11px 0px rgba(0, 0, 0, 0.0392156863);
  top: 110%;
  right: 0;
  font-size: 14px;
  pointer-events: none;
  opacity: 0;
  line-height: 19px;
  text-align: left;
}
@media (max-width: 576px) {
  .top-info__btn p {
    padding: 8px;
    right: auto;
    left: 0;
    max-width: 320px;
    min-width: 320px;
    font-size: 13px;
    margin-right: 15px;
  }
}
.top-info__btn p::after {
  content: "";
  height: 20px;
  width: 100%;
  background: transparent;
  position: absolute;
  left: 0;
  top: -20px;
  display: block;
}
.top-info a {
  margin-left: 15px;
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  text-decoration: underline;
  color: #F3B552;
}
@media (max-width: 990px) {
  .top-info a {
    margin: 0;
  }
}
.top-info a:hover {
  text-decoration: none;
}

.forum_btn {
  padding: 8px;
  font-size: 15px;
  background: #B2283F;
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
  display: flex;
  align-items: center;
  margin: 0 5px;
  justify-content: center;
  text-align: center;
}
@media (max-width: 1200px) {
  .forum_btn {
    font-size: 14px;
    padding: 5px 3px;
  }
}
@media (max-width: 990px) {
  .forum_btn {
    margin: 0;
  }
}

.breadcrumbs {
  margin-bottom: 15px;
}
.breadcrumbs__wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style-type: none;
  align-items: center;
}
.breadcrumbs__wrap li {
  display: flex;
  align-items: center;
}
.breadcrumbs__wrap li::after {
  content: "";
  background: url("/wp-content/themes/paypokies/assets/img/arr-bread.svg") no-repeat center center;
  height: 8px;
  width: 4px;
  background-size: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}
.breadcrumbs__wrap li:last-child::after {
  display: none;
}
.breadcrumbs__wrap li {
  font-size: 14px;
  line-height: 18px;
  color: #1B1112;
  margin-right: 10px;
}
.breadcrumbs__wrap li a {
  color: #AAAEB9;
}
.breadcrumbs__wrap img {
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.breadcrumbs__page {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 990px) {
  .breadcrumbs__page {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
}
.breadcrumbs__author {
  margin-bottom: 3px;
  font-size: 12px;
  line-height: 16px;
  text-align: right;
  color: #1B1112;
  font-weight: 700;
}
@media (max-width: 990px) {
  .breadcrumbs__author {
    text-align: left;
    margin-bottom: 3px;
  }
}
.breadcrumbs__date {
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  text-align: right;
  color: #B0B8CE;
}
@media (max-width: 990px) {
  .breadcrumbs__date {
    text-align: left;
  }
}

.breadcrumbs__about-box {
  display: grid;
  grid-template-columns: 1fr 30px;
  grid-gap: 7px;
  align-items: center;
}
@media (max-width: 990px) {
  .breadcrumbs__about-box {
    grid-template-columns: 30px 1fr;
  }
}
.breadcrumbs__about-box img {
  height: 30px;
  width: 30px;
  object-fit: cover;
  border-radius: 50%;
}
@media (max-width: 990px) {
  .breadcrumbs__about-box img {
    grid-column-start: 1;
    grid-row-start: 1;
  }
}
.breadcrumbs__about-box a {
  color: #7e7e7e;
}

.breadcrumbs-left {
  margin-left: auto;
}
@media (max-width: 990px) {
  .breadcrumbs-left {
    margin-left: 0;
  }
}

.author-two {
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 990px) {
  .author-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
  }
}
.author-two .breadcrumbs__author {
  margin: 0;
}
.author-two .breadcrumbs__date {
  margin-left: auto;
}
@media (max-width: 990px) {
  .author-two .breadcrumbs__date {
    margin: 0;
  }
}
.author-two .breadcrumbs__about-box {
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-gap: 7px;
  margin-right: 10px;
  align-items: center;
}
@media (max-width: 990px) {
  .author-two .breadcrumbs__about-box {
    margin: 0;
  }
}

.mt-15 {
  margin-top: 15px;
}

.mb-15 {
  margin-bottom: 15px;
}

.breadcrumbs__page-coll {
  display: block;
}

.casino-section {
  display: grid;
  grid-template-columns: 1fr 340px;
  grid-gap: 25px;
  align-items: start;
}
@media (max-width: 1200px) {
  .casino-section {
    grid-template-columns: 1fr 300px;
  }
}
@media (max-width: 990px) {
  .casino-section {
    display: block;
  }
}
.casino-section .breadcrumbs {
  margin-top: 20px;
}
@media (max-width: 990px) {
  .casino-section .breadcrumbs {
    margin-top: 0;
  }
}
.casino-section__img {
  margin-bottom: 30px;
}
@media (max-width: 990px) {
  .casino-section__img {
    margin-bottom: 25px;
  }
}
.casino-section__img img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  width: 100%;
  border-radius: 16px;
  box-sizing: border-box;
  display: block;
}
.casino-section .padding {
  padding: 0;
}
.casino-section__top {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 990px) {
  .casino-section__top {
    display: grid;
    grid-template-columns: 1fr 95px;
    align-items: center;
    grid-gap: 10px;
    margin-bottom: 10px;
  }
}
.casino-section__info {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 990px) {
  .casino-section__info {
    width: 100%;
    flex-direction: row;
    box-sizing: border-box;
  }
}
.casino-section__title {
  font-size: 36px;
  line-height: 49px;
  color: #1B1112;
  font-weight: 700;
}
@media (max-width: 990px) {
  .casino-section__title {
    font-size: 21px;
    line-height: 25px;
  }
}
.casino-section__rating {
  display: flex;
  align-items: center;
  justify-content: center;
}
.casino-section__rating img {
  margin-left: 10px;
  height: 22px;
  width: 22px;
  object-fit: contain;
}
@media (max-width: 990px) {
  .casino-section__rating img {
    height: 14px;
    width: 14px;
    margin-left: 5px;
  }
}
.casino-section__about {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}

.casino-main {
  box-shadow: 2px 4px 11px 0px rgba(0, 0, 0, 0.0392156863);
  padding: 25px;
  background: #fff;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-gap: 25px;
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .casino-main {
    grid-template-columns: 175px 1fr;
  }
}
@media (max-width: 990px) {
  .casino-main {
    grid-gap: 15px;
    margin-bottom: 20px;
    grid-template-columns: 1fr;
    padding: 15px;
  }
}
.casino-main__right {
  padding: 35px 20px;
  background: #F5F9FC;
  border-radius: 16px;
  display: grid;
  position: relative;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px 30px;
}
@media (max-width: 1200px) {
  .casino-main__right {
    padding: 15px;
    grid-gap: 10px;
  }
}
@media (max-width: 990px) {
  .casino-main__right {
    grid-gap: 10px;
    grid-template-columns: 1fr;
    padding: 15px 40px;
  }
}
@media (max-width: 576px) {
  .casino-main__right {
    height: 22px;
    overflow: hidden;
  }
}
.casino-main__right-arr {
  display: none;
}
@media (max-width: 576px) {
  .casino-main__right-arr {
    display: block;
    position: absolute;
    right: 15px;
    z-index: 9;
    top: 15px;
    transition: 0.3s;
  }
}
.casino-main .right-arr-active {
  transform: rotate(180deg);
}
.casino-main .height-auto {
  height: auto;
}
.casino-main__img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.casino-main__img img {
  height: 200px;
  width: 200px;
  object-fit: cover;
  border-radius: 16px;
}
@media (max-width: 1200px) {
  .casino-main__img img {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 990px) {
  .casino-main__img img {
    height: 100px;
    width: 100px;
  }
}
.casino-main__item {
  display: grid;
  grid-template-columns: 28px 1fr;
  grid-gap: 5px;
  cursor: pointer;
  align-items: center;
}
.casino-main__num {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  width: 28px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 19px;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.casino-main__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  color: #1B1112;
}
.casino-main__text {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #1B1112;
}
.casino-main__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 24.45px;
  width: 100%;
  box-sizing: border-box;
  color: #fff;
  background: #f3b552;
  padding: 12px;
  border-radius: 16px;
  grid-column-start: 1;
  grid-column-end: 3;
  margin: 0 auto;
}
@media (max-width: 990px) {
  .casino-main__btn {
    font-size: 15px;
    grid-column-start: auto;
    grid-column-end: auto;
    line-height: 21px;
  }
}
.casino-main .ts {
  grid-column-start: 1;
  grid-column-end: 3;
  text-align: center;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 990px) {
  .casino-main .ts {
    grid-column-end: 2;
  }
}
.casino-main .ts:hover .ts__hide {
  opacity: 1;
  pointer-events: auto;
}
.casino-main .ts__hide {
  position: absolute;
  width: 100%;
  z-index: 9;
  max-width: 320px;
  min-width: 320px;
  border-radius: 16px;
  box-sizing: border-box;
  padding: 10px;
  background: #FFFFFF;
  box-shadow: 2px 4px 11px 0 rgba(0, 0, 0, 0.0392156863);
  top: 110%;
  font-size: 13px;
  margin: 0;
  pointer-events: none;
  opacity: 0;
  line-height: 18px;
  text-align: left;
}
@media (max-width: 990px) {
  .casino-main .ts__hide {
    max-width: 290px;
    min-width: 290px;
    padding: 8px;
  }
}

.casino-top {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 25px;
  align-items: start;
}
@media (max-width: 1100px) {
  .casino-top {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 990px) {
  .casino-top {
    margin-bottom: 20px;
    grid-gap: 15px;
    grid-template-columns: 1fr;
  }
}
.casino-top__item {
  padding: 15px 15px 5px 15px;
  border-radius: 16px;
  box-shadow: 2px 4px 11px 0px rgba(0, 0, 0, 0.0392156863);
  background: #fff;
  overflow: hidden;
}
.casino-top__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 5px;
}
.casino-top__box {
  display: flex;
  flex-wrap: wrap;
}
.casino-top__text {
  margin: 0 10px 10px 0;
  background: #F5F9FC;
  padding: 5px 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  font-weight: 700;
  border-radius: 6px;
}
.casino-top__text:nth-child(n+11) {
  display: none;
}
.casino-top__text-active {
  display: flex !important;
}

.casino-cat {
  background: #fff;
  border-radius: 16px;
  padding: 15px;
  overflow: hidden;
  box-shadow: 2px 4px 11px 0px rgba(0, 0, 0, 0.0392156863);
  margin-bottom: 30px;
}
@media (max-width: 990px) {
  .casino-cat {
    margin-bottom: 20px;
  }
}
.casino-cat__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  margin-bottom: 10px;
  color: #1B1112;
}
.casino-cat__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 25px 15px;
}
@media (max-width: 990px) {
  .casino-cat__wrap {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 15px;
  }
}
@media (max-width: 576px) {
  .casino-cat__wrap {
    grid-gap: 10px 5px;
    grid-template-columns: 1fr 1fr;
  }
}
.casino-cat__wrap-2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 25px 15px;
}
@media (max-width: 990px) {
  .casino-cat__wrap-2 {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 15px;
  }
}
@media (max-width: 576px) {
  .casino-cat__wrap-2 {
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr;
  }
}
.casino-cat .games-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #EEF3F7;
  border-radius: 8px;
  text-align: center;
}
.casino-cat .games-item img {
  max-width: 100%;
  display: block;
  height: 25px;
  width: 100%;
  margin: 0 5px 0 0;
  object-fit: contain;
}
.casino-cat .games-item:nth-child(n+11) {
  display: none;
}
.casino-cat .providers-item {
  box-shadow: 2px 4px 11px 0 rgba(0, 0, 0, 0.0392156863);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: #EEF3F7;
  border-radius: 8px;
  text-align: center;
}
@media (max-width: 990px) {
  .casino-cat .providers-item {
    grid-template-columns: 90px 1fr;
  }
}
@media (max-width: 400px) {
  .casino-cat .providers-item {
    grid-template-columns: 1fr 90px;
  }
}
.casino-cat .providers-item img {
  height: 80px;
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 990px) {
  .casino-cat .providers-item img {
    height: 60px;
  }
}
.casino-cat .providers-item .providers-item__box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}
@media (max-width: 990px) {
  .casino-cat .providers-item .providers-item__box {
    height: 60px;
  }
}
.casino-cat .providers-item p {
  color: #1B1112;
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  padding: 5px;
}
.casino-cat .providers-item .Microgaming {
  object-fit: contain;
  height: auto;
  margin: 0 auto;
  width: 85px;
}
.casino-cat .providers-item:nth-child(n+9) {
  display: none;
}
.casino-cat .pay-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #EEF3F7;
  border-radius: 8px;
  text-align: center;
}
.casino-cat .pay-item img {
  height: 50px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 5px 0 0;
  object-fit: contain;
}
.casino-cat .pay-item:nth-child(n+11) {
  display: none;
}
.casino-cat .active__flex {
  display: flex !important;
}
.casino-cat .active__grid {
  display: grid !important;
}

.table-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 990px) {
  .table-group {
    margin-bottom: 20px;
    grid-template-columns: 1fr;
  }
}

.table-sm__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #EEF3F7;
}
.table-sm__item p {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  line-height: 18px;
  padding: 12px;
  color: #1B1112;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.table-sm__item p:last-child {
  border-left: 1px solid #fff;
  text-align: right;
  font-weight: 400;
}
.table-sm__item a {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  cursor: pointer;
  line-height: 18px;
  padding: 12px;
  color: #1B1112;
}
.table-sm__item:nth-child(2n) {
  background: #fff;
}
.table-sm__item:nth-child(2n) p:last-child {
  border-left: 1px solid #EEF3F7;
}

@media (max-width: 990px) {
  .desk {
    display: none;
  }
}

.mob {
  display: none;
}
@media (max-width: 990px) {
  .mob {
    display: block;
    margin-bottom: 20px;
  }
}

.sidebar__casino-title-page {
  color: #1B1112;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  margin-bottom: 5px;
}

.sidebar__casino-bonus-page {
  color: #B2283F;
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
}

.show-all_element {
  order: 1;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #B2283F;
  border-radius: 14px 14px 0 0;
  position: relative;
  bottom: -5px;
}
.show-all_element svg {
  transition: 0.3s;
}

.show-all_element-active svg {
  transform: rotate(180deg);
}

.show-all_element-2 {
  order: 1;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #B2283F;
  border-radius: 14px 14px 0 0;
  position: relative;
  bottom: -15px;
}
.show-all_element-2 svg {
  transition: 0.3s;
}

@media (max-width: 576px) {
  .sidebar-right {
    display: none;
  }
}

.sidebar-mob-casino {
  display: none;
}
@media (max-width: 576px) {
  .sidebar-mob-casino {
    display: block;
    margin-bottom: 20px;
  }
}

.casino-content {
  padding: 15px;
  background: #fff;
  border-radius: 16px;
}

.content-page {
  overflow: hidden;
}
.content-page img.alignleft {
  float: left;
  margin: 0 10px 10px 0;
}
@media (max-width: 576px) {
  .content-page img.alignleft {
    float: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: block;
    margin: 0 0 10px 0;
    object-fit: cover;
  }
}
.content-page figure {
  width: 100% !important;
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
  display: block;
  margin: 0;
}
.content-page img.alignright {
  margin: 0 0 10px 10px;
  float: right;
}
@media (max-width: 576px) {
  .content-page img.alignright {
    float: none;
    width: 100%;
    object-fit: cover;
    max-width: 100%;
    box-sizing: border-box;
    display: block;
    margin: 0 0 10px 0;
  }
}
.content-page img.size-full {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
  max-width: 100%;
}
@media (max-width: 576px) {
  .content-page img.size-full {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    object-fit: cover;
    display: block;
    margin: 0 0 10px 0;
  }
}
.content-page img.aligncenter {
  display: block;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .content-page img.aligncenter {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: block;
    object-fit: cover;
    margin: 0 0 10px 0;
  }
}
.content-page p {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #1B1112;
  margin-bottom: 15px;
}
@media (max-width: 990px) {
  .content-page p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 22px;
  }
}
.content-page a {
  color: #3aa4dd;
  text-decoration: none;
}
.content-page a:hover {
  text-decoration: underline;
}
.content-page strong {
  font-weight: 700;
}
.content-page h1, .content-page h2, .content-page h3, .content-page h4, .content-page h5 {
  font-weight: 700;
  color: #1B1112;
  line-height: normal;
}
.content-page h1 {
  font-size: 36px;
  line-height: 48px;
  color: #1B1112;
  margin-bottom: 25px;
}
@media (max-width: 990px) {
  .content-page h1 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 24px;
  }
}
.content-page h2 {
  margin-bottom: 10px;
  font-size: 26px;
  line-height: normal;
}
@media (max-width: 990px) {
  .content-page h2 {
    font-size: 24px;
  }
}
.content-page h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: normal;
}
@media (max-width: 990px) {
  .content-page h3 {
    font-size: 22px;
  }
}
.content-page h4 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: normal;
}
@media (max-width: 990px) {
  .content-page h4 {
    font-size: 20px;
  }
}
.content-page h5 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: normal;
}
@media (max-width: 990px) {
  .content-page h5 {
    font-size: 18px;
  }
}
.content-page p {
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  color: #1B1112;
  margin: 0 0 10px 0;
}
@media (max-width: 990px) {
  .content-page p {
    font-size: 14px;
    line-height: 22px;
  }
}
.content-page p .wp-image-2418 {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  object-fit: cover;
}
.content-page p .wp-image-2419 {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  object-fit: cover;
}
.content-page p .wp-image-2420 {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  object-fit: cover;
}
.content-page ol {
  margin: 0 0 15px 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
  position: relative;
  z-index: 2;
}
@media (max-width: 990px) {
  .content-page ol {
    margin-bottom: 10px;
    grid-template-columns: 1fr;
  }
}
.content-page ul {
  margin: 0 0 15px 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
  position: relative;
  z-index: 2;
  list-style-type: none;
}
@media (max-width: 990px) {
  .content-page ul {
    margin-bottom: 10px;
    grid-template-columns: 1fr;
  }
}
.content-page ul li {
  position: relative;
}
.content-page ul li::after {
  content: url("/wp-content/themes/paypokies/assets/img/freespeen-2.svg");
  display: block;
  position: absolute;
  left: -18px;
  top: 1px;
  height: 12px;
  width: 12px;
}
.content-page li {
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  color: #1B1112;
  margin: 0 0 10px 0;
}
@media (max-width: 990px) {
  .content-page li {
    font-size: 14px;
    line-height: 22px;
  }
}
.content-page ul {
  padding-left: 20px;
}
.content-page ol {
  padding-left: 20px;
}
.content-page .reviewer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 25px;
  margin-bottom: 15px;
}
@media (max-width: 990px) {
  .content-page .reviewer {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
.content-page .reviewer__item {
  min-height: 250px;
  background: #16A9A8;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 990px) {
  .content-page .reviewer__item {
    padding: 20px 10px;
    min-height: auto;
  }
}
.content-page .reviewer__text {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}
.content-page .reviewer__box {
  display: flex;
  align-items: center;
  margin-top: auto;
}
.content-page .reviewer__box img {
  border-radius: 50%;
  height: 25px;
  width: 25px;
  margin: 0 10px 0 0;
  object-fit: cover;
}
.content-page .reviewer__box p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  color: #fff;
}
.content-page .list-shortcode {
  list-style-type: none;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
  background: #DEECFC;
  border: 3px solid #2380EB;
  border-radius: 16px;
  padding: 15px;
  margin-bottom: 15px;
}
@media (max-width: 990px) {
  .content-page .list-shortcode {
    padding: 12px;
  }
}
.content-page .list-shortcode li {
  padding-left: 20px;
  position: relative;
}
.content-page .list-shortcode li img {
  position: absolute;
  left: 0;
  height: 14px;
  width: 14px;
  margin: 0;
  object-fit: contain;
  top: 2px;
}
@media (max-width: 990px) {
  .content-page .list-shortcode li img {
    top: 3px;
  }
}
.content-page .slot-main {
  margin-bottom: 25px;
  padding: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 480px;
  border-radius: 16px;
}
@media (max-width: 990px) {
  .content-page .slot-main {
    margin-bottom: 20px;
  }
}
.content-page .slot-main::after {
  content: "";
  background: rgba(0, 0, 0, 0.2784313725);
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.content-page .slot-main img {
  position: absolute;
  left: 0;
  right: 0;
  filter: blur(2px);
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 990px) {
  .content-page .slot-main {
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .content-page .slot-main {
    height: 280px;
  }
}
.content-page .slot-main .slot-main__info {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 25px;
  z-index: 2;
  position: absolute;
}
.content-page .slot-main .slot-main__info button {
  border-radius: 16px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  color: #fff;
  background: #F3B552;
  width: 270px;
  box-sizing: border-box;
}
@media (max-width: 990px) {
  .content-page .slot-main .slot-main__info button {
    width: 220px;
    font-size: 14px;
    line-height: 19px;
  }
}
.content-page .slot-main .slot-main__info button:nth-child(1) {
  background: #B2283F;
}
.content-page .ask {
  padding: 15px;
  background: #FAEAED;
  position: relative;
  margin-bottom: 15px;
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 15px;
}
.content-page .ask__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 990px) {
  .content-page .ask__top {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
}
.content-page .ask__img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-page .ask__img img {
  border-radius: 50%;
  object-fit: cover;
  height: 80px;
  width: 80px;
}
.content-page .ask__bottom p:last-child {
  margin: 0;
}
.content-page .ask__author {
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-gap: 20px;
  align-items: center;
}
.content-page .ask__title {
  font-size: 18px;
  font-weight: 700;
  color: #B2283F;
  margin-bottom: 10px;
  line-height: 1;
}
.content-page .ask__prof {
  margin: 0;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  color: #B0B8CE;
}
.content-page .ask__btn {
  max-width: 190px;
  width: 100%;
  padding: 8px;
  font-size: 15px;
  background: #B2283F;
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
  display: flex;
  align-items: center;
  margin: 0;
  box-sizing: border-box;
  justify-content: center;
  text-align: center;
}
@media (max-width: 576px) {
  .content-page .ask__btn {
    max-width: 100%;
  }
}
.content-page .crons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 25px;
  margin-bottom: 15px;
}
@media (max-width: 990px) {
  .content-page .crons {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
}
.content-page .crons__title {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #16A9A8;
  padding: 20px 6px;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  writing-mode: vertical-rl;
  margin: 0;
}
.content-page .crons__title img {
  margin: 5px 0 0 0;
}
.content-page .crons__box {
  background: #EEF3F7;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 32px 1fr;
}
.content-page .crons__box:nth-child(2) .crons__title {
  background: #B2283F;
}
.content-page .crons__list {
  padding: 15px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 990px) {
  .content-page .crons__list {
    padding: 10px;
  }
}
.content-page .crons__text {
  position: relative;
  padding-left: 15px;
}
.content-page .crons__text::after {
  content: "";
  height: 3px;
  width: 3px;
  border-radius: 50%;
  display: block;
  position: absolute;
  background: #000;
  left: 3px;
  top: 8px;
}
.content-page .crons__text:last-child {
  margin-bottom: 0;
}
.content-page .content-color {
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 15px;
}
@media (max-width: 990px) {
  .content-page .content-color {
    padding: 10px;
  }
}
.content-page .content-color p:last-child {
  margin: 0;
}
.content-page .content-color ul:last-child {
  margin: 0;
}
.content-page .content-color ol:last-child {
  margin: 0;
}
.content-page .quotes {
  padding: 25px 75px 25px 25px;
  background: #FAEAED;
  position: relative;
  margin-bottom: 15px;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 990px) {
  .content-page .quotes {
    padding: 20px;
  }
}
.content-page .quotes__title {
  color: #B2283F;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  line-height: 30px;
  padding-right: 60px;
}
@media (max-width: 990px) {
  .content-page .quotes__title {
    font-size: 16px;
    line-height: 19px;
    padding: 0;
  }
}
.content-page .quotes__title img {
  margin: 0 20px 0 0;
}
@media (max-width: 990px) {
  .content-page .quotes__title img {
    height: 25px;
    margin: 0 15px 0 0;
    width: 25px;
  }
}
.content-page .quotes__img {
  position: absolute;
  right: -50px;
  top: 12px;
  height: 150px;
  margin: 0;
}
@media (max-width: 990px) {
  .content-page .quotes__img {
    height: 40px;
    top: 10px;
    width: auto;
    right: 0;
  }
}
.content-page .quotes__img-2 {
  position: absolute;
  right: -56px;
  top: 12px;
  height: 100px;
  margin: 0;
}
@media (max-width: 990px) {
  .content-page .quotes__img-2 {
    height: 40px;
    top: 10px;
    width: auto;
    right: 0;
  }
}
.content-page .quotes__text {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  padding-right: 60px;
  margin: 0;
}
@media (max-width: 990px) {
  .content-page .quotes__text {
    font-size: 14px;
    line-height: 22px;
    padding: 0;
  }
}
.content-page .quotes__text-2 p:last-child {
  margin-bottom: 0;
}
.content-page .sources {
  margin-bottom: 15px;
}
.content-page .sources__call {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  border: 1px solid rgb(204, 204, 204);
}
.content-page .sources__call img {
  transition: 0.3s;
}
.content-page .sources__call-active img {
  transform: rotate(180deg);
}
.content-page .sources__title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  margin: 0 10px 0 0;
}
@media (max-width: 990px) {
  .content-page .sources__title {
    line-height: 1;
    font-size: 16px;
  }
}
.content-page .sources__wrap {
  display: none;
  padding: 10px 15px;
  border-bottom: 1px solid rgb(204, 204, 204);
  border-left: 1px solid rgb(204, 204, 204);
  border-right: 1px solid rgb(204, 204, 204);
}
.content-page .sources__wrap a {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 15px;
  color: #B2283F;
  display: block;
}
.content-page .sources__wrap a:last-child {
  margin: 0;
}
.content-page .rest-info {
  margin-bottom: 15px;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 15px;
}
.content-page .rest-info__item-img {
  display: flex;
  align-items: center;
}
.content-page .rest-info img {
  object-fit: cover;
  border-radius: 16px;
  height: 100px;
  width: 100px;
}
@media (max-width: 990px) {
  .content-page .rest-info img {
    height: 45px;
    width: 45px;
  }
}
.content-page .rest-info__title {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 30px;
  color: #B2283F;
}
@media (max-width: 990px) {
  .content-page .rest-info__title {
    font-size: 16px;
    line-height: 25px;
    margin: 0 10px;
  }
}
.content-page .rest-info__title-mob {
  display: none;
}
@media (max-width: 990px) {
  .content-page .rest-info__title-mob {
    display: block;
  }
}
@media (max-width: 990px) {
  .content-page .rest-info__title-desk {
    display: none;
  }
}
.content-page .rest-info__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}
@media (max-width: 990px) {
  .content-page .rest-info__text {
    font-size: 14px;
    line-height: 20px;
  }
}
.content-page .rest-info__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-gap: 25px;
  align-items: start;
}
@media (max-width: 990px) {
  .content-page .rest-info__item {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
}
@media (max-width: 990px) {
  .content-page .rest-info__item:nth-child(2n) .rest-info__item-img {
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}
@media (max-width: 990px) {
  .content-page .rest-info__item:nth-child(2n) .rest-info__title {
    margin: 0;
  }
}
.content-page .tools {
  margin-bottom: 20px;
}
.content-page .tools__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 15px;
  margin-bottom: 20px;
}
@media (max-width: 990px) {
  .content-page .tools__top {
    grid-template-columns: 1fr;
    margin-bottom: 15px;
    grid-gap: 10px;
  }
}
.content-page .tools__top-text {
  padding: 12px 7px;
  background: #FDEBE9;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin: 0;
}
.content-page .tools__top-text p {
  color: #B2283F;
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  margin: 0;
  text-align: center;
}
.content-page .tools__top-text span {
  color: #1B1112;
  margin-left: 3px;
  display: inline;
  font-weight: 400;
}
.content-page .tools__bottom {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 12px;
}
.content-page .tools__bottom-item {
  padding: 12px 30px;
  display: grid;
  grid-template-columns: 150px 1fr;
  grid-gap: 30px;
  align-items: center;
  background: #EEF3F7;
}
@media (max-width: 990px) {
  .content-page .tools__bottom-item {
    padding: 10px;
    grid-template-columns: 70px 1fr;
    grid-gap: 20px;
  }
}
.content-page .tools__bottom-item img {
  max-width: 100%;
  height: auto;
  width: 100%;
  object-fit: contain;
}
.content-page .tools__bottom-title {
  font-weight: 700;
  margin-bottom: 10px;
  color: #B2283F;
  font-size: 24px;
  line-height: 30px;
}
@media (max-width: 990px) {
  .content-page .tools__bottom-title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 5px;
  }
}
.content-page .tools__bottom-pretitle {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1B1112;
  line-height: 21px;
}
@media (max-width: 990px) {
  .content-page .tools__bottom-pretitle {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 5px;
  }
}
.content-page .tools__bottom-text {
  margin: 0;
  font-size: 14px;
  line-height: 21px;
  color: #1B1112;
}
@media (max-width: 990px) {
  .content-page .tools__bottom-text {
    font-size: 13px;
    line-height: 18px;
  }
}
.content-page .screen {
  margin-bottom: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 25px;
}
@media (max-width: 990px) {
  .content-page .screen {
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
  }
}
.content-page .screen__img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-page .screen__img img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
}
.content-page .main-table {
  margin: 20px 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 25px;
}
.content-page .main-table__item {
  position: relative;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1019607843);
}
.content-page .author-quote {
  position: relative;
  margin-bottom: 15px;
  display: grid;
  grid-template-columns: 75px 1fr;
  grid-gap: 20px;
  padding: 10px;
  border-radius: 6px;
  background: #fdebe9;
  border: 3px solid #eb3423;
  align-items: start;
}
@media (max-width: 990px) {
  .content-page .author-quote {
    grid-gap: 15px;
  }
}
@media (max-width: 576px) {
  .content-page .author-quote {
    grid-template-columns: 1fr;
  }
}
.content-page .author-quote__left {
  top: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  left: 0;
  align-items: flex-start;
  justify-content: flex-start;
}
.content-page .author-quote__left img {
  margin: 0 auto 5px auto;
  height: 55px;
  object-fit: cover;
  border-radius: 50%;
  width: 55px;
}
@media (max-width: 990px) {
  .content-page .author-quote__left img {
    height: 40px;
    width: 40px;
  }
}
.content-page .author-quote__left p {
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  color: #000;
  margin: 0;
  line-height: 1;
  width: 100%;
  box-sizing: border-box;
  display: block;
}
.content-page .author-quote__right p:last-child {
  margin: 0;
}
.content-page .ts {
  text-align: center;
  margin-bottom: 10px;
  margin-top: -5px;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  position: relative;
}
@media (max-width: 990px) {
  .content-page .ts {
    margin: 10px 0 0 0;
  }
}
.content-page .ts:hover .ts__hide {
  opacity: 1;
  pointer-events: auto;
}
.content-page .ts__hide {
  position: absolute;
  width: 100%;
  z-index: 9;
  max-width: 320px;
  min-width: 320px;
  border-radius: 16px;
  box-sizing: border-box;
  padding: 10px;
  background: #FFFFFF;
  box-shadow: 2px 4px 11px 0 rgba(0, 0, 0, 0.0392156863);
  top: 110%;
  right: 0;
  font-size: 13px;
  margin: 0;
  pointer-events: none;
  opacity: 0;
  line-height: 18px;
  text-align: left;
}
@media (max-width: 990px) {
  .content-page .ts__hide {
    max-width: 290px;
    min-width: 290px;
    padding: 8px;
  }
}
.content-page .disabled-element {
  display: none;
}
.content-page .main-table__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
  line-height: normal;
}
.content-page .main-table__top {
  padding: 12px 50px 12px 25px;
  background: #fff;
  display: grid;
  grid-template-columns: 2fr 190px 2fr;
  grid-gap: 20px;
}
.content-page .main-table__item:nth-child(1) .main-table__top {
  background: #FBEACC;
}
.content-page .main-table__item:nth-child(2) .main-table__top {
  background: #FBEACC;
}
.content-page .main-table__item:nth-child(3) .main-table__top {
  background: #FBEACC;
}
.content-page .main-table__left {
  display: grid;
  grid-template-columns: 95px 1fr;
  grid-gap: 20px;
}
@media (max-width: 1100px) {
  .content-page .main-table__top {
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
  }
}
.content-page .view-all-btn {
  appearance: none;
  outline: none;
  cursor: pointer;
  background: #B2283F;
  padding: 10px 20px;
  text-align: center;
  color: #fff;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 700;
  width: 100%;
  max-width: 180px;
  margin: 0 auto 15px auto;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .content-page .view-all-btn {
    max-width: 100%;
  }
}
.content-page .main-table__num {
  position: absolute;
  padding: 10px 8px 5px 8px;
  background: #B2283F;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 2;
  border-radius: 4px;
  left: 12px;
  color: #fff;
  top: -10px;
}
.content-page .main-table__img img {
  border-radius: 4px;
  height: 96px;
  width: 96px;
  object-fit: contain;
}
.content-page .main-table__pretitle {
  margin: 0 0 8px 0;
  font-size: 14px;
  display: block;
  line-height: 14.52px;
  font-weight: 400;
  color: #7e7e7e;
}
.content-page .main-table__bonus {
  text-align: left;
  margin: 0 0 8px 0;
  font-size: 18px;
  line-height: 22px;
  font-weight: 900;
  display: block;
  color: #B2283F;
}
.content-page .main-table__link {
  display: block;
  color: #7e7e7e;
  text-decoration: underline;
  font-weight: 400;
  font-size: 14px;
  text-align: left;
}
.content-page .main-table__list ul {
  list-style-type: none;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 3px;
  padding: 0;
  margin: 0;
}
.content-page .main-table__list ul li {
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: flex-start;
  margin-bottom: 0;
}
.content-page .main-table__list ul li::after {
  display: none !important;
}
.content-page .main-table__list ul li img {
  margin: 0 3px 0 0;
  position: relative;
  top: 4px;
}
.content-page .main-table__right {
  max-width: 240px;
  width: 100%;
  box-sizing: border-box;
  margin-left: auto;
}
.content-page .main-table__btn {
  padding: 10px 20px;
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #B2283F;
  border-radius: 16px;
  font-size: 18px;
  color: #fff;
  line-height: 20px;
  font-weight: 700;
}
.content-page .main-table__attr {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
}
.content-page .main-table__attr-item {
  display: flex;
  flex-direction: column;
}
.content-page .main-table__attr-item img {
  margin: 0 auto 3px auto;
}
.content-page .main-table__attr-item p {
  line-height: 16px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}
.content-page .main-table__attr-item p span {
  font-size: 10px;
  display: block;
  font-weight: 400;
}
.content-page .main-table__bottom {
  padding: 10px 25px;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.content-page .main-table__games {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.content-page .main-table__games-item {
  display: flex;
  align-items: center;
  margin: 0 10px 0 0;
  font-size: 12px;
  font-weight: 400;
}
.content-page .main-table__games-item img {
  margin: 0 5px 0 0;
}
.content-page .main-table__flag {
  display: flex;
  align-items: center;
}
.content-page .main-table__flag p {
  font-size: 13px;
  font-weight: 400;
  margin: 0 5px;
  color: #7e7e7e;
}
.content-page .main-table__games-mob {
  display: none;
}
.content-page .main-table__flag-mob {
  display: none;
}
.content-page .main-table__attr-mob {
  display: none;
}
.content-page .mob-section {
  display: none;
}
@media (max-width: 900px) {
  .content-page .main-table__list ul li {
    font-size: 12px;
  }
  .content-page .mob-section {
    display: block;
  }
  .content-page .main-table__attr {
    display: none;
  }
  .content-page .main-table__attr-mob {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
    margin-bottom: 10px;
  }
  .content-page .main-table__num {
    left: 5px;
    padding: 7px 8px 6px 8px;
    font-size: 14px;
  }
  .content-page .main-table__bonus {
    margin-bottom: 5px;
    font-size: 14px;
  }
  .content-page .main-table__pretitle {
    margin-bottom: 5px;
    font-size: 12px;
    line-height: 14px;
  }
  .content-page .main-table__top {
    padding: 12px;
  }
  .content-page .main-table__right {
    max-width: 100%;
    grid-column-start: 1;
    grid-column-end: 3;
  }
  .content-page .main-table__btn {
    grid-row-start: 2;
    grid-column-start: 1;
    grid-column-end: 3;
    margin: 0 auto;
    width: 100%;
    max-width: 180px;
    box-sizing: border-box;
  }
  .content-page .main-table__games-mob {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }
  .content-page .main-table__pretitle {
    width: 100%;
    box-sizing: border-box;
  }
  .content-page .main-table__games-item {
    margin: 0 5px 5px 0;
  }
  .content-page .main-table__flag-mob {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .content-page .main-table__img img {
    height: 70px;
    width: 70px;
  }
  .content-page .main-table__top {
    grid-template-columns: 1fr 175px;
    grid-gap: 10px;
  }
  .content-page .main-table__left {
    grid-template-columns: 70px 1fr;
    grid-gap: 12px;
    grid-column-start: 1;
    grid-column-end: 3;
  }
  .content-page .main-table__bottom {
    display: none;
  }
  .content-page .main-table__flag-mob {
    position: relative;
  }
  .content-page .main-table__flag-mob p {
    font-size: 9px;
    font-weight: 400;
    margin: 0 4px;
    color: #7e7e7e;
    white-space: nowrap;
  }
  .content-page .main-table__link {
    font-size: 13px;
  }
  .content-page .main-table__attr-item p {
    font-size: 11px;
    line-height: 15px;
  }
}
.content-page .faq {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 15px;
}
.content-page .faq__item {
  padding-left: 35px;
  position: relative;
}
@media (max-width: 576px) {
  .content-page .faq__item {
    padding: 0;
  }
}
.content-page .faq__item::after {
  content: "";
  background: #B2283F;
  height: 4px;
  width: 15px;
  position: absolute;
  left: 3px;
  top: 10px;
  display: block;
}
.content-page .faq__title {
  font-size: 21px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 8px;
}
@media (max-width: 576px) {
  .content-page .faq__title {
    padding-left: 30px;
  }
}
.content-page .faq__text {
  margin: 0;
  line-height: normal;
  font-size: 15px;
}
.content-page .faq__author {
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-gap: 15px;
}
@media (max-width: 576px) {
  .content-page .faq__author {
    grid-template-columns: 45px 1fr;
  }
}
.content-page .faq__author img {
  height: 60px;
  width: 60px;
  object-fit: cover;
  border-radius: 50%;
}
@media (max-width: 576px) {
  .content-page .faq__author img {
    height: 45px;
    width: 45px;
  }
}
.content-page .post-other {
  display: grid;
  margin-bottom: 20px;
  grid-template-columns: 1fr 1fr;
  grid-gap: 25px;
}
@media (max-width: 990px) {
  .content-page .post-other {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
}
.content-page .post-other__pretitle {
  font-size: 36px;
  line-height: 49px;
  font-weight: 700;
  margin-bottom: 25px;
}
@media (max-width: 990px) {
  .content-page .post-other__pretitle {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 10px;
  }
}
.content-page .post-other__item {
  background: #eef3f7;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
}
.content-page .post-other__item:hover {
  text-decoration: none;
}
.content-page .post-other__title {
  padding: 20px 15px;
  color: #282828;
  font-size: 18px;
  display: block;
  line-height: 28px;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 990px) {
  .content-page .post-other__title {
    padding: 15px;
  }
}
.content-page .post-other__img {
  max-width: 100%;
  box-sizing: border-box;
  width: 100%;
  object-fit: cover;
  height: auto;
}
.content-page .post-other__short {
  padding: 10px 15px 5px 15px;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  margin: 0;
  color: #1B1112;
}
@media (max-width: 990px) {
  .content-page .post-other__short {
    padding: 10px;
  }
}
.content-page .post-other__bottom {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 990px) {
  .content-page .post-other__bottom {
    padding: 0 10px 10px 10px;
  }
}
.content-page .post-other__bottom p {
  font-size: 14px;
  color: #7E7E7E;
  margin: 0;
  font-weight: 400;
}
.content-page .post-other__bottom img {
  margin: 0 5px;
  border-radius: 50%;
  height: auto;
}
.content-page .post-other__author {
  display: flex;
  align-items: center;
}
.content-page .slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 25px;
}
.content-page .slots__item {
  box-shadow: 0 0 5px 0 #7f8c8d;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 30px;
  text-decoration: none;
}
@media (max-width: 990px) {
  .content-page .slots__item {
    margin-bottom: 15px;
  }
}
.content-page .slots__item:hover {
  text-decoration: none;
}
.content-page .slots__item-pic {
  width: 100%;
  height: 135px;
  position: relative;
  border-radius: 8px;
}
.content-page .slots__item-pic::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: 0.7s;
  border-radius: 8px;
}
.content-page .slots__item-img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transition: 0.7s;
  border-radius: 0 0 8px 8px;
}
.content-page .slots__item-link {
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: Roboto, sans-serif;
  width: 100%;
  max-width: 70%;
  opacity: 0;
  transition: 0.7s;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding: 14px;
  color: #fff;
  border-radius: 6px;
  background: #b2283f;
}
.content-page .slots__item-link svg {
  margin-left: 12px;
}
.content-page .slots__item:hover .slots__item-link {
  opacity: 1;
}
.content-page .slots__item:hover .slots__item-pic::after {
  opacity: 1;
}
.content-page .slots__item-name {
  display: flex;
  justify-content: center;
  margin-top: 14px;
  font-family: Roboto, sans-serif;
  color: #000;
  transition: 0.3s;
  text-align: center;
  font-weight: 700;
}
.content-page .slots__item-name:focus,
.content-page .slots__item-name:hover {
  color: #b13ced;
}
@media (max-width: 992px) {
  .content-page .slots {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .content-page .slots__item.best_games_item {
    padding: 0 0 14px 0;
  }
  .content-page .slots__item-link {
    padding: 12px;
    font-family: Roboto, sans-serif;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: 14px;
    opacity: 1;
    max-width: 130px;
    height: 14px;
    margin: 0;
    border-radius: 8px;
  }
  .content-page .slots__item-pic::after {
    content: none;
  }
  .content-page .slots__item-name {
    margin-top: 12px;
    font-family: Roboto, sans-serif;
    padding: 0 12px;
  }
  .content-page .slots__item {
    text-align: left;
    position: relative;
  }
  .content-page .slots__item-pic {
    height: 100px;
  }
}
@media (max-width: 768px) {
  .content-page .slots {
    grid-gap: 12px;
    grid-template-columns: 1fr 1fr;
  }
}
.content-page table {
  margin: 0 auto 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 990px) {
  .content-page table {
    display: block;
    max-width: 100%;
    width: 100%;
    overflow-y: scroll;
  }
}
.content-page table tr:nth-child(odd) td {
  background: #edeff6;
}
.content-page table td {
  padding: 6px;
}
.content-page table td {
  outline: 1px solid #ddd;
}
.content-page .custom-table {
  margin: 15px 0;
}
.content-page .custom-table::-webkit-scrollbar {
  display: none;
  opacity: 0;
  background: transparent;
}
.content-page .custom-table::-webkit-scrollbar-thumb {
  display: none;
  opacity: 0;
  background: transparent;
}
@media (max-width: 990px) {
  .content-page .custom-table {
    width: 100%;
    box-sizing: border-box;
    overflow-y: scroll;
  }
}
.content-page .custom-table__title {
  display: grid;
}
.content-page .custom-table__item {
  display: grid;
}
.content-page .custom-table p {
  border: 1px solid #ddd;
  padding: 7px;
  font-size: 15px;
  color: #000;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-page .custom-table__title p {
  background: #edeff6;
  font-weight: 600;
}
.content-page .custom-table img {
  max-width: 100%;
  height: 60px;
  object-fit: contain;
  border-radius: 5px;
}
.content-page .custom-table__item a {
  font-weight: 600;
}
.content-page .custom-table__item p:last-child a {
  background: #F3B552;
  padding: 5.5px 15px;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  font-size: 15px;
  width: 100%;
  font-weight: 700;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-page .table-fourth {
  margin: 15px 0;
}
.content-page .table-fourth__item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
.content-page .table-fourth::-webkit-scrollbar {
  display: none;
  opacity: 0;
  background: transparent;
}
.content-page .table-fourth::-webkit-scrollbar-thumb {
  display: none;
  opacity: 0;
  background: transparent;
}
@media (max-width: 990px) {
  .content-page .table-fourth__item {
    grid-template-columns: 100px 110px 110px 110px 110px 150px;
  }
  .content-page .table-fourth {
    width: 100%;
    box-sizing: border-box;
    overflow-y: scroll;
  }
}
.content-page .table-fourth__item:nth-child(1) p {
  background: #edeff6;
  font-weight: 600;
}
.content-page .table-fourth__item p:nth-child(1) {
  font-weight: 600;
}
.content-page .table-fourth__item p {
  border: 1px solid #ddd;
  padding: 7px;
  font-size: 15px;
  color: #000;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-page .table-fourth__item div {
  border: 1px solid #ddd;
  padding: 7px;
  font-size: 15px;
  color: #000;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.content-page .table-fourth__item div a {
  margin-right: 3px;
  display: inline-block;
}
.content-page .table-fourth__item img {
  max-width: 100%;
  height: 70px;
  object-fit: contain;
  border-radius: 5px;
}
.content-page .table-fourth__item p a {
  color: #b2283f;
}
.content-page .table-fourth__item p:last-child a {
  background: red;
  padding: 5.5px 10px;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-page .table-fourth__item p:last-child button {
  background: red;
  padding: 5.5px 10px;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-page .table-fourth__item p:last-child a:hover {
  text-decoration: none;
}
.content-page .table-third {
  margin: 15px 0;
}
.content-page .table-third__item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.content-page .table-sthird::-webkit-scrollbar {
  display: none;
  opacity: 0;
  background: transparent;
}
.content-page .table-third::-webkit-scrollbar-thumb {
  display: none;
  opacity: 0;
  background: transparent;
}
@media (max-width: 990px) {
  .content-page .table-third__item {
    grid-template-columns: 100px 110px 110px 140px 150px;
  }
  .content-page .table-third {
    width: 100%;
    box-sizing: border-box;
    overflow-y: scroll;
  }
}
.content-page .table-third__item:nth-child(1) p {
  background: #edeff6;
  font-weight: 600;
}
.content-page .table-third__item p:nth-child(1) {
  font-weight: 600;
}
.content-page .table-third__item p {
  border: 1px solid #ddd;
  padding: 7px;
  font-size: 15px;
  color: #000;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-page .table-third__item div {
  border: 1px solid #ddd;
  padding: 7px;
  font-size: 15px;
  color: #000;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.content-page .table-third__item div a {
  margin-right: 3px;
  display: inline-block;
}
.content-page .table-third__item img {
  max-width: 100%;
  height: 70px;
  object-fit: contain;
  border-radius: 5px;
}
.content-page .table-third__item p a {
  color: #003cff !important;
}
.content-page .table-third__item p:last-child a {
  background: red;
  padding: 5.5px 10px;
  text-align: center;
  color: #fff !important;
  border-radius: 5px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-page .table-third__item p:last-child button {
  background: red;
  padding: 5.5px 10px;
  text-align: center;
  color: #fff !important;
  border-radius: 5px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-page .table-third__item p:last-child a:hover {
  text-decoration: none;
}
.content-page .table-first {
  margin: 15px 0;
}
.content-page .table-first__item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
}
.content-page .table-first::-webkit-scrollbar {
  display: none;
  opacity: 0;
  background: transparent;
}
.content-page .table-first::-webkit-scrollbar-thumb {
  display: none;
  opacity: 0;
  background: transparent;
}
@media (max-width: 990px) {
  .content-page .table-first__item {
    grid-template-columns: 220px 110px 110px 110px 110px 150px;
  }
  .content-page .table-first {
    width: 100%;
    box-sizing: border-box;
    overflow-y: scroll;
  }
}
.content-page .table-first__item:nth-child(1) p {
  background: #edeff6;
  font-weight: 600;
}
.content-page .table-first__item p:nth-child(1) {
  font-weight: 600;
}
.content-page .table-first__item p {
  border: 1px solid #ddd;
  padding: 7px;
  font-size: 15px;
  color: #000;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-page .table-first__item p a {
  color: #003cff !important;
}
.content-page .table-first__item p:last-child a {
  background: red;
  padding: 5.5px 10px;
  text-align: center;
  color: #fff !important;
  border-radius: 5px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-page .table-first__item p:last-child button {
  background: red;
  padding: 5.5px 10px;
  text-align: center;
  color: #fff !important;
  border-radius: 5px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-page .table-first__item p:last-child a:hover {
  text-decoration: none;
}
.content-page .table-second {
  margin: 15px auto;
  max-width: 775px;
  width: 100%;
  box-sizing: border-box;
}
.content-page .table-second__item {
  display: grid;
  grid-template-columns: 30px 150px 1fr 165px;
}
.content-page .table-second::-webkit-scrollbar {
  display: none;
  opacity: 0;
  background: transparent;
}
.content-page .table-second::-webkit-scrollbar-thumb {
  display: none;
  opacity: 0;
  background: transparent;
}
@media (max-width: 990px) {
  .content-page .table-second__item {
    grid-template-columns: 30px 140px 185px 160px;
  }
  .content-page .table-second {
    width: 100%;
    box-sizing: border-box;
    overflow-y: scroll;
  }
}
.content-page .table-second__item:nth-child(1) p {
  background: #edeff6;
  font-weight: 600;
}
.content-page .table-second__item p:nth-child(1) {
  font-weight: 600;
}
.content-page .table-second__item p {
  border: 1px solid #ddd;
  padding: 7px;
  font-size: 15px;
  color: #000;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-page .table-second__item img {
  max-width: 100%;
  height: 60px;
  object-fit: contain;
  border-radius: 5px;
}
.content-page .table-second__item p a {
  color: #003cff;
}
.content-page .table-second__item p:last-child a {
  background: #F3B552;
  padding: 5.5px 15px;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 700;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-page .table-second__item p:last-child a:hover {
  text-decoration: none;
}
.content-page .table-fifth {
  margin: 15px 0;
}
@media (max-width: 990px) {
  .content-page .table-fifth {
    width: 100%;
    box-sizing: border-box;
    overflow-y: scroll;
  }
}
.content-page .table-fifth__item:nth-child(1) p {
  border: 1px solid #ddd;
  padding: 7px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  color: #000;
  background: #edeff6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-page .table-fifth__item {
  display: grid;
}
.content-page .table-fifth__item p {
  border: 1px solid #ddd;
  padding: 7px;
  font-size: 15px;
  color: #000;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-page .table-fifth__item p button {
  background: #F3B552;
  padding: 5.5px 15px;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 700;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-page .table-fifth__item .button-ref {
  background: transparent;
  box-shadow: none;
  padding: 0;
  border: none;
  appearance: none;
}
.content-page .table-fifth__item .button-ref:hover {
  box-shadow: none;
}
.content-page .table-first p {
  margin: 0;
}
.content-page .table-second p {
  margin: 0;
}
.content-page .table-third p {
  margin: 0;
}
.content-page .table-fourth p {
  margin: 0;
}
.content-page .table-fifth p {
  margin: 0;
}
.content-page .payments {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 990px) {
  .content-page .payments {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .content-page .payments {
    grid-template-columns: 1fr;
  }
}
.content-page .payments__item {
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 160px;
  border-radius: 8px;
  border: 1px solid #d6e2ff;
  background: #fff;
}
.content-page .payments__item img {
  max-width: 100%;
  height: 80px;
  width: auto;
  object-fit: cover;
  margin: 0 auto 10px auto;
}
.content-page .payments__item p {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 14px;
  font-weight: bold;
}
.content-page .payments__item p img {
  margin: 0 0 0 10px;
  height: 15px;
  width: 15px;
}
.content-page .table-mob {
  display: none;
}
@media (max-width: 990px) {
  .content-page .table-mob {
    margin-top: 20px;
    background: #fff;
    padding: 20px;
    box-shadow: 2px 4px 11px 0 rgba(0, 0, 0, 0.0392156863);
    border-radius: 16px;
    display: block;
    margin-bottom: 15px;
  }
}
.content-page .table-mob__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #B2283F;
  pointer-events: none;
  margin-bottom: 10px;
}
@media (max-width: 990px) {
  .content-page .table-mob__title {
    font-size: 16px;
    pointer-events: auto;
    line-height: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
  }
}
.content-page .table-mob__title img {
  display: none;
}
@media (max-width: 990px) {
  .content-page .table-mob__title img {
    display: block;
  }
}
.content-page .table-mob__content {
  display: grid;
  grid-template-columns: 1fr;
  list-style-type: none;
  padding: 0;
  margin: 0;
  max-height: 300px;
  overflow-y: auto;
}
@media (max-width: 990px) {
  .content-page .table-mob__content {
    max-height: 100%;
    overflow: hidden;
    border-radius: 16px;
    margin-top: 15px;
    display: none;
  }
}
.content-page .table-mob__content li {
  background: #EEF3F7;
  border-bottom: 1px solid #fff;
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  cursor: pointer;
  margin: 0;
}
.content-page .table-mob__content li:first-child {
  border-radius: 16px 0 0 0;
}
@media (max-width: 990px) {
  .content-page .table-mob__content li:first-child {
    border-radius: 0;
  }
}
.content-page .table-mob__content li:last-child {
  border-bottom: none;
  border-radius: 0 0 0 16px;
}
@media (max-width: 990px) {
  .content-page .table-mob__content li:last-child {
    border-radius: 0;
  }
}
.content-page .useful {
  background: #DC5B3E;
  padding: 20px;
  position: relative;
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-gap: 15px;
  align-items: center;
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
}
@media (max-width: 990px) {
  .content-page .useful {
    grid-template-columns: 1fr;
    padding: 15px;
    grid-gap: 0;
  }
}
.content-page .useful .useful__title {
  margin-bottom: 25px;
  font-size: 30px;
  line-height: 46px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 990px) {
  .content-page .useful .useful__title {
    font-size: 24px;
    text-align: center;
    line-height: 28px;
    margin-bottom: 20px;
  }
}
.content-page .useful .useful__text {
  margin-bottom: 20px;
  font-size: 19px;
  line-height: 28px;
  font-weight: 700;
  color: #1B1112;
}
@media (max-width: 990px) {
  .content-page .useful .useful__text {
    text-align: center;
    line-height: 26px;
    font-size: 18px;
  }
}
.content-page .useful .useful__text a {
  color: #fff;
  text-decoration: underline;
}
@media (max-width: 990px) {
  .content-page .useful .useful__text a {
    display: block;
    text-align: center;
  }
}
.content-page .useful .useful__text:last-child {
  margin-bottom: 0;
}
.content-page .useful .useful__img {
  height: 230px;
  display: flex;
  align-items: center;
}
@media (max-width: 1200px) {
  .content-page .useful .useful__img {
    height: auto;
  }
}
@media (max-width: 990px) {
  .content-page .useful .useful__img {
    grid-row-start: 2;
    height: auto;
  }
}
.content-page .useful .useful__img img {
  max-width: 100%;
  height: auto;
  position: relative;
  bottom: -20px;
}
@media (max-width: 990px) {
  .content-page .useful .useful__img img {
    bottom: -50px;
    height: 210px;
  }
}

::marker {
  font-weight: bold;
}

.tablepress caption {
  display: none;
}

.sidebar {
  background: #fff;
  padding: 20px;
  box-shadow: 2px 4px 11px 0 rgba(0, 0, 0, 0.0392156863);
}
@media (max-width: 990px) {
  .sidebar {
    background: transparent;
    padding: 0;
    box-shadow: none;
  }
}
.sidebar__title {
  font-size: 30px;
  line-height: 1.2;
  color: #1B1112;
  font-weight: 700;
  margin-bottom: 15px;
}
@media (max-width: 990px) {
  .sidebar__title {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
  }
}
@media (max-width: 990px) {
  .sidebar__block {
    background: #fff;
    padding: 20px;
    box-shadow: 2px 4px 11px 0 rgba(0, 0, 0, 0.0392156863);
    border-radius: 16px;
  }
}
.sidebar__casino {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 15px;
}
@media (max-width: 576px) {
  .sidebar__casino {
    max-width: 320px;
    margin: 0 auto;
  }
}
.sidebar__casino-item {
  display: grid;
  grid-template-columns: 60px 1fr 65px;
  grid-gap: 10px;
  align-items: center;
  cursor: pointer;
}
.sidebar__casino-item:hover .sidebar__casino-bonus {
  color: #bd485b;
}
.sidebar__casino-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar__casino-img img {
  border-radius: 16px;
  height: 64px;
  width: 64px;
  object-fit: cover;
}
.sidebar__casino-bonus {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #1B1112;
  transition: 0.3s;
}
.sidebar__casino-btn {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #B2283F;
  border-radius: 6px;
  font-size: 15px;
  color: #fff;
  line-height: normal;
  font-weight: 700;
}
.sidebar__table {
  margin-top: 20px;
}
@media (max-width: 990px) {
  .sidebar__table {
    margin-top: 20px;
    background: #fff;
    padding: 20px;
    box-shadow: 2px 4px 11px 0 rgba(0, 0, 0, 0.0392156863);
    border-radius: 16px;
    display: none;
  }
}
.sidebar__table-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #B2283F;
  pointer-events: none;
  margin-bottom: 10px;
}
@media (max-width: 990px) {
  .sidebar__table-title {
    font-size: 16px;
    pointer-events: auto;
    line-height: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
  }
}
.sidebar__table-title img {
  display: none;
}
@media (max-width: 990px) {
  .sidebar__table-title img {
    display: block;
  }
}
.sidebar__content {
  display: grid;
  grid-template-columns: 1fr;
  list-style-type: none;
  padding: 0;
  margin: 0;
  max-height: 300px;
  overflow-y: auto;
}
@media (max-width: 990px) {
  .sidebar__content {
    max-height: 100%;
    overflow: hidden;
    border-radius: 16px;
    margin-top: 15px;
    display: none;
  }
}
.sidebar__content li {
  background: #EEF3F7;
  border-bottom: 1px solid #fff;
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  cursor: pointer;
}
.sidebar__content li:first-child {
  border-radius: 16px 0 0 0;
}
@media (max-width: 990px) {
  .sidebar__content li:first-child {
    border-radius: 0;
  }
}
.sidebar__content li:last-child {
  border-bottom: none;
  border-radius: 0 0 0 16px;
}
@media (max-width: 990px) {
  .sidebar__content li:last-child {
    border-radius: 0;
  }
}
.sidebar ::-webkit-scrollbar {
  background-color: #F5F9FC;
  border-radius: 4px;
  width: 6px;
}
@media (max-width: 990px) {
  .sidebar ::-webkit-scrollbar {
    display: none;
  }
}
.sidebar ::-webkit-scrollbar-thumb {
  background: #B0B8CE;
  width: 6px;
  border-radius: 4px;
}
@media (max-width: 990px) {
  .sidebar ::-webkit-scrollbar-thumb {
    display: none;
  }
}

@media (max-width: 990px) {
  .sidebar-right {
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 990px) {
  .author-page {
    padding: 0;
  }
}
.author-page__wrap {
  box-shadow: 2px 4px 10px 0 rgba(0, 0, 0, 0.0705882353);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  min-height: 268px;
}
@media (max-width: 990px) {
  .author-page__wrap {
    min-height: auto;
  }
}
.author-page__top {
  display: flex;
  align-items: center;
}
.author-page__link {
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: #16A9A8;
  min-width: 170px;
  text-align: center;
  cursor: pointer;
}
@media (max-width: 990px) {
  .author-page__link {
    min-width: inherit;
    padding: 10px;
  }
}
.author-page .active {
  color: #fff;
  background: #16A9A8;
}
.author-page__info {
  display: none;
  grid-template-columns: 200px 1fr;
  grid-gap: 30px;
  align-items: center;
}
@media (max-width: 768px) {
  .author-page__info {
    grid-template-columns: 100px 1fr;
    grid-gap: 0 15px;
  }
}
.author-page .active-section {
  display: grid;
}
.author-page__right {
  padding: 10px 10px 10px 0;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .author-page__right .author-page__text {
    display: none;
  }
}
.author-page__dis {
  padding: 10px;
  display: none;
}
.author-page__dis-text {
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
}
.author-page__img {
  display: flex;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
  width: 200px;
  justify-content: center;
}
@media (max-width: 768px) {
  .author-page__img {
    height: 100px;
    width: 100px;
  }
}
.author-page__img img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  height: 100%;
  display: block;
  box-sizing: border-box;
}
@media (max-width: 990px) {
  .author-page__img img {
    min-height: inherit;
  }
}
.author-page__name {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: #1B1112;
  margin-right: 15px;
}
@media (max-width: 576px) {
  .author-page__name {
    font-size: 14px;
    line-height: 22px;
  }
}
.author-page__name span:last-child {
  color: #B0B8CE;
  font-weight: 400;
}
@media (max-width: 768px) {
  .author-page__name span:last-child {
    display: block;
  }
}
.author-page__text {
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .author-page__text {
    margin: 0;
  }
}
.author-page__text-mob {
  display: none;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .author-page__text-mob {
    display: block;
    grid-column-start: 1;
    grid-column-end: 3;
    padding: 10px;
  }
}
.author-page__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 990px) {
  .author-page__bottom {
    display: block;
  }
}
.author-page__date {
  font-size: 12px;
  line-height: 19px;
  color: #B0B8CE;
  font-weight: 400;
}
@media (max-width: 990px) {
  .author-page__date {
    display: none;
  }
}
.author-page__social {
  display: flex;
  align-items: center;
}
.author-page__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px 0 0;
}
.author-page__social a img {
  height: 20px;
  width: 20px;
}
.author-page__met {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  justify-content: space-between;
}
@media (max-width: 990px) {
  .author-page__met {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 3px;
  }
}
.author-page__verified {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #000;
}
.author-page__verified strong {
  margin-left: 4px;
}

.comment .comment-list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 15px;
}
@media (max-width: 990px) {
  .comment .comment-list {
    display: block;
  }
}
.comment .edit-link {
  display: none;
}
.comment .says {
  display: none;
}
.comment .comment-respond {
  background: #EEF3F7;
  padding: 20px;
  margin-top: 15px;
  border-radius: 16px;
}
@media (max-width: 990px) {
  .comment .comment-respond {
    padding: 15px;
  }
}
.comment .comment-reply-title {
  text-align: left;
  color: #1B1112;
  font-size: 24px;
  line-height: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}
.comment .comment-reply-title a {
  color: #1B1112;
  margin-left: 10px;
  font-weight: 400;
  text-transform: lowercase;
  text-decoration: underline;
}
.comment .comment-form {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.comment .comment-form .comment-form-author {
  order: -1;
}
.comment .comment-form .comment-form-email {
  order: -2;
}
.comment .comment-form p {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.comment .comment-form p label {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1B1112;
}
.comment .comment-form p textarea {
  resize: none;
  background: #FFFFFF;
  color: #1B1112;
  padding: 12px;
  border-radius: 8px;
  font-weight: 400;
  font-size: 16px;
  appearance: none;
  outline: none;
  border: 1px solid transparent;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}
.comment .comment-form p input {
  background: #FFFFFF;
  color: #1B1112;
  padding: 12px;
  border-radius: 8px;
  font-weight: 400;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;
  appearance: none;
  outline: none;
  border: 1px solid transparent;
}
.comment .comment-form p .error {
  border-color: #B2283F;
}
.comment .comment-form .form-submit {
  margin-top: 20px;
  margin-bottom: 0;
}
.comment .comment-form .form-submit input {
  max-width: 220px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  color: #ffffff;
  background: #B2283F;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  cursor: pointer;
}
.comment .comment-form .logged-in-as {
  display: none;
}
.comment .comment-form .error-message {
  margin: 10px 0 0 0;
  color: #B2283F;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}
.comment .comment-author {
  margin-bottom: 8px;
  display: grid;
  grid-template-columns: 48px 1fr 100px;
  grid-gap: 10px;
  align-items: center;
}
.comment .comment-author img {
  height: 48px;
  width: 48px;
  border-radius: 8px;
}
.comment .comment-author a, .comment .comment-author p {
  pointer-events: none;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.comment .comment-author .fn {
  pointer-events: none;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.comment .comment-author .time {
  color: #B0B8CE;
  font-size: 12px;
  margin: 0;
  font-weight: 400;
}
.comment .comment-author .comment-rating {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.comment .comment-author .comment-rating img {
  margin: 0 0 0 5px;
  height: 15px;
  width: 15px;
}
.comment .comment-metadata {
  margin-bottom: 5px;
  pointer-events: none;
}
.comment .comment-metadata time {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}
.comment .reply {
  margin-top: 10px;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #B2283F;
  padding: 6px 15px;
  color: #fff;
  max-width: 95px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 21px;
  position: relative;
  bottom: 2px;
  z-index: 2;
}
@media (max-width: 576px) {
  .comment .reply {
    font-size: 12px;
    padding: 5px 12px;
  }
}
.comment .reply a::before {
  content: "";
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.comment .reply::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-size: 18px 18px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" width="20" height="20" fill="none"><path d="M7 20C6.73478 20 6.48043 19.8946 6.29289 19.7071C6.10536 19.5196 6 19.2652 6 19V16H2C1.46957 16 0.960859 15.7893 0.585786 15.4142C0.210714 15.0391 0 14.5304 0 14V2C0 0.89 0.9 0 2 0H18C18.5304 0 19.0391 0.210714 19.4142 0.585786C19.7893 0.960859 20 1.46957 20 2V14C20 14.5304 19.7893 15.0391 19.4142 15.4142C19.0391 15.7893 18.5304 16 18 16H11.9L8.2 19.71C8 19.9 7.75 20 7.5 20H7" fill="white"/></svg>');
  background-repeat: no-repeat;
  margin-right: 8px;
}
.comment .reply a {
  color: #fff;
}
.comment .comment-content {
  color: #000;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  margin-top: 10px;
}
.comment .comment-content a {
  color: #000;
  font-weight: 600;
}
.comment .parent div.comment {
  margin-top: 10px;
}
.comment .parent div.comment .comment-body {
  border-bottom: 4px solid #B2283F;
  padding-left: 50px;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
@media (max-width: 990px) {
  .comment .parent div.comment .comment-body {
    padding-left: 25px;
  }
}
.comment .comment-block {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 5px;
}

.comment-body {
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 2px 4px 11px 0 rgba(0, 0, 0, 0.0392156863);
  position: relative;
}
@media (max-width: 576px) {
  .comment-body {
    padding: 15px;
  }
}
.comment-body h1, .comment-body h2, .comment-body h3, .comment-body h4, .comment-body h5 {
  font-weight: 700;
}
.comment-body h1 {
  margin-bottom: 10px;
  font-size: 26px;
  line-height: 29px;
}
@media (max-width: 990px) {
  .comment-body h1 {
    font-size: 23px;
    line-height: normal;
  }
}
.comment-body h2 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 25px;
}
@media (max-width: 990px) {
  .comment-body h2 {
    font-size: 22px;
    line-height: normal;
  }
}
.comment-body h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 24px;
}
@media (max-width: 990px) {
  .comment-body h3 {
    font-size: 20px;
    line-height: normal;
  }
}
.comment-body h4 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 22px;
}
@media (max-width: 990px) {
  .comment-body h4 {
    font-size: 18px;
    line-height: normal;
  }
}
.comment-body h5 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 20px;
}
@media (max-width: 990px) {
  .comment-body h5 {
    font-size: 16px;
    line-height: normal;
  }
}
.comment-body p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  margin: 0 0 10px 0;
}
@media (max-width: 990px) {
  .comment-body p {
    font-size: 14px;
    line-height: 21px;
  }
}
.comment-body ol {
  margin: 0 0 15px 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
  position: relative;
  z-index: 2;
}
@media (max-width: 990px) {
  .comment-body ol {
    margin-bottom: 10px;
    grid-template-columns: 1fr;
  }
}
.comment-body ul {
  margin: 0 0 15px 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
  position: relative;
  z-index: 2;
}
@media (max-width: 990px) {
  .comment-body ul {
    margin-bottom: 10px;
    grid-template-columns: 1fr;
  }
}
.comment-body li {
  font-size: 15px;
  line-height: 20px;
  position: relative;
  font-weight: 400;
}
@media (max-width: 990px) {
  .comment-body li {
    font-size: 14px;
    line-height: 21px;
  }
}
.comment-body ul {
  padding-left: 20px;
}
.comment-body ol {
  padding-left: 20px;
}
.comment-body strong {
  font-weight: 700;
}
.comment-body p:empty {
  display: none;
}

.star-rating {
  display: inline-flex;
  background: transparent;
  direction: rtl;
}
.star-rating label {
  display: block;
  width: 24px;
  height: 24px;
  background: url("../img/star-rat.svg") no-repeat;
  margin-right: 10px;
  cursor: pointer;
}
.star-rating input[type=radio] {
  display: none;
}
.star-rating input[type=radio]:checked ~ label {
  background: url("../img/star.svg") no-repeat;
}

.comment-form-rating {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.comment-form-rating .label {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1B1112;
}

.acf-comment-fields {
  display: none;
}

.footer {
  background: #EEF3F7;
}
@media (max-width: 576px) {
  .footer {
    padding: 0;
  }
}
.footer__wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 100px;
  padding: 20px 0;
}
@media (max-width: 1200px) {
  .footer__wrap {
    grid-gap: 60px;
  }
}
@media (max-width: 990px) {
  .footer__wrap {
    grid-template-columns: 1fr;
    padding: 15px 0 0 0;
    grid-gap: 15px;
  }
}
.footer__resources-text {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: normal;
  display: block;
}
@media (max-width: 990px) {
  .footer__resources-text {
    padding: 0 10px;
    margin: 10px 0;
  }
}
.footer__resources {
  flex-wrap: wrap;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
}
@media (max-width: 990px) {
  .footer__resources {
    padding: 15px;
  }
}
@media (max-width: 576px) {
  .footer__resources {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
  }
}
.footer__resources a {
  display: flex;
  align-content: center;
  justify-content: center;
}
.footer__resources img {
  margin-right: 15px;
  height: 30px;
  max-width: 100%;
  width: 100%;
  object-fit: contain;
}
@media (max-width: 990px) {
  .footer__resources img {
    height: 20px;
    margin: 0 10px 10px 0;
  }
}
@media (max-width: 576px) {
  .footer__resources img {
    margin: 0;
    height: auto;
  }
}
.footer__img {
  margin-bottom: 15px;
  display: flex;
}
@media (max-width: 990px) {
  .footer__img {
    justify-content: center;
    margin-bottom: 10px;
  }
}
.footer__img img {
  max-width: 100%;
  display: block;
  object-fit: contain;
  height: 36.3px;
  width: auto;
}
@media (max-width: 990px) {
  .footer__img img {
    width: 125px;
    height: auto;
  }
}
@media (max-width: 576px) {
  .footer__left {
    padding: 0 15px;
  }
}
.footer__right {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 65px;
}
@media (max-width: 990px) {
  .footer__right {
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .footer__right {
    grid-template-columns: 1fr;
    grid-gap: 0;
    margin: 0;
  }
}
.footer__title {
  margin-bottom: 25px;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
}
@media (max-width: 990px) {
  .footer__title {
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .footer__title {
    width: 100%;
    pointer-events: auto;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background: #fff;
    padding: 15px 0;
    margin-bottom: 0;
  }
}
.footer__title img {
  display: none;
}
@media (max-width: 576px) {
  .footer__title img {
    margin: 0 0 0 10px;
    display: block;
    transition: 0.3s;
  }
}
.footer__title-active img {
  transform: rotate(180deg);
}
.footer__nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 15px;
}
@media (max-width: 576px) {
  .footer__nav ul {
    grid-gap: 0;
    display: none;
  }
}
.footer__nav ul a {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #1B1112;
  transition: 0.3s;
}
.footer__nav ul a:hover {
  color: #b2283f;
}
@media (max-width: 576px) {
  .footer__nav ul li {
    padding: 12px 0;
    border-bottom: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
  }
}
@media (max-width: 576px) {
  .footer__nav ul li:last-child {
    border-bottom: none;
  }
}
.footer__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #1B1112;
  text-align: justify;
}
@media (max-width: 576px) {
  .footer__text {
    font-size: 12px;
    line-height: 17px;
  }
}

.footer-bottom {
  background: #B2283F;
}
.footer-bottom__wrap {
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 990px) {
  .footer-bottom__wrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
    padding: 12px;
    align-items: center;
  }
}
.footer-bottom__img {
  margin-right: auto;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 990px) {
  .footer-bottom__img {
    margin: 0;
  }
}
@media (max-width: 576px) {
  .footer-bottom__img {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
}
.footer-bottom__img img {
  display: block;
  max-width: 100%;
  height: 30px;
  width: 100%;
  object-fit: contain;
}
@media (max-width: 990px) {
  .footer-bottom__img img {
    height: 25px;
  }
}
.footer-bottom__img a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-bottom__img p {
  margin-right: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #fff;
  white-space: nowrap;
}
@media (max-width: 990px) {
  .footer-bottom__img p {
    font-size: 12px;
    line-height: 17px;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .footer-bottom__img p {
    margin: 0;
  }
}
.footer-bottom__copy {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #fff;
}
@media (max-width: 990px) {
  .footer-bottom__copy {
    font-size: 12px;
    line-height: 17px;
    text-align: center;
  }
}
.footer-bottom__social {
  display: flex;
  align-items: center;
}
@media (max-width: 990px) {
  .footer-bottom__social {
    justify-content: center;
  }
}
.footer-bottom__social a {
  margin-left: 10px;
}
@media (max-width: 990px) {
  .footer-bottom__social a {
    margin: 0 5px;
  }
}

.modal-bg {
  opacity: 0.6;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  z-index: 99;
  background: #000;
  visibility: hidden;
}

.modal-game {
  position: fixed;
  max-width: 700px;
  width: 95%;
  margin: 0 auto;
  padding: 40px 15px 15px 15px;
  border-radius: 10px;
  background: #fff;
  top: 50%;
  left: 50%;
  box-sizing: border-box;
  transform: translate(-50%, -50%);
  z-index: 9999;
  height: 450px;
  visibility: hidden;
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.0784313725);
}
@media (max-width: 990px) {
  .modal-game {
    max-width: 900px;
    height: 370px;
  }
}
.modal-game__close {
  position: absolute;
  right: 10px;
  top: 7px;
  cursor: pointer;
}
.modal-game__wrap {
  display: flex;
}
.modal-game iframe {
  width: 100%;
  box-sizing: border-box;
  height: 390px;
  object-fit: cover;
}
@media (max-width: 990px) {
  .modal-game iframe {
    height: 300px;
  }
}

.trust {
  margin-top: 20px;
}
.trust svg {
  margin-bottom: 15px;
  height: 40px;
}
.trust__star {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust__star img {
  max-width: 100%;
  height: auto;
}
.trust__info {
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: #1B1112;
}

.cookie {
  background: #EEF3F7;
  padding: 10px;
  max-width: 320px;
  width: 100%;
  box-sizing: border-box;
  position: fixed;
  left: 10px;
  bottom: 130px;
  z-index: 9;
}
@media (max-width: 990px) {
  .cookie {
    bottom: 250px;
  }
}
@media (max-width: 768px) {
  .cookie {
    bottom: 200px;
  }
}
.cookie__text {
  font-weight: 700;
  font-size: 14px;
  line-height: normal;
  margin-bottom: 10px;
}
.cookie__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  align-items: center;
}
.cookie button {
  padding: 10px;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-content: center;
  justify-content: center;
  color: #4EA6A7;
  border: 1px solid #4EA6A7;
  font-weight: 700;
  font-size: 14px;
  line-height: normal;
  transition: 0.3s;
}
.cookie button:hover {
  background: #4EA6A7;
  color: #fff;
}
.cookie a {
  font-weight: 700;
  font-size: 14px;
  line-height: normal;
  text-align: center;
  color: #4EA6A7;
}

.sitemap {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}
.sitemap__title {
  font-weight: 700;
  font-size: 23px;
  margin-bottom: 10px;
  line-height: normal;
}
.sitemap ul {
  margin-bottom: 0;
  display: grid;
  grid-gap: 5px;
  grid-template-columns: 1fr;
}
.sitemap a {
  font-size: 15px;
  text-decoration: underline;
  color: #B2283F;
  font-weight: 400;
  line-height: normal;
}

.sitemap__main {
  font-weight: 700;
  font-size: 35px;
  margin-bottom: 40px;
}

.top-3 {
  padding: 24px;
  background: #16A9A8;
  border-radius: 16px;
  position: fixed;
  box-sizing: border-box;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1150px;
  width: 98%;
  visibility: hidden;
  display: none;
}
@media (max-width: 990px) {
  .top-3 {
    width: 94%;
    top: 52%;
  }
}
.top-3 ::-webkit-scrollbar {
  background-color: #F5F9FC;
  border-radius: 4px;
  height: 4px;
}
.top-3 ::-webkit-scrollbar-thumb {
  background: #B0B8CE;
  height: 4px;
  border-radius: 4px;
}
.top-3__title {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  text-align: center;
  margin: 0 auto 20px auto;
  padding: 0 30px;
  max-width: 850px;
  color: #fff;
}
@media (max-width: 990px) {
  .top-3__title {
    padding: 0 15px;
    font-size: 16px;
    line-height: 21px;
  }
}
.top-3__close {
  right: 20px;
  top: 20px;
  cursor: pointer;
  position: absolute;
}
.top-3__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 25px;
  align-items: start;
}
@media (max-width: 990px) {
  .top-3__wrap {
    overflow-x: auto;
    grid-template-columns: 320px 320px 320px;
    padding-bottom: 10px;
  }
}
.top-3__item {
  padding: 12px;
  border-radius: 8px;
  background: #fff;
}
.top-3__img {
  background: #1B1112;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  margin-bottom: 12px;
}
@media (max-width: 990px) {
  .top-3__img {
    height: 110px;
  }
}
.top-3__img img {
  display: block;
  max-width: 100%;
  height: auto;
  width: auto;
  object-fit: cover;
}
@media (max-width: 990px) {
  .top-3__img img {
    height: 90px;
  }
}
.top-3__star {
  max-width: 230px;
  margin: 0 auto 15px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-3__star img {
  margin: 0 12px;
  height: 22px;
  width: 22px;
}
.top-3__welcome {
  margin-bottom: 5px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #1B1112;
}
.top-3__bonus {
  font-size: 18px;
  font-weight: bold;
  max-width: 230px;
  margin: 0 auto 12px auto;
  line-height: 24px;
  text-align: center;
  color: #B2283F;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-3__pretitle {
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  line-height: 17px;
  margin-bottom: 5px;
}
.top-3__dep {
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 15px;
  color: #16A9A8;
}
.top-3__pay {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 5px;
  align-items: center;
  margin-bottom: 12px;
}
.top-3__pay-item {
  background: #EEF3F7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}
.top-3__pay-item img {
  max-width: 100%;
  height: 27px;
  width: 100%;
  object-fit: contain;
}
.top-3__btn {
  max-width: 270px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #F3B552;
  border-radius: 16px;
  font-size: 18px;
  color: #fff;
  line-height: 20px;
  padding: 12px;
  font-weight: 700;
}
.top-3__bottom {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #000;
  text-decoration: underline;
  margin-top: 20px;
  text-align: center;
  cursor: pointer;
}

.modal-active-2 {
  display: block;
  visibility: visible;
}

.sidebar__casino-dis {
  pointer-events: none;
}
.sidebar__casino-dis .sidebar__casino-btn {
  background: gray;
}

.subscriber__wrap {
  border-radius: 16px;
  padding: 25px;
  background: #16A9A8;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
}
@media (max-width: 990px) {
  .subscriber__wrap {
    grid-template-columns: 1fr;
  }
}
.subscriber__pretitle {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}
@media (max-width: 990px) {
  .subscriber__pretitle {
    text-align: center;
    padding: 0 30px;
  }
}
.subscriber__question {
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  color: #fff;
}
.subscriber .sub-1 {
  display: none;
  left: -30px;
  top: -5px;
}
@media (max-width: 990px) {
  .subscriber .sub-1 {
    display: block;
    position: absolute;
  }
}
.subscriber .sub-2 {
  display: none;
  right: -30px;
  top: -5px;
}
@media (max-width: 990px) {
  .subscriber .sub-2 {
    display: block;
    position: absolute;
  }
}
.subscriber__form {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 5px 10px;
  position: relative;
}
.subscriber__form button {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3B552;
  color: #1B1112;
  border-radius: 16px;
  outline: none;
  appearance: none;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
}
@media (max-width: 990px) {
  .subscriber__form button {
    margin: 0 auto;
    max-width: 185px;
  }
}
.subscriber__form button img {
  display: block;
  position: relative;
}
.subscriber__form-title {
  font-size: 28px;
  line-height: normal;
  color: #fff;
  font-weight: 700;
  display: none;
}
@media (max-width: 990px) {
  .subscriber__form-title {
    text-align: center;
  }
}
.subscriber__form-box {
  display: grid;
  grid-template-columns: 365px 1fr;
  grid-gap: 20px;
  max-width: 530px;
}
@media (max-width: 990px) {
  .subscriber__form-box {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
}
.subscriber__input {
  background: #FFFFFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  color: #1B1112;
  padding: 15px;
  outline: none;
  appearance: none;
  width: 100%;
  box-sizing: border-box;
  border-radius: 16px;
  box-shadow: none;
  max-width: 530px;
  position: relative;
  resize: none;
  border: none;
}
@media (max-width: 990px) {
  .subscriber__input {
    margin: 0 auto;
  }
}
.subscriber__checkbox {
  position: relative;
  margin: 10px 0;
}
@media (max-width: 990px) {
  .subscriber__checkbox {
    margin: 10px auto 0 auto;
  }
}
.subscriber__checkbox input {
  position: absolute;
  opacity: 0;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.subscriber__checkbox label {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 25px;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  cursor: pointer;
  color: #FFFFFF;
}
.subscriber__checkbox label::before {
  content: "";
  height: 14px;
  width: 14px;
  display: block;
  border-radius: 50%;
  border: 1.5px solid #FFFFFF;
  position: absolute;
  left: 0;
  top: 1px;
}
.subscriber__checkbox input:checked + label::before {
  background: #B2283F;
}
.subscriber__left {
  display: flex;
  align-items: center;
  overflow: hidden;
  justify-content: center;
}
@media (max-width: 990px) {
  .subscriber__left {
    display: none;
  }
}
.subscriber__left img {
  max-width: 100%;
  height: auto;
  position: relative;
}
.subscriber .disabled-btn {
  opacity: 0.8;
  pointer-events: none;
}

.ask-modal {
  position: fixed;
  max-width: 500px;
  width: 95%;
  margin: 0 auto;
  padding: 40px 15px 15px 15px;
  border-radius: 10px;
  background: #fff;
  top: 50%;
  left: 50%;
  box-sizing: border-box;
  transform: translate(-50%, -50%);
  z-index: 9999;
  height: auto;
  visibility: hidden;
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.0784313725);
}
.ask-modal__close {
  position: absolute;
  right: 10px;
  top: 10px;
  height: 15px;
  width: 15px;
  cursor: pointer;
}
.ask-modal__form {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
}
.ask-modal__form textarea {
  background: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #1B1112;
  padding: 10px;
  outline: none;
  appearance: none;
  width: 100%;
  box-sizing: border-box;
  border-radius: 16px;
  box-shadow: none;
  position: relative;
  resize: none;
  height: 125px;
  border: 1px solid #000;
}
.ask-modal__form input {
  background: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #1B1112;
  padding: 10px;
  outline: none;
  border: 1px solid #000;
  appearance: none;
  width: 100%;
  box-sizing: border-box;
  border-radius: 16px;
  box-shadow: none;
  position: relative;
  resize: none;
}
.ask-modal__form button {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3B552;
  color: #1B1112;
  border-radius: 16px;
  outline: none;
  appearance: none;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
}
.ask-modal__text {
  margin-top: 10px;
  display: none;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
}

.modal-active {
  visibility: visible;
}

/*# sourceMappingURL=casino.css.map */
