.leaflet-container .leaflet-control-search {
    position: relative;
    float: left;
    color: #1978cf;
    background-clip: padding-box;
    border-radius: var(--border-radius);
    z-index: 1000;
    margin-left: 10px;
    margin-top: 10px;
}

.leaflet-control-search.search-exp {
    background: #fff;
    background-clip: padding-box;
}

.leaflet-control-search .search-input {
    display: block;
    float: left;
    background: #fff;
    border: none;
    border-top-left-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
    height: var(--btn-height);
    padding: 0px 20px 0px 10px;
    box-sizing: border-box;
    width: calc(var(--search-width) - var(--btn-height));
    outline: none;
}

.leaflet-control-search.search-load .search-input {
    background: url('https://unpkg.com/leaflet-search@2.9.9/images/loader.gif') no-repeat center right #fff;
}

.leaflet-control-search.search-load .search-cancel {
    visibility: hidden;
}

.leaflet-control-search .search-cancel {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 40px;
    margin: 9px 0;
    background: url('https://unpkg.com/leaflet-search@2.9.9/images/search-icon.png') no-repeat 0 -46px;
    text-decoration: none;
    opacity: 0.8;
}

.leaflet-control-search .search-cancel:hover {
    filter: alpha(opacity=100);
    opacity: 1;
}

.leaflet-control-search .search-cancel span {
    display: none;
    /* comment for cancel button imageless */
    font-size: 18px;
    line-height: 20px;
    color: #ccc;
    font-weight: bold;
}

.leaflet-control-search .search-cancel:hover span {
    color: #aaa;
}

.leaflet-control-search.search-exp .search-button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.leaflet-control-search.search-exp .search-button:hover {
    background-color: #fff;
}

.leaflet-control-search .search-button {
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    width: var(--btn-width);
    height: var(--btn-height);
    border-radius: 40px;
    background-color: #fff;
}

.leaflet-control-search .search-button:after {
    content: ' ';
    width: 20px;
    height: 20px;
    background-image: url(https://unpkg.com/leaflet-search@2.9.9//images/search-icon.png);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-color: transparent;
}

.leaflet-control-search .search-button:hover:after {
    background-position: 0px -24px;
}

.leaflet-control-search .search-tooltip {
    width: var(--search-width);
    position: absolute;
    top: 50px;
    left: 0;
    float: left;
    list-style: none;
    margin: 0;
    padding: 10px;
    z-index: 1010;
    overflow-y: auto;
    overflow-x: hidden;
    cursor: pointer;
    background-color: #fff;
    box-sizing: border-box;
    border-radius: 15px;
}

.leaflet-control-search .search-tip {
    padding: 5px 10px;
    display: block;
    color: black;
    background: #f2f5f9;
    text-decoration: none;
    white-space: nowrap;
    vertical-align: middle;
    margin-bottom: 5px;
}

.leaflet-control-search .search-tip:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.leaflet-control-search .search-tip:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-bottom: 0;
}

.leaflet-control-search .search-tip-select,
.leaflet-control-search .search-tip:hover {
    background-color: #eee;
}

.leaflet-control-search .search-alert {
    cursor: pointer;
    position: absolute;
    clear: both;
    font-size: .75em;
    padding: 0px 20px;
    top: calc(var(--btn-height) + 10px);
    color: #e00;
    font-weight: bold;
    background: #fff;
    height: var(--btn-height);
    width: 100%;
    line-height: var(--btn-height);
    box-sizing: border-box;
    border-radius: var(--border-radius);
}