/* cmsms stylesheet: synexis modified: 03/06/26 12:02:47 */
.overlay-popup-news {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999998;
    display: none;
    pointer-event: none;
    backdrop-filter: blur(2px);
}

.overlay-popup-news.active {
    display: block;
}

.popup-news {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 9999999;
    padding: 20px;
    width: calc(100% - 40px);
    max-width: 800px;
    display: none;
    -webkit-box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.15); 
    box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.15);
}

.popup-news.active {
    display: block;
}

.popup-news .inner {
    background: #fff;
}

.popup-news .head {
    margin-bottom: 20px;
}

.popup-news .head .close-popup-news {
    font-size: 24px;
    line-height: 0;
    cursor: pointer;
    margin-left: 30px;
    transition: .2s all ease;
    opacity: 1;
}

.popup-news .head .close-popup-news:hover {
    opacity: .6;
}
