<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.multi-select-container {
    display: inline-block;
    position: relative;
    width: 100%;
}

.multi-select-menu {
    position: absolute;
    left: 0;
    top: 34px;
    z-index: 9;
    float: left;
    min-width: 100%;
    background: #005757;
    margin: 1em 0;
    border: 1px solid #fff;
    display: none;
}

.multi-select-menuitems {
    max-width: 100%;
    padding: 0.5em 0;
    display: flex;
    flex-wrap: wrap;
}
.multi-select-menuitem {
    display: block;
    font-size: 14px !important;
    font-weight: normal !important;
    padding: 0em 0em 0em 30px;
    white-space: nowrap;
    position: relative;
    color: #fff;
    flex: 50%;
}

.multi-select-presets {
    border-bottom: 1px solid #ddd;
}

.multi-select-menuitem input {
    position: absolute;
    margin-top: 0.25em;
    margin-left: -20px;
    opacity: 1;
}
.multi-select-menuitem.selected::after {
    background: #000;
    border: #000 solid 2px;
}

.multi-select-button {
    display: inline-block;
    width: 100%;
    height: auto;
    padding: 15px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.15;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 0;
  /* needed */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  /* SVG background image */
    background: none;
    max-width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.sopscat .multi-select-button {
    border-color: #fff;
    color: #fff;
}

.multi-select-button:after {
    content: "\f0d7";
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 800;
    text-decoration: inherit;
    color: #fff;
    font-size: 1rem;
    position: absolute;
    bottom: 20px;
    right: 15px;
    text-rendering: optimizeLegibility;
}
.sopscat .multi-select-button:after {
    color: #fff;
}
.multi-select-container--open .multi-select-menu {
    display: block;
}

.multi-select-container--open .multi-select-button:after {
    border-width: 0 0.4em 0.4em 0.4em;
    border-color: transparent transparent #999 transparent;
}

.multi-select-container--positioned .multi-select-menu {
    /* Avoid border/padding on menu messing with JavaScript width calculation */
    box-sizing: border-box;
}

.multi-select-container--positioned .multi-select-menu label {
    /* Allow labels to line wrap when menu is artificially narrowed */
    white-space: normal;
}</pre></body></html>