.popup-modal {
  position: fixed;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  background: rgba(38, 38, 38, .99);
  &__header {
    position: relative;
    margin-bottom: 24px;
  }
  &__title {
    font-family: $font-futurademi;
    line-height: 1;
    color: $white-color;
    padding-right: 25px;
  }
  &__close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: background 300ms ease-out;
    width: 18px;
    height: 18px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: inline-image('popup/close.svg');
    background-size: 100%;
    cursor: pointer;
    &:hover {
      background-image: inline-image('popup/close_hover.svg');
    }
    &_inside {
      top: 40px;
      right: 20px;
    }
  }
  &__container {
    position: relative;
    width: 94%;
    max-width: 840px;
    margin: 0 auto;
    padding: 35px 0 60px;
    z-index: 5;
    &_large {
      max-width: 1000px;
    }
  }
  &__overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
  }
  &__main-content {
    background-color: $white-color;
    padding: 50px 35px;
    &_alert {
      text-align: center;
      font-size: 0;
      big {
        display: block;
        font: 25px/1 $font-futurademi;
        margin-bottom: 20px;
      }
    }
  }
}
