
.hello-world[data-v-35d964e4] {
    padding: 1em;
    background-color: red;
}


.quantity-picker[data-v-2eaacf43] {
    display: flex;
    align-items: center;
    background: var(--tmsc-color-pink);
    padding: 4px 12px;
    border-radius: 4px;
}
button[data-v-2eaacf43] {
    background: transparent;
    border: none;
    color: white;
    font-size: 2em;
    padding: 0;
    cursor: pointer;
}
button[data-v-2eaacf43]:disabled {
    background: transparent;
    cursor: not-allowed;
}
span[data-v-2eaacf43] {
    color: white;
    font-size: 1.2em;
    margin: 0 8px;
    min-width: 1em;
    text-align: center;
}


.button[data-v-725b1fda] {
  padding: 0.5rem 3.5rem!important;
  border: none;
  border-radius: 99rem;
  cursor: pointer;
  font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
  line-height: 1.5;
  transition: opacity 0.2s ease;
}
.button--primary[data-v-725b1fda] {
  background: var(--tmsc-color-pink);
  color: white;
}
.button--secondary[data-v-725b1fda] {
  background: white;
  color: var(--tmsc-color-black);
  border: 1px solid var(--tmsc-color-black);
}
.button--disabled[data-v-725b1fda] {
  opacity: 0.5;
  cursor: not-allowed;
}
.button[data-v-725b1fda]:hover:not(.button--disabled) {
  opacity: 0.8;
}


.ticket-selection {
  margin: 0 auto;
}
.ticket-selection__intro {
  text-align: center;
  margin-bottom: 2rem;
}
.ticket-selection__intro-title {
  margin: 0 0 0.5rem 0 !important;
}
.ticket-selection__list {
  margin: 20px 0;
}
.ticket-selection__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--tmsc-color-primary-900);
  color: var(--tmsc-color-white);
  margin-bottom: 1rem;
  border-radius: 4px;
}
@media (min-width: 768px) {
.ticket-selection__item {
    flex-direction: row;
    flex-wrap: wrap;
}
}
.ticket-selection__info {
  width: 100%;
}
@media (min-width: 768px) {
.ticket-selection__info {
    flex: 1 1 300px;
}
}
.ticket-selection__controls {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 768px) {
.ticket-selection__controls {
    width: auto;
    flex: 0 0 auto;
    align-items: center;
}
}
.ticket-selection__sale-label {
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--tmsc-color-black);
  display: inline-block;
  margin-bottom: 0.5rem;
  background-color: var(--tmsc-color-white);
  font-size: 0.8rem;
  text-transform: uppercase;
  line-height: 1em;
  font-weight: 700;
}
.ticket-selection__name {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.ticket-selection__price {
  color: var(--tmsc-color-white);
  margin-bottom: 0.5rem;
}
.ticket-selection__price--original {
  text-decoration: line-through;
  color: var(--tmsc-color-white);
  margin-right: 8px;
    font-size: 1.5rem;
}
.ticket-selection__price--sale {
  color: var(--tmsc-color-medium-grey);
    font-size: 1.5rem;
}
.ticket-selection__description {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
}
.ticket-selection__total {
  margin-top: 2rem;
  text-align: right;
}
.ticket-selection__total-amount {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 1rem;
}



.recipient-form {
  margin: 15px 0;
}
.form-field {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
.recipient-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

  /* Select fields should span both columns as they're usually longer */
.form-field :deep(.ticket-form-field__checkbox-group) {
    grid-column: 1 / -1;
}
}


.guest-form {
  padding:0;
}
.guest-form__fields {
  margin: 15px 0;
}
.guest-form__title {
  margin: 0 0 1rem 0;
  font-weight: bold;
}
.guest-form__button-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}


.custom-toggle-switch[data-v-0c427b92] {
  width: 40px;
  min-width: 40px;
  height: 20px;
  background: #ccc;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
}
.custom-toggle-slider[data-v-0c427b92] {
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  transition: left 0.3s ease;
}
.custom-toggle-checked[data-v-0c427b92] {
    background: var(--tmsc-color-pink);
}
.custom-toggle-checked .custom-toggle-slider[data-v-0c427b92] {
    left: 22px;
}
.custom-toggle-disabled[data-v-0c427b92] {
    opacity: 0.5;
    cursor: not-allowed;
}


