#searchDiv{
    margin-top: 10px;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

#searchDiv label{
    margin-right: 5px;
    margin-bottom: 5px;
}

#searchDiv input{
    padding: 3px;
}

#searchDiv input[type=text]{
    width: 150px;
}

.autocomplete-items {
    position: absolute;
    /*border: 5px solid #d4d4d4;*/
    border-bottom: none;
    border-top: none;
    z-index: 99;
    box-shadow: 0 0 10px black;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    /*left: 75px;
    max-height: 200px;*/
    left: 0;
    width: 100%;
    max-height: 40vh;
    font-size: 80%;
    
    overflow-y: auto;
}

.autocomplete-items span{
    /*background-color: rgba(255,255,255,0.1);*/
    color: #CCC;
}

.autocomplete-items div {
    padding: 5px;
    cursor: pointer;
    background-color: #2a2a2a;
}
.autocomplete-items div:hover {
    /*when hovering an item:*/
    background-color: #1a1a1a;
}
.autocomplete-active, .autocomplete-active span{
    /*when navigating through the items using the arrow keys:*/
    background-color: gold !important;
    color: black !important;
}

/*------------------*/

#searchResult{
    font-size: 120%;
    display: none;
    margin-top: 20px;
    margin-bottom: 10px;
    padding: 10px;
    box-shadow: 0 0 10px black;
    background-color: forestgreen;
    border-left: 15px solid limegreen;
}

#searchBtn{
    background-color: forestgreen;
    color: white;
    cursor: pointer;
    border: 2px solid forestgreen;
}

/*---------------------media----------------*/

@media (orientation:landscape){
    #searchDiv input[type=text]{
        width: auto;
    }
}

@media (min-width: 820px){
    .autocomplete-items {
        left: 75px;
        max-height: 20vh;
        width: 400px;
        font-size: 100%;
    }
}

/*
@media (min-width: 630px){

}

@media (min-width: 958px){

}

@media (min-width: 1200px){

}

*/
@media (min-width: 1366px){
    #searchDiv{
        margin-top: 15px;
    }
}