.popOverlay {
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    display: none;
    overflow: auto;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
}
.popOverlay .popup {
  width: 700px;
  margin: 0 auto 110px;
  background: #ffffff;
  box-shadow: 0px 10px 35px #b5b8aa;
  border-radius: 5px;
  position: relative;
  top: 100px;
  z-index: 45;
}
.popOverlay .popup .close {
  width: 28px;
  height: 28px;
  background: url("/img/icons.png") no-repeat scroll 7px -2112px;
  border: 2px solid #eb2c2c;
  border-radius: 5px;
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 3;
  cursor: pointer;
}
.popOverlay .popup .title {
  height: 40px;
  background: #00abd6;
  padding: 0 47px;
  border-bottom: 1px solid #00abf6;
  border-radius: 3px 3px 0 0;
  color: #ffffff;
  font: 600 15px/40px "Open Sans",sans-serif;
}
.popOverlay .popup .main {
  padding: 26px 47px 30px;
}
.popOverlay .popup .main .popButtons {
  margin-top: 10px;
}