@charset "utf-8";
/* CSS Document */

#mvc-searchbar-container {
	position: relative; 
	width: 100%; 
	height: 0px;  
	z-index: 8;
}

#mvc-seach-button {
	width: 60px; 
	height: 50px; 
	position: absolute; 
	top: 0; 
	right: 0;
	cursor: pointer;
}

#mvc-search-form {
	width: 100%;
	height:50px;
	background-color: rgba(0, 0, 0, .8);
	position: absolute; 
	top: 0; 
	left: 0; 
	overflow: hidden;
	margin-top: -50px;
	transition: margin .5s;
	-moz-transition: margin .5s;
	-webkit-transition: margin .5s;
	-o-transition: margin .5s;
}

#mvc-search-form.mvc-search-show {
	margin-top: 0px;
}

#mvc-search-form form {
	width: 95%;
	margin-left: 5%; 
	overflow:hidden;
}

#mvc-search-form form #mvc-search-field {
	float: right; 
	height: 50px; 
	width: 200px;
	border-radius: 0; 
	background-color: transparent; 
	border: none; 
	box-sizing: border-box; 
	overflow:hidden;
	text-align: right;
	color: #ffffff;
}

#mvc-search-form form #mvc-search-submit {
	float: right; 
	width: 60px; 
	height: 50px;
	border-radius: 0; 
	background-color: rgba(216, 30, 0, 1);
	color:#ffffff; 
	border: none; 
	box-sizing: border-box; 
	overflow:hidden; 
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	font-style: italic;
	padding-left: 15px;
}

#mvc-search-form form #mvc-search-submit:hover {
	background-color: #042F40;
}

#mvc-seach-button-inhead {
	width: 43px; 
	height: 100%; 
	position: absolute; 
	background-color: rgba(216, 30, 0, 1);
	top: 0; 
	right: 0;
	cursor: pointer;
	
}

#mvc-seach-button-inhead img {
	transition: margin .5s;
	-moz-transition: margin .5s;
	-webkit-transition: margin .5s;
	-o-transition: margin .5s;
}

#mvc-seach-button-inhead:hover img {
	margin-top: -5px;
}

#mobile-btn {
    float: right;
    padding: 26px 56px 0 0;
}

@media screen and (max-width: 320px) {
	.nav-logo img {
		width: 133px !important;
		padding-left: 16px !important;
	}
}