/* *********************************/
/* 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');



/* *********************************/
/* This imports the "local" css document */
@import "rs_local-css.css";


/**********************************/
/* 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 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%;
    background-color: red;
}


/* ********************************* /
/* MOBILE FORMS */
/*
.rs_mobile_content-header{
    height: 16rem;
    background-color: #FFF;
}
*/
