
body {font-family: Arial, Helvetica, sans-serif;}

/* The Modal (background) */
.modal {
  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: azure; /* 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;
  opacity:0.94;
}

/* Modal Content */
.modal-content {
  position: fixed;
  bottom: 0;
  background-color: #fefefe;
  width: 100%;
  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s
}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 72px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #3eacbd;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  background-image:linear-gradient(45deg,azure,#0abfbc,black );
  color: white;
}

.modal-body {
  padding: 2px 16px;
  background-color: skyblue;
background-image:linear-gradient(45deg,white,azure,skyblue );
}

.modal-footer {
  padding: 2px 16px;
  background-image:linear-gradient(45deg,azure,#0abfbc,black );
  color: white;
}

/* 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}
}
#btnApply{
  float:right;
  margin-top:-80px;
  width:300px;
}
#myBtn{
  display: none;
}

@media only screen and (min-width:521px) and (max-width:768px){

.modal-body{
	height:220px;
}

#btnApply{ 
  
  margin-top:-50px;
  
  margin-right:25%;
  
}
}

@media only screen and (max-width:520px){

.modal-body{
	height:200px;
}

#btnApply{
  
  margin-top:0px;
  width:60%;
  margin-right:20%;
  
}
}