.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 2002; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  -webkit-animation-name: fadeIn; /* Fade in the background */
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s
}

.modal-light{
    background-color: rgba(0,0,0,0.0); /* Black w/ opacity 0.4*/
}

.modal-dark{
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity 0.4*/
}

/* Modal Content */
.modal-slideIn-content {
  position: fixed;
  bottom: 0;
  background-color: #fefefe;
  left:5%;
  width: 90%;
  border-radius: 25px;
  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s
}

/* The Close Button */
.close-btn1 {
  color: white;
  float: right;
  font-weight: bold;
}

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

.modal-body {padding: 2px 16px;}


/* Add Animation */
@-webkit-keyframes slideIn {
  from {bottom: -300px; opacity: 0} 
  to {bottom: 0; opacity: 1}
}

@keyframes slideIn {
  from {bottom: -300px; opacity: 0}
  to {bottom: 0; opacity: 1}
}

@-webkit-keyframes fadeIn {
  from {opacity: 0} 
  to {opacity: 1}
}

@keyframes fadeIn {
  from {opacity: 0} 
  to {opacity: 1}
}

@media only screen and (max-width: 1100px) and (orientation: portrait)  {
    
    .modal-slideIn-content {
        
        font-size: 66px;
    }   
}