/*******************************************************************************
fonts
*******************************************************************************/
@font-face{font-family: 'Montserrat'; src: url(/public/fonts/Montserrat.ttf);}
@font-face{font-family: 'Exo'; src: url(/public/fonts/Exo.ttf);}
@font-face{font-family: 'Poppins'; src: url(/public/fonts/Poppins.ttf);}
/*******************************************************************************
colors
*******************************************************************************/
:root{
    --bw--darkest: #181818;
    --bw--darker: #353535;
    --bw--dark: #454545;
    --bw--mid: #666666;
    --bw--light: #DBDBDB;
    --bw--lighter: #EEF1F5;
    --bw--lightest: #FCFCFC;

    --blue--darkest: #012f5a;
    --blue--darker: #03437e;
    --blue--dark: #075197;
    --blue--mid: #317fc7;
    --blue--light: #66b1f8;
    --blue--lighter: #8ec7fd;
    --blue--lightest: #dbeeff;

    --yellow--darkest: #7e6f0c;
    --yellow--darker: #a5931f;
    --yellow--dark: #c0ad33;
    --yellow--mid: #F0DF73;
    --yellow--light: #F0DF73;
    --yellow--lighter: #F5ECB3;
    --yellow--lightest: #fcf6d1;

    --green--darkest: #06633c;
    --green--darker: #0c7c4d;
    --green--dark: #10975f;
    --green--mid: #16B471;
    --green--light: #6DDBAB;
    --green--lighter: #8FF5C8;
    --green--lightest: #AAFBD8;

    --red--darkest: #D90B0B;
    --red--darker: #D90B0B;
    --red--dark: #D90B0B;
    --red--mid: #F63C3C;
    --red--light: #FE5050;
    --red--lighter: #FB7272;
    --red--lightest: #F69494;

    --bilk: #162F4A;
    --idc: #C08C74;
}
/*******************************************************************************
general css
*******************************************************************************/
*{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat';
    font-size: 14px;
    box-sizing: border-box;
}
html{
    max-width: 1920px;
    margin: 0 auto;
    color: var(--bw--darker);
    background-color: var(--bw--lighter);
}
a{
    text-decoration: none;
    color: var(--grey--darker);
}
li{
    list-style: none;
}
/*******************************************************************************
wrapper
*******************************************************************************/
top-bar{
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--bw--light);
}
top-bar img{
    max-height: 50px;
    max-width: 120px;;
    cursor: pointer;
    padding: 5px;
}
top-bar div{
    display: flex;
    align-items: center;
    justify-content: center;
}
top-bar div:nth-child(1),
top-bar div:nth-child(3){
    width: 120px;
    border-radius: 13px;
}
/******************************
module navigation
******************************/
module-navigation{
    display: flex;
    justify-content: left;
    padding: 15px;
    gap: 11px;
    border-bottom: 2px solid var(--bw--light);
    background-color: var(--bw--light);
    box-shadow: 0px 0px 3px 2px rgba(0,0,0,0.3);
}
module-navigation img{
    width: 35px;
}
navigation-item{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 7px;
    cursor: pointer;
    background-color: var(--bw--lighter);
    box-shadow: 0px 0px 2px 2px rgba(0,0,0,0.3);
}
navigation-item:active{
    box-shadow: inset 0px 0px 2px 2px rgba(0,0,0,0.3);
}
navigation-item:hover navigation-tooltip{
    display: block;
}
navigation-item a{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
navigation-tooltip{
    width: 250px;
    text-align: center;
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    background-color: var(--bw--dark);
    color: var(--bw--lightest);
    padding: 10px;
    border-radius:7px;
}
/******************************
systen alerts
******************************/
system-alert{
    display: none;
    position: fixed;
    right: 10px;
    top: 10px;
    width: 500px;
}
system-alert p{
    font-size: 17px;
    font-family: 'Courier New';
    color: var(--bw--lightest);
    padding: 10px;
    text-align: center;
    border-radius: 7px;
}
system-alert p._success{
    background-color: var(--green--mid);
}
system-alert p._warning{
    background-color: var(--yellow--dark);
}
system-alert p._error{
    background-color: var(--red--lighter);
}
/******************************
dynamic content wrapper
******************************/
dynamic-wrapper{
    display: flex;
    justify-content: space-around;
    width: 100%;
}
dynamic-wrapper #content{
    flex: 1;
    background-color: var(--bw--lightest);
    border-radius: 15px;
    padding: 15px;
    margin: 15px;
}