.Select {
    &-arrow-zone {
        @include center-vh();
        padding-right: 0;
        width: auto;
    }

    &-arrow {
        background: url("data:image/svg+xml;utf8,<svg width='13' height='8' viewBox='0 0 13 8' xmlns='http://www.w3.org/2000/svg'><path d='M.134 1.325L5.97 7.16c.067.09.18.135.27.135.112 0 .224-.045.29-.135l5.837-5.835c.09-.09.135-.18.135-.292 0-.09-.045-.202-.135-.292L11.74.136C11.67.045 11.56 0 11.47 0c-.113 0-.225.045-.292.135L6.238 5.05 1.325.136C1.234.045 1.144 0 1.032 0 .92 0 .83.045.74.135L.134.74C.044.83 0 .944 0 1.034c0 .112.044.202.134.292' fill='%234A4A4A' fillRule='evenodd'/></svg>") no-repeat center;
        background-size: 10px 9px;
        border: none;
        display: block;
        height: 26px;
        top: 0;
        width: 38px;
    }

    &-control {
        display: flex;
        height: auto;
        min-height: $input-height;
    }

    &-input {
        @include center-v();
        display: flex !important;
        height: auto;

        input {
            padding: 0;
            line-height: initial;
        }
    }

    &-placeholder {
        @include center-v();
        line-height: initial;
    }

    &--multi &-multi-value-wrapper,
    &-multi-value-wrapper {
        @include center-v();
        flex: 1;
        flex-wrap: wrap;
    }

    &--multi &-value-icon,
    &-value-icon {
        order: 1;
    }

    &--multi &-value {
        @include center-v();
        font-size: 1rem;
        margin: 4px 0 4px 6px;
        padding: 0 5px;
    }

    &--multi &-remove,
    &-remove {
        cursor: pointer;
        margin-left: 10px;

        >.Icons-close {
            fill: darken($white, 10%);
            height: 10px;
            vertical-align: initial;
            width: 10px;
        }

        &:hover > .Icons-close {
            fill: $white;
        }
    }

    &-clear-zone {
        @include center-vh();
        width: 20px;
    }

    &-clear {
        font-size: 1rem;
    }

    &.is-open > .Select-control .Select-arrow {
        top: 0;
    }

    &.is-focused > .Select-control {
        @extend .Opm-focused-input !optional;
    }

    &.is-disabled > .Select-control {
        cursor: not-allowed;
    }
}
