/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 999999; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  /* height: 100%; /* Full height */
  height: 99%;
  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
}

/* Modal Content */
.modalContent {
  position: fixed;
  background-color: #f1f1f1;
  width: 100%;
  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s
}

/* The Close Button */
.modalClose {
  color: black;
  margin: -3px -12px;
  padding: 0;
  float: right;
  font-size: 20px;
  font-weight: bold;
}

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

.modalHeader {
  padding: 2px 16px;
  background-color: #F07070;
  color: white;
}

.modalBody {padding: 2px 16px;}

.modalFooter {
  padding: 2px 16px;
  background-color: #F07070;
  color: white;
}

#addLinkFormRegion {
  font-weight: bold;
}

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

@keyframes slideIn {
  from {bottom: 0%; opacity: 0}
  to {bottom: 0%; opacity: 1}
}

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

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