.mobile-popup {
    position: fixed;
    top: 0;
    bottom: 0;
    height: 100%;
    z-index: 25;
    left: 0;
    right: 0;
    display: none;
}

.mobile-popup.show-popup {
    display: block;
}

.mobile-popup-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
}

.mobile-popup-wrap {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.mobile-popup-content * {
    font-family: 'Lato', sans-serif !important;
    font-weight: 900;
}

.mobile-popup-content {
    padding: 145px 20px 20px;
    position: relative;
    width: 80%;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 0 34px #132A53;
    z-index: 10;
}

@media (max-width: 500px) {
    .mobile-popup-content {
        width: 100%;
    }
}


@media (min-width: 767px) {
    .mobile-popup-content {
        padding: 210px 20px 30px;
        max-width: 565px;
        width: 100%;
    }
}

.mobile-popup-close {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 3;
    border-radius: 50%;
    cursor: pointer;
}

.mobile-popup-close:before, .mobile-popup-close:after {
    content: '';
    display: block;
    width: 18px;
    position: absolute;
    top: 50%;
    left: 8px;
    height: 2px;
    background-color: #fff;
    transform: rotate(45deg);
}

.mobile-popup-close:after {
    transform: rotate(-45deg);
}

.cross_black:before, .cross_black:after {
    background-color: #000;
}

@media (min-width: 767px) {
    .mobile-popup-close {
        top: 15px;
        right: 17px;
    }

    .mobile-popup-close:before, .mobile-popup-close:after {
        width: 25px;
        height: 3px;
        left: 2px;
    }
}

.mobile-popup-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #212531;
    margin: 0;
    height: 120px;
}


@media (min-width: 767px) {
    .mobile-popup-logo {
        height: 180px;
    }
}

.mobile-popup-logo a {
    display: block;
}

.mobile-popup-logo img {
    max-width: 145px;
    max-height: 95px;
    height: auto;
    width: auto;
}

@media (min-width: 767px) {
    .mobile-popup-logo img {
        max-width: 200px;
        max-height: 145px;
    }
}

.mobile-popup-description {
    margin: 0 auto 25px;
    max-width: 320px;
    font-size: 21px;
    line-height: 1.3;
    color: #000000;
    letter-spacing: 0.25px;
}

@media (min-width: 767px) {
    .mobile-popup-description {
        max-width: 90%;
        margin: 0 auto 25px;
        font-size: 22px;
        line-height: 1.29;
    }
}

.mobile-popup-btn {
    position: relative;
    z-index: 3;
}

.mobile-popup-btn a {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    margin: auto;
    display: -webkit-box;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 280px;
    height: 48px;
    font-size: 14px;
    border-radius: 5px;
    background: #c11718;
    color: #ffffff;
    box-shadow: none;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

@media (min-width: 767px) {
    .mobile-popup-btn a {
        padding: 24px 38px 24px;
        transition: .15s ease-in-out;
    }
}

.mobile-popup-overlay-link {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}







