/**
 * CSS pour les shortcodes du plugin RDV-Online.
 */

/* Liste des créneaux RDV-Online */
.center-slots .elementor-shortcode {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 15px;
  justify-content: center;
}

.many .elementor-shortcode {
  gap: 15px;
}
/* EO Liste des créneaux RDV-Online */

/* Créneau RDV-Online */
div.slot {
  border-radius: 8px;
  box-shadow: 0 5px 25px 0 rgba(0, 38, 82, 0.1);
  border: solid 1.5px var(--e-global-color-text);
  padding-top: 7px;
  width: 155px;
  cursor: pointer;
}

p.slot-day {
  font-family: var(--e-global-typography-text-font-family);
  font-size: 14px;
  font-weight: 500;
  color: var(--e-global-color-text);
  text-align: center;
  margin-bottom: 1px;
  line-height: 16.5px;
}

div.slot-details {
  display: flex;
  align-items: center;
  height: 32.5px;
  border-radius: 6.9px;
  background-color: var(--e-global-color-text);
  font-family: var(--e-global-typography-text-font-family);
  color: #fdfdfd;
  padding: 0.5px 10px 0;
}

i.bi-clock {
  font-size: 14px;
  margin-right: 3px;
}

span.slot-time {
  font-size: 12px;
  font-weight: 500;
  margin-right: auto;
}

span.slot-old-price {
  font-size: 9px;
  text-decoration: line-through;
  line-height: 2.86;
  margin-right: 1px;
}

span.slot-price {
  font-size: 14px;
  font-weight: 600;
}

div.slot.promotion {
  box-shadow: 0 5px 25px 0 rgba(0, 38, 82, 0.1);
  border-color: var(--e-global-color-primary);
}

div.slot.promotion p.slot-day {
  color: var(--e-global-color-primary);
}

div.slot.promotion div.slot-details {
  background-color: var(--e-global-color-primary);
}
/* EO Créneau RDV-Online */

/* Bouton "Voir plus de créneaux ->" */
a.rdv_btn:link,
a.rdv_btn:visited,
a.rdv_btn:active {
  text-decoration: none;
}

.rdv_btn {
  padding: 0 20px;
  font-family: var(--e-global-typography-text-font-family);
  font-size: 14px;
  font-weight: 600;
  color: #fdfdfd;
  background-color: black;
  border-radius: 5px;
  border: 1px solid black;
  box-shadow: 0 5px 25px 0 rgba(0, 38, 82, 0.1);
  outline: none;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  justify-content: center;
  margin: auto;
  cursor: pointer;
}

.rdv_btn:hover,
.rdv_btn:active,
.rdv_btn:focus {
  background-color: white;
  border-color: var(--e-global-color-primary);
  color: var(--e-global-color-primary);
}
/* EO Bouton "Voir plus de créneaux ->" */
