#popup_alert {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--color);
    width: 100vw;
    height: 100vh;
    z-index: 1005;

    div {
        display: flex;
        flex-direction: column;
        background-color: var(--bg-color);
        width: 80%;
        height: 20vh;
        padding: 2vw;
        border-radius: 1vw;
    }

    .header_popup_alert{
        display: flex;
        flex-direction: column;
        text-align: right;
        width: 100%;
    }

    #close_popup_alert {
        font-size: 7vw;
        cursor: pointer;
    }

    #alert{
        width: 100%;
        text-align: center;
        margin-bottom: 8vw;
    }


}

@media (min-width: 1000px) and (orientation: landscape) {

    #popup_alert {
        position: fixed;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: rgba(0, 0, 0, 0.6);
        color: var(--color);
        width: 100vw;
        height: 100vh;
        z-index: 1001;

        div {
            display: flex;
            flex-direction: column;
            background-color: var(--bg-color);
            width: 30%;
            padding: 1vw;
            border-radius: 0.5vw;
        }

        #close_popup_alert {
            font-size: 2vw;
            text-align: right;
            cursor: pointer;

        }


    }
}