

/*SCROLL CHROME*/
.content_page::-webkit-scrollbar{
    width: 25px;
    background: transparent;
}

.content_page::-webkit-scrollbar-thumb{
    border: 10px solid transparent;
    box-shadow: none;
    border-radius: 40px;
}

.content_page:hover::-webkit-scrollbar-thumb{
    box-shadow: inset 0 0 0 10px var(--color-icons);
}

.content_page:hover::-webkit-scrollbar-thumb:hover{
    box-shadow: inset 0 0 0 10px var(--color-alomejor);
    border: 8px solid transparent;
}

.content_page::-webkit-scrollbar-track{
    margin: 40px 0;
    background-color: transparent;

}

/*SCROLL CHROME LBARRA LATERAL*/



.layout_aside::-webkit-scrollbar{
    width: 25px;
    background-color: #534c4c;
}

.layout_aside::-webkit-scrollbar-thumb{
    border: 10px solid transparent;
    box-shadow: none;
    border-radius: 40px;
}

.layout_aside:hover::-webkit-scrollbar-thumb{
    box-shadow: inset 0 0 0 10px var(--color-icons);
}

.layout_aside:hover::-webkit-scrollbar-thumb:hover{
    box-shadow: inset 0 0 0 10px #534c4c;
    border: 8px solid transparent;
}

.layout_aside::-webkit-scrollbar-track{
    margin: 40px 0;
    background: #534c4c;

}