.lapso-horarios-wrapper {
  font-family: "Matter", "Montserrat", sans-serif !important;
  display: flex;
  flex-direction: column;
  gap: 24px;
  --primary: #992d2d;
  --border-radius-card: 10px;
  --card-width: 130px;
  --lapso-red: #a52e2d;
  --lapso-red-dark: #7d1e1d;
}

.lapso-horarios-wrapper h1,
.lapso-horarios-wrapper h2,
.lapso-horarios-wrapper h3,
.lapso-horarios-wrapper h4,
.lapso-horarios-wrapper h5,
.lapso-horarios-wrapper h6,
.lapso-horarios-wrapper p,
.lapso-horarios-wrapper span,
.lapso-horarios-wrapper select,
.lapso-horarios-wrapper button {
  font-family: "Matter", "Montserrat", sans-serif !important;
}

.lapso-horarios-header {
  display: grid;
  grid-template-columns: minmax(0, 3.5fr) minmax(240px, 1fr);
  gap: 16px;
  align-items: stretch;
}

.lapso-horarios-cover {
  position: relative;
  min-height: 170px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.lapso-horarios-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.lapso-horarios-cover-content {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  bottom: 18px;
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.lapso-horarios-cover-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.lapso-horarios-cover-right {
  text-align: right;
  flex-shrink: 0;
}

.lapso-horarios-badge {
  position: absolute;
  top: 16px;
  left: 20px;
  z-index: 1;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--lapso-red);
  font-size: 14px;
  line-height: 1;
  color: #fff;
}

.lapso-horarios-title {
  margin: 8px 0 0;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.lapso-horarios-user-credits {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: var(--lapso-red) !important;
  font-size: 18px !important;
  font-weight: 700;
  line-height: 1;
  text-decoration: underline !important;
  cursor: pointer;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  width: fit-content;
  align-self: start;
}

.lapso-horarios-user-credits:hover {
  opacity: 0.7;
  color: var(--lapso-red) !important;
  text-decoration: underline !important;
}

.lapso-horarios-user-credits .login-icon {
  width: 24px;
  height: 24px;
}

.lapso-horarios-user-credits .login-icon path {
  fill: var(--lapso-red);
}

.lapso-horarios-credits-count {
  font-weight: 700;
  color: var(--lapso-red);
}

.lapso-horarios-credits-label {
  font-weight: 700;
  color: var(--lapso-red);
}

.lapso-horarios-meta {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  opacity: 0.9;
}

.lapso-horarios-meta-phone,
.lapso-horarios-meta-address {
  display: block;
}

.lapso-horarios-filters {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: flex-start;
}

.lapso-filter {
  width: 100%;
  height: 36px;
  border: 1px solid var(--lapso-red);
  border-radius: 8px;
  background: #fff;
  padding: 0 10px;
  font-size: 14px;
  color: #262626;
}

.lapso-clear-filters {
  border: none !important;
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  color: var(--lapso-red) !important;
  font-size: 13px;
  text-align: left;
  padding: 0 !important;
  margin: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-appearance: none;
  appearance: none;
}

.lapso-clear-filters:hover {
  color: var(--lapso-red-dark) !important;
}

.lapso-horarios-loading,
.lapso-horarios-empty {
  font-size: 16px;
  color: #374151;
}

.lapso-horarios-loading {
  display: block;
  width: 100%;
}

/* Skeleton Calendar Loading */
.lapso-skeleton-calendar {
  display: grid;
  grid-template-columns: repeat(7, minmax(var(--card-width), 1fr));
  gap: 12px;
}

.lapso-skeleton-day {
  min-width: 0;
}

.lapso-skeleton-day-title {
  margin: 0 0 8px;
  padding: 6px 0;
  text-align: center;
  font-size: 14px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-weight: 500;
}

.lapso-skeleton-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lapso-skeleton-card {
  background: #f3f4f6;
  border-radius: var(--border-radius-card);
  padding: 16px 12px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.lapso-skeleton-line {
  height: 12px;
  background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
  background-size: 200% 100%;
  border-radius: 4px;
  animation: lapso-skeleton-shimmer 1.5s ease-in-out infinite;
}

.lapso-skeleton-line.short {
  width: 45%;
  margin: 0 auto;
}

.lapso-skeleton-line.medium {
  width: 70%;
  margin: 0 auto;
}

.lapso-skeleton-line.long {
  width: 90%;
  margin: 0 auto;
  height: 24px;
  border-radius: 6px;
}

@keyframes lapso-skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Responsive skeleton */
@media (max-width: 900px) {
  .lapso-skeleton-calendar {
    grid-template-columns: repeat(4, minmax(100px, 1fr));
  }

  .lapso-skeleton-day:nth-child(n + 5) {
    display: none;
  }
}

@media (max-width: 600px) {
  .lapso-skeleton-calendar {
    grid-template-columns: repeat(5, minmax(60px, 1fr));
    gap: 6px;
  }

  .lapso-skeleton-day:nth-child(n + 6) {
    display: none;
  }

  .lapso-skeleton-card {
    padding: 10px 6px;
    min-height: 120px;
    gap: 8px;
  }
}

.lapso-horarios-wrapper .hidden {
  display: none !important;
}

.lapso-horarios-wrapper .lapso-horarios-empty {
  display: none;
}

.lapso-horarios-wrapper .lapso-horarios-empty.visible {
  display: block;
  text-align: center;
}

.lapso-horarios-week-nav {
  position: relative;
  min-height: 34px;
  margin-top: -4px;
}

.lapso-week-label {
  display: none;
}

.lapso-week-btn {
  border: none !important;
  background: #fff !important;
  box-shadow: none !important;
  outline: none !important;
  color: transparent !important;
  font-size: 0 !important;
  width: 38px;
  height: 28px;
  padding: 0;
  margin: 0;
  line-height: 1;
  cursor: pointer;
  position: absolute;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  -webkit-appearance: none;
  appearance: none;
}

.lapso-week-prev {
  left: 0;
}

.lapso-week-next {
  right: 0;
}

.lapso-week-btn:hover {
  opacity: 0.7;
}

.lapso-week-btn::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--lapso-red);
  border-right: 3px solid var(--lapso-red);
  display: block;
}

.lapso-week-prev::before {
  transform: rotate(-135deg);
  margin-left: 3px;
}

.lapso-week-next::before {
  transform: rotate(45deg);
  margin-right: 3px;
}

.lapso-horarios-calendar {
  display: grid;
  grid-template-columns: repeat(7, minmax(var(--card-width), 1fr));
  gap: 12px;
  font-family: "Matter", "Montserrat", sans-serif !important;
  align-items: start;
}

.lapso-schedule-day {
  min-width: 0;
}

.lapso-schedule-day-title {
  margin: 0 0 8px;
  text-align: center;
  font-size: 14px;
  color: #4b4b4b;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.lapso-schedule-day-list {
  display: grid;
  grid-auto-rows: minmax(170px, auto);
  align-content: start;
  gap: 10px;
}

.lapso-schedule-card {
  position: relative;
  background: #fff;
  cursor: pointer;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: content-box;
  border-radius: var(--border-radius-card);
  text-align: center;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
}

.lapso-schedule-card.enrolled {
  cursor: default;
}

.lapso-schedule-card.enrolled::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.65);
  border-radius: var(--border-radius-card);
  pointer-events: none;
}

