﻿.multi-select {
    position: relative;
    text-align: left;
    border: 2px solid lightgrey;
    color: rgb(22,59,123);
    font-family: ploughharrowbrochure;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    line-height: 2.5;
}

.multi-select-selected {
    cursor: pointer;
    width: 100%;
}

    .multi-select-selected > * {
        display: inline-block;
        vertical-align: middle;
    }

.ms-icon {
    margin-right: 5px;
}
/*-------dropdown------*/
html body .multi-select .multi-select-dropdown, .multi-select-dropdown-detached {
    z-index: 100001;
    background: white;
    max-height: 300px;
    overflow: auto;
    left: 0px;
    width: 100%;
    box-shadow: 0px 0px 10px rgb(232, 235, 242);
    top: 100%;
    border-radius: 4px;
    display: none;
    text-align: left;
    color: rgb(22,59,123);
    font-family: ploughharrowbrochure;
    font-size: 16px;
    font-weight: bold;
}

html body .multi-select-dropdown-detached {
    width: 200px;
    font-size: var(--default-font-size);
    line-height: 1.3;
}


/*-------option------*/
.multi-select-option {
    padding: 3px 12px;
    max-width: 100%;
    cursor: pointer;
    border-bottom: 1px solid white;
}

    .multi-select-option:hover {
        background: #f3f3f8;
    }

.mso-name {
    width: 95%;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
}

.multi-select-dropdown-detached .mso-name {
    width: 93%;
}

.mso-selected {
    width: 4%;
    vertical-align: middle;
    display: none;
}

    .mso-selected img {
        width: 13px;
    }

html body .multi-select-option-selected .mso-selected {
    display: inline-block;
}
/*-------clear------*/
.ms-loading {
    position: absolute;
    right: 10px;
    top: 4px;
    width: 20px;
    display: none;
    z-index: 30;
}

html body .ms-clear {
    position: absolute;
    right: 10px;
    width: 13px;
    top: 7px;
    cursor: pointer;
    display: none;
}
/*-------filter------*/
html body .multi-select-filter {
    display: none;
    position: absolute;
    right: 0px;
    background: white;
    top: 0px;
    border-radius: 30px;
    z-index: 20;
    width: 100%;
}

    html body .multi-select-filter input {
        padding: 5px 10px;
    }

html body .ms-filter-clear {
    position: absolute;
    right: 11px;
    top: 7px;
    cursor: pointer;
    width: 13px;
}
