.ogs-v2-select {
    width: 100%;
}

.ogs-v2-select select {
    background-color: transparent;
    border: 1px solid var(--COLOR_HAIRLINE);
    padding: 0 10px;
    height: 50px;
    border-radius: 10px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    padding-right: 40px;
    background: rgba(255, 255, 255, 0.05);
}

.ogs-v2-select::before {
    width: 8px;
    height: 8px;
    border-top: 1px solid var(--COLOR_PRIMARY);
    border-right: 1px solid var(--COLOR_PRIMARY);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    position: absolute;
    top: calc(50% - 7px);
    right: 15px;
    content: "";
}