.search-container {
    position: fixed;
    top: 1rem;
    margin-left: 4rem;
    -webkit-box-shadow: 1px 1px 10px -4px rgba(66, 68, 90, 1);
    -moz-box-shadow: 1px 1px 10px -4px rgba(66, 68, 90, 1);
    box-shadow: 1px 1px 10px -4px rgba(66, 68, 90, 1);
    border-radius: 1rem;
    /* padding: 0.5rem 0rem; */
    background-color: #fff;
    z-index: 10000;
    width: 65%;
}
.search-wrapper {
    width: 100%;
}
.search-input {
    border: none;
    border-bottom: 0.5px solid #eee;
    padding: 0.5rem;
    /* width: 800px; */
    width: 100%;
}
.search-input:focus {
    outline: none;
    border-bottom: 0.5px solid #e7e7e7;
}
.search-bar-icon
/* ,.search-bar-close */ {
    padding: 0.5rem;
    cursor: pointer;
}
.search-bar {
    margin-bottom: 5px;
}

/* Results */
/* ----------------------------------------------------------------------- */
.search-result-container {
    text-decoration: none;
    color: #182b4a;
}
.search-result-container:hover {
    background-color: #e7e7e7;
    padding: 0rem 0.5rem;
    border-radius: 1rem;
    text-decoration: none;
}
.search-result {
    padding: 0.5rem 0rem;
    cursor: pointer;
    padding-right: 0.5rem;
}
.dismiss {
    display: none;
}

/* Phones and Tabs */
/* ---------------------------------------------------------------------- */
@media screen and (max-width: 786px) {
    .search-container {
        top: 0.5rem;
        margin-left: 0rem;
        width: 100%;
        margin: 0rem 0.2rem;
    }
}
