.hora-event-agenda__item.hidden {
  display: none;
}

.hora-powered-by-link {
  color: var(--hora-primary-color, #000);
}

.hora-event-agenda__tabs {
  display: flex;
  margin-bottom: 20px;
  list-style: none;
  padding: 0;
}

.hora-event-agenda__tab:not(:last-child) {
  margin-right: 10px;
}

.single-hora_event .hora-event-register-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  display: none;
}

.hora-event-container {
  max-width: var(--hora-content-width, 1200px);
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
  position: relative;
}

.hora-event-register-modal-dialog {
  max-width: 600px;
  width: 100%;
  background-color: var(--hora-modal-bg, #fff);
  border-radius: 16px;
  padding: 24px;
  padding-top: 32px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-inline: 24px;
}

.hora-event-register-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  font-size: 24px;
  color: var(--hora-modal-close-color, #000);
  background: none;
  border: none;
}

.hora-event-register-modal-close:hover {
  color: var(--hora-modal-close-hover-color, #020d80);
}

form[data-event-register-form] input[type="text"]:not(.iti__search-input),
form[data-event-register-form] input[type="email"],
form[data-event-register-form] input[type="tel"],
form[data-event-register-form] input[type="number"],
form[data-event-register-form] input[type="date"],
form[data-event-register-form] input[type="time"],
form[data-event-register-form] input[type="url"],
form[data-event-register-form] select,
form[data-event-register-form] textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--hora-input-border-color, #ced4da);
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
}

/* 
* Event Single Styles
* This section contains styles for the event single page layout default layout
*/

.hora-events-single-event.default-template .hora-events-single-event-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hora-events-single-event.default-template
  .hora-events-single-event-main
  > div:nth-last-child(1 of .hora-event-section):not(.event-sticky-cta) {
  padding-bottom: 160px;
}

.hora-events-single-event.default-template .event-title-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
}

.hora-events-single-event.default-template
  .event-title-section
  .hora-event-header-btn {
  margin-left: auto;
}

.hora-events-single-event.default-template .hora-event-register-btn {
  align-self: center;
  margin-left: auto;
}

.hora-events-single-event.default-template .hora-events-single-event-header {
  margin: 0;
  margin-bottom: 32px;
}

.hora-events-single-event.default-template
  .hora-events-single-event-featured-image
  img {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  aspect-ratio: 16 / 9;
}

