/**
 * Tabs
 */

.b-xtabs._manual {
	margin-bottom: 15px;
}

.b-xtabs__tabs ul.tabs {
	margin-bottom: 0;
	padding-left: 0;
	display: flex;
}

.b-xtabs__tabs-tab {
	background: none;
	border: 0;
	color: var(--global-text-muted);
	padding: 12px 0 12px;
	line-height: normal;
	text-align: center;
	text-decoration: none;
	text-transform: none;
	white-space: nowrap;
	display: block;
	position: relative;
	user-select: none;
	z-index: 2;
	cursor: pointer;
}

.b-xtabs__tabs-tab:last-of-type {
	margin-right: 0 !important;
}

.b-xtabs__tabs-tab._active,
.b-xtabs__tabs-tab._active:hover {
	background: none;
	border: 0;
	color: var(--global-brand-primary);
	border-bottom: var(--global-brand-primary) solid 2px;
	text-decoration: none;
	cursor: default;
}

.b-xtabs__tabs-tab:hover{
	background: none;
	border: 0;
	border-bottom: var(--global-text-color) solid 2px;
	color: var(--global-text-color);
	text-decoration: none;
	cursor: pointer;
}

.b-xtabs__tabs-tab-inner {
	position: relative;
	display: inline-block;
}

.b-xtabs__tabs-tab-counter{
	font-weight: normal;
	font-style: normal;
}

.b-xtabs__tabs-tab-counter:before{
	content: ': ';
}

.b-xtabs__tabs-tab-inner strong,
.b-xtabs__tabs-tab-inner .counter {
	font-weight: normal;
	position: absolute;
	top: -6px;
	right: -8px;
	font-size: 10px;
	margin: 0;
}

.b-xtabs__tabs-tab-inner .counter {
	font-weight: normal;
	position: absolute;
	top: -6px;
	right: -8px;
	font-size: 10px;
	margin: 0;
}

.b-xtabs__content-item .body {
	padding: 0;
}

._skin_panel .b-xtabs__content-item-loading {
	height: 150px;
}

.b-xtabs__content {
	padding: 30px 0 0 0;
}
/* Подсветим табы, которые содержат элементы с ошибками */
.b-xtabs__tabs-tab_has-errors {
	/* background: #ff000009 !important;  */
}

.b-xtabs__tabs-tab_has-errors .b-xtabs__tabs-tab-inner {
	color: var(--global-brand-danger, red);
	text-decoration-color: var(--global-brand-danger, red);
	text-decoration-line: underline;
}