/* *********************************/
/* This imports the ROBOTO font for use in the application */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/**********************************/
/* These are base classes, used for resets, setting starting base, etc. */
*, body{
    font-family: 'roboto', Arial, sans-serif;
    font-weight:normal;
    font-style:normal;
    font-size: 16px;
} 

a{
    cursor: pointer;
}


/**********************************/
/* Generic classes */
/* THESE ARE VARIABLES / MOSTLY COLOR */
:root {
    --black: #000;
    --white: #fff;
    --rs_secondary_link-color:#0B3A56;


    --rs_content-wrapper_background-color: #F0F0F2;

    --rs_main-header_background-color: #000;

    --rs_main-header_color: #fff;
}
  


/**********************************/
/* Generic classes */
/* These can be used anywhere */
.rs_secondary_link-color{
    color:#0B3A56;
}

/* These are colors fort the font awsome icons */
.fa-hourglass-half{
    color:#39A8B4;
}

.fa-check{
    color:#1a7f3d;
}

.fa-circle-exclamation{
    color:#39A8B4;
}

.rs_text-center{
    text-align: center;
}
.rs_100vh{
    /*  THIS CLASS GIVES AN OBJECT THE FUIIL HIGHT OF THE BROWSERWINDOW  */
    height: 100vh; 
}
.rs_center-width-and-hight{
    /*  THIS CLASS CENTERS THE CONTENT BOTH VERTICLY AND HORIZONTALY  */
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
/**********************************/
/* These are more specific classes */
/* These are used in specific places / cases */
.rs_content-wrapper{
    background-color: #F0F0F2;
}

.rs_main-header{
    background-color: #000;
}

.rs_main-header ul li a{
    color: #fff;
}

/**********************************/
/* THIS IS THE DASHBOARD /W BOXES */

.rs_dash_outter-box{
    margin-bottom: 1rem;
}

.rs_dash_inner-box{
    height:8.2rem;
    padding: 0.625rem;
    color: #000;
    border-radius: 0%;
    cursor: pointer;
}

.rs_dash_inner-box h3{
    font-size: 2rem; 
    font-weight: normal;
    margin-bottom:.625rem
}

.rs_dash_inner-box p{
    font-size: 1.07rem; 
    margin-bottom:1rem;
    font-weight: 500;
}

.rs_dash_inner-box > div{
    height:1.563rem;
    background-color: rgba(0, 0, 0, .1);
    position: absolute;
    left: .5rem;
    right: .5rem;
    bottom: 0rem;
    transition: background-color .2s linear, -webkit-transform .2s linear;
}

.rs_dash_inner-box:hover > div{
    background-color: rgba(0, 0, 0, .18);
}

.rs_dash_box-1{
    background-color:#8B9CA6;
}

.rs_dash_box-2{
    background-color:#AB9BAE;
}

.rs_dash_box-3{
    background-color:#B19F62;
}

.rs_dash_box-4{
    background-color:#A49C8F;
}

.rs_dash-box_icon{
    color: rgba(0, 0, 0, .15);
    position: absolute;
    top: 1.25rem;
    right: 1.563rem;
    font-family: "Font Awesome 6 Free";
    -webkit-font-smoothing: antialiased;
    font-size: 4.375rem;
    font-weight: 900;
    display: var(--fa-display,inline-block);
    font-style:normal;
    font-variant: normal;
    line-height: 1;
    text-rendering:auto;
    transition: scale .3s linear, -webkit-transform .3s linear;
}

.rs_dash_inner-box:hover .rs_dash-box_icon{
    scale: 1.13;
}

.rs_dash_inner-box .fa-greater-than{
    position: relative;
    left: 45%;
    top: .15rem;
    font-size: 1.15rem;
    font-weight: 900;
}

/**********************************/
/* THIS IS THE LEFT NAV */
.rs_main-sidebar{
    background-color: #486171;
} 

.layout-navbar-fixed .wrapper .rs_main-sidebar.sidebar-dark-primary .rs_brand-link{
    background-color:#486171;
    border-bottom: 3px solid #486171;
}

.icon i.rs_content--box--icon{
    font-size: 4rem;
}

.sidebar-dark-primary .nav-sidebar>.nav-item>.nav-link,
.sidebar-dark-primary .nav-sidebar>.nav-item .nav-link>i.d-none+p{
    color: #fff;
    font-size: .9rem;
    font-weight: 400;
    font-style: normal;
}

.sidebar-dark-primary .nav-sidebar>.nav-item>.nav-link.active,
.sidebar-dark-primary .nav-sidebar>.nav-item .nav-link.active>i.d-none+p{
    background-color: transparent;
    color: #F2B705;
    font-weight: 600;
    box-shadow: none;
}
.sidebar-dark-primary .nav-sidebar>.nav-item .nav-link.active{
    background-color: transparent; 
}
.sidebar-dark-primary .nav-sidebar>.nav-item .nav-link>i.fa-arrow-right{
    color: #fff;
}
.sidebar-dark-primary .nav-sidebar>.nav-item .nav-link>i.fa-arrow-right+p{
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    font-style: normal;
}
.sidebar-dark-primary .nav-sidebar>.nav-item>ul{
    width: 14.59rem; 
}
.sidebar-dark-primary .nav-sidebar>.nav-item>ul:hover{
    background-color: rgba(255, 255, 255, .1);
}

/*         deleet bellow        */
.small-box .inner h3{
    font-size: 2em;
    font-weight: normal;
}


/**********************************/
/* FOOTER AREA */
.main-footer{
    color: #fff;
    background-color: #000;
    font-size: 1em;
    word-spacing: .1em;
}

.main-footer a{
    color: #fff;
    font-size: 1.07em;

}

.main-footer img{
    margin-right: 1rem;
    margin-left: .5rem;

}
/* ********************************* /
/* SETTING BASE STATE FOR FORMS */
*:focus {
    outline: none;
}
select,
textarea,
input[type="text"], 
input[type="password"]{
    margin: 3vh 0;
    padding: .60rem;
    font-size: 1.1rem;
    border: none;
    border-bottom:solid #7D7E7F 1px; 
    border-radius: 0%;
    box-sizing: border-box;
    width: 100%;
}
textarea:hover,
input[type="text"]:hover,
input[type="password"]:hover{
    background-color: #E9E8E8;
    cursor: pointer;
    border-bottom:solid #7D7E7F 1px; 
}
textarea:focus, 
input[type='text']:focus,
input[type='password']:focus{
    background-color: #E9E8E8;
    border-width: 0px;
    border: none;
    border-bottom:solid #7D7E7F 1px; 
    border-radius: 0%;
}
textarea:focus-visible, 
input[type='text']:focus-visible,
input[type='password']:focus-visible{
    background-color: #E9E8E8;
    border-width: 0px; 
    border: none;
    border-bottom:solid #7D7E7F 1px; 
    border-radius: 0%;
}

/**********************************/
/* LOGIN PAGE: DESK-TOP FORMAT */
#loginFormStep1{
    margin-top:8vh;
}

