﻿
#cont::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    /*background-color: #F5F5F5;*/
    background-color: #000000c2;
    border-radius: 2%;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.0);
}

#cont::-webkit-scrollbar-thumb {
    background-color: #00000080; /*rgba(162, 24, 45, 0.43);*/
    border-radius: 10px;
}

#cont::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
    border: 4px solid transparent;
    background-clip: content-box; /* THIS IS IMPORTANT */
}

#contEd::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    /*background-color: #F5F5F5;*/
    background-color: #B79889;
    border-radius: 5px;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}

#contEd::-webkit-scrollbar-thumb {
    background-color: rgba(162, 24, 45, 0.43);
    border-radius: 10px;
}

#contEd::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
    border: 4px solid transparent;
    background-clip: content-box; /* THIS IS IMPORTANT */
}
