@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:wght@500&display=swap');

:root {
    --primary-darkest: #121E2A;
    --primary-dark: #172231;
    --primary-medium-dark: #1C2A3B;
    --primary-medium: #1F3046;
    --primary-medium-light: #253850;
    --primary-light: #29405B;
    --primary-lightest: #2F4766;

    --danger-dark: #D62F0E;
    --danger-medium: #E84E31;
    --danger-light: #F47960;

    --warning-dark: #E29708;
    --warning-medium: #F0AF2C;
    --warning-light: #FAC762;

    --success-dark: #188D58;
    --success-medium: #1EB972;
    --success-light: #35DF91;

    --highlight-dark: #0171C1;
    --highlight-medium: #018FF8;
    --highlight-light: #33A9FE;

    --black: #0f0f0f;
    --white: #fcfcfc;
    --white-transparent: rgba(252, 252, 252, 0.5);
}

body{
    background: var(--primary-darkest);
    margin: 0;
    padding: 0;
    color: var(--white);
    font-family: "Lato", "Helvetica Neue", sans-serif;
}

a{
    color: var(--white);
}

nav a{
    text-decoration: none;
}

nav a.active{
    font-weight: 700;
    color: var(--highlight-light);
}

ul ul a {
    margin-left: 5px;
}

ul ul li {
    line-height: 15px;
}

.bold{
    font-weight: 800;
}

a:hover{
  color: var(--highlight-medium);
}

a.button{
    background: var(--highlight-dark);
    padding: 1rem 2rem;
    color: var(--white);
    text-decoration: none;
    transition: 0.2s linear;
    border-radius: 5px;
    white-space: nowrap;
    font-weight: 600;
}

a.button:hover{
    background: var(--highlight-medium);
}

a.button-sm{
    padding: 0.7rem 2rem;
    font-weight: 600;
    font-size: 20px;

}

.badge{
    display: block;
    background: var(--highlight-dark);
    color: var(--white);
    text-decoration: none;
    transition: 0.2s linear;
    border-radius: 5px;
    white-space: nowrap;
    font-weight: 600;
    font-size: 20px;
    width: 150px;
    text-align: center;
    text-transform: uppercase;
}

.badge-success{
    background-color: var(--success-dark);
}

.badge-danger{
    background-color: var(--danger-dark);
}

.badge-primary{
    background-color: var(--primary-dark);
    color: white;
}

.badge-warning{
    background-color: var(--warning-dark);
}

.badge-info{
    background-color: var(--highlight-dark);
}


.container{
    width: 85%;
    margin: 0 auto;

    max-width: 1140px;
}

.card{
    background: var(--primary-medium);
    border-radius: 5px;
    box-shadow: 2px 2px 10px 1px rgba(0,0,0,0.5);
}

hr{
    height: 1px;
    width: 100%;
    border: none;
    background: linear-gradient(90deg, rgba(0,0,0,0), var(--highlight-dark), rgba(0,0,0,0));
}


/* SIDEBAR */

.sidebar{
    background: var(--primary-medium-light);
    max-width: 500px;
    width:30%;
    min-width: 300px;

    top: 0;
    bottom: 0;
    left: 0;
    z-index: 2;

    box-shadow: 10px 0 10px rgba(0,0,0,0.5);

    overflow: hidden;
}

.sidebar.hidden{
    width: 0;
    max-width: 0;
    min-width: 0;
}

.sidebar .container{
    margin: 2rem 2rem;
    display: flex;
    flex-direction: column;
}

.sidebar .logo img{
    width: 100%;
}

.sidebar .logo{
    width: 80%;
    margin: 0 auto;
}

.sidebar nav{
    margin: 2rem 2rem;
    font-size: 24px;
}

.sidebar ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-bottom: 5rem;
}

.sidebar ul li{
    margin: 1rem 0;
}

.sidebar i{
    margin-right: 1rem;
}

.sidebar ul li i{
    color: var(--highlight-medium);
}

.sidebar .nav-end{
    color: var(--white-transparent);

    position: absolute;
    bottom: 4rem;
    left: 4rem;
    transition: 0.2s linear;
}

.sidebar .nav-end:hover{
    color: var(--white);
}
.sidebar .nav-end:hover{
    color: var(--white);
}

.sidebar .nav-end div{
    margin-top: 40px;
}

