/* ANIMATIONS */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(-20px);}
  100% { opacity: 1; transform: translateY(0px);}
}

@keyframes modalPop {
  0% { opacity: 0; transform: translateY(10px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fadeOut {
  0% { opacity: 1; transform: translateY(-20px);}
  100% { opacity: 0; transform: translateY(-40px);}
}
/* ANIMATIONS ENDS */


.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 2; /* Sit on top */
  padding: 24px 16px;
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(10,20,25,0.45); /* Black w/ opacity */
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  -moz-backdrop-filter: saturate(140%) blur(8px);
  -ms-backdrop-filter: saturate(140%) blur(8px);
  -o-backdrop-filter: saturate(140%) blur(8px);
  backdrop-filter: saturate(140%) blur(8px);
  animation: fadeIn 0.4s ease;
}


/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 28px 24px;
  border: none !important;
  width: 95%;
  max-width: 860px;
  border-radius: 16px;
  -webkit-border-radius: 20px;
  -ms-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  animation: modalPop 0.35s ease;
}

/* Modal Content ul li */
.modal-content ul {
  padding: 20px;
}

.modal-content ul li {
  line-height: 1.5;
  margin-bottom: 10px;
  list-style-type: none;
  text-transform: initial;
}

.modal-content h2 {
  margin: 30px 0px 50px 0px;
  color: #0D988C !important;
}

.modal-content h4 {
  margin: 20px 0px 0px 0px;
}

/* The Close Button */
.close {
  color: #4b5563;
  float: right;
  font-size: 24px;
  font-weight: bold;
  background-color: #f1f5f9 !important;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.close:hover,
.close:focus {
  color: #111827;
  text-decoration: none;
  cursor: pointer;
  background-color: #e5e7eb !important;
}



