/*
 * SPDX-FileCopyrightText: 2013 Tim Schlechter
 *
 * SPDX-License-Identifier: MIT
 */

/*
 * friendica-tagsinput v0.8.0
 *
 * Non-Bootstrap edition
 */

.label {
	display: inline;
	padding: .2em .6em .3em;
	font-size: 75%;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	text-align: center;
	white-space: nowrap;
	vertical-align: baseline;
	border-radius: .25em;
}

.label-default {
	background-color: #777777;
}
.label-default[href]:hover,
.label-default[href]:focus {
	background-color: #5e5e5e;
}
.label-primary {
	background-color: #337ab7;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
	background-color: #286090;
}
.label-success {
	background-color: #5cb85c;
}
.label-success[href]:hover,
.label-success[href]:focus {
	background-color: #449d44;
}
.label-info {
	background-color: #5bc0de;
}
.label-info[href]:hover,
.label-info[href]:focus {
	background-color: #31b0d5;
}
.label-warning {
	background-color: #f0ad4e;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
	background-color: #ec971f;
}
.label-danger {
	background-color: #d9534f;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
	background-color: #c9302c;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
	background-color: #eeeeee;
	opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
	cursor: not-allowed;
}




.friendica-tagsinput {
	background-color: #fff;
	border: 1px solid #ccc;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	display: inline-block;
	padding: 4px 6px;
	color: #555;
	vertical-align: middle;
	border-radius: 4px;
	max-width: 100%;
	line-height: 22px;
	cursor: text;
	height: auto;
}

.friendica-tagsinput.input-lg {
	line-height: 27px;
}

.friendica-tagsinput input {
	border: none;
	box-shadow: none;
	outline: none;
	background-color: transparent;
	padding: 0 6px;
	margin: 0;
	width: auto;
	max-width: inherit;
}

.friendica-tagsinput.form-control input::-moz-placeholder {
	color: #777;
	opacity: 1;
}

.friendica-tagsinput.form-control input:-ms-input-placeholder {
	color: #777;
}

.friendica-tagsinput.form-control input::-webkit-input-placeholder {
	color: #777;
}

.friendica-tagsinput input:focus {
	border: none;
	box-shadow: none;
}

.friendica-tagsinput .tag {
	margin: 0 2px 2px 0;
	color: white;
	font-weight: normal;
}

.friendica-tagsinput .tag img {
	width: auto;
	height: 1.5em;
	vertical-align: text-top;
	margin-right: 8px;
}

.friendica-tagsinput .tag [data-role="remove"] {
	margin-left: 8px;
	cursor: pointer;
}

.friendica-tagsinput .tag [data-role="remove"]:after {
	content: "x";
	padding: 0px 2px;
	font-weight: bold;
}

.friendica-tagsinput .tag [data-role="remove"]:hover {
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.friendica-tagsinput .tag [data-role="remove"]:hover:active {
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
