.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  padding: 30px;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s linear 0.1s,opacity 0.3s ease;
}
.modal.open {
  visibility: visible;
  opacity: 1;
  display:block;
  transition-delay: 0s;
}
.modal h2{
    font-size: 26px !important;
    margin: 0;
      text-align: left;
    padding-bottom: 10px;
}
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 21;
  background-color: rgba(0, 0, 0, 0.7);
}
.modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  outline: none;
  background: none;
  font-size: 18px;
  color: #747474;
  font-weight: bold;
}
.modal__close:hover {
  color: #000;
}
.modal__container {
  position: relative;
  z-index: 22;
  width: 800px;
  max-width:95%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
  padding:10px 30px 30px;
  background-color: #fff;
  text-align: center;
}

@media(max-width:767px){
  .modal iframe{
    height:450px !important;
  }
  .modal__container {
    padding: 10px 10px 30px;
  }
  
}
