@charset "UTF-8";
.yh-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow-y: auto;
}
.yh-modal.fade-in {
  animation: yh-modal-side-fade-in 0.3s ease-out forwards;
}
.yh-modal.fade-out {
  animation: yh-modal-side-fade-out 0.3s ease-in forwards;
}
.yh-modal-close {
  position: absolute;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  top: var(--wp--preset--spacing--small);
  padding: var(--wp--preset--spacing--small);
  right: var(--wp--preset--spacing--small);
  backdrop-filter: blur(10px);
  border-radius: 99999px;
  overflow: hidden;
  aspect-ratio: 1/1;
  z-index: 1;
}
.yh-modal-close i {
  font-weight: bold;
  color: var(--wp--preset--color--white);
  font-size: var(--wp--preset--font-size--x-large);
}
.yh-modal-close i::after {
  font-weight: bold !important;
}
.yh-modal .modal-content {
  background-color: white;
  width: 80%;
  max-width: 768px;
  position: relative;
  max-height: 80vh;
  overflow-y: hidden;
}
.yh-modal .modal-content-wrapper {
  max-height: 100%;
  overflow-y: scroll;
}
.yh-modal .modal-content i.yh-icon-close {
  color: var(--wp--preset--color--black);
}
.yh-modal .modal-title {
  margin-top: 0px;
  margin-bottom: 0px;
}
.yh-modal .modal-body, .yh-modal .modal-title {
  padding: var(--wp--preset--spacing--large);
}
.yh-modal .modal-body {
  padding-top: 0px;
}

body.modal-is-open,
body.yh-modal-side-open {
  overflow: hidden;
}