.addon {
  margin: 20px 0;
}
.addon__category-title {
  background-color: var(--tmsc-color-primary-900);
  color: var(--tmsc-color-white);
  border-radius: 4px;
  padding: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.addon__category-chevron {
  transition: transform 0.3s ease;
}
.addon__category-title--expanded .addon__category-chevron {
  transform: rotate(180deg);
}
.addon-item {
  margin: 15px 0;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 4px;
}
.addon-item .recipient-form{
    margin: 0;
}
.addon-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.addon-item__title {
  margin: 0;
  font-weight: 800;
}
.addon-item__timing {
  color: #666;
  font-size: 0.9em;
  margin-bottom: 10px;
}
.addon-item__description {
  margin: 0 0 10px 0!important;
  white-space: pre-line;
}
.addon-item__more-info {
  text-decoration: none;
  font-size: 0.9em;
  color: var(--tmsc-color-black) !important;
  background: none!important;
  border: none!important;
  padding: 0;
  cursor: pointer;
}
.addon-item__more-info:hover {
  text-decoration: underline;
  color: var(--tmsc-color-pink)!important;
}
.addon-item__guest-button {
  padding: 0;
  background: none!important;
  border: none!important;
  color: var(--tmsc-color-pink);
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.9em;
}
.addon-item__guest-button:hover {
  background: #f5f5f5;
}


.ticket-configuration {
  margin: 0 auto;
}
.ticket-configuration__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}
.ticket-configuration__title {
  margin: 0;
}
.ticket-configuration__progress {
  color: #666;
  font-size: 0.9em;
  margin: 0;
}
.ticket-configuration__details {
  margin-bottom: 30px;
}
.ticket-configuration__ticket-name {
  margin: 0 0 10px 0;
  font-weight: bold;
}
.ticket-configuration__ticket-name--inactive {
  color: var(--tmsc-color-medium-grey);
  margin: 0.5rem 0;
}
.ticket-configuration__upcoming {
  margin: 2rem 0;
  padding: 1rem 0;
  border-top: 1px solid #ddd;
}
@media (min-width: 768px) {
.ticket-configuration__ticket-name, .ticket-configuration__ticket-name--inactive{
    font-size: 1.5rem;
}
}
.ticket-configuration__progress {
  color: #666;
  font-size: 0.9em;
  margin: 0;
}
.ticket-configuration__ticket-description {
  margin: 0;
  color: #666;
}
.ticket-configuration__attendee {
  margin-bottom: 30px;
}
.ticket-configuration__section-title {
  margin: 0 0 1rem 0;
    font-size: 1.5rem;
}
.ticket-configuration__addons {
  margin-bottom: 30px;
}
.ticket-configuration__addon-category {
  margin-bottom: 1rem;
}
.ticket-configuration__footer {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  padding-top: 20px;
  gap: 0.5rem;
}
@media (min-width: 768px) {
.ticket-configuration__footer{
    flex-direction: row;
    justify-content: space-between;
}
}



.ticket-checkout-flow {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.ticket-checkout-flow__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.ticket-checkout-flow__spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid var(--tmsc-color-pink);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}


.mevents-tab-align-center .mevents-schedule__list-tabs {
  justify-content: center;
}
.mevents-tab-align-left .mevents-schedule__list-tabs {
  justify-content: flex-start;
}
.mevents-tab-align-full_width .mevents-schedule__list-tab {
  flex-grow: 1;
}


