
* {
    box-sizing: border-box;
}

/* busca simples */

.busca-simples {
    padding-top: 30px; 
    padding-bottom: 50px;
}

.busca-simples-field {
    display: inline-block;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 5px;
    /* box-shadow: 0px 1px 5px 3px rgba(206, 204, 204, 0.15); */
    position: relative;
    width: 500px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 450; 
    font-size: 12px;
    text-align: left;
    color: black;
}

*:focus {
    outline: none;
}


/*the container must be positioned relative:*/
.autocomplete {
    display: inline-block;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0px 1px 5px 3px rgba(0,0,0,0.15);
    position: relative;
    width: 500px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 450; 
    font-size: 12px;
    text-align: left;
    color: black;
}

input {
    border: 1px solid transparent;
    /* background-color: #f1f1f1; */
    background-color: white;
    padding: 10px;
    font-size: 14px;
}

input[type=text] {
    background-color: #f1f1f1;
    width: 100%;
}

input[type=submit] {
    background-color: DodgerBlue;
    color: #fff;
    cursor: pointer;
    border: none;
    border-radius: 4px;
}

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
}

.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff; 
    border-bottom: 1px solid #d4d4d4; 
}

/*when hovering an item:*/
.autocomplete-items div:hover {
    background-color: #e9e9e9; 
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
    background-color: DodgerBlue !important; 
    color: #ffffff; 
}


/* Busca para adicionar ação para simulação */

/*the container must be positioned relative:*/
.autocomplete-searched {
    display: inline-block;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid rgb(9, 9, 100);
    border-radius: 4px;
    padding: 1px 1px;

    /*box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.15);*/
    position: relative;
    width: 500px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 450;
    font-size: 12px;
    text-align: left;
    color: black;
    

}

input {
    border: 1px solid transparent;
    background-color: white;
    padding: 10px;
    font-size: 14px;
}

input[type=text] {
    background-color: #f1f1f1;
    width: 100%;
}

input[type=submit] {
    background-color: DodgerBlue;
    color: #fff;
    cursor: pointer;
    border: none;
    border-radius: 4px;
}

.autocomplete-searched-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
}

.autocomplete-searched-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff; 
    border-bottom: 1px solid #d4d4d4; 
}

/*when hovering an item:*/
.autocomplete-searched-items div:hover {
    background-color: #e9e9e9; 
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-searched-active {
    background-color: DodgerBlue !important; 
    color: #ffffff; 
}

@media only screen and (max-width: 768px) {

.autocomplete {

    /*width: 108px;*/
    width: 70%;
    flex-direction: row; 
}

.autocomplete-searched {
    width: 290px;
    flex-direction: row; 
}

/* busca simples */

.busca-simples {
    padding-top: 30px; 
    padding-bottom: 10px;
}

.busca-simples-field {

    /*width: 108px;*/
    width: 70%;
    flex-direction: row;
    padding-left: 20px; 
}


}