.aside_sidebar{
    width: 320px;
    background-color: var(--color-blue-default);
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    overflow-y: auto;
}

.header_sidebar{
    padding: 16px 22px;
}

.header_sidebar img{
    width: 222px;
    height: 222px;
    border-radius: 50%;
}

.article_sidebar{
    width: calc(100% - 59px);
    margin: 0 auto;
    
}

.article_sidebar nav{
    padding: 4px 12px;
}

.article_sidebar a{
    text-decoration: none;
}

.option_active_sidebar{
    background-color: var(--color-red-default);
}

.option_sidebar{
    padding: 8px 12px;
    border-radius: 6px;
    margin: 3px 0;
}

.option_sidebar:hover{
    background-color: var(--color-red-default);
}

.option_sidebar span{
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    color: #fff;
    margin-left: 8px;
}


@media screen and (max-width: 1024px){
    .aside_sidebar{
        display: none;
    }

    img.close_sidebar{
        position: absolute;
        width: 50px;
        height: 50px;
        top: 0;
        right: 10px;
    }


    .show_background{
        position: fixed;
        left: 0;
        top:0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0,0,0,0.5);
        z-index: 99;
    }

    .aside_sidebar.show {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 320px;
        height: 100vh;
        z-index: 1000;
        transition: transform 0.3s ease-in-out;
    }
}

@media screen and (max-width: 728px){

    .aside_sidebar.show {
        width: 80%;
    }

    .show_background{
        position: fixed;
        left: 0;
        top:0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0,0,0,1);
        z-index: 99;
    }
}