.sidebar-toggle{
    color: var(--primary-darkest);
    font-size: 30px;

    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.sidebar-toggle:hover{
    cursor: pointer;
}

.open-sidebar{
    color: var(--primary-medium-light) !important;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    top:50%;
    left: 1rem;
    transform: translateY(-50%);
    z-index: 1;
}

i.sidebar-toggle{
    width: min-content;
}


/* LOGIN */
.social-btn {
    width: 230px;
    height: 42px;
    background-color: #4285f4;
    border-radius: 2px;
    box-shadow: 0 3px 4px 0 rgba(0,0,0,.25);
    margin-top: 2rem;
    transition: 0.2s linear;
}

.social-btn:hover{
    box-shadow: 0 0 6px #4285f4;
    cursor: pointer;
}

.social-btn:active{
    background: #1669F2;
}


.social-btn .google-icon-wrapper {
    position: absolute;
    margin-top: 1px;
    margin-left: 1px;
    width: 40px;
    height: 40px;
    border-radius: 2px;
    background-color: #fff;
}

.social-btn .google-icon {
    position: absolute;
    margin-top: 11px;
    margin-left: 11px;
    width: 18px;
    height: 18px;
}

.social-btn .btn-text {
    padding-top: 3px;
    padding-left: 50px;
    float: left;
    margin: 11px 11px 0 0;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.2px;
    font-family: "Roboto", sans-serif;
}

.microsoft {
    background-color: #fff;
    color: #1a202c;
    border: solid 1px;
}

.microsoft .btn-text{
    color: #393c42;
}

.login-card{
    width: min-content;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.login{
    display: flex;
    align-items: center;
    height: 100vh;
}


.wrapper{
    with: 100%;
}

.d-flex{
    display: flex !important;
    align-items: stretch !important;
    box-sizing: border-box;
}

.sidebar{
    position: static;
    box-sizing: border-box;
    display: block;
}

.content{
    width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    padding-top: 50px;
}

.content-box{
    max-width: 70vw;
    min-width: 70vw;
}

.page-title{
    background-color: var(--primary-lightest);
    line-height: 100px;
    padding-left: 50px;
    margin-bottom: 30px;
}

.page-title i{
    color: var(--highlight-medium);
    margin-right: 30px;
}

.panel{
    display: flex;
    margin-bottom: 20px;
}

.panel-col{
    flex: 1;
}

.panel-col form{
    display: flex;
    justify-content: end;
    align-items: end;
}

.panel-col:first-child{
    margin-right: 50px;
    border-right-width: 20px;
    border-right-style: linear-gradient(0deg, rgba(0,0,0,0), var(--highlight-dark), rgba(0,0,0,0));
}

input{
    font-weight: bold;
    width: 300px;
    margin: 0 0px 0px ;
    height: 40px;
    padding: 6px 15px;
    border-radius: 5px;
    outline: none;
    border: none;
    background: #F6F7F9;
    color: #4d4f52;
    font-size: 16px;
}

.ml-2{
    margin-left: 20px;
}
.mr-2{
    margin-right: 20px;
}

.air-datepicker-body--day-name{
    color: var(--highlight-dark) !important;
}


.panel-cards{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.panel-card{
    max-width: 20vw;
    min-width: 20vw;
    margin: 20px;
    padding: 10px;
    background-color: var(--primary-lightest);
}

dl.inline dd {
    display: inline;
    margin: 0;

}
dl.inline dd:after{
    display: block;
    content: '';
}
dl.inline dt{
    display: inline-block;
    min-width: 100px;
    margin-left: 30px;
    font-weight: 800;
}

table {
    border-spacing: 0 0px;
    border-collapse: separate;
    width: 100%;
    background-color: var(--primary-medium-light);
    font-size: 18px;
}

tr{
  line-height: 40px;
}


th, td {
    padding: 0.4rem;
    text-align: left;
    /**border: 1px solid #ccc;**/
    margin-left: 20px;

}

th {
    background-color: var(--primary-darkest);
    border-width: 0;
    line-height: 35px;
    border-bottom: 5px solid var(--highlight-light);
    margin-top: -10px;
    font-weight: 600;
}

tbody tr:nth-child(odd) {
    background: var(--primary-lightest);
}

.content-center{
    display: flex;
    justify-content: center;
}
