#active-popup {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.8);
  z-index:9998;
}

#popup-container {
  //margin: 10px 10px 10px 10px;
  margin-top: 20px;
  margin-right: 20px;
  margin-left: 20px;
  max-width: 990px;
  margin: 0 auto;
  position:fixed;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  z-index:9999;
  display:none;
}

#popup-window { overflow:auto; background-color: rgba(38, 38, 40, 0.92);}
.modal-content {
  background-color: rgba(38, 38, 40, 0.92);
  color: #fff;
  padding: 20px 40px;
  height:600px;
  box-shadow:none;
}

.modal-content input {
  height: 57px;
  border-radius: 0px;
}

.modal-content .btn-primary {
  width: 100%;
  background-color: #ef9919;
  border: 0px;
}

.modal-content .btn-primary:hover {
  background-color: #0073b7;
  border: 0px;
}

.modal-content .logorow {
  text-align: center;
}

.custom-popup-title { font-weight:bold; font-size:16px; text-decoration:underline;}
.custom-popup-acceptance { text-align:center; margin:10px 0 10px; padding-top:10px; border-top:1px solid #fff;}

.close {
    display:block;
  margin:5px auto 0;
  color: #fff;
  float:none;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  text-shadow:none;
  opacity: 1;
  filter: alpha(opacity=100);
  border:1px solid #fff!important;
  border-radius:10px;
  padding:10px 0!important;
  text-align:center;
  width:300px;
}

.close:hover {
  color: #fff;
}

@media screen and (max-width: 767px) {
#popup-container { width:90%; margin:auto;}
}