/*
    DEMO STYLE
*/

@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
body {
    font-family: 'Poppins', sans-serif;
    background: #EAF1F7;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    color: #999;
}

ul, ol {
	list-style: none;
	padding-left: 25px;
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.navbar {
    padding: 15px 10px;
	background: #fff;
	color: #6c7293;
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

.scrollable-menu {
    height: auto;
    max-height: 400px;
    overflow-x: hidden;
}

.form-inline .form-group {
	margin-right:10px;
  }

.btn.btn-primary {
    color: #FFFFFF;
    background-color: #3699FF;
	border-color: #3699FF;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
}

#header {
	margin-left: 360px;
	padding: 15px;
	background-color: #FFF;
	color: #6c7293;
	font-weight: 500;
	font-size: 14px;

	position: fixed;
    top: 0;
    right: 0;
    left: 0;
	z-index: 97;
	box-shadow: 0px 0px 40px 0px rgba(82, 63, 105, 0.1);
	transition: all 0.3s;
}

#sidebar-hamburger
{
    display:none;
}

#sidebar {
    width: 360px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 999;
    background-color: #242939;
    color: #fff;
	transition: all 0.3s;
	overflow-y: auto;
}

#sidebar .sidebar-header {
	padding: 25px;
	font-family: 'Arial', sans-serif;
	font-size: 30px;
}

#sidebar ul {
    padding: 20px 0;
}

#sidebar .menu-item
{
	display:block;
	padding: 9px 25px;
	font-size: 14px;
	color: #989EB3;
	cursor:pointer;

	font-weight: 500;
    text-transform: initial;
}

#sidebar .collapse .menu-item
{
	padding-left: 50px;
}

#sidebar .menu-item:hover , #sidebar .menu-item-selected
{
	color: #FFFFFF;
	background-color: #1F2433;
}

#sidebar .menu-item svg
{
	color: #6a6f80;
	margin-top: -3px;
	margin-right: 10px;
}

#sidebar .menu-item:hover svg, #sidebar .menu-item-selected svg
{
	color: #8AC64B;
}


/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
	width: calc(100% - 360px);
	max-width: none;
    padding: 30px;
	transition: all 0.3s;
    position: absolute;
    top: 75px;
    right: 0;
}

#content.active {
    width: 100%;
}

.content-card-full
{
	text-align: left;
	margin:10px;
	background-color: #FFF;
	border-radius: 0.42rem;
	font-size: 14px;
	color:  #3F4254;
}

.content-card
{
	text-align: left;
	margin:10px;
	padding: 20px;
	background-color: #FFF;
	border-radius: 0.42rem;
	font-size: 14px;
	color:  #3F4254;
}

.content-card-label
{
	text-align: left;
	font-size: 17px;
	font-weight: 600 !important;
	color: #3F4254;
	margin: 0px 0px 30px 0;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    
    #sidebar-hamburger
    {
        display: inline-block;
    }
    
    #sidebar {
        margin-left: -360px;
    }
    #sidebar.active {
        margin-left: 0;
	}
	
	#header {
		margin-left: 0px;
	}

    #content {
        width: 100%;
    }
    #content.active {
        width: calc(100% - 360px);
    }
    #sidebarCollapse span {
        display: none;
    }
}