.popup-overlay {
    background: rgba(0,24,42,0.8);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    overflow-y: scroll;
    visibility: hidden;
    opacity: 0;
    transition: all .35s ease-in-out;
}

@media (max-width: 993px) {
    .popup-overlay {
        display: block;
    }
}

.popup-overlay.popup-overflow {
    margin: auto;
    width: 100%;
    padding: 250px 0 50px;
    transition: all .35s ease-in-out;
}

@media (max-width: 993px) {
    .popup-overlay.popup-overflow {
        padding: 0;
    }
}

.popup-overlay.visible {
    visibility: visible;
    opacity: 1;
    z-index: 999999;
}

.popup-overlay.visible .popup-overflow {
    padding: 50px 0 50px;
}

@media (max-width: 993px) {
    .popup-overlay.visible .popup-overflow {
        padding: 0;
    }
}

.popup-overlay .popup-frame {
    width: 810px;
    background: #F6F6F6;
    margin: 0 auto;
    box-shadow: 11px 40px 38px rgba(38, 40, 39, 0.35);
    border-radius: 10px;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
}

@media (max-width: 993px) {
    .popup-overlay .popup-frame {
        width: 100%;
        border-radius: 0;
        min-height: 100vh;
    }
}

.popup-overlay .popup-image {
    width: 400px;
    min-height: 512px;
    background-size: cover;
    background-position: left center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 40px 15px;
}

@media (max-width: 993px) {
    .popup-overlay .popup-image {
        display: none;
    }
}

.popup-overlay .points {
    padding: 0px 0px;
}

.popup-overlay .hr {
    min-height: 1px;
    height: 1px;
    width: 100%;
    background: #EAEAEA;
    margin-top: 15px;
    margin-bottom: 15px;
}

.text-bold { font-weight: 700 !important; }

.popup-overlay .points li {
    position: relative;
    margin: 20px 0;
    padding-left: 40px;

    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 25px;

    color: #000000;
}

.popup-overlay .points li strong {
    font-weight: 700;
}

.popup-overlay .points li:before {
    position: absolute;
    content: '';
    background: url(../images/check.svg) no-repeat center/contain;
    width: 20px;
    height: 20px;
    left: 0;
    top: 50%;
    margin-top: -10px;
}

.popup-overlay .popup-content {
    padding: 32px;
    width: calc(100% - 1px);
}


.popup-overlay .popup-content .mobile {
    display: none;
}

.popup-overlay .popup-content .desktop {
    display: block;
}

@media (max-width: 993px) {
    .popup-overlay .popup-content {
        width: 100%;
        padding: 30px 20px 100px;
    }

    .popup-overlay .popup-content .mobile {
        display: block;
    }

    .popup-overlay .popup-content .desktop {
        display: none;
    }
}

.popup-overlay .popup-content header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
}

.popup-overlay .popup-content header h2 {
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 5px;
}

.popup-overlay .popup-content header h2.success {
    font-family: Open Sans;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 150%;
    color: #0074C8;
}

.popup-overlay .popup-content h3 {
    font-family: Open Sans;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 150%;
    color: #1C82CC;
}

.popup-overlay .popup-content p {
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 150%;
    padding-top: 15px;
    padding-bottom: 15px;
}

.popup-overlay .popup-content header .close-popup {
    background: url(../images/close.svg) no-repeat center/contain;
    width: 32px;
    height: 32px;
    display: inline-block;
    cursor: pointer;
}

.popup-overlay .popup-content form h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 30px 0 10px;
}

.popup-overlay .popup-content form .points {
    margin: 40px 0;
}

@media (min-width: 994px) {
    .popup-overlay .popup-content form .points {
        display: none;
    }
}

@media (max-width: 993px) {
    .popup-overlay .popup-content form .form-btn {
        position: fixed;
        background: #fff;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 20px;
        margin: 0;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.16);
    }
}

.popup-overlay .popup-content .alert {
    background: #E6F1FD;
    border-radius: 8px;
    padding: 16px 16px 16px 50px;
    margin: 25px 0;
    color: #003874;
    line-height: 1.3;
    font-size: 15px;
    position: relative;
}

.popup-overlay .popup-content .alert:before {
    position: absolute;
    content: '';
    background: url(../images/icon-info.svg) no-repeat center/contain;
    width: 24px;
    height: 24px;
    top: 16px;
    left: 16px;
}

.popup-overlay .form-success-btns {
    background: #fff;
    box-shadow: 0 24px 34px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 5px 16px;
    margin: 70px 0 30px;
}

.popup-overlay .form-success-btns strong {
    font-size: 18px;
    font-weight: 700;
    margin: 15px 0 20px 0;
    display: block;
}

.popup-overlay .form-success-btns .btn {
    width: 100%;
    display: block;
    height: 45px;
    line-height: 45px;
    font-size: 15px;
    margin: 10px 0;
    text-align: center;
}

.popup-overlay .popup-form {
    display: block;
}

.popup-overlay .popup-form.hide {
    display: none;
}

.popup-overlay .popup-success {
    display: none;
    padding-top: 50px;
}

.popup-overlay .popup-success.visible {
    display: block;
}

.popup-overlay .help-block {
    color: indianred !important;
    font-size: 12px;
    margin-top: 3px;
    margin-bottom: -10px;
}
