:root {
    --footer-height: 60px;
    --box-height: 85%;
}

html {
    font-size: 14px;
    overflow: hidden;
    zoom: 0.92;
}

#appBox {
    background-color: #fff;
    position: relative;
    position: relative;
    border: 1px solid #33343A;
    border-radius: .5em;
    box-sizing: border-box;
    box-shadow: 0 0 8px 1px #B3B3B3 !important;
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    height: var(--box-height);
    overflow: hidden;
}

.container-forms {
    width: 98%;
    height: calc(100% - var(--footer-height));
    margin: 0 auto;
}


.form-input {
    overflow: hidden;
    margin-bottom: 5em;
}

.form-wrapper {
    clear: both;
    position: relative;
    margin-bottom: 60px;
    padding-bottom: 60px;
    overflow: hidden;
    height: calc(var(--box-height) - var(--footer-height) * 2);
}

.form-body {
    width: 96%;
    margin: auto;
    overflow: auto;
    padding-top:10px;
    max-height: calc(100vh - 130px);
}




/***********scroll**********/
::-webkit-scrollbar {
    width: 20px;
    position: static;
    top: 0;
    right: 0;
}

.progress {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    margin-top: 10px;
}

.progress-bar {
    background-color: #2a323f !important;
}
/* Track */
::-webkit-scrollbar-track {
    /*    box-shadow: inset 0 0 5px grey;*/
    background-color: #eaeaea !important;
    border-radius: 10px;
}

    ::-webkit-scrollbar-track:hover {
        background: #eaeaea !important;
        background-color: #eaeaea !important;
    }
/* Handle */
::-webkit-scrollbar-thumb {
    background: #2a323f;
    border-radius: 10px;
}
/* Apply custom scrollbar thumb for form-body */
.form-wrapper::-webkit-scrollbar-thumb {
    background: #2a323f;
    border-radius: 10px;
}

::-webkit-scrollbar-button {
    height: 100px;
}
/***********scroll**********/


@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    #appBox footer .container {
        width: 100%;
        margin: 0 auto;
    }

    #appBox footer .text {
        display: none;
    }
}

.loadingIndicator {
    position: fixed;
    z-index: 1050 !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}

    .loadingIndicator .loadingSpinner {
        background: #2a323f;
        height: 50px;
        width: 50px;
        position: absolute;
        left: 45%;
        top: 45%;
        display: inline-block;
        color: #ffd500;
        vertical-align: text-bottom;
        border: 0.5em solid currentColor;
        border-right-color: transparent;
        border-radius: 50%;
        -webkit-animation: spinner-border .75s linear infinite;
        animation: spinner-border .75s linear infinite;
    }

/* Tooltips start */
i[data-toggle="tooltip"] {
    color: #929392;
}

    i[data-toggle="tooltip"]:hover {
        color: #000;
    }
/* Tooltips end */
/* fix tool tip issue*/
.tooltip {
    pointer-events: none; 
}


a.disabled {
    pointer-events: none; 
    opacity: 0.6; 
    cursor: not-allowed; 
}