.tags-input-wrapper {
    background: transparent;
    width: 100%;
    border: 1px solid #ccc;
    overflow-x: auto;
    display: flex;
    padding: .25rem .5rem;
    font-size: .875rem;
    min-height: calc(1.5em + .5rem + 12px);
    border-radius: .2rem;
}

    .tags-input-wrapper input {
        border: none;
        background: transparent;
        outline: none;
        width: 150px;
    }

    .tags-input-wrapper .tag {
        display: flex;
        background-color: #E5E5E5;
        color: #000;
        border-radius: 4px;
        padding: 0px 3px 0px 3px;
        margin-right: 5px;
        margin-bottom: 7px;
        white-space: nowrap;
        cursor: default;
        transition: .13s ease-out;
    }

        .tags-input-wrapper .tag:hover {
            background-color: #D3E2E2;
        }

        .tags-input-wrapper .tag a {
            padding: 0 7px 3px;
            display: inline-block;
            cursor: pointer;
        }
