/*HEADER
-----------------------*/

header {
    position: relative;
    width: 100%;
    height: 64px;
}

.customize-support header {
    top: 0;
}

header.md-card {
    padding: 0;
    z-index: 999;
	border-radius: 0;
}

.main-content-open header {
    padding-right: 64px;
    -webkit-transition: padding-right .5s!important;
    transition: padding-right .5s!important;
}

.top-logo {
    float: right;
}

.top-logo img {
    float: right;
    max-width: 220px;
    max-height: 60px;
}

.top-logo img.top-slogan {
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

#side-menu {
	display: none;
}

#logo {
    float: left;
    width: 200px;
    height: 60px;
    text-align: center;
    background-color: #3279a0;
    color: #ffffff;
    text-decoration: none;
}

#logo img {
    height: 54px;
}

.site-name {
    float: left;
    width: 100%;
    font-size: 35px;
    line-height: 35px;
}

.slogan {
    float: left;
    width: 100%;
    font-size: 14px;
    line-height: 25px;
}

img.logo-img-mobile {
    display: none;
}

h1 {
    font-size: 26px;
    margin: 0px;
    font-weight: normal;
}

#title h1 {
	line-height: 64px;
}

#title {
    float: right;
    display: inline-block;
    height: 64px;
    width: 50%;
    line-height: 64px;
    color: white;
    margin-right: 60px;
}

.menu-toggle {
	display: none;
    position: absolute;
    top: 10px;
    left: 10px;
    width: 50px;
    height: 50px;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
}

.menu-toggle i {
    width: 50px;
    height: 50px;
    padding: 5px;
}

.menu-toggle i svg {
    width: 40px;
    height: 40px;
    fill: #ffffff;
}

#close-side-menu {
    display: block;
    position: absolute;
    top: 0;
    right: -40px;
    width: 40px;
    height: 40px;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    line-height: 40px;
    border-left: 1px solid #f9f9f9;
}

#close-side-menu i {
    width: 40px;
    height: 40px;
    padding: 5px;
}

#close-side-menu i svg {
    width: 30px;
    height: 30px;
    fill: #ffffff;
}

.lf-search-container:hover {
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);
}

.header-user {
    float: left;
    width: 250px;
    height: 64px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: white;
}

.logout-button, .logout-button:hover {
    height: 26px;
    color: white;
    font-size: 14px;
    line-height: 22px;
    background-color: #f39200;
    padding: 2px 10px;
    margin: 0 10px;
    text-decoration: none;
    border-radius: 20px;
}

.header-user svg {
    fill: #ffffff!important;
}

.header-logo {
    float: right;
    width: 250px;
    height: 64px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.header-brand {
    float: left;
    width: calc(100% - 500px);
    height: 64px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.header-brand img {
    max-height: 60px;
}

.mobile-header-container {
	display: none;
}

/*----------------------------------responsive------------------------------------*/

@media screen and (max-width: 950px) {

header {
    background-color: #000000!important;
    height: 70px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
	z-index: 9;
}

.header-user {
    width: 70%;
    padding: 0 45px 0 0;
}

.top-logo {
    float: right;
    height: 50px;
    background-color: #144788;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
    margin: 0 0 0 20px;
    overflow: hidden;
}

.top-logo:active, .top-logo:focus {
	background-color: #144788;
}

.image-logo {
    display: none;
}

.header-logo {
    display: none;
}

.header-user {
    display: none;
}

.header-brand {
    display: none;
}

.mobile-header-container {
    display: block;
    float: left;
    width: 100%;
}

.mobile-header-container .header-brand {
	display: flex;
    width: 100%;
	height: 70px;
}

#main-content {
    margin-top: 0px;
}

#logo {
    position: absolute;
    top: 0;
    left: calc(50% - 90px);
    width: 180px;
    height: 50px;
}

.site-name {
    font-size: 25px;
    line-height: 30px;
}

.slogan {
    font-size: 16px;
    line-height: 20px;
}

.menu-toggle {
    display: block;
}

.menu-toggle i {
    line-height: 50px;
    font-size: 40px;
}

#side-menu {
    display: block;
    position: fixed;
    top: 0;
    left: -50px;
    width: 280px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);
    z-index: 99999;
    -ms-transform: translateX(-280px);
    -webkit-transform: translateX(-280px);
    transform: translateX(-280px);
    -webkit-transition: transform 0.5s ease-in;
    transition: transform 0.5s ease-in;
}

.side-menu-open {
    -webkit-transition: transform 0.5s!important;
    transition: transform 0.5s!important;
    -ms-transform: translateX(0px)!important;
    -webkit-transform: translateX(0px)!important;
    transform: translateX(0px)!important;
}

#side-menu i {
    line-height: unset;
}

.top-logo img.top-slogan {
    margin: 0 -15px;
}

#side-menu li {
    float: left;
    width: 100%;
    height: 40px;
}

#side-menu li + li {
    border-top: 1px solid #eeeeee;
}

#side-menu li a,
#side-menu li span {
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    font-size: 20px;
    color: #000000;
}

}
