
.popup-wrapper{
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0,0,0,0.65);
  z-index: 999;
  display: none;
}

.popup{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-75%);
  /*border: 1px solid #555;*/
  /*box-shadow: 0px 0px 200px #000;*/
  z-index: 102;
  background-color: transparent;
  overflow: auto;
}

.popup .modal-body{
  max-height: 480px;
  overflow-y: auto;
}
.popup .modal-body form{
  max-width: 752px; /*fix unknwon pixel overflow*/
}

.popup-veil{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 100;
  background-color: #000;
  opacity: 0.65;
}

/* Display as modal on small screens */

@media only screen and (max-width: 992px){
  .popup{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto !important;
    height: auto !important;
    transform: none;
    z-index: 101;
    overflow: auto;
  }
}
