/*
 * bootstrap-tagsinput overrides.
 *
 * The vendor stylesheet leaves .bootstrap-tagsinput as an inline-block with no
 * width, so the generated tag box shrinks to its content and sits inline beside
 * its label. Every form rendering a tags field wants it to fill the row, so the
 * fix lives here instead of being copy-pasted into each template.
 */

label[for="id_tags"] {
    display: block;
}

.bootstrap-tagsinput {
    width: 100%;
}
