/*
THIS BLOCK IS USED FOR BOXES THAT CAN BE SHIFTED (user/pwd page and reset pwd page - login.html).
USED in login.html.
*/

.scrollable{}

.scrollable__container::-webkit-scrollbar { 
    display: none;  
}

.scrollable__container{
    overflow:auto;
    white-space: nowrap;
    scroll-behavior: smooth;
    -ms-overflow-style: none; /* IE 11 */
    scrollbar-width: none; /* Firefox 64 */
}

.scrollable__element{
    width:100%;
    display:inline-block;
}



