.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99999;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal__content {
  background-color: #fff;
  padding: 25px;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__header + * {
  margin-top: 30px;
}

.modal__title {
  font-weight: 700;
  font-size: 25px;
  letter-spacing: 0.2px;
  padding: 0 10px 0 0;
}

.btn__close {
  background-color: rgba(218, 77, 67, 0.6);
  transition: all 0.3s ease;
}

.btn__close:hover {
  background-color: rgba(218, 77, 67, 1);
  transform: scale(1.2);
}

.modal__body {
  display: flex;
  flex-direction: column;
}

.modal__body + * {
  margin-top: 15px;
}

.modal__footer {
  display: flex;
  justify-content: center;
}

@media (max-width: 530px) {
  .modal__content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}