.invisible-placeholder {
	visibility: hidden;
	height: 36px; /* Ajustez la hauteur pour correspondre à celle des boutons */
	width: 36px; /* Ajustez la largeur pour correspondre à celle des boutons */
}

.fixed-bottom-custom {
	position: fixed;
	bottom: 0;
	right: 0;
	text-align: right;
}

.h2Tabulator {
	text-align: center;
	color: #343a40;
}

.tableTabulator,
.tableTabulator-2 {
	margin: 0 auto;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	overflow: hidden;
}

.row .tableTabulator,
.row .atableTabulator-2 {
	padding: unset !important;
}

.daterangepicker .ranges li {
	font-size: 0.8rem !important;
}

.daterangepicker .ranges ul {
	max-height: none !important;
}

.daterangepicker .ranges {
	height: 315px !important;
}

.comments {
	font-weight: bold;
	text-decoration: underline;
	cursor: pointer;
	color: #000;
}


/* select-multiple */
.select-selector-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	width: 400px;
	background: white;
	border: 1px solid #E4E6EF;
	box-shadow: 0 0 50px 0 rgb(82 63 105 / 15%);
	z-index: 1000;
	margin-top: 4px;
}

.select-selector-header {
	padding: 0.5rem;
	border-bottom: 1px solid #E4E6EF;
}

.filter-options {
	display: flex;
	gap: 1rem;
	align-items: center;
	margin-bottom: 0.5rem;
}

.filter-option {
	font-size: 0.8rem;
	display: flex;
	align-items: center;
	gap: 0.25rem;
	margin: 0;
	cursor: pointer;
}

.filter-options .text-primary {
	color: #009ef7;
	margin-left: auto;
	cursor: pointer;
}

.search-container {
	padding: 0.25rem 0;
}

.search-country {
	width: 100%;
	border: 1px solid #E4E6EF;
	border-radius: 0.25rem;
	padding: 0.25rem 0.5rem;
}

.select-list {
	display: flex;
	max-height: 300px;
	overflow-y: auto;
	padding: 0.5rem;
}

.select-column {
	flex: 1;
	padding: 0 0.5rem;
}

.select-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.25rem 0;
	cursor: pointer;
	font-size: 0.875rem;
	color: #3F4254;
}

.select-item input[type="checkbox"] {
	margin: 0;
}

.select-selector-footer {
    padding: 0.5rem;
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #E4E6EF;
    align-items: center; /* Aligne les boutons */
    gap: 0.5rem; /* Espace entre les boutons */
}

.btn-select {
    font-size: 0.8rem;
    padding: 0.5rem;
}

/* Scrollbar styling */
.select-list::-webkit-scrollbar {
	width: 5px;
}

.select-list::-webkit-scrollbar-track {
	background: #f1f1f1;
}

.select-list::-webkit-scrollbar-thumb {
	background: #888;
	border-radius: 5px;
}

.select-list::-webkit-scrollbar-thumb:hover {
	background: #555;
}