.mevents-schedule[data-v-798c0503] {
  margin-bottom: 2rem;
}
.mevents-schedule__list-tabs[data-v-798c0503] {
  display: flex;
  flex-flow: row;
  gap: 10px;
  margin: 1px 0;
  margin-bottom: 1.5rem;
  overflow-x: auto;
}
@media (max-width: 767px) {
.mevents-schedule__list-tabs[data-v-798c0503] {
    display: none;
}
}
.mevents-schedule__list-tab[data-v-798c0503] {
  padding: 10px;
  background-color: #333333;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
}
.mevents-schedule__list-tab--active[data-v-798c0503],
.mevents-schedule__list-tab[data-v-798c0503]:hover {
  background-color: #666666;
  transition: 0.2s ease-in;
}
.mevents-schedule__accordion-header[data-v-798c0503] {
  display: block;
  padding: 10px;
  margin-bottom: 0.5rem;
  background-color: #333333;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
}
.mevents-schedule__accordion-header--active[data-v-798c0503],
.mevents-schedule__accordion-header[data-v-798c0503]:hover {
  background-color: #666666;
  transition: 0.2s ease-in;
}
@media (min-width: 768px) {
.mevents-schedule__accordion-header[data-v-798c0503] {
    display: none;
}
}
.mevents-schedule__day-section[data-v-798c0503] {
  margin-bottom: 0;
}
.mevents-schedule__day-heading[data-v-798c0503] {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.mevents-schedule__day-content[data-v-798c0503] {
  margin-bottom: 2rem;
}
.mevents-schedule__sessions[data-v-798c0503] {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 767px) {
.mevents-schedule__sessions[data-v-798c0503] {
    gap: 0;
}
}
.mevents-schedule__row[data-v-798c0503] {
  display: flex;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  flex-direction: column;
}
@media (min-width: 767px) {
.mevents-schedule__row[data-v-798c0503]:not(.mevents-schedule__row--stacked) {
    flex-direction: row;
    border-bottom-width: 0;
}
}
.mevents-schedule__row--stacked[data-v-798c0503] {
  flex-direction: column;
}
.mevents-schedule__row--break[data-v-798c0503] {
  background-color: #f6f6f6;
}
@media (min-width: 767px) {
.mevents-schedule__row[data-v-798c0503]:last-child {
    border-bottom-width: 1px;
}
}
.mevents-schedule__row-time-col[data-v-798c0503] {
  padding: 15px 15px 0 15px;
}
@media (min-width: 767px) {
.mevents-schedule__row-time-col[data-v-798c0503] {
    flex: 0 0 170px;
}
}
.mevents-schedule__row-time-wrap[data-v-798c0503] {
  display: flex;
  gap: 0 1rem;
}
@media (min-width: 767px) {
.mevents-schedule__row-time-wrap[data-v-798c0503]:not(.mevents-schedule__row--stacked .mevents-schedule__row-time-wrap) {
    flex-direction: column;
}
}
.mevents-schedule__row--stacked .mevents-schedule__row-time-wrap[data-v-798c0503] {
  flex-direction: row;
  gap: 0 0.4em;
}
.mevents-schedule__row-content[data-v-798c0503] {
  flex: 1;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mevents-schedule__session-title[data-v-798c0503] {
  display: block;
  font-weight: 700;
  color: #000000;
}
.mevents-schedule__speakers[data-v-798c0503] {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  color: #666666;
  font-size: 0.9rem;
}
.mevents-schedule__location[data-v-798c0503] {
  display: flex;
  align-items: center;
  color: #666666;
  font-size: 12px;
}
.mevents-schedule__location-icon[data-v-798c0503] {
  margin-right: 5px;
}
.mevents-schedule__tags[data-v-798c0503] {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.mevents-schedule__tag[data-v-798c0503] {
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: #f0f0f0;
  color: #333333;
}
.mevents-schedule__description-btn[data-v-798c0503] {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.3em;
  font-size: 12px;
  color: inherit;
  cursor: pointer;
}
.mevents-schedule__description-icon[data-v-798c0503] {
  display: flex;
  align-items: center;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}
.mevents-schedule__description-icon svg[data-v-798c0503] {
  width: 100%;
  height: 100%;
}
.mevents-schedule__description-preview[data-v-798c0503] {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3em;
  font-size: 12px;
}
.mevents-schedule__description-preview .mevents-schedule__description-icon[data-v-798c0503] {
  align-self: flex-start;
  margin-top: 0.1em;
}
.mevents-schedule__description-first-sentence[data-v-798c0503] {
  display: flex;
  align-items: center;
  gap: 0.3em;
  font-size: 12px;
  color: inherit;
}
.mevents-schedule__description-first-sentence .mevents-schedule__description-icon[data-v-798c0503] {
  display: flex;
  align-items: center;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}
.mevents-schedule__description-first-sentence .mevents-schedule__description-icon svg[data-v-798c0503] {
  width: 100%;
  height: 100%;
}
.mevents-schedule__description-first-paragraph[data-v-798c0503] {
  display: flex;
  align-items: center;
  gap: 0.3em;
  font-size: 12px;
  color: inherit;
}
.mevents-schedule__description-first-paragraph .mevents-schedule__description-icon[data-v-798c0503] {
  display: flex;
  align-items: center;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}
.mevents-schedule__description-first-paragraph .mevents-schedule__description-icon svg[data-v-798c0503] {
  width: 100%;
  height: 100%;
}
.mevents-schedule__description-inline[data-v-798c0503] {
  margin-top: 0.5rem;
  line-height: 1.6;
}
.mevents-schedule__speaker-images[data-v-798c0503] {
  display: inline-flex;
  align-items: center;
}
.mevents-schedule__speaker-image[data-v-798c0503] {
  display: inline-block;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.mevents-schedule__speaker-link[data-v-798c0503] {
  cursor: pointer;
  text-decoration: underline;
}
.mevents-schedule__speaker-link[data-v-798c0503]:hover {
  opacity: 0.8;
}
img.mevents-schedule__speaker-link[data-v-798c0503] {
  text-decoration: none;
}
img.mevents-schedule__speaker-link[data-v-798c0503]:hover {
  opacity: 0.8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}



.speaker-image[data-v-c7f4c11a] {
  width: 100%;
  height: 100%;
}
.speaker-image img[data-v-c7f4c11a],
.speaker-image svg[data-v-c7f4c11a] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.mevents_speakers[data-v-0081199f] {
  margin-bottom: 2rem;
}
.mevents_speakers__grid[data-v-0081199f] {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
@media (min-width: 480px) {
.mevents_speakers__grid[data-v-0081199f] {
    grid-template-columns: repeat(2, 1fr);
}
}
@media (min-width: 768px) {
.mevents_speakers__grid[data-v-0081199f] {
    grid-template-columns: repeat(3, 1fr);
}
}
@media (min-width: 992px) {
.mevents_speakers__grid[data-v-0081199f] {
    grid-template-columns: repeat(4, 1fr);
}
}
.mevents_speakers__carousel-wrapper[data-v-0081199f] {
  position: relative;
}
.mevents_speakers__carousel-nav[data-v-0081199f] {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 20px;
}
.mevents_speakers__carousel-arrow[data-v-0081199f] {
  width: 40px;
  height: 40px;
  background-color: #666666;
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, opacity 0.2s;
}
.mevents_speakers__carousel-arrow[data-v-0081199f]:hover:not(:disabled) {
  background-color: #555555;
}
.mevents_speakers__carousel-arrow[data-v-0081199f]:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.mevents_speakers__carousel-arrow svg[data-v-0081199f],
.mevents_speakers__carousel-arrow i[data-v-0081199f] {
  fill: currentColor;
  color: inherit;
}
.mevents_speakers__carousel[data-v-0081199f] {
  --slides-to-show: 1;
  --carousel-gap: 20px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--slides-to-show) - 1) * var(--carousel-gap)) / var(--slides-to-show));
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.mevents_speakers__carousel[data-v-0081199f]::-webkit-scrollbar {
  display: none;
}
@media (min-width: 480px) {
.mevents_speakers__carousel[data-v-0081199f] {
    --slides-to-show: 2;
}
}
@media (min-width: 768px) {
.mevents_speakers__carousel[data-v-0081199f] {
    --slides-to-show: 3;
}
}
@media (min-width: 992px) {
.mevents_speakers__carousel[data-v-0081199f] {
    --slides-to-show: 4;
}
}
.mevents_speakers__carousel .mevents_speakers__speaker[data-v-0081199f] {
  scroll-snap-align: start;
}
.mevents_speakers__speaker[data-v-0081199f] {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s;
}
.mevents_speakers__speaker[data-v-0081199f]:hover {
  transform: translateY(-2px);
}
.mevents_speakers__speaker-image[data-v-0081199f] {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 50%;
}
.mevents_speakers__speaker-name-wrap[data-v-0081199f] {
  display: flex;
  align-items: center;
  gap: 0.4em;
  padding: 1rem;
}
.mevents_speakers__speaker-name[data-v-0081199f] {
  text-align: center;
  font-size: 16px;
}
.mevents_speakers__speaker-bio-icon[data-v-0081199f] {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.mevents_speakers__speaker-bio-icon svg[data-v-0081199f] {
  width: 100%;
  height: 100%;
}
.mevents_speakers__dots[data-v-0081199f] {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.mevents_speakers__dot[data-v-0081199f] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cccccc;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.2s;
}
.mevents_speakers__dot--active[data-v-0081199f] {
  background-color: #333333;
}
.mevents_speakers__modal[data-v-0081199f] {
  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: 9999999999;
  padding: 20px;
}
.mevents_speakers__modal-content[data-v-0081199f] {
  background-color: white;
  border-radius: 8px;
  width: 100%;
  max-width: 1000px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.mevents_speakers__modal-header[data-v-0081199f] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  background-color: #333333;
  z-index: 1;
}
.mevents_speakers__modal-header h3[data-v-0081199f] {
  margin: 0;
  font-size: 18px;
  color: #fff;
  font-style: normal;
}
.mevents_speakers__modal-close[data-v-0081199f] {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}
.mevents_speakers__modal-close[data-v-0081199f]:hover {
  color: #fff;
}
.mevents_speakers__modal-body[data-v-0081199f] {
  padding: 20px;
  line-height: 1.6;
}
.mevents_speakers__modal-body p[data-v-0081199f] {
  margin-bottom: 1em;
}
.mevents_speakers__speaker-profile[data-v-0081199f] {
  display: flex;
  flex-direction: column;
}
@media (min-width: 767px) {
.mevents_speakers__speaker-profile[data-v-0081199f] {
    flex-direction: row;
    gap: 20px;
}
}
.mevents_speakers__speaker-profile-image[data-v-0081199f] {
  width: 150px;
  height: 150px;
  overflow: hidden;
  margin: 0 auto 20px;
  flex-shrink: 0;
}
@media (min-width: 767px) {
.mevents_speakers__speaker-profile-image[data-v-0081199f] {
    margin: 0;
}
}
.mevents_speakers__speaker-profile-image img[data-v-0081199f] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mevents_speakers__speaker-profile-bio[data-v-0081199f] {
  flex: 1;
}

/* ── Card View (Mexico) modal ───────────────────────────── */
.mevents_speakers__modal-content--card-mexico[data-v-0081199f] {
  position: relative;
  display: flex;
  flex-direction: row;
  background-color: var(--modal-card-bg, #333);
  border-radius: 8px;
  height: 26rem;
  width: 50rem;
  max-width: 95vw;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}
.mevents_speakers__modal-close--card[data-v-0081199f] {
  position: absolute;
  top: 4px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  z-index: 10;
  padding: 0;
}
.mevents_speakers__modal-close--card[data-v-0081199f]:hover {
  color: #fff;
}
.mevents_speakers__modal-image[data-v-0081199f] {
  position: relative;
  flex-shrink: 0;
  width: 35%;
  align-self: stretch;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 767px) {
.mevents_speakers__modal-image[data-v-0081199f] {
    display: none;
}
}
.mevents_speakers__modal-image[data-v-0081199f] img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  z-index: 1;
}
.mevents_speakers__modal-info[data-v-0081199f] {
  flex: 1;
  padding: 40px 40px 16px 24px;
  overflow-y: auto;
  position: relative;
  z-index: 2;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}
.mevents_speakers__modal-info[data-v-0081199f]::-webkit-scrollbar {
  width: 4px;
}
.mevents_speakers__modal-info[data-v-0081199f]::-webkit-scrollbar-track {
  background: transparent;
}
.mevents_speakers__modal-info[data-v-0081199f]::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}
.mevents_speakers__modal-info[data-v-0081199f]::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}
.mevents_speakers__modal-name[data-v-0081199f] {
  margin: 0 0 1rem;
  color: #fff;
  font-style: normal;
}
.mevents_speakers__modal-bio[data-v-0081199f] {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}
.mevents_speakers__modal-bio p[data-v-0081199f] {
  margin-bottom: 1em;
}
.mevents_speakers__modal-image[data-v-0081199f] .speaker-image {
  height: auto;
}
.mevents_speakers__load-more[data-v-0081199f] {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.mevents_speakers__load-more-btn[data-v-0081199f] {
  background-color: transparent;
  color: #000;
  border: 1px solid;
  padding: 12px 24px;
  border-radius: 25px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}
.mevents_speakers__load-more-btn[data-v-0081199f]:hover {
  background-color: #666666;
  color: #fff;
  transform: translateY(-1px);
}
.mevents_speakers__load-more-btn[data-v-0081199f]:active {
  transform: translateY(0);
  background-color: transparent;
  color: #000;
}


.mtp-step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  gap: 0;
}
.mtp-step-indicator__step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #9e9e9e;
}
.mtp-step-indicator__step--active {
  color: #333;
}
.mtp-step-indicator__step--active .mtp-step-indicator__circle {
  background-color: #ed21cb;
  color: #fff;
}
.mtp-step-indicator__step--completed .mtp-step-indicator__circle {
  background-color: #477b00;
  color: #fff;
}
.mtp-step-indicator__circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  background-color: #e0e0e0;
  color: #666;
  flex-shrink: 0;
}
.mtp-step-indicator__label {
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}
.mtp-step-indicator__connector {
  width: 40px;
  height: 2px;
  background-color: #e0e0e0;
  margin: 0 0.75rem;
}
.mtp-step-indicator__step--completed + .mtp-step-indicator__step .mtp-step-indicator__connector,
.mtp-step-indicator__step--completed .mtp-step-indicator__connector {
  background-color: #477b00;
}


