/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  margin: auto;
  margin-top: 4%;

  border: 1px solid #888;
  width: fit-content;

background-color: #f0d9c5;
  position: relative;
  border-radius: 15px;
}

.popup-width{
    width: 100% !important;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 25px;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 1280px) {
  .modal-content {
    width: 70%;
    margin-top: 4%;
  }
}

@media (max-width: 1024px) {
  .modal-content {
    width: 80%;
    margin-top: 1%;
  }
}

@media (max-width: 912px) {
  .modal-content {
    width: 80%;
    margin-top: 50%;
  }
}

@media (max-width: 768px) {
  .modal-content {
    width: 90%;
    margin-top: 50%;
  }
}
@media (max-width: 560px) {
  .modal-content {
    width: 95%;
    margin-top: 40%;
  }
}