#newsbox-som {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;

    backdrop-filter: blur(3px);
    background: rgba(0,0,0,0.5);

    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

#newsbox-som.fade-in {
    transition: opacity 600ms ease;
    opacity: 0;
}


    #newsbox-som .box {
        position: relative;
        background: #fff;
        /*width: 40%;*/
        /*height: 30%;*/

        font-size: 16px;
        box-sizing: border-box;
        padding: 20px;
    }

    #newsbox-som .box .exit {
        position: absolute;
        right: 10px;
        top: 10px;
        
        width: 30px;
        height: 30px;
        cursor: pointer;
    }