.hora-events-single-event.default-template .event-single-date {
  display: flex;
  align-items: center;
}
.hora-events-single-event.default-template .event-single-date-box {
  border: 1px solid var(--hora-border-color, rgba(0, 0, 0, 0.1));
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  aspect-ratio: 1 / 1;
  align-items: center;
  background: var(--hora-date-box-bg, #fff);
}
.hora-events-single-event.default-template .event-single-date-day {
  font-weight: bold;
  font-size: 40px;
  color: var(--hora-date-day-color, #000);
  text-align: center;
  line-height: 1;
}
.hora-events-single-event.default-template .event-single-date-month {
  font-size: 14px;
  color: var(--hora-date-month-color, #020d80);
  margin-top: 2px;
  line-height: 1.2;
  text-align: center;
  text-wrap: nowrap;
}
.hora-events-single-event.default-template .event-single-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hora-events-single-event.default-template .event-single-category {
  background: var(--hora-category-bg, rgba(2, 13, 128, 0.2));
  color: var(--hora-category-color, #020d80);
  border-radius: 50px;
  font-size: 12px;
  padding: 4px 8px;
  display: inline-block;
}
.hora-events-single-event.default-template .event-single-title {
  font-weight: bold;
  font-size: 40px;
  color: var(--hora-title-color, #000);
  line-height: 1.2;
}
.hora-events-single-event.default-template .event-single-btn {
  background: var(--hora-btn-bg, #000);
  color: var(--hora-btn-color, #fff);
  border-radius: 50px;
  border: 1px solid var(--hora-btn-border-color, #000);
  font-size: 14px;
  padding: 8px 24px;
  text-decoration: none;
  margin-left: auto;
  transition:
    background 0.2s,
    color 0.2s;
  display: inline-block;
}
.hora-events-single-event.default-template .event-single-btn:hover {
  background: var(--hora-btn-hover-bg, #fff);
  color: var(--hora-btn-hover-color, #000);
}

@media (max-width: 700px) {
  .hora-events-single-event.default-template .event-single-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .hora-events-single-event.default-template .event-single-info {
    margin-left: 0;
  }
  .hora-events-single-event.default-template .event-single-btn {
    margin-left: 0;
    margin-top: 16px;
  }
}

.hora-events-single-event.default-template .event-info-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
}

.hora-events-single-event.default-template .event-info-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

.hora-events-single-event.default-template .event-info-title {
  opacity: 0.6;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.hora-events-single-event.default-template .event-info-value {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin: 0;
  color: inherit;
}

.hora-events-single-event.default-template .event-info-value-container {
  display: flex;
  flex-direction: row;
  align-items: top;
  gap: 8px;
  color: var(--hora-info-value-color, #000);
}

.hora-events-single-event.default-template
  .event-info-value-container.hora-event-location
  a {
  text-decoration: underline;
}

.hora-events-single-event.default-template .event-info-value-container svg {
  flex-shrink: 0;
}

.hora-events-single-event.default-template .event-info-organizers {
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.hora-events-single-event.default-template .event-info-organizer {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hora-events-single-event.default-template .event-info-organizer-image {
  height: 45px;
  width: auto;
  object-fit: cover;
}

.hora-events-single-event.default-template .event-info-organizer-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

.hora-events-single-event.default-template .event-info-organizer-name {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 19.2px */
}

.hora-events-single-event.default-template .event-info-organizer-contact {
  display: flex;
  flex-direction: row;
  align-items: center;

  color: var(--Black, #000);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 16.8px */
  text-decoration-line: underline;
}

.hora-events-single-event.default-template .event-sticky-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 32px;
  gap: 16px;
  z-index: 300;
  transition: all 0.3s ease-in-out;
  border-radius: var(--hora-border-radius, 0px);
}

.hora-events-single-event.default-template .event-sticky-cta.hora-fixed {
  position: sticky;
}

.hora-events-single-event.default-template .hora-event-agenda,
.hora-event-agenda {
  display: flex;
  flex-direction: column;
}

.hora-events-single-event.default-template .hora-event-heading,
.hora-event-agenda .hora-event-heading {
  margin-block: 16px;
}

.hora-events-single-event.default-template .hora-event-agenda__tabs,
.hora-event-agenda .hora-event-agenda__tabs {
  margin-block: 24px;
}

.hora-events-single-event.default-template .hora-event-agenda__tab-button,
.hora-event-agenda .hora-event-agenda__tab-button {
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: transparent;
  cursor: pointer;
}
.hora-events-single-event.default-template
  .hora-event-agenda__tab-button.active,
.hora-events-single-event.default-template .hora-event-agenda__tab-button:hover,
.hora-event-agenda .hora-event-agenda__tab-button.active,
.hora-event-agenda .hora-event-agenda__tab-button:hover {
  background: #000;
  color: #fff;
}

.hora-events-single-event.default-template .hora-event-agenda-section,
.hora-event-agenda .hora-event-agenda-section {
  display: flex;
  flex-direction: row;
  padding-block: 16px;
}

.hora-events-single-event.default-template
  .hora-event-agenda-section:not(:last-child),
.hora-event-agenda .hora-event-agenda-section:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.hora-events-single-event.default-template
  .hora-event-agenda-section:first-child,
.hora-event-agenda .hora-event-agenda-section:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.hora-events-single-event.default-template
  .hora-event-agenda__item
  .hora-event-agenda-date-value,
.hora-event-agenda .hora-event-agenda__item .hora-event-agenda-date-value {
  width: 120px;
  display: flex;
}

.hora-events-single-event.default-template
  .hora-event-agenda__item
  .hora-event-agenda-date-value,
.hora-events-single-event.default-template .hora-event-agenda-title,
.hora-event-agenda .hora-event-agenda__item .hora-event-agenda-date-value,
.hora-event-agenda .hora-event-agenda-title {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.hora-events-single-event.default-template .hora-event-agenda-type,
.hora-event-agenda .hora-event-agenda-type {
  align-self: flex-start;
  padding: 2px 10px;
  border: 1px solid var(--hora-color-border);
  border-radius: var(--hora-radius-pill);
  background: var(--hora-color-primary-subtle);
  color: var(--hora-color-text);
  font-size: 12px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hora-events-single-event.default-template
  .hora-event-agenda__item
  .hora-event-agenda-content,
.hora-event-agenda .hora-event-agenda__item .hora-event-agenda-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.hora-events-single-event.default-template
  .hora-event-agenda__item
  .hora-event-agenda-content
  p,
.hora-event-agenda .hora-event-agenda__item .hora-event-agenda-content p {
  margin: 0;
}

.hora-events-single-event.default-template .hora-event-speakers {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.hora-events-single-event.default-template .hora-event-speakers-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

.hora-events-single-event.default-template .hora-event-speaker {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hora-events-single-event.default-template .hora-event-speaker-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 16px;
  object-position: top center;
}

.hora-events-single-event.default-template .hora-event-speaker-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.hora-events-single-event.default-template .hora-event-speaker-name {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.hora-events-single-event.default-template .hora-event-speaker-position {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin: 0;
}

.hora-events-single-event.default-template .hora-event-partners-group__title {
  margin: 0;
}

.hora-events-single-event.default-template .hora-event-partners-group-lists {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hora-events-single-event.default-template .hora-event-partners-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hora-events-single-event.default-template .hora-event-partners-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 24px;
}

.hora-events-single-event.default-template .hora-event-partner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.hora-events-single-event.default-template .hora-event-partner-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: contain;
  border-radius: 16px;
}

.hora-events-single-event.default-template .hora-event-partner-name {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.hora-events-single-event.default-template .hora-event-agenda-moderators,
.hora-event-agenda .hora-event-agenda-moderators {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hora-events-single-event.default-template .hora-event-agenda-speaker img,
.hora-event-agenda .hora-event-agenda-speaker img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}

.hora-events-single-event.default-template .hora-event-agenda-peoples,
.hora-event-agenda .hora-event-agenda-peoples {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.hora-events-single-event.default-template .hora-event-agenda-speaker-role,
.hora-event-agenda .hora-event-agenda-speaker-role {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  color: #020d80;
}

.hora-events-single-event.default-template .hora-event-agenda-speaker-name,
.hora-event-agenda .hora-event-agenda-speaker-name {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  color: #000;
}

.hora-events-single-event.default-template .hora-event-agenda-speaker-position,
.hora-event-agenda .hora-event-agenda-speaker-position {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

#quick-checkout-button {
  position: fixed;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}

.single-hora_event .btn-view-register,
.single-hora_event .hora-event-register-btn {
  display: flex;
  padding: 6px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  background: var(--hora-color-primary);
  border-radius: var(--hora-radius, 0px);
  border: none;

  color: var(--hora-color-on-primary);
  font-family: inherit;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 22.4px */
}

@media screen and (max-width: 768px) {
  .hora-events-single-event.default-template .hora-event-speakers-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .hora-events-single-event.default-template .hora-event-partners-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .hora-events-single-event.default-template .event-sticky-cta {
    padding: 16px;
  }

  .hora-events-single-event.default-template .event-sticky-cta-title {
    font-size: 16px;
  }

  .hora-events-single-event.default-template .hora-event-header-btn {
    display: none;
  }

  .hora-events-single-event.default-template .event-single-title {
    font-size: 26px;
  }
  .hora-events-single-event.default-template .hora-event-agenda-peoples,
  .hora-event-agenda .hora-event-agenda-peoples {
    display: flex;
    flex-direction: row;
    gap: 16px;
    overflow-x: auto;
  }

  .hora-events-single-event.default-template .event-single-date-day {
    font-size: 32px;
  }
  .hora-events-single-event.default-template .event-title-section {
    gap: 16px;
  }

  .hora-events-single-event.default-template .event-info-value {
    font-size: 16px;
  }

  .hora-events-single-event.default-template .event-info-organizers {
    flex-direction: column;
    gap: 16px;
  }

  .hora-events-single-event.default-template .event-info-value-container svg {
    width: 16px;
    height: 16px;
  }

  .hora-events-single-event.default-template .event-single-date-box {
    padding: 12px;
  }

  .hora-events-single-event.default-template .hora-event-agenda-section,
  .hora-event-agenda .hora-event-agenda-section {
    flex-direction: column;
    gap: 8px;
  }
  .hora-event-register-modal-dialog {
    margin-inline: 0;
  }
}