.lapso-schedule-card.enrolled::after {
  content: "Reservado";
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--lapso-red);
  transform: rotate(-35deg);
  pointer-events: none;
}

.lapso-schedule-card.on-waitlist {
  cursor: default;
}

.lapso-schedule-card.on-waitlist::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.65);
  border-radius: var(--border-radius-card);
  pointer-events: none;
}

.lapso-schedule-card.on-waitlist::after {
  content: "En lista de espera";
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--lapso-red);
  transform: rotate(-30deg);
  pointer-events: none;
}

.lapso-schedule-card:focus {
  border: 2px solid #8b0000;
  outline: none;
}

.lapso-schedule-card:hover {
  box-shadow: 5px 4px 40px 0 #00000040;
}

.lapso-schedule-card.waitlist {
  background-color: #d1d5db !important;
}

.lapso-schedule-card.unavailable {
  opacity: 60%;
  cursor: default;
}

.lapso-schedule-card.special-card {
  background-color: #992d2d;
  color: #fff;
}

.lapso-schedule-card.special-card .type-icon {
  filter: invert(1);
}

.lapso-schedule-card.special-card-2 .lapso-schedule-header {
  color: #992d2d !important;
}

.lapso-schedule-card.special-card-3 {
  background-color: #263944;
  color: #fff;
}

