.tab_disabled {
    opacity: .5;
    cursor: default;
    pointer-events: none;
}

.tab__icon {
    width: 20px;
    height: 20px;
    margin-right: 5px;

    background-size: 20px;
}

/*закладки*/
.tabs__icon{
	margin-right: 5px;
	width: 20px;
	height: 20px;
}

.tabs {
	font-weight: bold;
	text-decoration: none !important;
	height: 40px;
	display: flex;
	align-items: center;
	float: left;
	position: relative;
	cursor: pointer;
	font-size: 12px !important;
	color: var(--gray-color) !important;
	padding: 5px 15px !important;
}

.tabs.aktiv {
	text-decoration: none;
	color: var(--table-color) !important;
}

.tabs:hover:not(.aktiv) {
	color: var(--primary-color) !important;
	text-decoration: none;
	background-color: transparent;
	box-shadow: none;
}

.tabs text{
	text-transform: uppercase;
}

.tabs.aktiv:before {
	background-color: var(--table-color);
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 3px;
	width: 100%;
}

.modal-content__tabs .tabs.aktiv:before {
	height: 4px;
}

.tabs.disabled {
	cursor: default;
	opacity: 0.5;
	color: var(--gray-color);
}