#side-menu
{
    position: fixed;
    z-index: 4;
    top: 40px;
    left: 0;
    width: 300px;
    height: calc(100% - 40px);
    background-color: var(--top-menu-bar-color);
    opacity: 0.9;
    transform: translateX(-100%);
    transition: all 0.3s ease;
    display: none;
    backdrop-filter: blur(10px);
}

#close-side-menu 
{
    position: absolute;
    top: 5px;
    right: 5px;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    border: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background-color: var(--spawn-side-menu-btn-color);
    transition: all 0.3s ease;
}
#close-side-menu::after 
{
    content: "X";
    font-size: 20px;
    color: var(--new_logo_text_color);
    font-weight: bold;
}
#close-side-menu:hover::after 
{
    content: "X";
    font-size: 20px;
    color: var(--DaiRed);
    font-weight: bold;
}

/* Zona de vinculos */
#links-for-side-menu
{
    position: relative;
    top: 100px;
    left: 0%;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: left;
}

#links-for-side-menu a
{
    width: 100%;
    padding-left: 5%;
    text-decoration-line: none;
    color: var(--new_logo_color-2);
    font-size: 15pt;
    transition: 320ms ease all;
}
#links-for-side-menu a:hover 
{
    color: white;
}

@media screen and (max-width: 1200px)
{
    #side-menu
    {
        display: block;
    }
    
}