:root {
    --header-height: 3rem;
    --nav-width: 68px;
    --rh-color-primary: #004c97;
    --rh-color-secondary: #0084D5;
    --rh-color-light: #caeaff;
    --white-color: #FFF;
    --body-font: "Roboto",calibri,sans-serif,"Segoe UI","Helvetica Neue",Arial,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    --normal-font-size: 0.875rem;
    --z-fixed: 100;
    --collapse-panel-rh-width: 23rem;
}

*,
::before,
::after {
    box-sizing: border-box
}

body {
    position: relative;
    margin: var(--header-height) 0 0 0;
    padding: 0 1rem;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    /* transition: .5s;*/
    /*background-color: #F7F6FB*/
    background-color: #FFF;
}
/* Start Revelo style text */
.text-rh-primary {
    color: var(--rh-color-primary) !important;
}

.text-rh-secondary {
    color: var(--rh-color-secondary) !important;
}

.text-rh-light {
    color: var(--rh-color-light) !important;
}

a {
    text-decoration: none
}
.bg-rh-primary {
    background-color: var(--rh-color-primary) !important;
}
.page-header-rh {
    background-color: #004c97;
    color: #fff;
    padding: 0.75rem;
}

.page-rh {
    background-color: var(--white-color)
}

    .page-rh .form-label {
        margin-bottom: 0;
    }

.card-link-rh {
    cursor: pointer;
    max-width: 540px;
    height: 100%;
    border: none;
    border-radius:0;
    box-shadow: 0px 0px 1px 1px whitesmoke;
}

    .card-link-rh:hover {
        box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
    }

    .card-link-rh img.product {
        width: 30px;
    }

    .card-link-rh img.icon {
        height: 15px;
        vertical-align: text-top;
    }

.cursor-pointer-rh {
    cursor: pointer;
}

    .cursor-pointer-rh:hover {
        box-shadow: 0 0.1rem 0.1rem rgb(0 0 0 / 7%) !important
    }

.collapse-panel-rh {
    width: 100%;
    z-index: 10;
    padding-top: 3rem !important;
}
/* End Revelo style text */

.fs-6, .card-text {
    font-size: 0.8rem !important;
}
/* Start Revelo style buttons */

.btn-primary-rh {
    color: #fff;
    background-color: #004c97;
    border-color: #9BCBEB;
}

    .btn-primary-rh:hover {
        background-color: #9BCBEB;
        border-color: #9BCBEB;
        color: #fff;
    }

.btn-secondary-rh {
    color: #fff;
    background-color: #0084D5;
    border-color: #0084D5;
}

    .btn-secondary-rh:hover {
        background-color: #0084D5;
        border-color: #9BCBEB;
        color: #fff;
    }

