/* Header */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 0 repeat(auto-fill, minmax(100px, auto));
    grid-template-rows: 48px;
    justify-items: center;
    align-items: center;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,.3),0 2px 6px 2px rgba(60,64,67,.15);    
    z-index: 2;
}
.flex-header {
    position: fixed;
    top: 0px;
    width: 100%;
    height: 48px;
    display: flex;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,.3),0 2px 6px 2px rgba(60,64,67,.15);    
    z-index: 3;
}
.devsite-header-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}
.devsite-header-list > *:first-child {
    //border-left: 1px solid #dadce0;    
}    
.devsite-header-item {
    border-right: 1px solid #dadce0;
    position: relative;
    display: flex;
    padding: 0px;
}
.devsite-header-title {
    margin: auto;
    padding: 0 10px;
    overflow: hidden;
}
.devsite-header-text {
    color: rgba(0,0,0,0.87);
}
.green .devsite-header-text {
    color: #fff;
}
.devsite-header-logo-wrapper,
.landing-header-logo-wrapper
{
    position: relative;
    display: flex;
    padding: 0px;
}
.devsite-header-logo-item {
    width: 38px;
    margin:5px;
}
.devsite-header-hamburger-wrapper {
    position: relative;
    display: none;
}
.devsite-header-hamburger-item {
    margin: auto;
    padding: 0 8px;
}

@media only screen and (max-width: 1280px) {
    .devsite-header-text {
	font-size: 14px;
    }
    .menu-linkbox {
	font-size: 14px;
    }
}
@media only screen and (max-width: 830px) {
    .devsite-header-hamburger-wrapper {
	display: flex;
    }
    .devsite-header-hamburger-item {
	margin-left: -20px;
    }
    .devsite-header-list {
	display: none;
	line-height: 16px;
	padding-bottom: 36px;
	list-style-type: none;
	margin: 0;
	padding: 16px 0 16px;
	border-bottom: solid 1px #dadce0;    
    }
    .devsite-header-item {
	line-height: 16px;
	margin: 0;
	padding: 4px 0;
	width: 100%;
	display: inline-block;
    }
    .devsite-header-text {
	padding-left: 24px;
	overflow: hidden;
	color: rgba(0,0,0,0.87);
    }
    .landing-header-logo-wrapper {
	#display: none;
    }
}
