﻿#body-content{
    overflow-y: overlay;
}

#body-content::-webkit-scrollbar, #body-content-loanSizer::-webkit-scrollbar {
    display: block;
    width: 12.5px;
    position: absolute;
}

    #body-content::-webkit-scrollbar-track, #body-content-loanSizer::-webkit-scrollbar-track {
        background: lightgrey;
        box-shadow: inset 0 0 1px grey;
        /*border-radius: 5px;*/
    }

    #body-content::-webkit-scrollbar-thumb, #body-content-loanSizer::-webkit-scrollbar-thumb {
        background: var(--MainThemeColor);
        border-radius: 5px;
    }

    #body-content::-webkit-scrollbar-thumb:hover {
        /*background: var(--ColorTransparentMain);*/
    }

body {
    overflow-y: overlay;
}

@media (min-width: 320px) and (max-width: 1024px) {
    #body-content::-webkit-scrollbar, #body-content-loanSizer::-webkit-scrollbar {
        display: none
    }
}