.bg-rh {
    background: transparent radial-gradient(closest-side at 50% 50%,#004c97 0,#00264c 100%) 0 0 no-repeat padding-box;
}

/* End Revelo style buttons *


/* Start Revelo style navbar */
.header {
    width: 100%;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.3rem;
    background-color: var(--rh-color-primary);
    z-index: var(--z-fixed);
    transition: .5s
}

.header_toggle {
    color: var(--white-color);
    font-size: 1.5rem;
    cursor: pointer
}

.header_img {
    width: 180px;
    height: 26px;
    display: flex;
    justify-content: center;
    overflow: hidden
}

    .header_img img {
        width: 40px
    }

.l-navbar {
    position: fixed;
    top: 3rem;
    left: -30%;
    width: var(--nav-width);
    height: 100vh;
    background-color: var(--white-color);
    padding: .5rem 1rem 0 0;
    transition: .5s;
    z-index: var(--z-fixed)
}

.nav_siderbar {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden
}

.nav_user {
    overflow: hidden;
    margin-left: 0.5rem;
    color: #FFF;
    font-size: 0.8rem;
}


.nav_logo,
.nav_link {
    display: grid;
    grid-template-columns: max-content max-content;
    align-items: center;
    column-gap: 1rem;
    padding: .5rem 0 .5rem 1.7rem
}

.nav_logo {
    /*margin-bottom: 2rem*/
}

.nav_logo-icon {
    font-size: 1.25rem;
    color: var(--white-color)
}

.nav_logo-name {
    color: var(--white-color);
    font-weight: 700
}

.nav_link {
    position: relative;
    color: #6c757d;
    /* margin-bottom: 1.5rem;*/
    transition: .3s;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
}

    .nav_link:hover {
        color: #fd7e14;
    }


.nav_icon {
    font-size: 1.25rem;
}

.nav_show {
    left: 0;
    width: 100%;
}

.body-pd {
    /*padding-left: calc(var(--nav-width) + 1rem)*/
}

.active {
    color: var(--rh-color-primary)
}

    .active::before {
        content: '';
        position: absolute;
        left: 0;
        width: 2px;
        height: 32px;
        background-color: var(--white-color)
    }

.list-group-item.active {
    color: #000;
    background-color: var(--rh-color-light);
    border-color: var(--rh-color-light)
}

    .list-group-item.active::before {
        background-color: transparent;
    }

.height-100 {
    height: 100vh
}

@media screen and (min-width: 768px) {
    body {
        margin: 0;
        padding-left: calc(var(--nav-width) + 0.2rem)
    }

    .header {
        /*  height: calc(var(--header-height) + 1rem);*/
        /* padding: 0 2rem 0 calc(var(--nav-width) + 2rem)*/
        width: var(--nav-width);
    }

    /*.header_img {
        width: 40px;
        height: 40px
    }

        .header_img img {
            width: 45px
        }*/

    .l-navbar {
        left: 0;
        padding: 1rem 1rem 0 0
    }

    .nav_show {
        width: calc(var(--nav-width) + 156px)
    }

    .body-pd {
        /*  padding-left: calc(var(--nav-width) + 188px)*/
    }

    .collapse-panel-rh {
        width: var(--collapse-panel-rh-width);
        padding-top: 0.5rem !important;
    }
}
/* End Revelo style navbar */
.mw-1 {
    max-width: 150px;
}

.mw-2 {
    max-width: 250px;
}

.fh-1 {
    max-height: 320px;
}

/*@media (min-width: 960px) and (max-width:1440px ) {
    .fh-1 {
        max-height: 14rem;
    }
}
@media only screen and (max-width: 575.98px) {
    .fh-1 {
        max-height: 14rem;
    }
}

@media only screen and (max-width: 767.98px) {
    .fh-1 {
        max-height: 14rem;
    }
}

@media only screen and (max-width: 991.98px) {
    .fh-1 {
        max-height: 14rem;
    }
}

@media only screen and (max-width: 1199.98px) {
    .fh-1 {
        max-height: 14rem;
    }
}*/
.xls-container {
    position: fixed;
    top: 0px;
    width: 95%;
}

:-webkit-full-screen .iframe-xlxs {
    height: 104%;
}

/* IE11 */
:-ms-fullscreen .iframe-xlxs {
    height: 104%;
}

/* Standard syntax */
:fullscreen .iframe-xlxs {
    height: 104%;
}

@media only screen and (max-width: 1399.98px) {
    .fh-1 {
        max-height: 625px;
    }

    .xls-container {
        height: 104vh;
    }
}

@media only screen and (min-width: 1400px) {
    .fh-1 {
        max-height: 620px;
    }

    .xls-container {
        height: 102.8vh;
    }

    :-webkit-full-screen .iframe-xlxs {
        height: 102.5%;
    }

    /* IE11 */
    :-ms-fullscreen .iframe-xlxs {
        height: 102.5%;
    }

    /* Standard syntax */
    :fullscreen .iframe-xlxs {
        height: 102.5%;
    }
}

.bg-signin {
    background: url("../img/bg-signin.jpg") no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.nav-tabs .nav-link.active {
    /* color: #FFF !important;*/
    /*background-color: #6c757d !important;*/
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: solid 2px;
    border-color: #6c757d;
    border-radius: 0;
}

.nav-tabs .nav-link:hover {
    background-color: rgba(var(--bs-light-rgb),var(--bs-bg-opacity)) !important;
}

.nav-tabs .nav-link {
    color: #000000;
}

#envdiv {
    position: fixed;
    z-index: 9;
    text-align: center;
    border: 1px solid #d3d3d3;
    /* left: 1160px;*/
}

#envdivheader {
    padding: 10px;
    cursor: move;
    z-index: 10;
    background-color: black;
    color: #fff;
}


    /*table using div*/
    .sr {
        display: table-cell;
        border-color: #ddd;
        border-style: solid;
        border-width: 1px 0px 0px 0px;
        width: 28px !important;
        padding: 6px;
        position: relative;
    }

.custom-table .table-container {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.custom-table .table-header {
    font-weight: bold;
}

.custom-table .table-row {
    display: table-row;
}

.custom-table .table-cell {
    display: table-cell;
    border-color: #ddd;
    border-style: solid;
    border-width: 1px 0px 0px 0px;
    padding: 6px;
    min-width: 100px;
    width: 100px;
    position: relative;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-table .resizer {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin-right: -5px;
    display: block;
    background-color: transparent;
    /*left:98%*/;
    
}


.custom-table .table-header:hover .resizer {
    width: 2px;
    z-index: 9999;
    width: 5%;
    /*left:0;*/
}

.resizer .line {
    cursor: ew-resize;
    width:3px;
}
.custom-table .table-header:hover .line {
    border-left: 3px solid #ddd;
    height: 100%;
    position: relative;
    top: 0;
    float: right;
    margin-right: 5px;
}
#offcanvas-user-panel {
    width: 60%;
}