.popup-active {
  overflow: hidden;
}

.popup-block {
  display: none;
  position: fixed;
  inset: 0;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.popup-block.active {
  display: flex;
}

.popup-block .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.popup-block__inner {
  position: relative;
  background: #fff;
  border-radius: 50px;
  width: 100%;
  max-width: 1140px;
  max-height: 90vh;
  overflow: hidden;
  z-index: 2;
}

.popup-block__scroll {
  overflow-y: auto;
  max-height: 90vh;
  padding: 60px 70px;
}

@media (max-width: 766px) {
  .popup-block__scroll {
    padding: 0px 24px 8em;
    margin-top: 6em;
  }
  .popup-block .btn-close-popup {
    left: 20px;
  }
}

.popup-block .btn-close-popup {
  position: absolute;
  top: 40px;
  left: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #020012;
  opacity: 0.5;
  transition: opacity 0.2s ease;
  padding: 0;
  z-index: 10;
}

.popup-block .btn-close-popup:hover {
  opacity: 1;
}
