.better-select {
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    border-radius: 100px;
    border: 1px solid var(--border);
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: 100%;
    height: 46px;
    background: rgba(54, 58, 237, 0.03);
}

.better-select .better-trigger {
    position: relative;
    display: block;
    width: 100%;
    height: 46px;
    color: var(--pragraph);
}

.better-select .current {
    position: relative;
    display: inline-block;
    width: 83%;
    height: 46px;
    line-height: 46px;
    border-radius: 100px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: now-wrap;
    cursor: pointer;
    user-select: none;
    padding-left: 22px;
    float: left;
    z-index: 1;
}

.better-select .list {
    background: #e6e6e6;
    border-radius: 5px;
    box-sizing: border-box;
    opacity: 0;
    width: 100%;
    max-height: 200px;
    overflow: auto;
    padding: 0;
    pointer-events: none;
    position: absolute;
    left: 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
    font-family: "Inter", sans-serif;
}

.better-select.top .list {
    bottom: calc(100% + 3px);
}

.better-select.open .list {
    opacity: 1;
    display: block;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
}

.better-select .list .option {
    background: rgba(54, 58, 237, 0.03);
    cursor: pointer;
    font-weight: 400;
    line-height: 30px;
    list-style: none;
    min-height: 30px;
    outline: none;
    z-index: 9999999;
    padding: 0px 10px;
    border: 1px solid var(--border);
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    margin: 5px;
    font-size: 13px;
    color: var(--pragraph);
    border-radius: 5px;
}

.better-select .list .option:hover,
.better-select .list .option.selected {
    background: #222E48;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    margin: 5px;
    color: #f36523;
}

.better-select .arrow:before {
    border-bottom: 1px solid var(--title);
    border-right: 1px solid var(--title);
    content: '';
    display: block;
    height: 12px;
    margin-top: -6px;
    pointer-events: none;
    position: absolute;
    right: 23px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 10px;
    height: 10px;
}