.choosen-filters span {
    border: 1px solid var(--gray);
    padding: 5px 10px;
    margin-right: 5px;
}

.kml_search-input,   
.kml_search-input:focus {
    background: var(--white);
    border: none;
    outline: none;
    width: 300px !important;
    min-height: 44px;
    border: none;
    font-size: 16px;
}

.kml_remove-filter {
    font-size: 15px;
    position: absolute;
    left: 6px;
    top: -7px;
    cursor: pointer;
    color: red;
}

.kml_remove-filter :hover {
    font-weight: bold;
}

.kml_choosen-filters {
    font-size: 16px;
    color: var(--default-text-color);
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    background-color: var(--default-background-color);
    border-bottom: 1px solid var(--gray);
    margin-bottom: 15px;
    padding-bottom: 20px;   
}

.kml_choosen-filters span {
    margin-right: 5px;
    position: relative;
}

.kml_searcher {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray);
}

@media screen and (max-width: 768px) {
    .kml_searcher {
        flex-direction: column;
    }
}

.kml_searcher .kml_options {
    position: absolute;
    background-color: var(--white);
    top: 100%;
    left: 0;
    margin: 0;
    padding: 0! important;
    font-size: 16px;
    width: 100%;
    min-height: 10vh;
    z-index: 90;
    color: var(--black);
    list-style: none;
}

@media screen and (max-width: 768px) {
    .kml_searcher .kml_options {
        min-width: 78vw;
    }
}

.kml_searcher .kml_options li {
    padding: 5px 0 5px 5px;
}
.kml_searcher .kml_options li:hover {
    cursor: pointer;
    background: var(--gray);
}

.kml_searcher .kml_search {
    position: relative;
    width: fit-content;
    max-width: 100%;
}

.kml_apply-filters {
    display: flex;
    gap: 5px;
    font-size: 12px;
    padding: 12px !important;
    margin-top: 4px !important;
}