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

.contact__title {
  margin-bottom: 30px;
  font-size: 36px;
  line-height: 49px;
  font-weight: 700;
  color: #1B1112;
}
@media (max-width: 990px) {
  .contact__title {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 12px;
  }
}
.contact__wrap {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-gap: 25px;
}
@media (max-width: 990px) {
  .contact__wrap {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
}
.contact__left {
  padding: 25px;
  background: #EEF3F7;
  border-radius: 16px;
}
@media (max-width: 990px) {
  .contact__left {
    padding: 15px;
  }
}
.contact__left-title {
  font-size: 24px;
  line-height: 39px;
  font-weight: 700;
  color: #1B1112;
  margin-bottom: 25px;
}
@media (max-width: 990px) {
  .contact__left-title {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 15px;
  }
}
.contact__left-text {
  font-size: 22px;
  line-height: 36px;
  font-weight: 700;
  color: #b2283f;
}
@media (max-width: 990px) {
  .contact__left-text {
    font-size: 14px;
    line-height: 22px;
  }
}
.contact__right img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.contact__right-title {
  font-size: 24px;
  line-height: 39px;
  font-weight: 700;
  color: #1B1112;
  margin-bottom: 10px;
}
@media (max-width: 990px) {
  .contact__right-title {
    font-size: 16px;
    line-height: 25px;
  }
}
.contact__right-text {
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  color: #1B1112;
  margin-bottom: 15px;
}
@media (max-width: 990px) {
  .contact__right-text {
    font-size: 16px;
    line-height: 25px;
  }
}
.contact__right-text a {
  color: #B2283F;
  font-weight: 400;
}
.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 25px;
  align-items: center;
}
@media (max-width: 990px) {
  .contact__form {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
}
.contact__form-item p {
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  color: #1B1112;
  margin-bottom: 5px;
}
.contact__form-item input {
  margin: 0;
  padding: 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  color: #1B1112;
  background: #FFFFFF;
  border-radius: 16px;
  border: none;
  width: 100%;
  appearance: none;
  box-sizing: border-box;
  outline: none;
}
.contact__form-item textarea {
  margin: 0;
  padding: 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  color: #1B1112;
  background: #FFFFFF;
  border-radius: 16px;
  border: none;
  outline: none;
  font-family: "Nunito", sans-serif;
  width: 100%;
  box-sizing: border-box;
  resize: none;
  appearance: none;
  height: 200px;
}
@media (max-width: 990px) {
  .contact__form-item textarea {
    height: 100px;
  }
}
.contact__form-item:nth-child(5) {
  grid-column-start: 1;
  grid-column-end: 3;
}
@media (max-width: 990px) {
  .contact__form-item:nth-child(5) {
    grid-column-start: auto;
    grid-column-end: auto;
  }
}
.contact__btn {
  grid-column-start: 1;
  grid-column-end: 3;
  max-width: 220px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  border-radius: 16px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #B2283F;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  color: #fff;
  outline: none;
  appearance: none;
  cursor: pointer;
  text-align: center;
}
@media (max-width: 990px) {
  .contact__btn {
    grid-column-start: auto;
    grid-column-end: auto;
  }
}
@media (max-width: 576px) {
  .contact__btn {
    max-width: 100%;
  }
}

.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=contact.css.map */
