.nice-select {
    border-color: transparent !important;
    border-radius: 5px;
    position: relative;

    &::before {
        content: '\e90b';
        font-family: $fontIcon;
        position: absolute;
        right: 20px;
        top: 55%;
        transform: translateY(-50%);
        font-size: 8px;
        @include transition3();
        color: var(--main-dark);
    }

    &::after {
        display: none;
    }

    >span {
        font-weight: 400;
        font-size: 16px;
        line-height: 30px;
        color: var(--main-dark);
    }

    .list{
        li{
            color: var(--main-dark);
        }
    }

    &.open {
        z-index: 50;

        &::before {
            transform: translateY(-50%) rotate(180deg);
        }
    }
}