.lapso-schedule-card.special-card-3 .type-icon {
  filter: invert(1);
}

.lapso-schedule-card.special-card-4 {
  background-color: #000;
  color: #fff;
}

.lapso-schedule-card.special-card-4 .type-icon {
  filter: invert(1);
}

.lapso-schedule-card.special-card-4 .lapso-schedule-header {
  background-color: #fff;
  color: #000;
}

.lapso-schedule-card.waitlist.special-card {
  background: #d1d5db;
  color: #000;
}

.lapso-schedule-card.waitlist.special-card .lapso-schedule-header {
  background: #992d2d;
  color: #fff;
}

.lapso-schedule-card.waitlist.special-card .type-icon {
  filter: none !important;
}

.lapso-schedule-status {
  font-size: clamp(12px, 1.5vw, 16px);
  color: #8b0000;
  font-weight: 700;
  min-height: 20px;
}

.lapso-schedule-card.special-card .lapso-schedule-status,
.lapso-schedule-card.special-card-3 .lapso-schedule-status,
.lapso-schedule-card.special-card-4 .lapso-schedule-status {
  color: #f9d9d9;
}

.lapso-schedule-hour {
  margin: 0;
  font-size: clamp(14px, 1.8vw, 20px);
  line-height: 1.1;
  color: #111;
  font-weight: 700;
  min-height: 22px;
}

.lapso-schedule-duration {
  margin: 2px 0 0;
  font-size: 14px;
  color: #525252;
  line-height: 1.2;
  min-height: 18px;
}

.lapso-schedule-coach {
  margin: 4px 0 0;
  font-size: clamp(12px, 1.5vw, 16px);
  color: #111;
  font-weight: 700;
  line-height: 1.2;
  min-height: 20px;
}

.lapso-schedule-card.special-card .lapso-schedule-hour,
.lapso-schedule-card.special-card .lapso-schedule-duration,
.lapso-schedule-card.special-card .lapso-schedule-coach,
.lapso-schedule-card.special-card .lapso-schedule-type,
.lapso-schedule-card.special-card-3 .lapso-schedule-hour,
.lapso-schedule-card.special-card-3 .lapso-schedule-duration,
.lapso-schedule-card.special-card-3 .lapso-schedule-coach,
.lapso-schedule-card.special-card-3 .lapso-schedule-type,
.lapso-schedule-card.special-card-4 .lapso-schedule-hour,
.lapso-schedule-card.special-card-4 .lapso-schedule-duration,
.lapso-schedule-card.special-card-4 .lapso-schedule-coach,
.lapso-schedule-card.special-card-4 .lapso-schedule-type {
  color: #fff;
}

.lapso-schedule-card.waitlist.special-card .lapso-schedule-hour,
.lapso-schedule-card.waitlist.special-card .lapso-schedule-duration,
.lapso-schedule-card.waitlist.special-card .lapso-schedule-coach,
.lapso-schedule-card.waitlist.special-card .lapso-schedule-type,
.lapso-schedule-card.waitlist.special-card .lapso-schedule-status {
  color: #111;
}

