.C--combobox {
    display: block;
    position: relative;
    height: 40px;
    background: #fff;
    border: 1px solid $border-color;
    &:after {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 0;
        content: '';
        width: 40px;
        height: 100%;
        background: $border-color;
    }
    .combobox__component {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        height: 100%;
        cursor: pointer;
        @include opacity(0);
    }
    .combobox__label {
        display: block;
        padding: 0 16px;
        height: 40px;
        font-size: 1.4rem;
        line-height: 38px;
        white-space: nowrap;
        overflow: hidden;
    }
    .combobox__dropdown {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 0;
        width: 40px;
        height: 40px;
        img {
            display: block;
            margin: auto;
        }
    }
    &.-is-open {
        border-color: rgba(0,0,0,.2);
    }
    &.-rounded {
        @include border-radius(4px);
    }
    &.-is-error {
        border-color: #dc3545;
    }
}