#popup-sev-overlay{
    position:fixed;
    inset:0;
    opacity:0;
    visibility:hidden;
    transition:opacity .3s ease;
    z-index:9998;
}

#popup-sev-overlay.blur{
    backdrop-filter: blur(6px);
}

#popup-sev{
    position:fixed;
    opacity:0;
    visibility:hidden;
    transform:scale(.7);
    transition:all .3s ease;
    z-index:9999;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#popup-sev.center{
    top:50%;
    left:50%;
    transform:translate(-50%,-50%) scale(.7);
}

#popup-sev.bottom-left{
    bottom:20px;
    left:20px;
}

#popup-sev.bottom-right{
    bottom:20px;
    right:20px;
}

#popup-sev.active{
    opacity:1;
    visibility:visible;
    transform:translate(-50%,-50%) scale(1);
    width: 90%;
    
}

#popup-sev.bottom-left.active,
#popup-sev.bottom-right.active{
    transform:scale(1);
}

#popup-sev img{
    display:block;
    border-radius:12px;
}

#popup-sev img.fit-width{
    width:100%;
    height:auto;
}

#popup-sev img.fit-height{
    height:100%;
    width:auto;
}

#popup-sev-btn{
    margin-top: 10px;
    cursor: pointer;
    background: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
}

#popup-sev-close{
    position: absolute;
    top: -10px;
    right: -10px;
    background: #fff;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
}