.lapso-schedule-header-wrap {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lapso-schedule-header {
  background-color: #fff;
  color: #992d2d;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 8px;
  text-align: center;
}

.lapso-schedule-header.normal-ride {
  visibility: hidden;
}

.lapso-schedule-card.waitlist .lapso-schedule-header.normal-ride {
  visibility: visible;
  background-color: transparent;
}

.lapso-schedule-type {
  margin: 8px 0 0;
  font-size: clamp(12px, 1.5vw, 16px);
  font-weight: 400;
  color: #595959;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  line-height: 1.2;
  min-height: 22px;
}

.type-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.type-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.lapso-schedule-empty-day {
  min-height: 170px;
  border: 1px dashed #d1d5db;
  border-radius: var(--border-radius-card);
  background: #f9fafb;
}

@media (max-width: 1024px) {
  .lapso-horarios-header {
    grid-template-columns: 1fr;
  }

  .lapso-horarios-title {
    font-size: 34px;
  }

  .lapso-horarios-meta {
    font-size: 20px;
  }

  .lapso-filter {
    font-size: 16px;
  }

  .lapso-horarios-week-nav {
    min-height: 34px;
  }

  .lapso-horarios-calendar {
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .lapso-schedule-day {
    min-width: var(--card-width);
  }

  .lapso-schedule-hour {
    font-size: 24px;
  }

  .lapso-schedule-duration,
  .lapso-schedule-coach,
  .lapso-schedule-type {
    font-size: 17px;
  }
}

@media (max-width: 600px) {
  .lapso-horarios-wrapper {
    --card-width: 64px;
    gap: 16px;
  }

  .lapso-horarios-header {
    display: block;
  }

  .lapso-horarios-badge {
    font-size: 11px;
    padding: 5px 10px;
  }

  .lapso-horarios-title {
    font-size: 24px;
    line-height: 1.2;
    margin-top: 8px;
  }

  .lapso-horarios-meta {
    font-size: 12px;
    line-height: 1.4;
  }

  .lapso-horarios-meta-phone,
  .lapso-horarios-meta-address {
    font-size: 12px;
  }

  .lapso-horarios-cover {
    min-height: 140px;
  }

  .lapso-horarios-cover-content {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 0;
  }

  .lapso-horarios-user-credits {
    font-size: 14px !important;
    margin-top: 6px;
  }

  .lapso-horarios-filters {
    gap: 6px;
  }

  .lapso-filter {
    height: 34px;
    font-size: 13px;
  }

  .lapso-calendar {
    grid-template-columns: repeat(7, calc((100% - 20px) / 5));
    gap: 5px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .lapso-schedule-day {
    min-width: 0;
    scroll-snap-align: start;
  }

  .lapso-schedule-card {
    min-height: 120px;
    padding: 6px 3px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    word-break: break-word;
  }

  .lapso-schedule-day-title {
    font-size: 10px;
    margin-bottom: 5px;
    letter-spacing: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .lapso-schedule-day-list {
    grid-auto-rows: minmax(110px, auto);
    gap: 5px;
  }

  .lapso-schedule-hour {
    font-size: 11px;
    min-height: 14px;
    line-height: 1.2;
  }

  .lapso-schedule-duration {
    font-size: 8px;
    min-height: 10px;
    margin-top: 1px;
  }

  .lapso-schedule-coach {
    font-size: 8px;
    min-height: 10px;
    margin-top: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .lapso-schedule-type {
    font-size: 8px;
    margin-top: 2px;
    min-height: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .type-icon svg {
    width: 10px;
    height: 10px;
  }

  .lapso-schedule-status {
    font-size: 8px;
    min-height: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .lapso-schedule-header-wrap {
    min-height: 24px;
  }

  .lapso-schedule-header {
    font-size: 7px;
    min-height: 14px;
    padding: 2px 3px;
    border-radius: 5px;
    line-height: 1.2;
    word-break: break-word;
    white-space: normal;
  }

  .lapso-schedule-empty-day {
    min-height: 120px;
  }

  .lapso-schedule-card.enrolled::after {
    font-size: 11px;
    letter-spacing: 0.5px;
  }

  .lapso-schedule-card.on-waitlist::after {
    font-size: 9px;
    letter-spacing: 0.5px;
  }
}

/* ── Waitlist Modals ── */

.lapso-horarios-wrapper .lapso-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
}

.lapso-horarios-wrapper .lapso-modal.is-open {
  display: flex;
}

.lapso-horarios-wrapper .lapso-modal-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.lapso-horarios-wrapper .lapso-modal--secondary .lapso-modal-container {
  position: relative;
  width: 90%;
  max-width: 600px;
  margin: 20px;
  background-color: #f4f3ec;
  border-radius: 10px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  font-family: "Matter", "Montserrat", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  box-sizing: border-box;
  animation: lapso-modal-in 0.25s ease;
  color: #000;
  min-height: 300px;
  text-align: center;
}

.lapso-horarios-wrapper .lapso-modal--secondary .lapso-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 30px;
  line-height: 1;
  color: var(--primary);
  cursor: pointer;
  padding: 4px 8px;
  font-family: "Matter", "Montserrat", sans-serif;
  transition: opacity 0.2s ease;
  z-index: 1;
}

.lapso-horarios-wrapper .lapso-modal--secondary .lapso-modal-close::before,
.lapso-horarios-wrapper .lapso-modal--secondary .lapso-modal-close::after {
  content: none !important;
  display: none !important;
}

.lapso-horarios-wrapper .lapso-modal--secondary .lapso-modal-close:hover {
  opacity: 0.7;
}

.lapso-horarios-wrapper .lapso-modal--secondary .lapso-modal-title {
  font-family: "Matter", "Montserrat", sans-serif;
  font-style: italic;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 20px;
}

.lapso-horarios-wrapper .lapso-modal--secondary .lapso-modal-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 24px;
  font-weight: 400;
}

.lapso-horarios-wrapper .lapso-modal--secondary .lapso-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.lapso-horarios-wrapper .lapso-modal--secondary .lapso-modal-btn-primary {
  display: inline-block !important;
  padding: 12px 48px !important;
  background: var(--primary, #992d2d) !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  border: 2px solid var(--primary, #992d2d) !important;
  border-radius: 25px !important;
  cursor: pointer !important;
  font-family: "Matter", "Montserrat", sans-serif !important;
  letter-spacing: 0.36px;
  transition:
    opacity 0.2s ease,
    transform 0.15s ease;
}

.lapso-horarios-wrapper
  .lapso-modal--secondary
  .lapso-modal-btn-primary:hover:not(:disabled) {
  opacity: 0.9;
  transform: translateY(-1px);
}

.lapso-horarios-wrapper
  .lapso-modal--secondary
  .lapso-modal-btn-primary:disabled {
  background: grey;
  opacity: 0.5;
  cursor: not-allowed;
}

.lapso-horarios-wrapper .lapso-modal--secondary .lapso-modal-btn-secondary {
  display: inline-block !important;
  padding: 12px 48px !important;
  background: #fff !important;
  color: var(--primary, #992d2d) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  border: 2px solid var(--primary, #992d2d) !important;
  border-radius: 25px !important;
  cursor: pointer !important;
  font-family: "Matter", "Montserrat", sans-serif !important;
  letter-spacing: 0.36px;
  transition:
    opacity 0.2s ease,
    transform 0.15s ease;
}

.lapso-horarios-wrapper
  .lapso-modal--secondary
  .lapso-modal-btn-secondary:hover {
  opacity: 0.85;
}

.lapso-horarios-wrapper
  .lapso-modal--secondary
  .lapso-modal-btn-primary::before,
.lapso-horarios-wrapper .lapso-modal--secondary .lapso-modal-btn-primary::after,
.lapso-horarios-wrapper
  .lapso-modal--secondary
  .lapso-modal-btn-secondary::before,
.lapso-horarios-wrapper
  .lapso-modal--secondary
  .lapso-modal-btn-secondary::after {
  content: none !important;
  display: none !important;
}

@keyframes lapso-modal-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 600px) {
  .lapso-horarios-wrapper .lapso-modal--secondary .lapso-modal-container {
    max-width: 90%;
    padding: 30px 20px;
  }

  .lapso-horarios-wrapper .lapso-modal--secondary .lapso-modal-title {
    font-size: 28px;
  }
}
