/*new*/
.overlayModal{
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 15200;
  display: none;
}

.overlayModalContainer{
  z-index: 1001;
  border: none;
  border-radius: 0px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 50%;
  margin-left: -370px;
  top: 50%;
  margin-top: -240px;
  background-color: #f2f2f2;
}

.overlayModalLoading{
  position: absolute;
  width: 740px;
  height: 480px;
  background-color: white;
}

.overlayModalLoading img{
  position: absolute;
  left:50%;
  margin-left: -16px;
  top: 50%;
  margin-top: -16px;
}

.overlayModal iframe{
  border: none;
}

.overlayModalClose{
  width: 24px;
  height: 24px;
  position: absolute;
  right: -35px;
  top: 11px;
  cursor: pointer;
  background: transparent url(../img/cancel.png) no-repeat center center;
  background-size: 20px 20px;
}

/*sizes*/
@media screen and (max-width: 850px){

  .overlayModalContainer{
    left: 0;
    margin-left: 0;
    top: 0;
    margin-top: 0;
    width: 100%;
    height: 100%;
  }

  .overlayModalLoading{
    width: 100%;
    height: 100%;
  }

  .overlayModal iframe{
    width: 100% !important;
    height: 100% !important;
  }

  .overlayModalClose{
    right: 15px;
  }

}

@media screen and (max-width: 630px){

  .overlayModal iframe{
    min-width: 300px;
  }

  .overlayModalClose{
    right: 0;
    top: 0;
    width: 47px;
    height: 47px;
  }

}

@media screen and (max-width: 370px){

  .overlayModalClose{

  }

}
