.search-bar {
    position: absolute;
    width: 100%;
    top: 0px;
    left: 0px;
    margin: 0;
    padding: 0;
    z-index: 999;
}

.search-bar input {
    width: 100%;
    height: 64px;
    padding: 20px 30px;
    border-radius: 0px;
}

.search-bar .icon {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.live-search-overlay {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 20;
    overflow: hidden;
    display: none;
}

.live-search-results {
    position: fixed;
    top: 124px;
    left: 20px;
    right: 20px;
    max-height: 90%;
    background-color: #ffffff;
    z-index: 21;
    border-radius: 3px;
    padding: 10px;
    overflow: scroll;
    display: none;
}

body.admin-bar .live-search-results {
    top: 170px;
}
@media screen and (min-width: 783px) {
    body.admin-bar .live-search-results {
        top: 156px;
    }
}

.live-search-results-wrapper {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-y: scroll;
}
