.C--uploadbox {
    display: block;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid $border-color;
    @include border-radius(4px);
    .uploadbox__label {
        display: block;
        margin-right: 30px;
        padding: 0 16px;
        height: 40px;
        font-size: 1.4rem;
        line-height: 40px;
        white-space: nowrap;
        overflow: hidden;
    }
    .uploadbox__component {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        padding: 0 16px;
        width: 100%;
        height: 100%;
        font-size: 1.4rem;
        cursor: pointer;
        outline: 0;
        background-color: #fff;
        box-shadow: none;
        @include opacity(0);
        border: 1px solid $border-color;
    }
    .uploadbox__indicator {
        display: block;
        position: absolute;
        top: 0;
        left: auto;
        right: 0;
        z-index: 2;
        width: 40px;
        height: 100%;
        background-color: #fff;
        .button--close {
            display: none;
            padding: 0;
            line-height: 0;
            border: 0;
            outline: 0;
            background: none;
            img {
                display: inline-block;
            }
        }
        .material-icons {
            display: block;
        }
    }
    &.-is-focus {
        border-color: rgba(0,0,0,.2);
    }
    &.-is-filled {
        .indicator__image {
            display: none;
        }
        .uploadbox__indicator {
            .button--close {
                display: inline-block;
                vertical-align: middle;
            }
        }
    }
    &.-is-error {
        border-color: #dc3545;
    }
}