#loginFormStep1 input[type="submit"]{
    display: block;
    margin:5vh auto;
    width: 13rem;
    height: 3.3rem;
    border: none;
    border-radius: 0%;
    color: #fff;
    background-color: #B19F62;
    font-weight: 700;
    font-size: 1.25rem;
}

.rs_login_wrapper{
    min-height: 100%;
    height: 100%;
    height: 100vh;
}
.rs_login{
    display: grid;
    grid-template-rows:1fr 70% 1fr; 
    grid-template-columns:1fr 60% 1fr;   
    row-gap: 0px; 
    column-gap: 0px;
    min-height: 100%;
    height: 100%;
}
.rs_login-box{
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    min-height: 33.33%;
    display: grid;
    grid-template-rows:100%;
    grid-template-columns:50% 50%;   
    row-gap: 0px; 
    column-gap: 0px;
    height: 100%;
}
.rs_loginbox-white-side{
    color: #7D7E7F;
    background-color: #fff;
    display: grid;
    grid-template-rows:1fr 75% .3fr .2fr;
    grid-template-columns:.7fr 75% .7fr;
}
.rs_login_form{
    grid-row: 2 / 3;
    grid-column: 2 / 3; 
    margin-top: 1.3rem;
}
.rs_login_form form input[type='submit']{
    display: block;
    margin: 2.25rem auto 1.75rem auto;
    width: 13rem;
    height: 3.3rem;
    border: none;
    border-radius: 0%;
    color: #fff;
    background-color: #B19F62;
    font-weight: 700;
    font-size: 1.25rem;
}
.rs_loginbox-white-side_forgot-password{
    text-align: center;
    margin-bottom: 4vh;
}
.rs_loginbox-white-side_forgot-password a{
    color: #7D7E7F;
    font-size: 1rem;
    font-weight: 400;
}
.rs_loginbox-white-side_copyright{
    grid-row: 3 / 4;
    grid-column: 2 / 3;
    color: #E9E8E8;
    font-size: .8rem;
    justify-self: center;
    margin-bottom: 2vh;
}
.rs_loginbox-white-side_copyright a{
    color: #b3b3b4;
}
.rs_loginbox-white-side_copyright img{
    margin-right: .45rem;
    margin-bottom: .3rem;
}
.rs_loginbox-blue-side{
    display: flex;
    color: #fff;
    background-color: #486171;
    font-size: 2.7rem;
    font-weight: 500;
}
.rs_loginbox-blue-side_welcome-pannel{
    margin: auto;
}
.rs_loginbox-blue-side_welcome{
    text-align: center;
    place-self: center;
    text-transform: uppercase;
    font-size:2.5rem;
    font-weight: bold;
}
.rs_loginbox-blue-side_co-name{
    text-align: center;
    place-self: center;
    font-size:1.8rem;
    font-weight: 400;
}
/* ********************************* /
/* LOGIN PAGE: IPAD PRO IN LANDSCAPE */
@media screen and (max-width: 1366px) {
    .rs_login-box{
        grid-template-rows: 27% 73%;
        grid-template-columns: 100%;
    }
    .rs_loginbox-white-side{
        grid-row: 2/ 3;
        grid-column: 1 / 2; 
        grid-template-rows: .9fr 85% .3fr .5fr;
        grid-template-columns: .7fr 75% .7fr;
    }
    .rs_loginbox-blue-side_welcome {
        font-size: 1.8rem;
    }
}
/* ********************************* /
/* LOGIN PAGE: IPAD AIR IN LANDSCAPE */
@media screen and (max-width: 1080px) {
    .rs_loginbox-white-side{
        grid-template-rows: .9fr 85% .3fr .5fr;
        grid-template-columns: .7fr 75% .7fr;
    }
    .rs_loginbox-blue-side_co-name {
        font-size: 1.6rem;
    }
    .rs_login_form  form input[type="text"],
    .rs_login_form input[type="password"]{
        margin-top: .5rem;
    }
    .rs_login_form form input[type="submit"]{
        margin-top: .8rem;
    }
}

/* ********************************* /
/* LOGIN PAGE: 2 STEP AUTENTICATION MODAL */
.mbsc-fr-popup .mbsc-fr-w{
   /* background-color: blue !important; 
    width: 100%; */
    border-radius: 0em !important;
}

#otpReceiverBox{
    width:100% !important;
    margin: 0;
}

input#loginProcessStep #otpReceiverBox > .mbsc-col-12{
    padding: 0px;
}

#otpReceiverBox img{
    width:30%;
    margin-bottom: 5%;
}

#otpReceiverBox label{
    margin-bottom: 2rem;
}

/* ********************************* /
/* MOBILE FORMS */
/*
.rs_mobile_content-header{
    height: 16rem;
    background-color: #FFF;
}
*/