.news-pop-up {
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    padding: 10px;
}

body.show-pop-up {
    overflow: hidden;
}

.show-pop-up .news-pop-up {
    display: flex;
}

.news-pop-up .inner {
    width: 700px;
    max-width: 100%;
    background-color: #FFF;
    position: relative;
    max-height: 100%;
    overflow: auto;
}

.news-pop-up .inner > header {
    position: sticky;
    top: 0;
    right: 0;
}

.close-news-pop-up {
    appearance: none;
    border: 0;
    position: absolute;
    width: 50px;
    height: 50px;
    top: 15px;
    right: 15px;
    background: #FFF;
    z-index: 9;
    left: auto;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.1);
}

.close-news-pop-up::before,
.close-news-pop-up::after {
    content: ' ';
    border: 1px solid #e62814;
    width: 32px;
    position: absolute;
    left: 9px;
    top: 25px;
}

.close-news-pop-up::before {
    transform: rotate(45deg);
}

.close-news-pop-up::after {
    transform: rotate(-45deg);
}

.news-pop-up .ce-bodytext {
    padding: 30px 50px;
}

.news-pop-up .btn-primary {
    margin-top: 40px
}

@media (max-width: 767px) {
    .news-pop-up .ce-bodytext {
        padding: 20px;
    }

    .news-pop-up .btn-primary {
        width: 100%;
    }

    .close-news-pop-up {
        width: 40px;
        height: 40px;
    }

    .close-news-pop-up::before, .close-news-pop-up::after {
        width: 23px;
        left: 9px;
        top: 20px;
    }
}
