.table-custom-select {
	position: relative;
	width: 160px;
	margin-top: 8px;
	font-size: 14px;
	font-weight: 400;
	color: #1f1f1f;
	cursor: pointer;
	user-select: none;
}

.table-custom-select-current {
	height: 48px;
	padding: 0 40px 0 14px;
	border: 1px solid #d8d8e2;
	background-color: #ffffff;
	display: flex;
	align-items: center;
	position: relative;
	transition: background-color .2s ease;
}

.table-custom-select-current:hover {
	background-color: #f5f5f8;
}

.table-custom-select-arrow {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%) rotate(0deg);
	transition: transform .2s ease;
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #666;
}

.table-custom-select[data-custom-select-open="true"] .table-custom-select-arrow {
	transform: translateY(-50%) rotate(180deg);
}

.table-custom-select-dropdown {
	display: none;
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	width: 100%;
	background-color: #fff;
	border: 1px solid #d8d8e2;
	box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
	z-index: 1000;
}

.table-custom-select-option {
	padding: 12px 14px;
	background-color: #fff;
	cursor: pointer;
}

.table-custom-select-option:hover {
	background-color: #f2f0f8;
}

/* поиск */
.table-search-container {
	margin-bottom: 10px;
	max-width: 204px;
}