.evermaps_search_block {
    padding: 50px;
    margin-bottom: 45px;
    background-color: #fff;
    box-shadow: 0px 4px 44.4px 0px rgba(0, 0, 0, 0.15);
}

.evermaps_search_title {
    max-width: 700px;
    margin: 0 auto 25px auto;
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.evermaps_search_title h2 {
    margin: 0;
    color: #0B0E1A;
    font-size: 28px;
    font-weight: 750;
    line-height: 29px;
    text-transform: uppercase;
}

.evermaps_search_title h2 p {
    margin: 0;
    text-align: left;
}

.evermaps_search_title h2 strong {
    color: #EC6608;
}

.evermaps_search_title .evermaps_search_title_line {
    background-color: #EC6608;
    width: 130px;
    height: 10px;
}

.evermaps_search_form form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 40px;
    row-gap: 40px;
}

.evermaps_search_form .filter_container {
    position: relative;
    width: 25%;
    flex: 1 1;
}

.evermaps_search_form .filter_container .filter-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 6px;
    background-color: #EC6608;
    border: 1px solid #EC6608;
    border-radius: 0;
    padding: 14px 16px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    /* font */
    font-size: 15px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0.6px;
}

.evermaps_search_form .filter_container .filter-btn:hover {
    background-color: transparent;
    color: #EC6608;
}

.evermaps_search_form .filter_container .filter-btn:focus,
.evermaps_search_form .filter_container .filter-btn:focus-visible {
    outline: none;
}

.evermaps_search_form .filter_container .filter-btn svg {
    display: inline-block;
    width: 24px;
    height: 24px;
    stroke: #fff;
    transition: all 0.3s;
}

.evermaps_search_form .filter_container .filter-btn:hover svg {
    stroke: #EC6608;
}

.evermaps_search_form .filter_container .checkboxes {
    position: absolute;
    transform: translateY(105%);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background-color: #F5F5F5;
    display: none;
    flex-direction: column;
    row-gap: 10px;
    padding: 10px;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.5);
}

.evermaps_search_form .filter_container .checkboxes.show {
    display: flex;
}

.evermaps_search_form .filter_container .checkboxes .checkbox {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.evermaps_search_form .filter_container .checkboxes .checkbox label {
    width: calc(100% - 20px);
    text-align: left;
}

.evermaps_search_form .input-container {
    width: 50%;
    flex: 2 1;
    position: relative;
    display: flex;
}

.evermaps_search_form .input-container label {
    position: absolute;
    top: 2px;
    left: 16px;
    color: #9D9D9D;
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0.56px;
}

.evermaps_search_form .input-container input {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #E9E9E9;
    padding: 24px 68px 6px 16px;
    color: #050B20;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
}

.evermaps_search_form .input-container input:focus,
.evermaps_search_form .input-container input:focus-visible {
    outline: none;
}

.evermaps_search_form .input-container button {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.evermaps_search_form .input-container button:focus,
.evermaps_search_form .input-container button:focus-visible {
    outline: none;
}

.evermaps_search_form .input-container button::before {
    content: '';
    display: block;
    width: 35px;
    height: 35px;
    background-image: url('../../assets/icon/location.svg');
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
}

.evermaps_search_form .search-btn {
    width: 25%;
    flex: 1 1;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    background-color: #0B0E1A;
    border: 1px solid #0B0E1A;
    border-radius: 0;
    padding: 14px 16px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    /* font */
    font-size: 15px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0.6px;
}

.evermaps_search_form .search-btn:disabled {
    cursor: not-allowed;
    pointer-events: none;
    background-color: #505456;
    border-color: #505456;
}

.evermaps_search_form .search-btn:hover {
    background-color: transparent;
    color: #0B0E1A;
}

.evermaps_search_form .search-btn:focus,
.evermaps_search_form .search-btn:focus-visible {
    outline: none;
}

.evermaps_search_form .search-btn .icon-search {
    display: inline-block;
    width: 24px;
    height: 24px;
    fill: #fff;
    transition: all 0.3s;
}

.evermaps_search_form .search-btn:hover .icon-search {
    fill: #0B0E1A;
}

.evermaps_search_block .error-message {
    display: none;
    margin-bottom: 0;
    text-align: center;
    color: #F80000;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}

.ui-autocomplete {
    z-index: 9999;
    border: 1px solid #E9E9E9;
    overflow: hidden;
    list-style: none;
    border-radius: .8rem;
    background: #fff;
    padding: 0;
    position: absolute;
    transform: translateY(100%);
    left: 0 !important;
    bottom: -30px !important;
    top: unset !important;
}

.ui-autocomplete li {
    padding: 0.4rem 1rem;
    text-align: left;
}

.ui-autocomplete li:first-child {
    border-radius: .8rem .8rem 0 0;
}

.ui-autocomplete li:last-child {
    border-radius: 0 0 .8rem .8rem;
}

@media screen and (max-width: 768px) {
    .evermaps_search_block {
        margin-right: var(--wp--style--root--padding-right);
        margin-left: var(--wp--style--root--padding-left);
    }

    .evermaps_search_form form {
        flex-wrap: wrap;
    }

    .evermaps_search_form .filter_container {
        width: calc(50% - 20px);
        flex: none;
        order: 2;
    }

    .evermaps_search_form .input-container {
        width: 100%;
        flex: none;
        order: 1;
    }

    .evermaps_search_form .search-btn {
        width: calc(50% - 20px);
        flex: none;
        order: 3;
    }
}

@media screen and (max-width: 468px) {
    .evermaps_search_block {
        padding: 20px;
    }

    .evermaps_search_title h2 {
        font-size: 24px;
        line-height: 26px;
    }

    .evermaps_search_title .evermaps_search_title_line {
        width: 33%;
    }

    .evermaps_search_form form {
        column-gap: 30px;
        row-gap: 20px;
    }

    .evermaps_search_form .filter_container {
        width: calc(50% - 15px);
    }

    .evermaps_search_form .filter_container .filter-btn>span {
        display: none;
    }

    .evermaps_search_form .filter_container .checkboxes {
        right: initial;
    }

    .evermaps_search_form .input-container label {
        font-size: 12px;
        line-height: 16px;
        top: 6px;
        left: 8px;
    }

    .evermaps_search_form .input-container input {
        padding: 20px 41px 8px 8px;
        font-size: 16px;
        line-height: 20px;
    }

    .evermaps_search_form .input-container button::before {
        width: 25px;
        height: 25px;
    }

    .evermaps_search_form .search-btn {
        width: calc(50% - 15px);
    }

    .evermaps_search_form .search-btn>span {
        display: none;
    }
}