/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
}

.modal-content {
  background-color: #fefefe;
  margin: 10vh auto 0;
  height: 90vh;
  width: 100%;
  animation: fadeIn 0.5s;
  padding: 1.8rem;
  z-index: 22;
  position: relative;
  border-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.modal-content .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: none;
  font-size: 24px;
  line-height: 24px;
}

@media screen and (min-width: 992px) {
  .modal-content {
    width: 80%;
    max-width: 1000px;
    height: auto;
    margin: 6vh auto;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }
}

/* Blur effect */
.blur {
  /* filter: blur(5px); */
}

/* Animation */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}