@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
:root {
    --blue: #2c7be5;
    --indigo: #727cf5;
    --purple: #6b5eae;
    --pink: #ff679b;
    --red: #e63757;
    --orange: #fd7e14;
    --yellow: #f5803e;
    --green: #00d27a;
    --teal: #02a8b5;
    --cyan: #27bcfd;
    --white: #fff;
    --gray: #748194;
    --gray-dark: #4d5969;
    --primary: #2c7be5;
    --secondary: #748194;
    --success: #00d27a;
    --info: #27bcfd;
    --warning: #f5803e;
    --danger: #e63757;
    --light: #f9fafd;
    --dark: #0b1727;
    --ccblue: #2a7bbf;
    --ccgray: #859ca7;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --breakpoint-xxl: 1540px;
    --font-family-sans-serif: "Poppins",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    --font-family-monospace: "SFMono-Regular",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
}
body{
    font-family: 'Poppins', sans-serif;
    background: var(--light);
}
/*
p{
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: var(--grey);
}
*/
a,
a:hover,
a:focus{
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.navbar{
    padding: 15px 5px;
    background: var(--light);
    border: none;
    border-radius: 0;
    margin-bottom: 5px;
}

.navbar-btn{
    box-shadow: none;
    outline: none!important;
    border: none;
}

.line{
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #dddddd;
}

.wrapper{
    display: flex;
    width: 100%;
    align-items: stretch;

}


#content{
    width: 100%;
    padding: 20px;
    min-height: 100vh;
    transition: all 0.3s;
}

.headlogo{
    color: var(--ccblue);
    font-size: 1.5em !important;
}

.taillogo{
    color: var(--ccgray);
    font-size: 1.5em !important;
}

.dashboard{
    color: var(--dark);
    font-size: 2.0em !important;
}
.icon-logo{
    height: 40px;
}

.overlay {
    background: #00000070;
    position: absolute;
    display: none;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    opacity: 1.0;
}

@media(max-width: 786px){
    #sidebar{margin-left: -250px;}
    #sidebar.active{
        margin-left: 0px;
    }
    #sidebarCollapse span{
        display: none;
    }
}