.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #161419e5;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.modal-footer {
  margin-top: 32px;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  text-align: center;
}

.modal-footer-button {
  background: none;
  border: none;
  color: #f0644b;
  cursor: pointer;
  text-decoration: underline;
}

@media screen and (max-width: 800px) {
  .modal-overlay {
    padding-top: 52px;
    overflow-y: scroll;
    padding: 52px 0 24px;
  }

  .modal-close {
    top: 18px;
    right: 18px;
  }

  .modal-close img {
    width: 24px;
    height: 24px;
  }
}

@media screen and (max-height: 750px) {
  .modal-overlay {
    align-items: start;
  }

  .modal-close {
    top: 14px;
    right: 14px;
  }
}
