.faq {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}
.faq .acc-head {
  cursor: pointer;
  padding: 10px 0 10px 20px;
}
.faq .acc-head h4 {
  font-size: 21px;
  font-weight: 400;
  line-height: 28px;
}
.faq .acc-body {
  display: none;
  font-size: 15px;
  padding-left: 15px;
  padding-top: 15px;
  opacity: 0.8;
}

.footer__logo {
  margin: 0 auto 25px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  height: 50px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 576px) {
  .footer__logo {
    height: 30px;
  }
}
.footer__wrap {
  padding: 25px 0;
}
.footer__icon {
  margin-bottom: 25px;
  padding: 10px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 990px) {
  .footer__icon {
    flex-wrap: wrap;
  }
}
.footer__icon img {
  margin: 5px 10px;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 55px;
  object-fit: contain;
}
.footer__text {
  text-align: center;
  font-weight: 400;
  font-size: 14px;
}
.footer__bottom-text {
  line-height: 21px;
  font-weight: 400;
  font-size: 14px;
}
.footer__menu ul {
  margin: 10px 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  list-style-type: none;
}
.footer__menu li {
  padding: 10px;
  margin: 5px;
}
.footer__menu a {
  line-height: 21px;
  font-weight: 400;
  font-size: 14px;
}
.footer__bottom {
  display: grid;
  grid-template-columns: 100px 1fr 200px;
  grid-gap: 15px;
  align-items: center;
  margin-bottom: 25px;
}
@media (max-width: 990px) {
  .footer__bottom {
    grid-template-columns: 1fr;
  }
}
.footer__bottom img {
  display: flex;
  align-items: center;
  max-width: 100%;
  max-height: 50px;
  height: auto;
  width: auto;
  object-fit: contain;
}
.footer__bottom-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__bottom-box img {
  margin: 0 5px;
  max-width: 100%;
  max-height: 50px;
  height: auto;
  width: auto;
  object-fit: contain;
}

.modal__item {
  z-index: 999;
  display: none;
}

.modal-game {
  position: fixed;
  transition: 0.3s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 70px 30px 30px 30px;
  background: #000;
  box-shadow: 8px 0 14px rgba(0, 0, 0, 0.19), inset 0 1px 4px #FFF;
  border-radius: 28px;
  margin: 5px 15px;
  max-width: 860px;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  max-height: 500px;
  height: 100%;
}

.modal-game-2 {
  max-height: 560px;
}

.modal-game__play {
  padding: 10px 20px;
  box-shadow: 4px 8px 10px rgba(0, 0, 0, 0.29), inset 0 2px 4px rgba(255, 255, 255, 0.34);
  display: flex;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  align-items: center;
  width: auto;
  color: #fff;
  justify-content: center;
}

.modal-game__continue {
  padding: 10px 20px;
  box-shadow: 4px 8px 10px rgba(0, 0, 0, 0.29), inset 0 2px 4px rgba(255, 255, 255, 0.34);
  display: flex;
  color: #fff;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
}

.modal-game__title {
  font-size: 24px;
  line-height: 29px;
  text-align: left;
  color: #DEDEDE;
  position: absolute;
  top: 25px;
  left: 30px;
}

.modal-game__bottom {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

.modal-game__checkbox {
  position: relative;
}

.modal-game__checkbox input {
  position: absolute;
  opacity: 0;
}

.modal-game__checkbox label {
  cursor: pointer;
  font-size: 12px;
  line-height: 15px;
  color: #fff;
  padding-left: 28px;
}

.modal-game__checkbox label::after {
  content: "";
  height: 15px;
  width: 15px;
  border: 3px solid #fff;
  position: absolute;
  border-radius: 4px;
  left: 0;
  top: 1px;
}

.modal-game__checkbox svg {
  display: none;
  height: 17px;
  width: 17px;
  position: absolute;
  z-index: 9;
  left: 2px;
  top: 2px;
}

.modal-game__checkbox input:checked ~ svg {
  display: block;
}

.modal-game__checkbox input:checked ~ label::before {
  content: "";
}

@media (max-width: 990px) {
  .modal-game__checkbox {
    display: none;
  }
  .modal-game__play {
    padding: 6.5px 15px;
  }
  .modal-game__continue {
    padding: 6.5px 15px;
  }
  .modal-game__title {
    left: 0;
    position: relative;
    top: 0;
    margin-bottom: 10px;
    text-align: center;
    font-size: 16px;
    line-height: 19px;
  }
}
@media (max-width: 990px) {
  .modal-game {
    margin: 0;
    height: auto;
    padding: 15px 20px;
    max-height: 600px;
    overflow-y: scroll;
    max-width: 100%;
    border-radius: 8px;
    width: 90%;
  }
}
.modal-game__close {
  position: absolute;
  cursor: pointer;
  top: 30px;
  right: 30px;
  z-index: 99;
}

@media (max-width: 990px) {
  .modal-game__close {
    right: 18px;
    top: 16px;
  }
}
.modal-thank {
  position: fixed;
  transition: 0.3s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 60px 30px 30px 30px;
  background: #000;
  box-shadow: 8px 0 14px rgba(0, 0, 0, 0.19), inset 0 1px 4px #FFF;
  border-radius: 28px;
  margin: 5px 15px;
  max-width: 550px;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  max-height: 350px;
  height: 100%;
}

.modal-thank__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}

.modal-thank__close {
  position: absolute;
  cursor: pointer;
  top: 30px;
  right: 30px;
}

.modal-thank__title {
  color: #fff;
  font-size: 36px;
  line-height: 44px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.modal-thank__text {
  font-size: 14px;
  line-height: 140%;
  color: #DEDEDE;
  text-align: center;
  margin-bottom: 24px;
}

.modal-thank__btn {
  color: #fff;
  max-width: 180px;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  font-size: 14px;
  text-align: center;
  padding: 10px;
}

@media (max-width: 990px) {
  .modal-thank__btn {
    font-size: 12px;
    max-width: 160px;
  }
  .modal-thank__title {
    font-size: 28px;
    line-height: 35px;
    margin-bottom: 15px;
  }
  .modal-thank__text {
    margin-bottom: 15px;
  }
  .modal-thank {
    margin: 0;
    height: auto;
    padding: 45px 15px 20px 15px;
    overflow-y: scroll;
    max-width: 100%;
    border-radius: 8px;
    width: 90%;
  }
  .modal-thank__close {
    right: 18px;
    top: 20px;
  }
}
.modal-bg {
  background: #000;
  position: fixed;
  z-index: 998;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  opacity: 0.7;
  display: none;
}

.active-body {
  overflow: hidden;
}

.modal-bg-active {
  display: block;
}

.open {
  display: block;
}

.output-iframe {
  display: block;
}

.modal-game__video video, iframe {
  position: relative;
  z-index: 9;
  height: 400px;
}

@media (max-width: 990px) {
  .modal-game__video {
    height: 300px;
  }
  .modal-game__video video, iframe {
    height: 300px;
  }
}
@media (max-width: 576px) {
  .modal-game__video {
    height: 275px;
  }
  .modal-game__video video, iframe {
    height: 275px;
  }
}
.lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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