.d-contents {
    display: contents!important;
}
/* redondear la barra de scroll */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    /* rounded */
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: #313131;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #303030;
    border-radius: 10px;

}
::-webkit-scrollbar-track {
    background: #696969;
    border-radius: 10px;

}
::-webkit-scrollbar-corner {
    background: transparent;
}