.mtp-order-summary {
  //background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
}
.mtp-order-summary__title {
  margin: 0 0 1rem 0;
  font-size: 1.125rem;
  font-weight: 700;
}
.mtp-order-summary__empty {
  color: #999;
  font-size: 0.875rem;
}
.mtp-order-summary__items {
  margin-bottom: 1rem;
}
.mtp-order-summary__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e0e0e0;
  gap: 1rem;
}
.mtp-order-summary__item-description {
  font-size: 0.875rem;
  flex: 1;
}
.mtp-order-summary__item-price {
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
}
.mtp-order-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  margin-top: 0.5rem;
}
.mtp-order-summary__total-label {
  font-weight: 700;
}
.mtp-order-summary__total-amount {
  font-weight: 700;
  font-size: 1.125rem;
}
.mtp-order-summary__note {
  margin: 1rem 0 0 0;
  font-size: 0.75rem;
  color: #666;
  line-height: 1.4;
}


.mtp-ticket-selection__intro {
  margin-bottom: 1.5rem;
}
.mtp-ticket-selection__title {
  margin: 0 0 0.5rem 0;
  font-size: 1.75rem;
  font-weight: 700;
}
.mtp-ticket-selection__subtitle {
  margin: 0;
  color: #666;
}
.mtp-ticket-selection__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mtp-ticket-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.mtp-ticket-card__header {
  padding: 0.75rem 1.25rem;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}
