.filter-wrapper {
	display: flex;
	padding: 0 15px;
}
	.filter-table {
		border-collapse: collapse;
		margin-right: 20px;
	}
	.extended-filter-table {
		width: 300px;
	}

.input-sm {
	box-sizing: border-box;
	/*height: 24px;*/
	/*padding: 3px 5px;*/
	border-radius: 2px;
}

.dropdown-menu {
	font-family: Verdana;
	border-radius: 2px;
	z-index: 1003;
}
	.dropdown-menu a {
		text-decoration: none;
	}
.dropdown-menu ul,
.dropdown-menu li {
	list-style: none;
	margin: 0;
	padding: 0;
}
li.group {
	font-weight: bold;
	line-height: 20px;
	font-size: .85em;
	padding-left: 8px;
}
.dropdown-ul {
	min-width: 100px;
	max-height: 300px; /* 368 */
	overflow-x: hidden;
	margin-bottom: 0;
}
.dropdown-ul a {
	display: block;
	position: relative;
	padding: 2px 10px 2px 28px;
	font-size: .85em;
	clear: both;
	font-weight: normal;
	line-height: 1.42857143;
	color: #333;
	white-space: nowrap;
}
.dropdown-searchbox {
	margin: 0 5px 5px;
}

/**
 * Выделение элментов из списка
 */
.dropdown-ul li > a:hover,
.dropdown-ul li > a:focus {
	text-decoration: none;
	color: #262626;
	background-color: #f5f5f5;
}
.dropdown-ul li > a.selected {
	background-color: #BCDBF1;
}

/**
 * Выделенный элемент
 */
.select-box {
	display: inline-block;
	width: 18px;
	height: 18px;
	position: absolute;
	left: 5px;
	top: 1px;
}
	a.selected > .select-box {
		background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAAtQAAALUBOdDOnwAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAADjSURBVEiJ1dU7bsJAGEXhc6FBgq1EdFS0idIgINkE+6GiZRNJH4k2bbqITSAIxU3jicCM7fgxBb80lWfOZ1kaWbZJOb2k9bsEJA0lrSQ9AGC7swWMgA/AwAF4TBUP67uTTyRpBLwB09yjXao3N/AODJLGwx3rA2vgC3jqMh6AzcXDI/DcVTwA+9ymUqROPAAz4Oc/SN24bcLBeRXSJP4HVCFN41dAhiwKkM8m8RsgQ5YRpFE8CmTIC3BuGy8EMuQ1gtSKlwIRpHbcNgqXoWgkTYAxsLV9Kt0cO18FtJ37+yfn5xcX5ORlibTDRQAAAABJRU5ErkJggg==');
		background-size: 13px 13px;
		background-repeat: no-repeat;
		background-position: 50%;
	}

.blue-base-group button {
	text-align: left;
}
.blue-base-group button > .caret {
	position: absolute;
	top: 50%;
	margin-top: -1px;
	right: 6px;	
}

/**
 * Button theme
 */
.filter-table .btn-xs {
	border-radius: 2px !important;
	height: 24px;
}

.extended-filter {
	padding: 5px 15px;
}

.filter-table th {
	text-align: right;
}
.filter-table label {
	font-weight: 400;
	margin-bottom: 0;
}
.filter-table select.input-sm {
	display: inline-block;
	height: 24px;
	width: 65px;
}
.inline-block {
	display: inline-block;
}

.sub-stat-table {
	border-collapse: collapse;
	width: 100%;
}
.sub-stat-table th {
	width: 120px;
}

.date-picker,
.time-picker {
	position: relative;
	transition: none;
	cursor: pointer;
}
.date-picker:hover,
.time-picker-hover:hover {
	color: #333333;
	background-color: #e6e6e6;
	border-color: #adadad;
}
.date-picker .caret,
.time-picker .caret {
	position: absolute;
	top: 50%;
	margin-top: -1px;
	right: 8px;
}
.time-picker .form-control {
	cursor: pointer;
	padding-left: 24px;
	padding-top: 4px;
}
.time-picker i {
	color: #555555;
	position: absolute;
	top: 50%;
	margin-top: -7px;
	left: 6px;
}

.extended-only {
	display: none;
}

.widget-group {
	position: relative;
}
.widget-group textarea {
	box-sizing: border-box;
	border-radius: 2px;
	padding: 5px 7px;
	font-size: 12px;
	line-height: 1.5;
}
.widget-group span.form-counter {
	position: absolute;
	color: gray;
	bottom: 5px;
	right: 7px;
	font-size: 12px;
}

.jstree-default
.jstree-anchor {
	display: inline-block;
	padding: 0;
}

.filter-table span.title {
	width: 160px;
	overflow: hidden;
	word-wrap: break-word;
	display: block;
}

.spinner {
	animation: spin 1.5s linear infinite;
	position: relative;
	width: 80px;
	height: 80px;
	border: 2px solid #1f94ed;
	border-radius: 50%;
}
.spinner:after {
	content: "";
	width: 85%;
	height: 85%;
	background: -webkit-linear-gradient(45deg, white 0%, white 40%, rgba(255, 255, 255, 0.7) 60%, rgba(255, 255, 255, 0) 100%);
	background:    -moz-linear-gradient(45deg, white 0%, white 40%, rgba(255, 255, 255, 0.7) 60%, rgba(255, 255, 255, 0) 100%);
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(-5%, -5%);
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}