.custom-modal-window {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba($base-color, 0.9);
  min-width: 100%;
  min-height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  margin: -50px -50px;
  padding: 50px 50px;
  @include respond-to(phones) {
    padding: 15px 15px;
    margin: -15px -15px;
  }
  z-index: 5000;
}

.close-box
{
  color: $base-color-light;
  position: fixed !important;
  top: 40px;
  right: 50px;
  @include respond-to(phones) { top: 15px; right: 15px; }
  cursor: pointer !important;
  z-index: 8000;
}

.custom-modal-content-container
{
  font-family: Verdana, Geneva, Arial, sans-serif;
  margin: 80px auto;
  margin-top: 80px;
  @include respond-to(phones) { margin: 15px auto; margin-top: 15px; }
  color: $base-color-light;

  visibility: visible;
  z-index: 5050
}
