.search-bar {height: 0px;padding: 15px 20px;font-size: 18px;border-radius: 6px;
    border: none;
    outline: none;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


.search-bar{
  width: 48rem;
  border: 2px solid Rgb(181, 201, 171);
}
@media only screen and (min-width: 668px) and (max-width: 959px){.search-bar{width: 30rem;}}
@media only screen and (min-width: 443px) and (max-width: 667px){.search-bar{width: 16rem;}}
@media only screen and (min-width: 351px) and (max-width: 442px){ .search-bar{width: 10rem;}}
@media only screen and (min-width: 200px) and (max-width: 350px){.search-bar{width: 6rem;}}







.results {
    position: absolute;
    z-index: 1;
    width: 42.3%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 26%;
    overflow-y: auto;
    display: none;
}
@media only screen and (max-width: 1000px){.results{width: 100%;}}
@media only screen and (min-width: 1001px) and (max-width: 1352px){.results{width: 50.8rem;}}
@media only screen and (min-width: 1353px) and (max-width: 1900px){.results{width: 50.8rem;}}
@media only screen and (max-width: 1000px){
.results {
    position: absolute;
    z-index: 1;
    left: 0;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 36%;
    overflow-y: auto;
    display: none;
}
}


.results a {
display: block;
padding: 12px 20px;
text-decoration: none;
color: #333;
transition: 0.2s;
}
.results a:hover {
    background: #66a6ff;
    color: white;
    border-radius: 10px;
}
