.modal {
  display: none;
  background: rgba(255, 255, 255, 0.65);
  min-height: 100vh;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 999;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  overflow-y: auto;
}

.modal .wrapper {
  width: 100%;
  max-width: 450px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 1);
}
.modal .btn-close {
  position: absolute;
  right: 5%;
  top: 5%;
  background-color: transparent;
  font-size: 20px;
  font-weight: 700;
  color: #ffeb33;
}

@media (max-width: 800px) {
  .modal .wrapper {
    width: 100%;
  }
}
