@keyframes mobile-banner {
  from {
    opacity: 0;
    -o-object-position: left;
    object-position: left;
  }
  15% {
    opacity: 1;
    -o-object-position: left;
    object-position: left;
  }
  75% {
    opacity: 1;
    -o-object-position: right;
    object-position: right;
  }
  to {
    -o-object-position: right;
    object-position: right;
    opacity: 0;
  }
}

.modal-window__popup {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  display: flex;
  justify-content: center;
  align-items: center;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100vw;
  height: 100vh;
  padding-top: 15px;
  background-color: rgba(0, 0, 0, 0.799);
  transition:
    opacity 350ms ease,
    visibility 350ms ease,
    pointer-events 350ms ease;
}

.modal-window__popup.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: unset;
}

.promo-modal {
  position: relative;
  width: 100vw;
  height: 100vh;
  max-width: 800px;
  max-height: 530px;
  padding: 18px 15px 15px 15px;
  border-radius: 20px;
  margin: 0 auto;
  background: linear-gradient(180deg, #fe6a00 0%, #de5c15 100%);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ff4400 rgba(253, 149, 75, 0.8235294118);
}
@media screen and (max-width: 799.9px) {
  .promo-modal {
    width: 95vw;
  }
}

.promo-modal__close {
  position: absolute;
  top: 7px;
  right: 7px;
  z-index: 1;

  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  padding: 5px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.756);
}

.promo-modal__close > svg {
  fill: currentColor;
}

.promo-modal__banner {
  width: 100%;
  height: 208px;
  margin: 0 auto;
  margin-bottom: 32px;
}
@media screen and (max-width: 799.9px) {
  .promo-modal__banner {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 450px) {
  .promo-modal__banner {
    height: 200px;
    margin-bottom: 5px;
  }
}
.promo-modal__banner-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 780px) {
  .promo-modal__banner-img {
    -o-object-position: left;
    object-position: left;
    animation: mobile-banner 8s ease infinite;
    animation-delay: 0;
  }
}
.promo-modal__content {
  margin: 0 auto;
}
.promo-modal__text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  max-width: 710px;
  margin: 0 auto;
  padding-bottom: 37px;
}
@media screen and (max-width: 799.9px) {
  .promo-modal__text-wrapper {
    gap: 12px;
    padding-bottom: 19px;
  }
}

@media screen and (max-width: 450px) {
  .promo-modal__text-wrapper {
    gap: 8px;
    padding-bottom: 15px;
  }
}
.promo-modal__title {
  font-family: var('Google Sans Flex');
  font-weight: 500;
  font-size: 36px;
  line-height: 111%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 799.9px) {
  .promo-modal__title {
    font-size: 31px;
  }
  .promo-modal__title > br {
    display: none;
  }
}

@media screen and (max-width: 450px) {
  .promo-modal__title {
    font-size: 29px;
  }
}
.promo-modal__text {
  font-family: var('Google Sans Flex');
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 450px) {
.promo-modal__text {font-size: 18px;}}
.promo-modal__button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  font-family: var('Geist Mono');
  font-weight: 500;
  font-size: 18px;
  line-height: 178%;
  text-align: center;
  color: #fff;
  margin: 0 auto;
  border-radius: 10px;
  padding: 4px 4px 4px 32px;
  width: 199px;
  height: 56px;
  box-shadow:
    0 8px 21px -5px rgba(0, 0, 0, 0.05),
    0 3px 4px -3px rgba(0, 0, 0, 0.05);
  background: linear-gradient(180deg, #4d5160 0%, #252730 100%);
}
@media screen and (max-width: 799.9px) {
  .promo-modal__button {
    gap: 21px;
    width: -moz-max-content;
    width: max-content;
  }
}
.promo-modal__button-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  width: 48px;
  height: 48px;
}
.promo-modal__button-icon > span {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.promo-modal__button:hover .promo-modal__button-icon > span {
  transform: rotateZ(45deg);
} /*# sourceMappingURL=style.css.map */
