header{
	flex:0 0 40px;
	display:flex;
	height:40px;
	background-color:var(--blue5);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10;
	}
.header_logo{
	flex: 1 1 auto;
	display:flex;
	}

	
.logo_icon{
	display: inline-block;
	width:36px;
	height:36px;
	background-image: url(../svg/wtcbug.svg);
    background-repeat: no-repeat;
    background-position: center center;
    margin-top: 10px;
    margin-left: 20px;
	}
.logo_name{
	display:block;
	color:var(--white);
	line-height: 36px;
	padding:0 8px 0 24px;
	margin-top: 2px;
	font-size: 24px;
	font-weight: 300;
	}
.logo_name b{
	font-weight: 700;
	pointer-events: none;
	}
.logo_name:hover{
	text-decoration: none;
	}

.header_links{
	display:none;
	}
	


.header_menu{
	display:flex;
	flex: 0 0 auto;
	margin-top: 0px;
	height:40px;
	margin-right: 0;
	}
.menu_icon {
    display: inline-block;
    height: 40px;
    width: 40px;
    padding:0;
    background-image: url(../svg/menu.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 100%;
    margin-top: 0;
    margin-right: 12px;
	}


	
.install_btn{
	margin-top: 6px;
	height:30px;
	background-color: var(--blue5);
	padding:0 12px;
	font-size: 16px;
	color:var(--white);
	border-bottom: 1px solid var(--blue5);
	cursor:pointer;
	}
.install_btn:hover{
	border-bottom: 1px solid var(--blue4);
	}

	
@media only screen and (min-width: 1024px){

	.header_menu{
		display:none;
		}
	
	.header_links{
		display:block;
		flex: 0 0 auto;
		margin-top: 0px;
		height:40px;
		margin-right: 6px;
		}
	.header_links a{
		line-height: 40px;
		padding:6px 12px;
		font-size: 16px;
		color:var(--white);
		}
	.header_links a:hover{
		border-bottom: 1px solid var(--blue4);
		}
	.header_links a.selected{
		border-bottom: 1px solid var(--blue2);
		color:var(--white);
		}
	.header_links a.bold{
		font-weight: 700;
		color:var(--white);
		}
	.header_menu{
		display:none;
		}
		


}


