.footer .container {
  padding: 60px 0;
}
@media (max-width: 990px) {
  .footer .container {
    padding: 30px 0;
  }
}
.footer__wrap {
  display: grid;
  grid-template-columns: 250px 1fr;
  grid-gap: 40px;
  align-items: start;
}
@media (max-width: 990px) {
  .footer__wrap {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
.footer__logo img {
  margin-bottom: 15px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
@media (max-width: 990px) {
  .footer__logo img {
    margin-bottom: 10px;
  }
}
.footer__right {
  font-weight: 300;
  font-size: 15px;
  line-height: 25px;
}
@media (max-width: 990px) {
  .footer__right {
    font-size: 14px;
    line-height: 21px;
  }
}
.footer__text {
  font-weight: 300;
  font-size: 15px;
  line-height: 25px;
}
@media (max-width: 990px) {
  .footer__text {
    font-size: 14px;
    line-height: 21px;
  }
}

.top {
  cursor: pointer;
  position: fixed;
  right: 30px;
  bottom: 30px;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  display: flex;
  transition: 0.3s;
  align-items: center;
  justify-content: center;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  background: red;
}
.top svg {
  position: relative;
  z-index: 9;
}

.show {
  opacity: 1;
  pointer-events: auto;
}

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

.popup-bonus {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(3px);
}
.popup-bonus:before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: "";
    background: #fff;
    opacity: .5;
}
.popup-bonus .popup-window {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 470px;
    max-width: 100%;
    padding: 70px 30px 30px;
    position: absolute;
    border-radius: 16px;
    color: #fff;
    background: #2329dd;
    z-index: 10000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    gap:15px;
}
.popup-bonus .popup-window .close-bonus {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 15px;
    right: 20px;
    cursor: pointer;
}
.popup-bonus .popup-window .close-bonus:before, .popup-bonus .popup-window .close-bonus:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 49%;
    left: 0;
    
}
.popup-bonus .popup-window .close-bonus:before{
    transform: rotate(45deg);
}

.popup-bonus .popup-window .close-bonus:after {
    transform: rotate(135deg);
}
.popup-bonus .popup-window .gift-bonus {
    width: 480px;
    height: 180px;
    /*position: absolute;*/
    /*left: calc(50% - 50px);*/
    /*top: 30px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255 255 255 / 16%);
    border-radius: 50%;
}
.gift-bonus img{
    width:100%;
    height:100%;
}
.popup-bonus .popup-window .title-bonus {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.popup-bonus .popup-window .desc-bonus {
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}
.popup-bonus .popup-window .btn-redirect {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-color: #0419f7;
    background: #efd421;
    color: #fff;
}
