

{# SEPERATOR #}
 .aa-seperator {
  position: relative;
  width: 12px;
  height: 12px;
  border: 2px solid #6666FF; /* Original border color */
  background: white;
  transition: transform 0.4s ease, border-color 0.4s ease; /* Add transition for border color */
  transform-origin: center;
  top: 8px
}

 .aa-seperator::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* Match the parent size */
  height: 100%; /* Match the parent size */
  border-radius: 50%;
  background: #6666FF;
  opacity: 0; /* Initially hidden */
  transition: opacity 0.4s ease, transform 0.4s ease; /* Transition for opacity and transform */
  transform: scale(0);
  transform-origin: center;
}

.aa-timeline-card:hover .aa-seperator {
  transform: rotate(360deg) scale(0.5);
  border-color: white; /* Change the border color to white (or the background color of the parent element) */
}

.aa-timeline-card:hover .aa-seperator::before {
  opacity: 1; /* Show the circle */
  transform: scale(2.6); /* Scale up the circle */
}

/* .aa-timeline-card::before {
  content: "";
  position: absolute;
  left: 50%; /* Adjust this based on the position of your separators 
  top: 0;
  bottom: 0;
  width: 2px; /* Width of the line 
  background-color: #E5E5FF; /* Color of the line 
  z-index: 1; /* Ensure the line is behind the separators */
}

.aa-timeline-card:last-child::after {
  display: none; /* Hide the line on the last item */
} */

{# END OF SEPERATOR #}

.aa-timeline-card:hover .aa-timeline-title {
  text-decoration: underline;
}


.aa-timeline-card {
  display: grid;
  grid-template-columns: 1fr auto 3fr;
  grid-template-rows: auto;
  position: relative;
  border-bottom: none;
  grid-gap: 2rem calc(1rem + 2vw);
} 


.aa-time-location {
    width: 120px;
    min-width: 110px;
    max-width: 120px;
    overflow: hidden;           /* Hide overflow */
    text-overflow: ellipsis;    /* Show ellipsis for truncated text */
    white-space: nowrap;        /* Prevent text from wrapping to the next line */
}

.aa-time-location.justify-end {
  display: flex;
  justify-content: end;
}


.aa-right-side {
  display: flex;
  width: fit-content;
  margin-top: -10px;
}

.aa-timeline .aa-module__body .aa-grid .aa-grid--one {
  grid-template-columns: initial; 
}

.aa-module__header_timeline {
  grid-template-columns: 1fr !important;
  width: 80%
}

.aa-timeline-content {
 grid-template-columns: 35% auto; 
}

.aa-module-content-timeline {
  opacity: 0.75;
}

.aa-title-speaker {
  padding-left: 30px;
  padding-top: 5px;
}

.aa-timeline-speaker_name {
  color: #8F8DB0; 
}

.aa-timeline-image img {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  border-radius: 45px;
  margin-top: 7px;
}

.aa-timeline-icon img {
  width: 35px;
  height: 35px;
  margin-left: 6px;
  margin-right: 2px;
}

.aa-timeline-image {
  display: contents; 
}


.aa-right-side > .aa-title-speaker:first-child {
  padding-left: 0px;
  padding-top: 12px;
}

.aa-right-side.contains-icon {
  padding-top: 10px;
}


.aa-module__header__heading-timeline {
  margin-top: -15px; 
}


.aa-timeline-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55%;
}



/* MOBILE */

@media screen and (max-width: 468px) {
 
 .aa-timeline-content {
  display: grid;
  grid-gap: 3rem 3rem;
  grid-template-columns: minmax(0,1fr);
  width: 100%;
  }
  
  .aa-module__header_timeline {
    margin-bottom: -50px; 
  }
  
  
  
  .aa-timeline-card {
    grid-template-rows: auto auto auto;
    grid-template-columns: minmax(0,1fr);
    padding-bottom: 0px;
  }
  
  .aa-right-side {
    display: flex;
    margin-top: -10px;
    width: auto;
    justify-content: space-between;
  }
  
  .aa-right-side > .aa-title-speaker:first-child {
    padding-top: 0px;
    padding-left: 10px;
}

  
  .aa-timeline-image {
    width: 23%;
    margin-left: 10px;
    display: flex;
    order: 2;
    justify-content: end;
    position: absolute;
    top: 7%;
    left: 86%;
    transform: translate(-50%, -50%);
  }
  
  .aa-timeline-image img {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    border-radius: 45px;
    margin-top: 7px;
  }
  
  
  .aa-seperator {
    display: none; 
  }
  
  .aa-title-speaker {
    padding-left: 10px;
    
  }
  
  .aa-timeline-icon {
    width: 23%;
    margin-left: 10px;
    display: flex;
    order: 2;
    margin-top: -65px;
    justify-content: end;
  }  
  
  .aa-timeline-icon img {
    margin-right: 4px;
    margin-top: 10px;
  }
  
  .aa-right-side.contains-icon {
    padding-top: 0px;
  }
  
  .aa-timeline-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  
}
