.search_bar{
	width:100%;
	background-color: #E4E6E6;
	}
.search_bar-body{
	margin:0 auto;
	max-width: 1500px;
	padding:0 20px;
	}
.search_bar-form{
	display:flex;
	}

.search_bar-logo{
	flex:0 0 80px;
	height:80px;
	line-height: 80px;
	text-align: center;
	margin-right: 20px;
	}
	
.search_bar-select{
	flex:0 0 auto;
	display:none;
	font-size: 13px;
	line-height: 40px;
	height:40px;
	background-color:#2262ab;
	color:#fff;
	border-radius: 0px;
	box-sizing: border-box;
	padding:0 16px;
	appearance: none;
	background-image: url('../../svg/ddarrow.svg');
	background-repeat: no-repeat, repeat;
	background-position: right 10px top 52%, 0 0;
	background-size: 2em auto, 100%;
	margin-top: 20px;
	}
.search_bar-input{
	flex:1 1 auto;
	-webkit-appearance: none;
	background-color: #fff;
	line-height: 40px;
	height:40px;
	color:var(--black);
	font-size: 16px;
	text-indent: 16px;
	width:100px;
	margin-top: 20px;
	}
.search_bar-input:focus {
	background-color: #f5f5f5;
	}
.search_bar-button{
	flex:0 0 57px;
	background-color: #50BF7A;
	height:40px;
	appearance: none;
	cursor: pointer;
	background-image: url('../../svg/search.svg');
	background-repeat: no-repeat;
	background-position: right 12px top 50%, 0 0;
	background-size: 2em auto, 100%;
	margin-top: 20px;
	}
.search_bar-button:hover{
	background-color: #000;
	}

@media only screen and (min-width: 768px) {
.search_bar-select{
	display:block;
	}
}