.subscribe-modal {
  z-index: 1000;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(0, 27.72, 45.69, 0.9) 0%,
    rgba(0, 27.72, 45.69, 0.9) 100%
  );
  display: flex;
  justify-content: center;
}

.subscribe-modal__content {
  position: relative;
  margin: auto;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 8px 40px 0 #000a10;
  padding: 40px 20px 30px 20px;
  width: 100%;
  max-width: 924px;
  max-height: 100%;
  overflow-y: auto;
}

.subscribe-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  border: none;
  color: #334155;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
}

.subscribe-modal__close:hover,
.subscribe-modal__close:focus {
  outline: none;
  border: none;
  box-shadow: none;
  background: transparent;
}

.subscribe-modal__main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 767px) {
  .subscribe-modal__content {
    padding: 32px 16px 24px 16px;
  }
}
