.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 {
    margin: 0 16px;
    position: relative;
    padding: 15px;
    background-color: #fff;
    text-align: center;
    border-radius: 8px;
    z-index: 10;
}

@media (min-width: 767px) {
    .mobile-popup-content {
        margin: 0 10px;
        max-width: 500px;
        width: 100%;
    }
}

.mobile-popup-logo {
    position: absolute;
    top: -64px;
    left: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 128px;
    min-height: 128px;
    max-height: 128px;
    width: 100%;
    border: 5px solid #fff;
    border-radius: 100%;
    transform: translateX(-50%);
}

.mobile-popup-logo img {
    max-width: 80px;
    object-fit: contain;
    object-position: center center;
}

.mobile-popup-logo .card-rating {
    top: -13px;
    width: 100px;
}

.mobile-popup-logo .card-rating img {
    max-width: 100%;
    width: 100%;
}

@media (max-width: 768px) {
    .mobile-popup-logo {
        max-width: 110px;
        min-height: 110px;
        max-height: 110px;
    }

    .mobile-popup-logo .card-rating {
        top: -13px;
        width: 90px;
    }
}

.mobile-popup-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 90px 30px 60px;
    border-radius: 8px;
    border: 2px solid #240065;
}

@media (max-width: 648px) {
    .mobile-popup-inner {
        padding: 72px 30px 30px;
    }
}

.mobile-popup-title {
    margin: 0 0 14px 0;
    font-family: 'CircularStd-Black', sans-serif;
    font-size: 14px;
    color: #000;
    text-align: center;
    text-transform: uppercase;
}

.mobile-popup-description {
    margin: 0 auto 28px;
    font-family: 'CircularStd-Black', sans-serif;
    font-size: 18px;
    color: #000;
    text-align: center;
}

@media (min-width: 767px) {
    .mobile-popup-description {
        max-width: 90%;
        font-size: 22px;
    }
}

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

.mobile-popup-button  {
    padding: 20px 58px;
    font-family: 'CircularStd-Black', sans-serif;
    font-size: 14px;
    background: #2c343a;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    border-radius: 28px;
    transition: .4s ease-in-out;
}

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