
.dropdown {
    display: none;
    left:-1px;
}
.dropdown.show{
    display: inline;
    position: absolute;
    min-width: 250px;
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    color: #000;
    padding: 10px 0px 0px 20px;
    background: #FFFFFF;
    border: 1px solid #D3D3D3;
    box-shadow: 0px 4px 12px rgba(86, 86, 88, 0.25);
    border-radius: 4px;
}
.dropdown .item span {
    white-space: nowrap;
    padding-right: 40px;
}
.dropdown .item{
    padding: 3px;
    display: flex;
    position: relative;
    justify-content: space-between;
    font-size: 14px;
    color: #333333;
}
.dropdown .item input[type=checkbox] {
    display: none;
}
.dropdown .item:hover{
    background-color: rgba(191, 168, 173, 0.06);
    cursor: pointer;

}

.multiselect-btn {
    color: #000;
    cursor: pointer;
    padding: 0.6em 1.4em 0.6em 0.8em;

}
.multiselect-btn .btn-text{
    display: flex;
    overflow: hidden;
    white-space: nowrap;

}
.multiselect-container {
    width: 170px;
    line-height: 1.5rem;
    font-size: 13px;
    border: 1px solid #ECEEF1;
    padding: 0;
    display: inline-block;
    position: relative;
    appearance: none;
    background-color: #FFF;
    background-image: url(../img/triangle.svg);
    background-repeat: no-repeat, repeat;
    background-position: right 0.7em top 50%, 0 0;
    background-size: 0.65em auto, 100%;
}

.multiselect-checkbox:checked + label:after {
    content: '';
    display: block;
    background-image: url(../img/checkbox.svg);
    pointer-events: none;
    font-size: 15px;
    position: absolute;
    right: 12px;
    height: 15px;
    width: 15px;
    background-position: 0 15px;
    background-repeat: no-repeat;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
.multiselect-checkbox:checked + label:after {
  background-position: 0 0;
}
