/* Scrollable description areas. */

.descriptiontext{
    max-height:300px;
    overflow-y:auto;
    scrollbar-width:thin;
    scrollbar-color:
        var(--e-global-color-primary, #2A2A2A)
        var(--e-global-color-secondary, #F3F4EF);
}

.descriptiontext::-webkit-scrollbar{
    width:6px;
}

.descriptiontext::-webkit-scrollbar-track{
    background:var(--e-global-color-secondary, #F3F4EF);
    border-radius:20px;
}

.descriptiontext::-webkit-scrollbar-thumb{
    background-color:var(--e-global-color-primary, #2A2A2A);
    border-radius:20px;
}

.descriptiontext::-webkit-scrollbar-thumb:hover{
    background-color:var(--e-global-color-accent, #FF4338);
}
