@font-face {
    font-family: 'Cairo';
    src: URL('../../fonts/Cairo-Regular.ttf') format('truetype');
}

body {
  margin: 0;
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #212529;
  text-align: left;
  background-color: #FAFAFA;
}

.navbar-header{
    background: #cedefd;
    padding: 10px 0px;
    box-shadow: 0px 6px 14px #d4d4d4;
}

.logo-layout{
    width: 12%;
    display:inline-block;
    transition: 0.3s;
}

.logo-layout:hover{
    transform: scale(1.1);
}

.navbar-header .logo-img{
    width: 100%;
    height: auto;
}

.navbar-header .username{
    padding: 2px 11px;
}


.loading_layout {
    position: absolute;
    top: 0;
    left: 0;
    background: #ffffffcf;
    width: 100%;
    height: 100vh;
    z-index: 69;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loading_layout img{
    width: 10%;
}

.login-form{
    background:white;
    box-shadow: 7px 5px 70px rgb(155, 155, 155);
}

.navbar-brand img{
    width:200px;
    height:100px;
}

.navbar {
    background: #1C782D !important;
    color:white !important;
    box-shadow: 0px 4px 7px #b7d796;
}

.nav-link img{
    width:50px;
    height:50px;
}

.content-section{
    background:white;
    width:100%;
    margin-left:50px;
    box-shadow: 1px 1px 35px #8e8e8e !important;
    margin-bottom: 50px;
    height:100%
}

.screen-layout{
    min-height: 90vh;
}

footer{
    position: relative;
    bottom: 0;
    right: 0;
    left: 0;
    color: white;
    width: 100%;
    padding: 8px 0px;
    margin: 0;
    margin-top: 15vh;
    background: rgb(8, 8, 8);
}


@media (max-width: 572px) {
    .content-section{
        width: 90%;
        overflow-x: auto;
    }

    body{
        font-size:15px;
        overflow: auto;
    }

    table{
        width:100% !important;
    }
}


/* public classes */
.shadow {
    box-shadow: 1px 1px 4px #ccc;
}
