.wb-component.dropdown-container {
    position: relative;
    display: inline-block;
}
.wb-component .dropdown-btn {
    padding: 9px 14px;
    cursor: pointer;
    border: 1px solid #F6F6F6;
    border-radius: 8px;
    background: #F6F6F6;
}
.wb-component .dropdown {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    max-width: 500px;
    min-width: 200px;
    border: 1px solid #F6F6F6;
    background: #F6F6F6;
    border-radius: 8px;
    z-index: 1000;
    width: auto;
}
.wb-component .dropdown .checkbox-list{
    max-height: 220px;
    overflow-y: auto;
    padding: 0 16px;
}
.wb-component .dropdown input[type="text"] {
    width: 100%;
    margin-bottom: 8px;
    padding: 9px;
    box-sizing: border-box;
    border: 1px solid #B4B4B4;
    border-radius: 6px;
}
.wb-component .dropdown .checkbox-list label {
    cursor: pointer;
    display: block;
    margin: 16px 0;
}
.wb-component .clear-btn {
    border-top: 1px solid #B4B4B4;
    display: block;
    margin-top: 10px;
    padding: 18px 0;
    text-align: center;
    cursor: pointer;
}
.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.search-label {
    padding: 16px 16px 0 16px;
}

.selected-count {
    color: #fff;
    background-color: #065F5D;
    border-radius: 4px;
    padding: 1.5px 3px 0 3px;
}