/** Anchors */
.schedule-anchors__button-group {
    display: flex;
    flex-direction: row;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.schedule-anchors__button-group .elementor-widget-button {
    margin-right: 5px;
}
/*.schedule-anchors__button-group .elementor-widget-button,
.schedule-anchors__button-group .elementor-button {
    width: 100%!important;
}*/
/** Day Title */
.category-wrapper {
    margin: 36px 0px 4px 0px;
    padding: 16px 0px;
    background-color: var( --e-global-color-accent );
    border-radius: 4px 4px 0px 0px;
    text-align: center;
}

.category-day {
    display: inline-block;
    font-weight: bold;
    color: var( --e-global-color-primary );
    border-bottom: 2px solid var( --e-global-color-primary );
    margin-bottom: 16px;
    font-size: 0.9em;
    clear: both;

}

.category-title {
    margin-bottom: 0;
    color: var( --e-global-color-primary )!important;
    font-family: var( --e-global-typography-primary-font-family ), Sans-serif;
    font-weight: var( --e-global-typography-primary-font-weight );
    text-align: center;
}

/** Schedule Loop */
.schedule-listing .schedule-card:last-of-type {
    border-radius: 0px 0px 8px 8px;
}

.schedule-card {
    background-color: #fff;
    margin-bottom: 4px;
}

/** column one */
.schedule-listing .schedule-first-column .elementor-column-wrap {
    background-color: #F9F9F9;
    padding: 48px 48px 48px 48px!important;
    border-radius: 8px 0px 0px 8px;
}

.schedule-listing .schedule-first-column .elementor-heading-title {
    color: var( --e-global-color-secondary );
}

/** column two */
.schedule-listing .schedule-second-column .elementor-column-wrap {
    padding: 48px 24px!important;
    border-radius: 0px 8px 8px 0px;
}

.session-card__title,
.session-card__content-wrapper {
    text-align: left!important;
}

/* Speaker Group */
.session-card__speakers .elementor-image-box-wrapper {
    display: flex;
    flex-wrap: wrap;
}
.session-card__speakers figure {
    margin-right: 25px!important;
}

/* Button Group */

.session-card__button-group {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.session-card__button-group .elementor-widget-button {
    margin-right: 15px;
}

.session-card__button-group .elementor-button {
    background-color: #FFFFFF00!important;
}


.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.tooltip {
  position: relative;
}

/* Tooltip text */
.tooltip .tooltiptext {
    display: none;
  visibility: hidden;
  width: 200px;
  top: 100%;
  left: 50%;
  margin-left: -100px; /* Use half of the width (120/2 = 60), to center the tooltip */
  margin-top: 10px;
  text-transform: none;
  background-color: black;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  padding: 10px;
  border-radius: 6px;
  opacity: 0;
  transition: opacity 1s;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1!important;
}

.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  bottom: 100%;  /* At the top of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent black transparent;
}