<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ä¸‹æ‹‰æ¡† */
.dropdown.custom {
    width: 100%;
    max-width: 162px;
}

.dropdown.custom button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    width: 100%;
    height: 33px;
    background: #2E2F36;
    box-sizing: border-box;
    border: 1px solid #3F414B;
    padding: 10px;
}

.dropdown.custom button&gt;img {
    width: 12px;
}

.dropdown.custom button .selected {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.dropdown.custom button .selected img {
    width: 24px;
    height: 24px;
    margin-right: 6px;
}

.dropdown.custom button .selected span {
    font-family: "Inter Regular";
    font-size: 14px;
    font-weight: normal;
    line-height: 160%;
    letter-spacing: 0em;

    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: #80879A;
}

.dropdown.dropdown.custom.open button&gt;img {
    transform: rotate(180deg);
}

.dropdown.custom ul {
    background: var(--input-black-background-color);
    border-radius: 6px;
    border: none !important;
    margin-top: 10px;
    padding: 10px !important;
    left: auto;
    min-width: unset;
    width: 100%;
}

.dropdown.custom ul li img {
    width: 24px;
    height: 24px;
    margin-right: 6px;
}

.dropdown.custom ul li {
    border-radius: 8px;
    padding: 10px;

    font-family: "Inter Regular";
    font-size: 14px;
    font-weight: normal;
    line-height: 160%;
    letter-spacing: 0em;
    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: #80879A;

    margin-bottom: 6px;
}

.dropdown.custom ul li:last-child{
    margin-bottom: 0;
}

.dropdown.custom ul li:hover,
.dropdown.custom ul li.active {
    background: #35373E;
    cursor: pointer;
}

/* ä¸‹æ‹‰æ¡† */</pre></body></html>