.cosmo-table-toolbar {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: space-between;
	margin: 0 0 10px;
}

.cosmo-table-search-field {
	align-items: center;
	display: flex;
	flex: 1 1 260px;
	gap: 8px;
	margin: 0;
	max-width: 420px;
	position: relative;
}

.cosmo-table-search-input {
	background: #fff;
	border: 1px solid #cbd5e1;
	border-radius: 6px;
	color: #07133f;
	font-size: 13px;
	font-weight: 600;
	min-height: 38px;
	padding: 8px 12px;
	width: 100%;
}

.cosmo-table-search-input:focus {
	border-color: #202959;
	box-shadow: 0 0 0 3px rgba(32, 41, 89, 0.14);
	outline: none;
}

.cosmo-table-count {
	color: #57606a;
	flex: 0 0 auto;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.3;
	white-space: nowrap;
}

.cosmo-search-select {
	position: relative;
	width: 100%;
}

.cosmo-native-select {
	height: 1px !important;
	left: 0;
	opacity: 0 !important;
	pointer-events: none;
	position: absolute !important;
	top: 0;
	width: 1px !important;
}

.cosmo-search-select-input {
	background: #fff;
	border: 1px solid #cbd5e1;
	border-radius: 6px;
	color: #07133f;
	font-size: 14px;
	font-weight: 600;
	min-height: 40px;
	padding: 8px 38px 8px 12px;
	width: 100%;
}

.cosmo-search-select-input:disabled {
	background: #f6f8fa;
	color: #8c959f;
	cursor: not-allowed;
}

.cosmo-search-select-input:focus {
	border-color: #202959;
	box-shadow: 0 0 0 3px rgba(32, 41, 89, 0.14);
	outline: none;
}

.cosmo-search-select::after {
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid #57606a;
	content: "";
	height: 0;
	pointer-events: none;
	position: absolute;
	right: 12px;
	top: 20px;
	transform: translateY(-50%);
	width: 0;
}

.cosmo-search-select.is-disabled::after {
	border-top-color: #8c959f;
}

.cosmo-search-select-options {
	background: #fff;
	border: 1px solid #cbd5e1;
	border-radius: 6px;
	box-shadow: 0 12px 30px rgba(16, 24, 40, 0.16);
	display: none;
	left: 0;
	max-height: 240px;
	overflow-y: auto;
	padding: 5px;
	position: absolute;
	right: 0;
	top: calc(100% + 4px);
	z-index: 3000;
}

.cosmo-search-select.is-open .cosmo-search-select-options {
	display: grid;
	gap: 3px;
}

.cosmo-search-select-option,
.cosmo-search-select-empty {
	background: transparent;
	border: 0;
	border-radius: 5px;
	color: #07133f;
	display: block;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
	padding: 8px 9px;
	text-align: left;
	width: 100%;
}

.cosmo-search-select-option {
	cursor: pointer;
}

.cosmo-search-select-option:hover,
.cosmo-search-select-option.is-active {
	background: #f6f8fa;
	color: #202959;
}

.cosmo-search-select-option.is-selected {
	background: rgba(253, 208, 13, 0.22);
	color: #07133f;
}

.cosmo-search-select-option:disabled {
	color: #8c959f;
	cursor: not-allowed;
}

.cosmo-search-select-empty {
	color: #57606a;
	font-weight: 700;
}

@media (max-width: 560px) {
	.cosmo-table-toolbar {
		align-items: stretch;
		flex-direction: column;
	}

	.cosmo-table-search-field {
		max-width: none;
		width: 100%;
	}
}