@keyframes yh-modal-side-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes yh-modal-side-fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* SCSS Variables */
/* Mixins */
/* SCSS Variables */
/* Mixins */
.yh-modal-side {
  display: block;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
}
.yh-modal-side.is-open {
  transform: translateX(0);
}
.yh-modal-side-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.yh-modal-side-content {
  position: relative;
  background-color: var(--wp--preset--color--white);
  color: var(--wp--preset--color--base);
  margin: 0 0 0 auto;
  padding: 0 var(--wp--preset--spacing--x-large);
  border-radius: 5px;
  max-width: 600px !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 10001;
  height: calc(100vh - (var(--wp--preset--spacing--x-large) + var(--wp--preset--spacing--xxxxx-large)));
  max-height: 100vh !important;
  width: 33%;
  height: 100vh;
}
.yh-modal-side-close {
  position: absolute;
  top: var(--wp--preset--spacing--x-large);
  right: var(--wp--preset--spacing--x-large);
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.yh-modal-side-close:hover, .yh-modal-side-close:focus {
  text-decoration: none;
}
.yh-modal-side-title {
  margin-top: 0;
  text-transform: initial;
  font-size: var(--wp--preset--font-size--x-large);
  text-transform: uppercase;
  text-align: center;
}
.yh-modal-side-title span {
  font-family: var(--wp--preset--font-family--custom);
  text-transform: initial;
  font-size: var(--wp--preset--font-size--large);
  color: var(--wp--preset--color--primary);
}
.yh-modal-side-body {
  overflow-y: auto;
  gap: var(--wp--preset--spacing--xx-large);
  display: flex;
  flex-direction: column;
  height: calc(100vh - 2 * var(--wp--preset--spacing--xxx-large));
  overflow-y: auto;
  padding-top: var(--wp--preset--spacing--xxx-large);
  padding-bottom: var(--wp--preset--spacing--xxxxx-large);
}
.yh-modal-side-body p {
  margin-top: 0;
}
.yh-modal-side-body ul {
  padding-left: 0px;
  margin: 0px;
}
.yh-modal-side-body .yh-favorite-item {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--wp--preset--spacing--medium);
  border-bottom: 1px solid var(--wp--preset--color--primary-light);
  padding: var(--wp--preset--spacing--medium) 0;
}
.yh-modal-side-body .yh-favorite-item:first-child {
  padding-top: 0px;
}
.yh-modal-side-body .yh-favorite-item:last-child {
  border-bottom: none;
  padding-bottom: 0px;
}
.yh-modal-side-body .yh-favorite-item-image {
  width: 100px;
}
.yh-modal-side-body .yh-favorite-item-image img {
  max-width: 100%;
  height: auto;
}
.yh-modal-side-body .yh-favorite-item-details {
  width: 100%;
  display: flex;
  gap: var(--wp--preset--spacing--x-small);
  flex-direction: column;
}
.yh-modal-side-body .yh-favorite-item-details h3, .yh-modal-side-body .yh-favorite-item-details h4 {
  margin: 0px;
}
.yh-modal-side-body .yh-favorite-item-details a {
  text-decoration: none;
}
.yh-modal-side-body .yh-favorite-item-datetime {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--wp--preset--spacing--x-small);
  font-weight: 700;
  color: var(--wp--preset--color--dark);
  display: inline-flex;
  font-size: var(--wp--preset--font-size--small);
}
.yh-modal-side-body .yh-favorite-item-datetime i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--wp--preset--font-size--medium);
  width: auto;
}
.yh-modal-side-body .yh-favorite-item-title {
  font-weight: bold;
  margin-right: 10px;
}
.yh-modal-side-body .yh-favorite-item-actions {
  display: flex;
  flex-direction: row;
  gap: 0;
  width: 60px;
}
.yh-modal-side-body .yh-favorite-item-actions button {
  padding: 0px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
.yh-modal-side-body .yh-favorite-item-actions button:hover, .yh-modal-side-body .yh-favorite-item-actions button:focus {
  cursor: pointer;
}
.yh-modal-side-body .yh-favorite-item-actions i {
  font-size: var(--wp--preset--font-size--large);
}
.yh-modal-side-body .yh-hostel-group {
  padding: var(--wp--preset--spacing--large);
  border: 1px solid var(--wp--preset--color--purple-border);
  border-radius: 2rem;
  padding-top: 0px;
  gap: 0;
  display: flex;
  flex-direction: column;
}
.yh-modal-side-body .yh-hostel-group .yh-hostel-stay-info {
  font-size: var(--wp--preset--font-size--x-large);
  text-align: center;
  margin: 0px;
  transform: translateY(-25%);
}
.yh-modal-side-body .yh-hostel-group .yh-hostel-stay-info span {
  font-family: var(--wp--preset--font-family--custom);
  text-transform: initial;
  font-size: var(--wp--preset--font-size--large);
  color: var(--wp--preset--color--purple);
  background-color: white;
  padding: 0 var(--wp--preset--spacing--medium);
}
.yh-modal-side-body .yh-hostel-group .yh-hostel-stay-info .yh-icons {
  font-size: var(--wp--preset--font-size--medium);
}
.yh-modal-side-body .yh-hostel-group .yh-favorite-item {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--wp--preset--spacing--medium);
  border-bottom: 1px solid var(--wp--preset--color--purple-light);
  padding: var(--wp--preset--spacing--medium) 0;
}
.yh-modal-side-body .yh-hostel-group .yh-favorite-item:first-child {
  padding-top: 0px;
}
.yh-modal-side-body .yh-hostel-group .yh-favorite-item:last-child {
  border-bottom: none;
  padding-bottom: 0px;
}
.yh-modal-side-body .yh-hostel-group .yh-favorite-item-image {
  width: 100px;
}
.yh-modal-side-body .yh-hostel-group .yh-favorite-item-image img {
  max-width: 100%;
  height: auto;
}
.yh-modal-side-body .yh-hostel-group .yh-favorite-item-details {
  width: 100%;
  display: flex;
  gap: var(--wp--preset--spacing--x-small);
  flex-direction: column;
}
.yh-modal-side-body .yh-hostel-group .yh-favorite-item-details h3, .yh-modal-side-body .yh-hostel-group .yh-favorite-item-details h4 {
  margin: 0px;
}
.yh-modal-side-body .yh-hostel-group .yh-favorite-item-details a {
  text-decoration: none;
}
.yh-modal-side-body .yh-hostel-group .yh-favorite-item-datetime {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--wp--preset--spacing--x-small);
  font-weight: 700;
  color: var(--wp--preset--color--dark);
  display: inline-flex;
  font-size: var(--wp--preset--font-size--small);
}
.yh-modal-side-body .yh-hostel-group .yh-favorite-item-datetime i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--wp--preset--font-size--medium);
  width: auto;
}
.yh-modal-side-body .yh-hostel-group .yh-favorite-item-title {
  font-weight: bold;
  margin-right: 10px;
}
.yh-modal-side-body .yh-hostel-group .yh-favorite-item-actions {
  display: flex;
  flex-direction: row;
  gap: 0;
  width: 60px;
}
.yh-modal-side-body .yh-hostel-group .yh-favorite-item-actions button {
  padding: 0px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
.yh-modal-side-body .yh-hostel-group .yh-favorite-item-actions button:hover, .yh-modal-side-body .yh-hostel-group .yh-favorite-item-actions button:focus {
  cursor: pointer;
}
.yh-modal-side-body .yh-hostel-group .yh-favorite-item-actions i {
  font-size: var(--wp--preset--font-size--large);
}
.yh-modal-side-body .yh-hostel-group .yh-favorite-item h3 {
  color: var(--wp--preset--color--purple);
  font-size: var(--wp--preset--font-size--large);
}
.yh-modal-side-body .yh-hostel-group .yh-favorite-item-image {
  overflow: hidden;
  background-color: var(--wp--preset--color--purple-light);
  mask: url("../../assets/shapes/group-activity-shape.svg") no-repeat center/contain;
  -webkit-mask: url("../../assets/shapes/group-activity-shape.svg") no-repeat center/contain;
  position: relative;
  aspect-ratio: 135/160;
  width: 72px;
}
.yh-modal-side-body .yh-hostel-group .yh-favorite-item-image:before {
  background-image: url("../../assets/shapes/group-activity-shape-border.svg");
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  background-size: contain;
  background-repeat: no-repeat;
}
.yh-modal-side-body .yh-hostel-group .yh-favorite-item-image img {
  max-width: 120%;
  max-height: 120%;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: inherit;
}
.yh-modal-side-body .yh-hostel-mc h3 {
  font-size: var(--wp--preset--font-size--large);
  color: var(--wp--preset--color--primary);
}
.yh-modal-side-body .yh-hostel-mc .taxonomy-media-center {
  display: flex;
  flex-direction: row;
  gap: var(--wp--preset--spacing--x-small);
  font-size: var(--wp--preset--font-size--small);
  align-items: center;
}
.yh-modal-side-body .yh-hostel-mc .taxonomy-media-center .taxonomy-mc-languages {
  display: flex;
  gap: var(--wp--preset--spacing--x-small);
  flex-wrap: wrap;
  flex-direction: row;
}
.yh-modal-side-body .yh-hostel-mc .taxonomy-media-center .meta-lang {
  background-color: var(--wp--preset--color--primary-light);
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-family: var(--wp--preset--font-family--heading);
}
.yh-modal-side-body .yh-hostel-mc .item-meta-download {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.yh-modal-side-body .yh-hostel-mc .item-meta-info {
  background-color: var(--wp--preset--color--secondary-light);
  padding: var(--wp--preset--spacing--x-small) var(--wp--preset--spacing--small);
  border-radius: 0.5rem;
  align-items: center;
}
.yh-modal-side-body .yh-hostel-mc .item-meta-info label {
  font-size: var(--wp--preset--font-size--small);
}
.yh-modal-side-body .yh-hostel-mc .item-meta-info input {
  max-width: 60px;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 0.5rem;
}
.yh-modal-side-body .yh-datetime-modal-item-container {
  gap: var(--wp--preset--spacing--medium);
  display: flex;
  flex-direction: column;
  /* ADMIN */
  /* ADMIN END */
  /* Custom File Upload Styling */
  /* Custom Radio Button Styling */
  /* Styles for when the radio is checked */
  /* Focus style for accessibility */
  /* ===== CONTACT FORM 7 RADIO BUTTONS ===== */
  /* Structure CF7 différente : .wpcf7-radio > .wpcf7-list-item */
  /* Custom Checkbox Styling */
}
.yh-modal-side-body .yh-datetime-modal-item-container .wpcf7 form.invalid .wpcf7-response-output,
.yh-modal-side-body .yh-datetime-modal-item-container .wpcf7 form.unaccepted .wpcf7-response-output,
.yh-modal-side-body .yh-datetime-modal-item-container .wpcf7 form.payment-required .wpcf7-response-output,
.yh-modal-side-body .yh-datetime-modal-item-container form:not(.metabox-location-normal),
.yh-modal-side-body .yh-datetime-modal-item-container body {
  border-color: var(--wp--preset--color--tertiary);
}
.yh-modal-side-body .yh-datetime-modal-item-container fieldset:not(.hidden-fields-container) {
  border: 1px solid var(--wp--preset--color--purple-border);
  border-radius: 1rem;
  padding: var(--wp--preset--spacing--medium) var(--wp--preset--spacing--large) var(--wp--preset--spacing--large) var(--wp--preset--spacing--large);
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--wp--preset--spacing--medium);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.yh-modal-side-body .yh-datetime-modal-item-container .form-fieldset-informations {
  grid-template-columns: repeat(2, 1fr);
}
.yh-modal-side-body .yh-datetime-modal-item-container .form-container {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--medium);
}
.yh-modal-side-body .yh-datetime-modal-item-container select {
  width: 100%;
  border: 0px;
  box-sizing: border-box;
  width: 100%;
  padding: var(--wp--preset--spacing--medium);
}
.yh-modal-side-body .yh-datetime-modal-item-container.metabox-location-normal fieldset {
  border-color: lightgrey;
  border-radius: 0;
}
.yh-modal-side-body .yh-datetime-modal-item-container.metabox-location-normal th {
  width: 150px;
  text-align: left;
}
.yh-modal-side-body .yh-datetime-modal-item-container:not(.metabox-location-normal):not(.metabox-location-side) legend {
  font-size: var(--wp--preset--font-size--x-large);
  font-family: var(--wp--preset--font-family--heading);
  color: var(--wp--preset--color--purple);
  text-transform: uppercase;
  line-height: 0.8em;
}
.yh-modal-side-body .yh-datetime-modal-item-container:not(.metabox-location-normal):not(.metabox-location-side) input, .yh-modal-side-body .yh-datetime-modal-item-container:not(.metabox-location-normal):not(.metabox-location-side) select, .yh-modal-side-body .yh-datetime-modal-item-container:not(.metabox-location-normal):not(.metabox-location-side) textarea {
  padding: var(--wp--preset--spacing--x-small) var(--wp--preset--spacing--small) var(--wp--preset--spacing--x-small) var(--wp--preset--spacing--x-small);
  border-radius: 2rem;
  border: 1px;
  font-size: 1rem;
  width: 100%;
  font-family: var(--wp--preset--font-family--base);
  border-color: var(--wp--preset--color--purple-light);
  border-style: solid;
  appearance: initial;
}
.yh-modal-side-body .yh-datetime-modal-item-container:not(.metabox-location-normal):not(.metabox-location-side) input:not([type=submit]), .yh-modal-side-body .yh-datetime-modal-item-container:not(.metabox-location-normal):not(.metabox-location-side) select:not([type=submit]), .yh-modal-side-body .yh-datetime-modal-item-container:not(.metabox-location-normal):not(.metabox-location-side) textarea:not([type=submit]) {
  background-color: white;
}
.yh-modal-side-body .yh-datetime-modal-item-container:not(.metabox-location-normal):not(.metabox-location-side) input + i[class*=yh-icon-], .yh-modal-side-body .yh-datetime-modal-item-container:not(.metabox-location-normal):not(.metabox-location-side) select + i[class*=yh-icon-], .yh-modal-side-body .yh-datetime-modal-item-container:not(.metabox-location-normal):not(.metabox-location-side) textarea + i[class*=yh-icon-] {
  aspect-ratio: 1/1;
  color: var(--wp--preset--color--black);
  width: 20px;
  height: 48px;
  display: flex;
  position: absolute;
  right: 0.75rem;
  top: 0;
  bottom: 0;
  align-items: center;
  font-size: 1.25rem;
}
.yh-modal-side-body .yh-datetime-modal-item-container:not(.metabox-location-normal):not(.metabox-location-side) input {
  /*&.with-icon{
    padding-right: var(--wp--preset--spacing--medium) !important;
    width: calc(100% - (var(--wp--preset--spacing--xx-large))) !important;
  }*/
}
.yh-modal-side-body .yh-datetime-modal-item-container:not(.metabox-location-normal):not(.metabox-location-side) input[type=date], .yh-modal-side-body .yh-datetime-modal-item-container:not(.metabox-location-normal):not(.metabox-location-side) input[type=time] {
  padding: 0 var(--wp--preset--spacing--medium);
  width: calc(100% - 2 * var(--wp--preset--spacing--medium));
  /*&.with-icon{
    &::-webkit-calendar-picker-indicator {
      opacity: 0;
      position: absolute;
      right: 0;
      width: 100%;
      height: 100%;
      cursor: pointer;
    }

    &::-webkit-inner-spin-button,
    &::-webkit-clear-button {
      display: none;
    }
  }*/
}
.yh-modal-side-body .yh-datetime-modal-item-container:not(.metabox-location-normal):not(.metabox-location-side) select {
  padding-left: var(--wp--preset--spacing--small) !important;
  /*&.with-icon{
    // Masquer l'icône native du select (flèche)
    // NOTE: -webkit-appearance: none est acceptable pour les selects
    // car l'élément reste fonctionnel et accessible (contrairement aux checkboxes/radios)
    -webkit-appearance: none !important;
    -moz-appearance: none;
    appearance: none;

    // Pour Firefox
    background-image: none !important;
    width:100%;

    // Safari spécifique - masquer les éléments natifs
    &::-webkit-inner-spin-button,
    &::-webkit-outer-spin-button {
      -webkit-appearance: none;
      margin: 0;
    }

    // Assurer que le padding à droite laisse de l'espace si on veut une icône custom
    padding-right: var(--wp--preset--spacing--large);
  }*/
}
.yh-modal-side-body .yh-datetime-modal-item-container .form-field {
  position: relative;
}
.yh-modal-side-body .yh-datetime-modal-item-container .form-field p {
  margin: 0px;
}
.yh-modal-side-body .yh-datetime-modal-item-container .form-field:not(.form-field-half):not(.form-field-third) {
  width: 100%;
}
.yh-modal-side-body .yh-datetime-modal-item-container .form-field-half {
  width: 100%;
}
@media (min-width: 991px) {
  .yh-modal-side-body .yh-datetime-modal-item-container .form-field-half {
    width: calc(50% - 0.5 * var(--wp--preset--spacing--medium));
  }
}
.yh-modal-side-body .yh-datetime-modal-item-container .form-field-third {
  width: 100%;
}
@media (min-width: 991px) {
  .yh-modal-side-body .yh-datetime-modal-item-container .form-field-third {
    width: calc(50% - 0.5 * var(--wp--preset--spacing--medium));
  }
}
@media (min-width: 1199px) {
  .yh-modal-side-body .yh-datetime-modal-item-container .form-field-third {
    width: calc(33.33% - 1 * var(--wp--preset--spacing--medium));
  }
}
.yh-modal-side-body .yh-datetime-modal-item-container .form-field-checkbox {
  display: flex;
}
.yh-modal-side-body .yh-datetime-modal-item-container .form-field-checkbox .wpcf7-list-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.yh-modal-side-body .yh-datetime-modal-item-container .form-field-checkbox .wpcf7-list-item label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.yh-modal-side-body .yh-datetime-modal-item-container .wpcf7-submit {
  background-color: var(--wp--preset--color--purple);
  color: var(--wp--preset--color--white);
  border-radius: 1rem;
  padding: var(--wp--preset--spacing--medium);
  text-align: center;
  width: 100%;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.2s ease;
  padding-top: var(--wp--preset--spacing--small);
  padding-right: var(--wp--preset--spacing--medium);
  padding-bottom: var(--wp--preset--spacing--small);
  padding-left: var(--wp--preset--spacing--medium);
}
.yh-modal-side-body .yh-datetime-modal-item-container .wpcf7-submit:hover, .yh-modal-side-body .yh-datetime-modal-item-container .wpcf7-submit:focus {
  background-color: var(--wp--preset--color--purple-dark);
  cursor: pointer;
}
.yh-modal-side-body .yh-datetime-modal-item-container .wpcf7-submit:disabled {
  background-color: var(--wp--preset--color--black-100);
  color: var(--wp--preset--color--black-300);
}
.yh-modal-side-body .yh-datetime-modal-item-container .form-field {
  position: relative;
}
.yh-modal-side-body .yh-datetime-modal-item-container .form-field-row {
  display: flex;
  flex-direction: row;
  row-gap: 1rem;
  flex-wrap: wrap;
  column-gap: 2rem;
}
.yh-modal-side-body .yh-datetime-modal-item-container .form-field-row > p {
  display: flex;
  flex-direction: row;
  row-gap: 1rem;
  flex-wrap: wrap;
  column-gap: 2rem;
}
.yh-modal-side-body .yh-datetime-modal-item-container label.placeholder {
  font-size: var(--wp--preset--font-size--base);
  color: var(--wp--preset--color--black);
  font-weight: 400;
  pointer-events: none;
  transition: top 0.2s;
}
.yh-modal-side-body .yh-datetime-modal-item-container label.placeholder:not(.placeholder-radio) {
  position: absolute;
  transform: translate(1rem, -50%);
  left: 0px;
  z-index: 3;
  top: 1.5rem;
}
.yh-modal-side-body .yh-datetime-modal-item-container label.placeholder-select:not(.has-value) {
  background-color: var(--wp--preset--color--white);
  width: calc(100% - 2 * var(--wp--preset--spacing--small));
}
.yh-modal-side-body .yh-datetime-modal-item-container label.placeholder-date:not(.has-value), .yh-modal-side-body .yh-datetime-modal-item-container label.placeholder-time:not(.has-value) {
  background-color: var(--wp--preset--color--white);
  width: calc(100% - 4 * var(--wp--preset--spacing--small));
}
.yh-modal-side-body .yh-datetime-modal-item-container label.placeholder.has-value {
  top: 0px;
  font-size: var(--wp--preset--font-size--x-small);
  background-color: var(--wp--preset--color--purple-dark);
  padding: 0.25rem var(--wp--preset--spacing--small);
  border-radius: 1rem;
  color: var(--wp--preset--color--white);
}
.yh-modal-side-body .yh-datetime-modal-item-container input:not([type=checkbox]):not([type=radio]), .yh-modal-side-body .yh-datetime-modal-item-container select {
  min-height: 48px;
  padding-top: 0px;
  padding-bottom: 0px;
}
.yh-modal-side-body .yh-datetime-modal-item-container .class-form-error {
  padding: var(--wp--preset--spacing--large);
  padding-bottom: var(--wp--preset--spacing--large);
  background-color: var(--wp--preset--color--tertiary);
  border-radius: 1rem;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0.16rem;
  color: white;
}
.yh-modal-side-body .yh-datetime-modal-item-container .custom-file-container {
  position: relative;
  display: block;
  background-color: white;
  border-radius: 9999px;
  padding: var(--wp--preset--spacing--small) var(--wp--preset--spacing--medium);
  cursor: pointer;
  min-height: 48px;
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
}
.yh-modal-side-body .yh-datetime-modal-item-container .custom-file-container label.placeholder {
  top: 50%;
  transform: translate(0, -50%);
  left: var(--wp--preset--spacing--medium);
}
.yh-modal-side-body .yh-datetime-modal-item-container .custom-file-container label.placeholder.has-value {
  /* Adjust floated position */
  top: 0;
  transform: translate(0.75rem, -50%);
}
.yh-modal-side-body .yh-datetime-modal-item-container .custom-file-container input[type=file] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  cursor: pointer;
  z-index: 0;
  padding: 0px;
  font-size: 0px !important;
  background-color: transparent !important;
}
.yh-modal-side-body .yh-datetime-modal-item-container .custom-file-container input[type=file]::file-selector-button {
  display: none;
}
.yh-modal-side-body .yh-datetime-modal-item-container .custom-file-container .file-name-display {
  display: block;
  color: var(--wp--preset--color--black);
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
  z-index: 5;
}
.yh-modal-side-body .yh-datetime-modal-item-container .form-field.form-field-acceptance {
  padding: var(--wp--preset--spacing--medium) 0;
}
.yh-modal-side-body .yh-datetime-modal-item-container .form-field-radio, .yh-modal-side-body .yh-datetime-modal-item-container .radio-group {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--x-small);
}
.yh-modal-side-body .yh-datetime-modal-item-container .radio-label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-left: 1.5em;
  min-height: 1em;
  /* Hide original radio button - Accessible approach */
  /* The custom radio circle */
  /* Hover state */
}
.yh-modal-side-body .yh-datetime-modal-item-container .radio-label input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  left: 0;
  cursor: pointer;
  clip-path: inset(50%);
  clip: rect(0, 0, 0, 0);
  margin: 0;
  padding: 0;
}
.yh-modal-side-body .yh-datetime-modal-item-container .radio-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.125rem;
  transform: translateY(0%);
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background-color: white;
  border: 1px solid var(--wp--preset--color--purple);
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.yh-modal-side-body .yh-datetime-modal-item-container .radio-label:hover::before {
  border-color: var(--wp--preset--color--purple);
  box-shadow: 0 0 0 2px rgba(243, 148, 30, 0.2);
}
.yh-modal-side-body .yh-datetime-modal-item-container .radio-label input[type=radio]:checked + span::before, .yh-modal-side-body .yh-datetime-modal-item-container .radio-label:has(input[type=radio]:checked)::before {
  background-color: var(--wp--preset--color--purple);
  border-color: var(--wp--preset--color--purple);
}
.yh-modal-side-body .yh-datetime-modal-item-container .radio-label input[type=radio]:focus + span::before, .yh-modal-side-body .yh-datetime-modal-item-container .radio-label:has(input[type=radio]:focus)::before {
  outline: 1px solid var(--wp--preset--color--purple);
  outline-offset: 1px;
}
.yh-modal-side-body .yh-datetime-modal-item-container .wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-direction: row;
  gap: var(--wp--preset--spacing--x-small);
  flex-wrap: wrap;
}
.yh-modal-side-body .yh-datetime-modal-item-container .wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  min-height: 1.5em;
  /* Hide original radio button - Accessible approach */
  /* Label wrapper */
  /* Hover state */
  /* Checked state */
  /* Focus state (accessibility) */
  /* Disabled state */
}
.yh-modal-side-body .yh-datetime-modal-item-container .wpcf7-form-control.wpcf7-radio .wpcf7-list-item.first {
  margin-left: 0px;
}
.yh-modal-side-body .yh-datetime-modal-item-container .wpcf7-form-control.wpcf7-radio .wpcf7-list-item input[type=radio] {
  position: absolute;
  opacity: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 1;
  margin: 0;
  padding: 0;
  clip: auto;
  clip-path: inset(0);
}
.yh-modal-side-body .yh-datetime-modal-item-container .wpcf7-form-control.wpcf7-radio .wpcf7-list-item input[type=radio] + .wpcf7-list-item-label::before {
  transform: rotate(0deg) translate(0px, 0px);
}
.yh-modal-side-body .yh-datetime-modal-item-container .wpcf7-form-control.wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
  display: inline-flex;
  align-items: center;
  padding-left: 1.75em;
  position: relative;
  cursor: pointer;
  width: 100%;
  /* Custom radio circle */
}
.yh-modal-side-body .yh-datetime-modal-item-container .wpcf7-form-control.wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.125rem;
  transform: translateY(0%);
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background-color: white;
  border: 1px solid var(--wp--preset--color--purple);
  transition: all 0.3s ease;
  box-sizing: border-box;
  transform: rotate(45deg) translate(-5px, -5px);
}
.yh-modal-side-body .yh-datetime-modal-item-container .wpcf7-form-control.wpcf7-radio .wpcf7-list-item:hover .wpcf7-list-item-label::before {
  border-color: var(--wp--preset--color--purple);
  box-shadow: 0 0 0 3px rgba(243, 148, 30, 0.15);
}
.yh-modal-side-body .yh-datetime-modal-item-container .wpcf7-form-control.wpcf7-radio .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label::before {
  background-color: var(--wp--preset--color--purple);
  border-color: var(--wp--preset--color--purple);
}
.yh-modal-side-body .yh-datetime-modal-item-container .wpcf7-form-control.wpcf7-radio .wpcf7-list-item input[type=radio]:focus + .wpcf7-list-item-label::before {
  outline: 2px solid var(--wp--preset--color--purple);
  outline-offset: 2px;
}
.yh-modal-side-body .yh-datetime-modal-item-container .wpcf7-form-control.wpcf7-radio .wpcf7-list-item input[type=radio]:disabled + .wpcf7-list-item-label {
  opacity: 0.5;
  cursor: not-allowed;
}
.yh-modal-side-body .yh-datetime-modal-item-container .wpcf7-form-control.wpcf7-radio .wpcf7-list-item input[type=radio]:disabled + .wpcf7-list-item-label::before {
  border-color: #ccc;
  background-color: #f5f5f5;
}
.yh-modal-side-body .yh-datetime-modal-item-container .wpcf7-form-control-wrap {
  display: flex;
}
.yh-modal-side-body .yh-datetime-modal-item-container .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  /* Hide original checkbox - Accessible approach */
  /* Styles for when the box is checked */
  /* Focus style for accessibility */
}
.yh-modal-side-body .yh-datetime-modal-item-container .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item:hover, .yh-modal-side-body .yh-datetime-modal-item-container .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item:focus {
  cursor: pointer;
}
.yh-modal-side-body .yh-datetime-modal-item-container .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 1.5em;
  height: 1.5em;
  cursor: pointer;
  clip-path: inset(50%);
  clip: rect(0, 0, 0, 0);
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
}
.yh-modal-side-body .yh-datetime-modal-item-container .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label {
  position: relative;
  display: block;
  padding-left: 1.5em; /* Space for the custom checkbox */
  /* The custom checkbox - cercle orange */
  /* The checkmark */
  /* Hover state */
}
.yh-modal-side-body .yh-datetime-modal-item-container .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(0%);
  width: 1em;
  height: 1em;
  border-radius: 50%; /* Cercle */
  background-color: white;
  border: 1px solid var(--wp--preset--color--purple); /* Bordure orange */
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.yh-modal-side-body .yh-datetime-modal-item-container .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 0.25em;
  width: 0.3em;
  height: 0.6em;
  border: solid white;
  border-width: 0 2px 2px 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  transform: rotate(45deg);
  top: 0;
}
.yh-modal-side-body .yh-datetime-modal-item-container .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label:hover::before {
  border-color: var(--wp--preset--color--purple);
  box-shadow: 0 0 0 2px rgba(243, 148, 30, 0.2);
}
.yh-modal-side-body .yh-datetime-modal-item-container .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background-color: var(--wp--preset--color--purple); /* Fond orange quand checked */
  border-color: var(--wp--preset--color--purple);
}
.yh-modal-side-body .yh-datetime-modal-item-container .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.yh-modal-side-body .yh-datetime-modal-item-container .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item input[type=checkbox]:focus + .wpcf7-list-item-label::before {
  outline: 2px solid var(--wp--preset--color--purple);
  outline-offset: 2px;
}
.yh-modal-side-body .yh-datetime-modal-item-container #field-group_activity_checkbox {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--x-small);
}
.yh-modal-side-body .yh-datetime-modal-item-container #field-group_activity_checkbox .wpcf7-form-control-wrap {
  flex-direction: column;
  gap: var(--wp--preset--spacing--x-small);
}
.yh-modal-side-body .yh-datetime-modal-item-container #field-group_activity_checkbox .wpcf7-list-item {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  min-height: 1.5em;
}
.yh-modal-side-body .yh-datetime-modal-item-container #field-group_activity_checkbox .wpcf7-list-item.first {
  margin-left: 0px;
}
.yh-modal-side-body .yh-datetime-modal-item-container #field-group_activity_checkbox .wpcf7-list-item label {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  width: 100%;
  /* Hide original checkbox - Accessible approach */
  /* Label wrapper */
  /* Hover state */
  /* Checked state */
  /* Focus state (accessibility) */
  /* Focus-visible pour meilleure accessibilité clavier */
  /* Disabled state */
}
.yh-modal-side-body .yh-datetime-modal-item-container #field-group_activity_checkbox .wpcf7-list-item label input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  cursor: pointer;
  z-index: 1;
  clip-path: inset(50%);
  clip: rect(0, 0, 0, 0);
  margin: 0;
  padding: 0;
}
.yh-modal-side-body .yh-datetime-modal-item-container #field-group_activity_checkbox .wpcf7-list-item label .wpcf7-list-item-label {
  display: inline-flex;
  align-items: center;
  padding-left: 2em;
  position: relative;
  cursor: pointer;
  width: 100%;
  /* Custom circle (outer circle) */
}
.yh-modal-side-body .yh-datetime-modal-item-container #field-group_activity_checkbox .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  background-color: white;
  border: 1px solid var(--wp--preset--color--purple);
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.yh-modal-side-body .yh-datetime-modal-item-container #field-group_activity_checkbox .wpcf7-list-item label:hover .wpcf7-list-item-label::before {
  border-color: var(--wp--preset--color--purple);
  box-shadow: 0 0 0 3px rgba(243, 148, 30, 0.15);
}
.yh-modal-side-body .yh-datetime-modal-item-container #field-group_activity_checkbox .wpcf7-list-item label input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background-color: var(--wp--preset--color--purple);
  border-color: var(--wp--preset--color--purple);
  border-width: 1px;
}
.yh-modal-side-body .yh-datetime-modal-item-container #field-group_activity_checkbox .wpcf7-list-item label input[type=checkbox]:focus + .wpcf7-list-item-label::before {
  outline: 2px solid var(--wp--preset--color--purple);
  outline-offset: 2px;
}
.yh-modal-side-body .yh-datetime-modal-item-container #field-group_activity_checkbox .wpcf7-list-item label input[type=checkbox]:focus-visible + .wpcf7-list-item-label::before {
  outline: 2px solid var(--wp--preset--color--purple);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(243, 148, 30, 0.25);
}
.yh-modal-side-body .yh-datetime-modal-item-container #field-group_activity_checkbox .wpcf7-list-item label input[type=checkbox]:disabled + .wpcf7-list-item-label {
  opacity: 0.5;
  cursor: not-allowed;
}
.yh-modal-side-body .yh-datetime-modal-item-container #field-group_activity_checkbox .wpcf7-list-item label input[type=checkbox]:disabled + .wpcf7-list-item-label::before {
  border-color: #ccc;
  background-color: #f5f5f5;
}
.yh-modal-side-body .yh-datetime-modal-item-name {
  color: var(--wp--preset--color--purple);
  margin: 0px;
}
.yh-modal-side-body .yh-datetime-modal-item-activity {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--x-small);
}
.yh-modal-side-body .yh-datetime-modal-item-location {
  font-size: var(--wp--preset--font-size--small);
  font-weight: bold;
}
.yh-modal-side-body .yh-datetime-modal-item-location i {
  padding-right: var(--wp--preset--spacing--x-small);
}
.yh-modal-side-body .yh-hostel-activity .yh-modal-side-title span {
  color: var(--wp--preset--color--green);
}
.yh-modal-side-body .yh-hostel-activity .taxonomy-activity {
  order: 1;
  display: flex;
  flex-direction: row;
  gap: var(--wp--preset--spacing--x-small);
}
.yh-modal-side-body .yh-hostel-activity .taxonomy-activity i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--wp--preset--font-size--large);
}
.yh-modal-side-body .yh-hostel-activity .taxonomy-activity-types i {
  background-color: var(--wp--preset--color--green);
  color: var(--wp--preset--color--white);
}
.yh-modal-side-body .yh-hostel-activity .taxonomy-activity-packages i {
  background-color: var(--wp--preset--color--green-light);
  color: var(--wp--preset--color--green);
}
.yh-modal-side-body .yh-hostel-activity .taxonomy-related-hostels {
  order: 3;
}
.yh-modal-side-body .yh-hostel-activity .yh-favorite-item {
  border-bottom-color: var(--wp--preset--color--green-light);
}
.yh-modal-side-body .yh-hostel-activity .yh-favorite-item-title {
  order: 2;
}
.yh-modal-side-body .yh-hostel-activity .yh-favorite-item h3 {
  color: var(--wp--preset--color--green);
  font-size: var(--wp--preset--font-size--large);
}
.yh-modal-side-body .yh-hostel-activity .yh-favorite-item-image {
  overflow: hidden;
  background-color: var(--wp--preset--color--purple-light);
  mask: url("../../assets/shapes/activity-shape.svg") no-repeat center/contain;
  -webkit-mask: url("../../assets/shapes/activity-shape.svg") no-repeat center/contain;
  position: relative;
  aspect-ratio: 160/135;
  display: none;
}
@media (min-width: 599px) {
  .yh-modal-side-body .yh-hostel-activity .yh-favorite-item-image {
    width: 100px;
    display: flex;
  }
}
@media (min-width: 1199px) {
  .yh-modal-side-body .yh-hostel-activity .yh-favorite-item-image {
    width: 120px;
  }
}
.yh-modal-side-body .yh-hostel-activity .yh-favorite-item-image:before {
  background-image: url("../../assets/shapes/birthday-border.svg");
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  background-size: contain;
  background-repeat: no-repeat;
}
.yh-modal-side-body .yh-hostel-activity .yh-favorite-item-image img {
  max-width: 120%;
  max-height: 120%;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: inherit;
}
.yh-modal-side-body .yh-hostel-activity .yh-favorite-item-datetime {
  order: 4;
}
.yh-modal-side-footer {
  border-top: 1px solid #eee;
  text-align: right;
}
.yh-modal-side-footer #yh-send-favorites-form {
  display: flex;
  align-items: center;
  gap: 10px;
}
.yh-modal-side-footer #yh-send-favorites-form #yh-favorite-email {
  flex-grow: 1;
  padding: 8px;
  border: 1px solid #ccc;
}
.yh-modal-side-footer #yh-send-favorites-form button[type=submit] {
  border: none;
  cursor: pointer;
}
.yh-modal-side-footer #yh-send-favorites-feedback {
  margin-top: 10px;
  font-size: 0.9em;
  text-align: left;
}

.yh-confirm-delete-ui {
  display: inline-block;
  margin-left: 10px;
  align-items: center;
}
.yh-confirm-delete-ui .yh-confirm-delete-text {
  margin-right: 8px;
  font-size: 0.9em;
}
.yh-confirm-delete-ui .yh-confirm-delete-yes,
.yh-confirm-delete-ui .yh-confirm-delete-no {
  padding: 5px 10px;
  font-size: 0.85em;
  cursor: pointer;
}
.yh-confirm-delete-ui .yh-confirm-delete-yes {
  margin-left: 8px;
}
.yh-confirm-delete-ui .yh-confirm-delete-no {
  margin-left: 5px;
}