.mtp-ticket-card__header-subtitle {
  display: block;
  font-weight: 400;
  font-size: 0.8rem;
  opacity: 0.9;
  margin-top: 0.15rem;
}
.mtp-ticket-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
.mtp-ticket-card__body {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}
}
.mtp-ticket-card__content {
  flex: 1;
}
.mtp-ticket-card__description {
  font-size: 0.9rem;
  line-height: 1.5;
}
.mtp-ticket-card__description p {
  margin: 0 0 0.25rem 0;
}
.mtp-ticket-card__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  flex-shrink: 0;
}
.mtp-ticket-card__price-original {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
}
.mtp-ticket-card__price-current {
  font-size: 1.5rem;
  font-weight: 700;
}
.mtp-ticket-card__quantity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.mtp-ticket-card__qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  transition: background-color 0.15s, border-color 0.15s;
  padding: 0;
  color: #333;
}
.mtp-ticket-card__qty-btn:hover:not(.mtp-ticket-card__qty-btn--disabled) {
  background-color: #f0f0f0;
  border-color: #999;
}
.mtp-ticket-card__qty-btn--disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.mtp-ticket-card__qty-value {
  min-width: 1.5rem;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
}
.mtp-ticket-selection__footer {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}



.mtp-form-field {
  display: flex;
  flex-direction: column;
}
.mtp-form-field__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.25rem;
}
.mtp-form-field__input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 1rem;
  line-height: 1.5;
  height: 44px;
  background-color: #fff;
  box-sizing: border-box;
  transition: border-color 0.15s;
}
.mtp-form-field__input:focus {
  outline: none;
  border-color: #666;
}
.mtp-form-field__input--error {
  border-color: #e53935;
}
.mtp-form-field__error {
  color: #e53935;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}


.mtp-form-field__select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 1rem;
  line-height: 1.5;
  height: 44px;
  background-color: #fff;
  box-sizing: border-box;
  transition: border-color 0.15s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 viewBox=%270 0 12 12%27%3E%3Cpath fill=%27%23333%27 d=%27M6 8L1 3h10z%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.mtp-form-field__select:focus {
  outline: none;
  border-color: #666;
}
.mtp-form-field__select--error {
  border-color: #e53935;
}


.mtp-field-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
.mtp-field-group {
    grid-template-columns: 1fr 1fr;
}
.mtp-field-group__field--full-width {
    grid-column: 1 / -1;
}
}


