.twitter-typeahead {
	width: 100%;
}

.twitter-typeahead > .form-control{
	width: inherit !important;
}
		

.tt-query {
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.tt-hint {
	color: #999
}

.tt-dropdown-menu {
	width: 100%;
	margin-top: 12px;
	padding: 8px 0;
	background-color: #fff;
	border: 1px solid #ccc;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 8px;
	box-shadow: 0 5px 10px rgba(0,0,0,.2);
}

.tt-menu {
	width: 100%;
	margin-top: 12px;
	padding: 8px 0;
	background-color: #fff;
	border: 1px solid #ccc;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 8px;
	box-shadow: 0 5px 10px rgba(0,0,0,.2);
}

.tt-suggestion {
	padding: 3px 20px;
	line-height: 24px;
}

.tt-suggestion > p {
	margin: 0;
}

.tt-suggestion.tt-cursor,
.tt-suggestion.tt-is-under-cursor { /* UPDATE: newer versions use .tt-suggestion.tt-cursor */
	color: #fff;
	background-color: #0097cf;

}

.input-group-btn-inline {
	width: 100%;
	padding-left: 5px;
}

.navbar-brand {
	height: auto;
}

.tt-suggestion:hover,
.tt-suggestion:focus,
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
	color: #fff !important;
	text-decoration: none !important;
	background-color: #337ab7 !important;
	outline: 0 !important;
}

.centred {
	margin-left: auto;
	margin-right: auto;
	display: block;
}

.bootstrap-tagsinput {
    width: 100%;
}

.bootstrap-tagsinput .twitter-typeahead {
	width: 100%;
  		display: inline !important;
}

.bootstrap-tagsinput .tt-dropdown-menu {
	width: 512px;
}
.bootstrap-tagsinput .twitter-typeahead .tt-hint {
	opacity: 0 !important;
}

.check-padding-2 {
	padding-left: 2em !important;
}

.spinner {
	margin-top: 10px;
	border: 4px solid #bedff1; /* Light grey */
	border-top: 4px solid #28a4c9; /* Blue */
	border-right: 4px solid #5bc0de; /* Blue */
	border-bottom: 4px solid #9acfea; /* Blue */
	border-radius: 50%;
	width: 20px;
	height: 20px;
	animation: spin 1s linear infinite;
	display: none;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}