header{
	background: #000;
	padding: 0 2rem;
	position: relative;
	z-index: 5;
	@media screen and (max-width: 1297px){
		padding: 0 1rem;
	}
	@include br1{
		padding: 1.5rem 1rem 0;
	}
	@extend .d_flex;
	color: #fff;
	.logo{
		min-width: 297px;
		text-align: center;
		padding-top: .3rem;
		@media screen and (max-width: 1297px){
			min-width: 240px;
		}
		@include br1{
			order: 1;
		}
		@media screen and (max-width: 710px){
			width: 100%;
			margin: 1rem auto;
		}
	}
	nav{
		min-width: calc(100% - 297px - 340px);
		text-align: left;
		@extend .d_flex;
		@media screen and (max-width: 1297px){
			min-width: calc(100% - 245px - 250px);
		}
		@include br1{
			width: 100%;
			order: 3;
			text-align: center;
			@include justify-content(center);
		}
		.r-btn{
			@include br1{
				order: 1;
				width: 100%;
				text-align: center;
				@include justify-content(center);
				margin-bottom: 1rem;
			}
		}
		ul{
			@include br1{
				border-top: 1px solid #45426c;
				margin: 0 -1rem;
				order: 2;
			}
			li{
				margin-left: -3px;
				&:first-child{
					a{
						border-left: 1px solid #45426c;
					}
				}
				a{
					color: #fff;
					font-size: 1.6rem;
					padding: 1.75rem 3rem;
					display: inline-block;
					border-right: 1px solid #45426c;
					@media screen and (max-width: 1297px){
						padding: 1.75rem 1.3rem;
					}
					@media screen and (max-width: 1040px){
						padding: 1.75rem 1rem;
					}
					@media screen and (max-width: 410px){
						padding: 1rem .9rem;
					}
					&:hover{
						background-color: #00b2d2;
						color: #fff;
						text-decoration: none;
					}
				}
			}
		}
		.reports{
			margin-right: 5px;
			a{
				@extend %center-flex;
				font: 1.2rem $HB;
				text-transform: uppercase;
				color: #fff;
				line-height: 1;
				padding: .8rem 1rem;
				@media screen and (max-width: 1040px){
					padding: .8rem .5rem;
				}
				@media screen and (max-width: 410px){
					padding: .8rem 2.2rem;
				}
				&:hover{
					text-decoration: underline;
				}
				img{
					margin-right: 1rem;
				}
			}
			&.active{
				a{
					text-decoration: underline;
				}
			}
		}
	}
	.account{
		min-width: 340px;
		font: 1.2rem $HB;
		@include justify-content(flex-end);
		@media screen and (max-width: 1297px){
			min-width: 250px;
		}
		@include br1{
			order: 2;
		}
		@media screen and (max-width: 710px){
			width: 100%;
			margin: 1rem auto;
			max-width: 465px;
			min-width: auto;
			justify-content: center;
			&>*{
				margin: 1rem;
			}
		}
		.notification, .chat{
			position: relative;
			cursor: pointer;
			margin: 0 2rem 0 0;
			color: #fff;
			.num{
				min-width: 1.3rem;
				min-height: 1.3rem;
				font-size: 1rem;
				background-color: #fd0000;
				border-radius: 50%;
				@extend %center-flex;
				position: absolute;
				left: 0;
				top: 0;
				padding: 1px;
			}
		}
		.user{
			img{
				margin-right: 1rem;
				@media screen and (max-width: 410px){
					margin-right: .5rem;
				}
			}
			.arrow{
				margin-left: 1rem;
				@media screen and (max-width: 410px){
					margin-left: .5rem;
				}
				a{
					@extend %center-flex;
					i{
						color: #fff;
						font-size: 2rem;
					}
				}
			}
		}
	}
}
#userwindow {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 200;
	&:target {display: block;}
	#window {
		padding: 3rem 5rem 3rem 3rem;
		background: #fff;
		border: 1px solid rgba(24,24,24, .2);
		position: absolute;
		color: #4f4f4f;
		font-size: 1.5rem;
		line-height: 1.67;
		top: 5rem;
		right: 2rem;
		box-shadow: 0 0 0.4rem rgba(24, 24, 24, 0.38);
		@media screen and (max-width: 710px){
			top: 13rem;
			right: 40%;
			transform: translateX(50%);
		}
		a{
			color: #000;
			&:hover{
				text-decoration: underline;
			}
		}
	}
}