div.select-rdv-constructeurs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  div.select-rdv-constructeurs {
    gap: 30px;
  }
}
div.select-rdv-constructeurs.disabled {
  opacity: 0.5;
}
div.select-rdv-constructeurs .constructeur-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  div.select-rdv-constructeurs .constructeur-container {
    grid-template-columns: 1fr;
    gap: 5px;
    height: 85px;
  }
}
div.select-rdv-constructeurs .constructeur-container .time {
  height: 40px;
}
div.select-rdv-constructeurs .constructeur-container .constructeur {
  width: 100%;
  display: flex;
  align-items: center;
  border: 2px solid rgba(0, 103, 129, 0.05);
  padding: 8px 16px;
  height: 100%;
  position: relative;
  cursor: pointer;
  max-height: 40px;
}
div.select-rdv-constructeurs .constructeur-container .constructeur:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 10px;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%228%22%20height%3D%228%22%20viewBox%3D%220%200%208%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M3.14285%204.00008L0.571383%201.42862L1.42854%200.571463L4%203.14293L6.57146%200.571463L7.42862%201.42862L4.85715%204.00008L7.42862%206.57154L6.57146%207.4287L4%204.85723L1.42854%207.4287L0.571383%206.57154L3.14285%204.00008Z%22%20fill%3D%22%23D7403A%22%2F%3E%3C%2Fsvg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
div.select-rdv-constructeurs .constructeur-container .time select {
  height: 100%;
}