.mtp-attendee-details__intro {
  margin-bottom: 1.5rem;
}
.mtp-attendee-details__title {
  margin: 0 0 0.5rem 0;
  font-size: 1.75rem;
  font-weight: 700;
}
.mtp-attendee-details__subtitle {
  margin: 0;
  color: #666;
  line-height: 1.5;
}
.mtp-attendee-details__sections {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mtp-attendee-section {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.mtp-attendee-section__header {
  padding: 0.75rem 1.25rem;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}
.mtp-attendee-section__body {
  padding: 1.5rem;
}
.mtp-attendee-section__group {
  margin-bottom: 1.5rem;
}
.mtp-attendee-section__group:last-child {
  margin-bottom: 0;
}
.mtp-attendee-section__group-title {
  margin: 0 0 0.75rem 0;
  font-size: 1rem;
  font-weight: 700;
  color: #333;
}
.mtp-attendee-details__footer {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.mtp-review__intro {
  margin-bottom: 1.5rem;
}
.mtp-review__title {
  margin: 0 0 0.5rem 0;
  font-size: 1.75rem;
  font-weight: 700;
}
.mtp-review__subtitle {
  margin: 0;
  color: #666;
  line-height: 1.5;
}
.mtp-review__sections {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mtp-review-section {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.mtp-review-section__header {
  padding: 0.75rem 1.25rem;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}
.mtp-review-section__body {
  padding: 1.5rem;
}
.mtp-review-section__group {
  margin-bottom: 1.25rem;
}
.mtp-review-section__group:last-child {
  margin-bottom: 0;
}
.mtp-review-section__group-title {
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #333;
}
.mtp-review-section__fields {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
}
.mtp-review-section__field {
  font-size: 0.875rem;
  color: #555;
}
.mtp-review-section__field-label {
  color: #888;
  margin-right: 0.25rem;
}
.mtp-review-section__field-value {
  color: #333;
}
.mtp-review__footer {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.mtp {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.mtp__layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
.mtp__layout {
    flex-direction: row;
    align-items: flex-start;
}
.mtp__main {
    flex: 1;
    min-width: 0;
    position: relative;
}
.mtp__sidebar {
    width: 320px;
    flex-shrink: 0;
    position: sticky;
    top: 120px;
}
}
.mtp__error {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background-color: #fdecea;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
  color: #721c24;
  font-size: 0.9rem;
}
.mtp__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  border-radius: 8px;
}
.mtp__spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #e0e0e0;
  border-top: 4px solid #ed21cb;
  border-radius: 50%;
  animation: mtp-spin 0.8s linear infinite;
}
@keyframes mtp-spin {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}

/* Shared button styles */
.mtp-btn {
  padding: 0.5rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.15s, opacity 0.15s;
}
.mtp-btn--primary {
  background-color: #ed21cb;
  color: #fff;
  border-radius: 999px;
}
.mtp-btn--primary:hover:not(:disabled) {
  background-color: #ed21cb;
  color: #fff;
}
.mtp-btn--secondary {
  background-color: transparent;
  color: #8f8c8c;
  border: none;
}
.mtp-btn--secondary:hover:not(:disabled) {
  background-color: transparent;
  color: #000;
}
.mtp-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.mtp-btn:disabled:hover {
  background-color: inherit;
  color: inherit;
  border: none;
  box-shadow: none;
  transform: none;
}
.mtp-btn--primary:disabled:hover {
  background-color: #ed21cb;
  color: #fff;
}
.mtp-btn--secondary:disabled:hover {
  background-color: transparent;
  color: #8f8c8c;
}


.simple-ticket-selector[data-v-e5a3a256] {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.simple-ticket-selector__overlay[data-v-e5a3a256] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.simple-ticket-selector__spinner[data-v-e5a3a256] {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #333;
  border-radius: 50%;
  animation: spin-e5a3a256 1s linear infinite;
}
@keyframes spin-e5a3a256 {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}
.simple-ticket-selector__product-list[data-v-e5a3a256] {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.simple-ticket-selector__product-item[data-v-e5a3a256] {
  display: flex;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 768px) {
.simple-ticket-selector__product-item[data-v-e5a3a256] {
    flex-direction: column;
    align-items: stretch;
}
}
.simple-ticket-selector__product-details[data-v-e5a3a256] {
  flex: 1;
}
.simple-ticket-selector__product-name[data-v-e5a3a256] {
  margin: 0 0 1rem 0;
  font-size: 26px;
  font-weight: 600;
}
.simple-ticket-selector__short-description[data-v-e5a3a256] {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.simple-ticket-selector__price[data-v-e5a3a256] {
  font-weight: 600;
  font-size: 1.25rem;
}
.simple-ticket-selector__quantity-selector[data-v-e5a3a256] {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}
.simple-ticket-selector__quantity-btn[data-v-e5a3a256] {
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  padding: 0;
  border: 2px solid currentColor;
  border-radius: 50%;
  background-color: transparent;
  color: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  transition: opacity 0.2s, transform 0.1s;
  flex-shrink: 0;
}
.simple-ticket-selector__quantity-btn[data-v-e5a3a256]:hover:not(:disabled) {
  transform: scale(1.05);
}
.simple-ticket-selector__quantity-btn[data-v-e5a3a256]:active:not(:disabled) {
  transform: scale(0.95);
}
.simple-ticket-selector__quantity-btn[data-v-e5a3a256]:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.simple-ticket-selector__quantity[data-v-e5a3a256] {
  min-width: 40px;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
}
.simple-ticket-selector__footer[data-v-e5a3a256] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.simple-ticket-selector__total[data-v-e5a3a256] {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.simple-ticket-selector__total-label[data-v-e5a3a256] {
  /* Inherits from description typography by default */
}
.simple-ticket-selector__total-amount[data-v-e5a3a256] {
  font-size: 26px;
  font-weight: 600;
}
.simple-ticket-selector__submit-btn[data-v-e5a3a256] {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  background-color: #000000;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}
.simple-ticket-selector__submit-btn[data-v-e5a3a256]:hover:not(:disabled) {
  background-color: #000000;
}
.simple-ticket-selector__submit-btn[data-v-e5a3a256]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media (max-width: 768px) {
.simple-ticket-selector__footer[data-v-e5a3a256] {
    flex-direction: column;
    align-items: stretch;
}
}

