.user_nav_bar {
    display: none;
}

#user_nav_aside {
    position: fixed;
    width: var(--nav-toggle-width);
    background: var(--blue-dark);
    color: #fff;
    height: 100%;
    right: 0;
    top: 0;
    transition: right 0.5s;
}

#user_nav_aside #computer_site_logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

#user_nav_aside #computer_site_logo img {
    margin: 0;
    cursor: pointer;
}


#user_nav_aside ul {
    padding: 0;
}

#user_nav_aside ul li {
    position: relative;
    list-style: none;
    /*margin-bottom: 40px;*/
    padding: 3vh 30px;
    font-size: var(--nav-toggle-li-font-size);
    border-bottom: 0.5px solid  var(--nav-border-color);
}

#user_nav_aside ul li:before {
    display: none;
    content: "";
    position: absolute;
    width: var(--nav-notif-width);
    height: var(--nav-notif-width);
    border-radius: 50%;
    background-color: var(--notification-nav);
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    animation: nav_animation 1s linear infinite;
    z-index: 10;
}

#user_nav_aside a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.5s;
}

#user_nav_aside a:hover {
    color: var(--green);
}

#user_nav_aside a.active {
    color: var(--green);
}

#user_nav_aside a i {
    margin-left: 10px;
}

#user_nav_aside #div_tickets_nav {
    position: absolute;
    bottom: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 90%;
    background-color: currentColor;
    border-radius: 100px;
    margin: 0 10px;
    padding: 10px 30px;
}

#user_nav_aside #div_tickets_nav a {
    color: var(--blue-dark);
}

#user_nav_aside #div_tickets_nav a:hover {
    color: var(--green);
}

#user_nav_aside #div_tickets_nav a.active {
    color: var(--green);
}

/*mobiles*/
@media (max-width: 768px) {
    .user_nav_bar {
        display: flex;
        /*position: sticky;*/
        top: 0;
        width: 100%;
        height: var(--nav-height);
        align-items: center;
        justify-content: space-between;
        background-color: var(--blue-dark);
        z-index: 100;
        box-shadow: 0 1px 10px var(--blue-dark);
        padding: 0 0 0 20px;
    }

    #user_nav_aside {
        display: block;
        z-index: 100;
        top: var(--nav-height);
        right: calc(var(--nav-toggle-width) * -1);
    }

    #user_nav_aside #computer_site_logo {
        display: none;
    }

    #user_nav_aside.active {
        box-shadow: 0 10px 10px var(--blue-dark);
        right: 0;

    }

    .user_nav_bar #toggle_menu_button #toggle_menu_button_notif {
        display: none;
        content: "";
        position: absolute;
        width: var(--nav-notif-width);
        height: var(--nav-notif-width);
        border-radius: 50%;
        background-color: var(--notification-nav);
        left: 0;
        top: 7px;
        animation: nav_animation 1s linear infinite;
        z-index: 10;
    }

    #user_nav_aside #div_tickets_nav {
        bottom: 90px;
    }
}

@keyframes nav_animation {
    0% {
        opacity: 0.5;
    }
    40% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}
