﻿.top_header {
	padding: 1.5vw 0;
	position: absolute;
	top: 0;
	z-index: 1001;
	width: 100%;
}

.header {
	width: 81.8vw;
	margin: 0 auto;
	margin-bottom: 2.5vw;
}

.header_in {
	display: flex;
	justify-content: space-between;
}

.header_logo1 {
	margin-right: 20px;
}

.header_in_logo img {
	height: 2vw;
}

.header_in_search {
	position: relative;
}

.header_in_search .searchtxt {
	background: none;
	padding: 0.63vw 3vw 0.63vw 1vw;
	border: 1px solid #fff;
	border-radius: 1vw;
	box-sizing: border-box;
	width: 14.48vw;
	color: #fff;
}

.header_in_search .searchtxt:focus {
	border-color: #fff !important;
	box-shadow: inset 0 1px 1px rgba(255, 255, 255, .075), 0 0 8px rgba(255, 255, 255, .6);
}

.searchtxt::placeholder {
	color: #fff;
}

.header_in_search .searchbtn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 1.1vw;
	width: 1vw;
	height: 1vw;
	background: url(/Content/Areas/Common/images/common/search.png);
	outline: none;
	border: none;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	cursor: pointer;
}

.header_in_search::before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 3vw;
	width: 1px;
	height: 1vw;
	background: #fff;
}

.header_in_nav {
	display: flex;
}

.header_in_nav a {
	color: #fff;
}

.header_nav {
	display: flex;
}

.header_nav_item {
	display: inline-block;
	line-height: 2.4vw;
	box-sizing: border-box;
	padding: 0 1.67vw;
	border-radius: 100px;
}

.header_nav_item.active {
	background: #FAD7A1;
	color: #245CCE;

}

.login_content {
	line-height: 2.4vw;
	color: #fff;
}

@media only screen and (max-width: 768px) {
	.wrap .top_header {
		position: initial;
		background: #245CCE;
	}

	.header {
		width: 100%;
		box-sizing: border-box;
		padding: 10px;
		margin-bottom: 0;
	}
	.header_in {
	align-items: center;
}
.header_nav {
	display: none;
}
	.header_in_logo img {
		height: auto;
		width: 60%;
	}

	.header_logo1 {
		margin-bottom: 5px;
	}

	.header_in_search {
		display: none;
	}

	.login_content {
		display: none;
	}

	.header_in_nav {
		display: none;
	}
} 