/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 19/05/2020, 08:30:08
    Author     : Daniel
*/
:root{
    --cor: #0976b4;
}
.search-wrap {
    display: flex;
    width: 100%;
    height: 50px;
}
.search-wrap-min {
    display: flex;
    width: 100%;
    height: 50px;
}
.search-group {
    flex: 1 0 auto;
    display: flex;
}
.search-field {
    flex: 1 0 auto;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 5px 0px 0px 5px;
}
.search-field-min {
    flex: 1 0 auto;
    border-radius: 5px 0px 0px 5px;
}
.search-select {
    position: relative;
    display: flex;
    width: 180px;
}
.search-control:focus {
    outline: 0;
    border: 1.5px solid #021b89;
    z-index: 3;

}

.search-control-min:focus {
    outline: 0;
    border: 2px solid #021b89;
    z-index: 3;
    box-shadow: 0 0 5px 0px rgb(2, 27, 137);

}
.search-button-min:hover {
    outline: 0;
    border: 2px solid #021b89;
    background: #021b89;
    z-index: 3;
    /*box-shadow: inset 0 0 20px 5px #021b89;*/
    color: #fff;
}
.search-control {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    padding: 10px 20px;
    font-size: 1.2rem;
    font-family: inherit;
    /*font-weight: 400;*/
    color: #333;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 5px 0px 0px 5px;
    transition: all .15s ease;
}

.search-control-min {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    padding: 20px 20px;
    font-size:18px;
    font-family: inherit;
    color: #333;
    background-color: #fff;
    border-bottom: 2px solid #C6C6C6;
    border-top: 2px solid #C6C6C6;
    border-left: 2px solid #C6C6C6;
    border-right: 0px solid transparent;
    border-radius: 5px 0px 0px 5px;
    transition: all .15s ease;
}

.search-button {
    width: 50px;
    text-align: center;
    font-size: 20px;
    color: #021b89;
    border: 0;
    background: #fff;
    cursor: pointer;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 0px 5px 5px 0px;
    transition: 250ms linear;
}
.search-button-min {
    width: 50px;
    text-align: center;
    font-size: 20px;
    color: #C6C6C6;
    border: 0;
    background: #fff;
    cursor: pointer;
    border-bottom: 2px solid #C6C6C6;
    border-top: 2px solid #C6C6C6;
    border-left: 0px solid transparent;
    border-right: 2px solid #C6C6C6;
    border-radius: 0px 5px 5px 0px;
    transition: 250ms linear;
}
/*.search-button-min:hover{
    box-shadow: 0 0 6px 2px rgb(9, 118, 180), 0px 0px 0px 0px rgb(255, 255, 255), 0 0px 0px 0px rgb(255, 255, 255);
}*/
.search-button:hover {
    /*outline: 0;*/
    border: 2px solid #021b89;
    background: #021b89;
    z-index: 3;
    /*box-shadow: inset 0 0 20px 5px var(--cor), 0px 4px 4px rgba(0, 0, 0, 0.25);*/
    color: #fff;
}

