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

@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-top: 20px; /* Location of the box */
  padding-bottom: 20px;
  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(0,0,0,0.4); /* Black w/ opacity */
  -webkit-backdrop-filter: saturate(120%) blur(10px);
  -moz-backdrop-filter: saturate(120%) blur(10px);
  -ms-backdrop-filter: saturate(120%) blur(10px);
  -o-backdrop-filter: saturate(120%) blur(10px);
  backdrop-filter: saturate(120%) blur(10px);
  animation: fadeIn 1.5s;
}


/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888 !important;
  width: 95%;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -ms-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
}

/* 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: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  background-color: #fff !important;
  border: none;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}



