
/* The Modal (background) */
#modal01 .modal01x {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  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-animation-name: fadeIn; /* Fade in the background */
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s
}

#modal01 .modal01 {
    z-index: 9999;
    position: absolute;
}

/* Modal Content */
#modal01 .modal-content01 {
  position: fixed;
  bottom: 100px;
  left: 10px;
  background-color: #fefefe;
  width: 300px;
  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s;
  border-radius: 15px;
  overflow: auto;
  box-shadow: 5px 5px 20px rgb(88, 88, 88);
  font-family: Arial, Helvetica, sans-serif;
  z-index: 99999;
  font-size: 1.2rem;
}

#modal01 div.modal-content01 a {
    color: chartreuse;
}

/* The Close Button */
#modal01 .close {
    color: rgb(0, 0, 0);
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 7px;
}

#modal01 .close:hover,
#modal01 .close:focus {
  color: rgb(255, 0, 0);
  text-decoration: none;
  cursor: pointer;
}

#modal01 .modal-header01 {
  padding: 2px 16px;
  background-color: #ffffff;
  /*color: white;*/

}

#modal01 .modal-body01 {
    padding: 2px 16px;
    cursor: pointer;
}

#modal01 .modal-footer01 {
  padding: 2px 16px;
  background-color: #000000;
  color: white;
  cursor: pointer;
}

/* Add Animation */
@-webkit-keyframes slideIn {
  from {bottom: -300px; opacity: 0} 
  to {bottom: 90; opacity: 1}
}

@keyframes slideIn {
  from {bottom: -300px; opacity: 0}
  to {bottom: 90; opacity: 1}
}

@-webkit-keyframes fadeIn {
  from {opacity: 0} 
  to {opacity: 1}
}

@keyframes fadeIn {
  from {opacity: 0} 
  to {opacity: 1}
}