@keyframes riot-anim-in {
    from{opacity: 0.0; transform: translateY(30vh);}
    to{opacity: 1;transform: translateY(0);}
}



.riot_notice-overlay {
    position: absolute;
    z-index: 999999;
    background-color: rgba(248, 248, 248, 0.50);
    width: 100%;
    min-width: 100%;
    height: 100vh;
    display: grid;
    align-content: center;
    
    opacity: 1;
    
    animation: riot-anim-in 0.5s cubic-bezier(.25, .55, .4, .99);;
    
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.riot_notice-close_btn {
    background-color: var(--cl-primary);
    position: absolute;
    right: 20px;
    top: 20px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: grid;
    align-content: center;
    justify-content: center;

    cursor: pointer;

    transition: transform 0.4s ease-in-out;
    
}

.riot_notice-close_btn:hover {
    transform: scale(0.9);
}

.riot_notice-img {
    height: 100vh;
    justify-self: center;
    padding: 20px;
    box-sizing: border-box;

}

@media screen and (orientation: portrait) {
    .riot_notice-img {
        width: 100%;
        height: auto;
        justify-self: center;
    }
}
