@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Asap+Condensed:600');

/*additional reset
---------------------------------------------------*/
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}


form {
	align-items: center;
	background: #f1f1f1;
	justify-content: center;
	padding: 2%
}
.search_entry {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
}
.searchBtn_box {
    background: #6bb6e7;
    color: #fff;
    width: 99%;
    height: 44px;
    flex-wrap: wrap;
    text-align: center;
    align-content: center;
    justify-content: center;
    /* margin-left: 7px; */
    margin-top: 10px;
    border-radius: 51px;
}
select {
	height: 40px;
	padding-left: 5px;
	border-radius: 99px;
	border: 1px solid #ddd;
	box-shadow: 0px 0px 5px 0px #ddd;
	font-size: 14px;
	color: #000;
	background: #fff;
}
@media screen and (max-width:390px){
	select {
		font-size: 12px;
	}
}
select option {
	position: relative;
}
select option::after {
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 4.5px solid red;
	content: "";
	position: absolute;
	right: 9px;
	top: 21px;
	width: 0;
}
i.fa.fa-search {
	display: block;
	width: 100%;
	font-size: 17px;
	margin-bottom: 2px;
}
.searchBtn_box p {
	margin: 0;
	line-height: 1;
	color: #fff;
	font-size: 14px;
}