.ds-form {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: clamp(8px,1vw,18px);
  margin-bottom: 2px;
}
.geoloc-button {
  padding: 0;
  border-radius: 50%;
  background-color: white;
  border: unset;
  width: 53px;
  height: 53px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: 0.18s;
}
.geoloc-button.geoloc-button-inverted {
  background-color: black;
}
.geoloc-button:hover {
  background-color: #2472a4;
  transition: 0.18s;
}
.geoloc-button svg {
  fill: black;
  width: 31px;
  height: 31px;
  transition: 0.18s;
}
.geoloc-button-inverted svg {
  fill: white;
}
.geoloc-button:hover svg {
  fill: white;
  transition: 0.18s;
}
.customselect-container {
  height: 40px;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 2px solid black;
  padding: 0 0 2px 0;
  width: clamp(190px,16vw,204px);
  margin: 0 6px;
  position: relative;
  transition: border-width 0.09s ease, border-color 0.09s ease;
}
.customselect-container:hover,
.customselect-container.customselect-container-inverted:hover {
  border-color: #2472a4;
  transition: border-width 0.09s ease, border-color 0.09s ease;
}
.customselect-container.customselect-container-inverted {
  border-bottom: 2px solid white;
}
.customselect-container.customselect-container-inverted .customnav-select {
  color: white;
}
.customselect-container.customselect-container-inverted::after {
  filter: invert(1);
}
.customnav-select {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
  vertical-align: bottom;
  height: 100%;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  font-family: poppins;
  color: black;
  font-size: 16px;
  line-height: 29px;
  font-weight: 500;
  letter-spacing: 0;
  padding: 0;
  width: 100%;
  margin: 0;
  position: relative;
  z-index: 2;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  transition: height 0.09s ease;
}
.customnav-select .select-selected {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  vertical-align: bottom;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  font-family: poppins;
  color: black;
  font-size: 16px;
  line-height: 29px;
  font-weight: 500;
  letter-spacing: 0;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  transition: height 0.09s ease;
  cursor: pointer;
}
.customselect-container-inverted .customnav-select .select-selected {
  color: white;
}
.customnav-select option {
  color: black;
}
.customnav-select:focus {
  color: black;
}
.customselect-container::after {
  text-transform: uppercase;
  font-size: 14px;
  font-family: poppins;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 17px;
  height: 18px;
  width: auto;
  position: absolute;
  top: -15px;
  left: 0;
  background-image: url("/wp-content/uploads/2026/02/black-arrow.svg");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: right;
  display: block;
  padding: 0 15px 0 0;
  color: black;
  z-index: 2;
  pointer-events: none;
}
.customselect-container.name-city::after {
  content: "Ville";
}
.customselect-container.name-club::after {
  content: "Club";
}
.customselect-container.name-date::after {
  content: "Date";
}
.customselect-container.name-level::after {
  content: "Niveau";
}
.customselect-container.name-genre::after {
  content: "Genre";
}
.customnav-select .select-items {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background-color: white;
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s ease;
}
.customnav-select .select-items div {
  color: #2472a4;
  font-weight: 600;
  padding: 6px 12px;
  cursor: pointer;
  transition: 0.18s;
  border-radius: 15px;
  margin: 8px;
  font-size: 16px;
  line-height: 21px;
}
.customnav-select .select-items div:hover {
  transition: 0.18s;
  background-color: #2472a4;
  color: white;
}
.customnav-select.active .select-items {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.customnav-date {
  height: 100%;
  width: 100%;
  background-color: transparent;
  border: unset;
  color: black;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  vertical-align: bottom;
  height: 100%;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  font-family: poppins;
  font-size: 16px;
  line-height: 29px;
  font-weight: 500;
  letter-spacing: 0;
  padding: 0;
  width: 100%;
  margin: 0;
  position: relative;
  z-index: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  filter: invert(1);
  transition: height 0.09s ease;
}
@media screen and (max-width: 767px) {
  .ds-form .geoloc-button {
    margin: 0 calc(3px + 0.5vw) 0 0;
  }
  .ds-form .customselect-container {
    margin: 0 calc(3px + 0.5vw);
  }
  .ds-form .customselect-container:last-of-type {
    margin: 0 0 0 calc(3px + 0.5vw);
  }
  .ds-form #ds-search-simple {
    margin: calc(16px + 0.5vw) auto 0 auto;
  }
}
@media screen and (max-width: 575px) {
  .ds-form {
    justify-content: center;
    align-items: center;
  }
  .ds-form .geoloc-button {
    margin: 0 calc(6px + 20vw);
  }
  .ds-form .customselect-container,
  .ds-form .customselect-container:last-of-type {
    margin: 16px 8px 0 8px;
  }
  .ds-form #ds-search-simple {
    margin: 16px 8px 0 8px;
  }
}