.search-popup-wrapper {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    min-height: 100vh;
    background: #000000;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1001;
    display: none;
}

.search-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    min-width: 900px;
    border: 1px solid #121315;
    padding: 24px;
    background: #f5f5f5;
}

.search-header {
    width: 100%;
    position: relative;
}

.search-header i {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 18px;
    color: #555;
    cursor: pointer;
}

.search-header input {
    width: 100%;
    border: 2px solid #eee;
    padding: 5px;
    outline: none;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.search-header input:focus {
    border: 2px solid var(--ylw);
}

.search-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 20px 0;
}

.search-body input {
    display: none;
}

.search-body .search-list-service {
    width: 100%;
}

.search-body .search-list-service ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.search-body .search-list-service ul li {
    padding: 8px 16px;
    margin-right: 16px;
    border: 1px solid #000;
    margin-bottom: 16px;
    background: #fcfcfc;
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.search-body .search-list-service ul li label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-box-align: center;
    -moz-box-align: center;
    align-items: center;
    padding: 8px 16px;
    margin: 0;
    background: transparent;
    cursor: pointer;
}

.search-body .search-list-service ul li label img {
    width: 30px;
}

.search-body .search-list-service ul li:hover {
    background: #f5f5f5;
}

.search-body .search-list-service ul li.active {
    background: var(--ylw);
}

.search-options {
    width: 50%;
}

.search-options:first-child {
    margin-right: 20px;
}

.search-options .search-list ul li a {
    background: transparent;
    color: var(--ylw);
    display: none;
    text-decoration: none;
}
.search-options .selected_list li .remove-li {
    display: block;
}
.search-options .search-list {
    background: #fff;
    height: 250px;
    overflow: auto;
    border: 1px solid #ddd;
}

.search-options .search-list ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    padding: 5px 10px;
}

.search-options .search-list ul li:hover {
    background-color: #f5f5f5;
}

.search-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.search-footer input,
.search-footer button {
    border: none;
    margin-right: 20px;
    padding: 10px 0;
    width: 150px;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.search-footer input {
    background: var(--ylw);
    border-radius: 0;
    color: #000;
}

.search-footer button {
    background: #000;
    border-radius: 0;
}

.search-footer input:hover {
    background: var(--d-ylw);
}

.search-footer a {
    background: #a4b0be;
}

.search-footer a:hover {
    background: #95a3b3;
    text-decoration: none;
}

@media (max-width: 568px) {
    .search-popup-wrapper {
        height: auto;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        background: #f5f5f5;
    }
    .search-popup {
        min-width: 100%;
        border: none;
        min-height: 800px;
        top: 0;
        left: 0;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }
    .search-popup .search-body {
        -webkit-box-orient: vertical;
        -ms-box-orient: vertical;
        -moz-box-orient: vertical;
        -ms-box-direction: column;
        -moz-box-direction: normal;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .search-popup .search-body .search-list-service li {
        min-width: 100%;
    }
    .search-popup .search-options {
        width: 100%;
    }
    .search-popup .search-options:first-child {
        margin-right: 0;
        margin-bottom: 24px;
    }
}
