/* Design boutons de filtre */
.row.mb-3 {
  padding: 1.5rem; }

.btn-group-toggle .btn {
  border: 1px solid #dee2e6;
  border-radius: 8px !important;
  padding: 8px 16px;
  font-size: 14px;
  transition: all 0.2s ease;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 6px;
  margin-right: 0.5rem; }

/* Recherche */
.mx-3.input-group {
  margin-left: auto !important;
  -ms-flex: 1;
      flex: 1;
  max-width: 300px; }

.mx-3.input-group input {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  height: 38px; }

.input-group-text {
  padding: 0 12px;
  height: 38px; }

.switch-toggle {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px; }

.switch-toggle input {
  opacity: 0;
  width: 0;
  height: 0; }

.switch-toggle .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.2s;
  border-radius: 34px; }

.switch-toggle .slider:before {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.2s;
  border-radius: 50%; }

.switch-toggle input:checked + .slider {
  background-color: #007bff; }

.switch-toggle input:checked + .slider:before {
  -webkit-transform: translateX(18px);
          transform: translateX(18px); }