@charset "UTF-8";
form.quick-search-form::before{content: "\f002"; position: absolute; z-index:2; top:50%; transform: translateY(-50%); left:8px; font-size:15px; line-height:1; text-align: center; color:var(--gray); font-family: FontAwesome;}

form.quick-search-form {position:relative;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    /*width: 100%;*/
    /*max-width:340px;*/
	min-width: 390px;
    max-width: 100vw;
	max-width: 600px;
	margin:0 auto;
    padding: 0;
    border: none;
    border-radius: 2px;
    background: var(--white) !important;
	    box-shadow: 0 0 9px 1px rgba(0, 0, 0, .06);
}
.quick-search-form input[type="text"] {
	position: relative;
    box-sizing: border-box !important;
    width: calc(100% - 80px) !important;
    height: 40px !important;
    /*margin: 0 0 0 15px;*/
    padding: 8px 8px 8px 30px!important;
    font-size: 14px !important;
    font-weight: 300;
    line-height: 18px !important;
    color: var(--ltgray);
    border: 1px solid #b7b7b7 !important;
	border-right:0 !important;
    border-radius: 3px 0 0 3px !important;
    background: var(--white) !important;
    font-family: "raleway", sans-serif !important;
    appearance: none;
    transition: all 0.2s ease;
}

.quick-search-form input[type="text"]:focus {
    background-color: var(--black);
}




.quick-search-form input[type="submit"] {
    position: relative;
    z-index: 1;
    cursor: pointer;
    width: 80px;
    height: 40px;
    margin: 0;
    padding: 0;
	padding-bottom:2px; 
    font-size:16px;
	line-height:38px; 
    color: var(--white);
    border: none;
    border-radius:0 3px 3px 0;
    background: var(--black);
    transition: all 0.2s ease-in-out;
    -webkit-appearance: none;
	font-family: "oswald", sans-serif;
}
.quick-search-form input[type="submit"]:hover {background: var(--stsred);}
.quick-search-form input[type="submit"]:focus {
    background: var(--offblack);
}

@media screen and (max-width:500px) {
	form.quick-search-form {width:100%; min-width: 315px;}
}

@media screen and (max-width:400px) {
	form.quick-search-form {min-width:0;}
}


