#a2h-myModal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 999; /* Sit on top */
  padding-top: 80px; /* Location of the box */
  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 */
}

.a2h-modal-header {
  padding: 30px 30px 5px;
  color: white;
  text-align: center;
}
  .a2h-modal-header h2 {
    font-size: 1.5rem;
  }

  .a2h-modal-header img {
    margin-bottom: 20px;
  }

.a2h-modal-content p {
  text-align: center;
}

.add-button {
  display: none;
}
/* Modal Content */
.a2h-modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 320px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}
/* Add Animation */
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0
  }

  to {
    top: 0;
    opacity: 1
  }
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0
  }

  to {
    top: 0;
    opacity: 1
  }
}
/* The Close Button */
.a2h-close {
  color: #8b5162;
  font-size: 28px;
  font-weight: bold;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 0;
  right: 8px;
}

  .a2h-close:hover,
  .a2h-close:focus {
    color: #BB95A0;
    text-decoration: none;
    cursor: pointer;
  }

.a2h-modal-body {
  padding: 10px 30px;
}

.a2h-modal-footer {
  padding: 20px 30px 10px;
  background-color: #fafafa;
}
  .a2h-modal-footer img.icon-inline {
    width: 13px;
    vertical-align: text-top;
    margin: 0 2px;
  }