html,
body,
.v-main,
.v-main__wrap {
    height: 100%;
}

html {
    overflow: hidden !important;
    font-size: 15px !important;
}

::-webkit-scrollbar {
    width: 8px;
    background-color: var(--v-background-base);
}

::-webkit-scrollbar-thumb {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: var(--v-primary-lighten2);
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: var(--v-background-base);
}

.v-application {
    background: #000000 !important;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #000000, #434343) !important;
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #000000, #434343) !important;
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.v-application__wrap {
    font-family: Lato, Helvetica, Arial, sans-serif;
    background-image: url('../img/Web-Application-Login-Wallpaper.jpg');
    background-position-y: bottom;
    background-position-x: center;
    background-size: cover;
    touch-action: pan-y;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 100%;
}

.ca-hidden {
    display: none;
}

.ca-cursor-pointer {
    cursor: pointer;
}