/* MV search style sheet */

.search_panel_wrapper {
    display: none;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: #24406bf2;
    z-index: 998;
}

.search_panel_inner {
    width: 100%;
    height: 100%;
}

.search_form {
    width: 100%;
}

.search_form_section {
    position: relative;
    height: 56px;
    width: 100%;
    top: -200px;
    max-width: 720px;
    border-radius: 80px;
    border: 1px solid var(--border-color);
    background: var(--bg);
    padding: 4px 4px 4px 24px;
}

.search_form_section .mv_btn {
    border: unset;
    width: 146px;
    height: 48px;
}

.search_input {
    width: calc(100% - 170px);
    border: unset;
    padding: 0 12px;
    color: var(--body-text);
}

.search_close_btn {
    position: absolute;
    top: 40px;
    right: calc((100% - 1400px)/2);
    gap: 12px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    -webkit-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
}

.search_results {
    position: absolute;
    width: 100%;
    left: 0;
    top: calc(100% + 24px);
}

.search_link {
    display: flex;
    width: 100%;
    text-decoration: unset;
    font-size: 18px;
}

.search_category {
    font-weight: 700;
    padding: 2px 0;
}

.autocomplete-suggestion:not(:first-child) .search_category {
    margin-top: 12px;
}

.autocomplete-suggestions::-webkit-scrollbar {
    border-radius: 16px;
}

.autocomplete-suggestions::-webkit-scrollbar-button {
    display: none;
}

.autocomplete-suggestions::-webkit-scrollbar-thumb {
    background-color: var(--body-text);
    border-radius: 16px;
    border: 4px solid #fff;
}