.smd-desktop-multiselect-trigger {
    appearance: none;
    box-sizing: border-box;
    width: 100%;
    height: 50px;
    margin: 0;
    background-color: transparent;
    color: #F5F5F5;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 59px;
    padding: 5px 48px 5px 30px;
    outline: none;
    font-family: inherit;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0;
    text-align: left;
    cursor: pointer;
    position: relative;
    justify-content: flex-start;
}

.smd-desktop-multiselect-trigger:hover,
.smd-desktop-multiselect-trigger:focus,
.smd-desktop-multiselect-open .smd-desktop-multiselect-trigger {
    border-color: #f29602;
    background-color: transparent;
}

.smd-desktop-multiselect-trigger-label {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.smd-desktop-multiselect-trigger-label:after {
    content: '*';
    color: #f29602;
    margin-left: 4px;
}

.smd-desktop-multiselect-trigger-icon {
    position: absolute;
    right: 30px;
    top: 50%;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #A0BDCB;
    transform: translateY(-50%);
}

.smd-desktop-multiselect-open .smd-desktop-multiselect-trigger-icon {
    transform: translateY(-50%) rotate(180deg);
}

.smd-desktop-multiselect-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 2px);
    z-index: 20;
    max-height: min(520px, 70vh);
    overflow: hidden;
    background: #223d49;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    box-shadow: none;
}

.smd-desktop-multiselect-menu .smd-desktop-multiselect-search {
    background: transparent;
    border: none;
    border-bottom: #F29602 1px solid;
    border-radius: 0;
    font-size: 16px;
    margin: 4px auto 0;
    width: calc(100% - 24px);
    padding: 12px 4px;
    height: 60px;
}

.smd-desktop-multiselect-search::placeholder {
    color: #A0BDCB;
    opacity: 1;
}

.smd-desktop-multiselect-options {
    max-height: calc(min(520px, 70vh) - 82px);
    overflow: auto;
}

.smd-desktop-multiselect-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    position: relative;
    margin: 0 12px 5px;
    cursor: pointer;
}

.smd-desktop-multiselect-option:before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #FFFFFF33;
}

.smd-desktop-multiselect-option-text {
    font-size: 16px;
    font-weight: 300;
    color: #e0e0e0;
}

.smd-desktop-multiselect-checkbox {
    appearance: none;
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background: transparent;
    border: 2px solid #9CA3A6;
    cursor: pointer;
    position: relative;
}

.smd-desktop-multiselect-checkbox:checked {
    background-color: #F5A300;
    border-color: #F5A300;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='9' viewBox='0 0 12 9' fill='none'%3E%3Cpath d='M3.66667 7.05719L1.13807 4.5286C0.877722 4.26825 0.455612 4.26825 0.195262 4.5286C-0.0650874 4.78895 -0.0650874 5.21105 0.195262 5.4714L3.19526 8.47141C3.45561 8.73176 3.87772 8.73176 4.13807 8.47141L11.4714 1.13807C11.7318 0.877721 11.7318 0.455612 11.4714 0.195262C11.2111 -0.0650874 10.7889 -0.0650874 10.5286 0.195262L3.66667 7.05719Z' fill='%231C1D21'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 9px;
}

.smd-desktop-multiselect-empty {
    padding: 18px 30px;
    color: #A0BDCB;
    font-size: 16px;
    line-height: 140%;
}