   @font-face {
   font-family: 'BacasimeAntique-Regular';
   src: url('BacasimeAntique-Regular.ttf') format('truetype');
 }

   @font-face {
   font-family: 'IBMPlexSans';
   src: url(' IBMPlexSans_Condensed-Medium.ttf') format('truetype');
 }

   @font-face {
   font-family: 'VictorMono-Thin';
   src: url('VictorMono-Thin.ttf') format('truetype');
 }





 @font-face {
   font-family: 'PlayfairDisplay-Regular';
   src: url('PlayfairDisplay-Regular.ttf') format('truetype');
 }
  /* CSS */
  body,
  html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: IBMPlexSans;
    background: black;
    overflow: hidden;
    background-image: radial-gradient(circle,rgb(79, 79, 79),black 65%);
  }

  #loadingScreen {
    position: relative;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
      z-index:2;
  }

  /* Glow circle */
  .glow-wrapper {
    position: relative;
    width: 550px;
    height: 550px;
    margin-bottom: 20px;
  }

  .glow-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 20px 350px rgb(255, 255, 255);
    animation: pulse 6s infinite alternate;
    background-color: rgb(0, 0, 0);
    background-image: linear-gradient(to bottom left, white 35%, rgba(255, 255, 255, 0.1) );
  }

  .cover-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: black;
    animation: slideCover 6s forwards;
    z-index: 2;
  }

  /* Text */
  .text-container {
    text-align: center;
    color: rgb(0, 0, 0);
    opacity: 0;
    transform: translateY(20px);
    animation: revealText 3s forwards;
    /* animation-delay: 2s; */
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    
    user-select: none;
  }

  .title {
    font-size: 2.5rem;
    margin: 0;
  }

  .subtitle {
    font-size: 1.2rem;
    margin: 5px 0 20px;
  }

  /* Button */
  .explore-btn {

    padding: 10px 30px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    color: black;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    animation: showButton 1s forwards ,exploreBack 4s infinite;  ;
    animation-delay: 2s;
    background-color: transparent;
    font-size: 20px;
      transition: .4s;
       aspect-ratio: 1;
  border-radius: 50%;
 
    user-select: none;
  }
  .explore-btn:hover { 
  background-color: rgb(227, 227, 227);
  aspect-ratio: 1;
  border-radius: 50%;
  transition: .4s;

  }

 #timelineSort {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 10px;
      font-size: 14px;
      justify-content: center;
      background-color: rgb(16, 16, 16);
      height: 10px;
      bottom: 0;

  }


  #timelineSorter {
  /* Remove default browser styling */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
width: 120px;
height: 25px; 
  /* Basic styling */
  background-color: #2c2c2c; /* A dark background */
  color: white; /* White text for contrast */
  padding: 4px 6px;
  border: 1px solid #555; /* A subtle border */
  border-radius: 5px; /* Rounded corners */
  font-family: inherit; /* Inherits font from the body */
 
  cursor: pointer;
     user-select: none;
}


/* Style the dropdown arrow */
#timelineSorter {
  background-image: linear-gradient(45deg, transparent 50%, white 50%),
                    linear-gradient(135deg, white 50%, transparent 50%);
  
  background-position: calc(100% - 17.5px) center,
                       calc(100% - 12.5px) center;
  
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
/* Style the dropdown menu when it's open (optional) */
#timelineSorter:focus {
  outline: none;
  border-color: #007bff; /* A highlight color on focus */
}

/* Style the dropdown options */
#timelineSorter option {
  background-color: #2c2c2c;
  color: white;
}
  #timelineContainer {
      position: absolute;
      left: 81px;
      top: 81px;
      width: 250px;
      height: calc(100% - 160px);
      background-image: linear-gradient(to top, rgba(110, 110, 110, 0.165), rgba(0, 0, 0, 0.5));
      color: white;
      z-index: 1000;
      font-size: 20px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    display: none;
     user-select: none;
     animation: vExpand .3s;
  }

 

  #timeline {
      flex: 1; 
      padding: 2px;
      display: flex;
      flex-direction: column;
      position: relative;
height: 100%;
justify-content: center;
  }

  .timeline-group {
      position: relative;
      margin-bottom: 6px;
      display: flex;
  }

  .year-header,
  .country-header {
      font-size: 16px;
      font-weight: bold;
      color: #ccc;
      position: relative;
      width:30%;
      padding-right: 20px;
      margin: 0;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: right; 
  }

  .timeline-missions {
      flex: 1;
      display: flex;
      flex-direction: column;
      background-color: transparent;
      position: relative;
      width: 70%;
      /* border-left: solid rgba(162, 162, 162, 0.613) 1px;
  */
  }

  
    .dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
 display: none;
  }

  .mission-name-text{
display: flex;
gap:15px;
  }

  .timeline-item {
      background-color: rgba(112, 11, 70, 0);
      color: rgb(102, 102, 102);
      
      margin-bottom: 6px;
    height: 12px;
      cursor: pointer;
      font-size: 10px;
      transition: .5s;
      width: 100%;
  }

  .timeline-item:hover {
      transition: .5s;
      color: white;
      background-color: rgba(255, 255, 255, 0.1);
          height: 20px;
      font-size: 15px;
  }

  .timeline-item.highlighted {
      background-color: rgba(255, 255, 255, 0.3);
      border-color: #fff;
      color: white;
                height: 20px;
      font-size: 15px;
  }


 .timeline-item.highlighted {
      background-color: rgba(255, 255, 255, 0.3);
      border-color: #fff;
      color: white;
  }
 .mission-title {

      display: flex;
      align-items: center;
      gap: 0px;
      padding-left: 15px; 
  }



  header{
    display: flex;
    position: absolute;
    top: 0;
    left: 80px;
    width: calc(100% - 160px);
    height: 80px;
 
    z-index: 2;
animation: fadeIn 10s ;
 user-select: none;
  }

  .headerClass{
width: 100%;
 display: flex;
height:100%;
align-items: center;
justify-content: center;

color: rgb(136, 136, 136);
  }

  #vizType{
    margin-left:5px;
     justify-content: left;
     font-size: 16px;
     gap:12px;
  }

  #vizSelector {
  /* General slider styling */
  -webkit-appearance: none; /* Removes the default browser styling */
  appearance: none;
    width:45px;
  height: 15px; /* Sets the height of the track */
  background: transparent; /* Makes the default track invisible */
  outline: none; /* Removes the outline on click */
}

/* Styling for the slider track */
#vizSelector::-webkit-slider-runnable-track {
    width: 100%;
  height: 15px; /* Same height as the thumb */
  cursor: pointer;
  background:grey;
  border-radius: 7.5px; /* Rounded edges */
}

#vizSelector::-moz-range-track {
  width: 100%;
  height: 15px; /* Same height as the thumb */
  cursor: pointer;
  background:grey;
  border-radius: 7.5px;
}

/* Styling for the slider thumb (the draggable part) */
#vizSelector::-webkit-slider-thumb {
  -webkit-appearance: none; /* Removes the default styling */
  appearance: none;
  height: 15px; /* Same height as the track */
  width: 15px; /* Adjust the width of the thumb */
  background: white; /* The color of the thumb */
  cursor: pointer;
  margin-top: 0px; /* Adjust this to vertically align the thumb */
  border-radius: 50%; /* Makes the thumb a circle */
}

#vizSelector::-moz-range-thumb {
  height: 15px; /* Same height as the track */
  width: 15px; /* Adjust the width of the thumb */
  background: white; /* The color of the thumb */
  cursor: pointer;
  border-radius: 50%; /* Makes the thumb a circle */
}

#headerTitle{
  justify-content: center;
  font-size: 28px;
  display: flex;
  flex-direction: column;
 color: white;
 }
  #psId{
  font-size: 10px;
  color: rgb(188, 188, 188);
  padding-top:6px ;
 font-family:  VictorMono-Thin;
   letter-spacing: 1.8px;

 }

 #headerControllers{
 justify-content: right;
gap:20px;
 
 }
 
 .highlight {
  font-weight: bold; /* Makes the text bold */
  color: #ffffff; /* Changes the color to a distinct shade */
}

  .controlButton {
      font-family: PlayfairDisplay-Regular;
      letter-spacing: 1px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #FFEDD1;
      border: none;
      transition: .3s;
      font-size: 15px;
      cursor: pointer;
      padding: 15px;
      width: 10px;
      height: 10px;
      border-radius: 25px;
      background-color: transparent;
      background-size: contain;
      z-index: 100;
  }

  .controlButton:hover {
      transition: .3s;
      filter: invert();
      background-color: black;
  }
  
  #info-close{
  border:solid rgb(67, 67, 67) 2px;
}
#readButton{
border:solid rgb(67, 67, 67) 2px;
}
  .mission-info {
      position: absolute;
      /* left: calc(50% + 30px);
    top: calc(50% - 50px);  */

      right: 80px;
      top: 81px;
      width: 250px;
      /* <--- This is the problem */
       height: calc(100% - 160px); 
 
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.387), rgba(64, 64, 64, 0.25));
      color: white;
      font-size: 14px;
      z-index: 1000;

      display: none;
      flex-direction: column;

      justify-content: center;
      animation: expansion 0.3s forwards;
      border-left: solid rgb(56, 56, 56) 1px;
            overflow: hidden;
             user-select: none;
  }
   .mission-info.opening {
      animation: expansion 0.3s forwards;
      overflow: hidden;
  }

    .mission-info.closing {
      animation: verticalSqueezeAndFade 0.3s forwards;
      overflow: hidden;
  }

 

  #coverImage {
      max-width: 100%;
      border-radius: 6px;
      object-fit: contain;
      overflow: hidden;
  }

  .mission-content {
      display: flex;
      flex-direction: column;
      width: 100%;
 
  }    

  #missionHeader {

      font-size: 28px;
      padding-bottom: 10px;
      width: 100%;
      padding: 20px;
    border-top: solid rgb(70, 70, 70) 1px;
       border-bottom: solid rgb(70, 70, 70) 1px;
  }
#infoBlock1{
display: flex;
flex-direction: column;
width:100%;
}
#infoBlock2{
display: flex;
flex-direction: column;
width:100%;
}

  #missionTime {

      border-bottom: solid rgb(70, 70, 70) 1px;
      display: flex;

      align-items: center;
  }

  .missionTimeClass {

      height: 100%;
      align-items: center;
      padding: 0 20px 0 20px;
      display: flex;
  }

  #missionYear {

      border-right: solid rgb(70, 70, 70) 1px;
  }

  #missionLanding {
      padding: 15px 20px 15px 20px;
      border-bottom: solid rgb(70, 70, 70) 1px;
  }

  #missionDetails {
      padding: 15px 20px 15px 20px;
      border-bottom: solid rgb(70, 70, 70) 1px;
  }

  #missionFooter {
      display: flex;
      justify-content: space-between;
      padding: 15px 20px 15px 20px;
  }



  .info-close-btn {
      position: absolute;
      top: 4px;
      right: 4px;
      background: transparent;
      border: none;
      color: white;
      font-size: 14px;
      cursor: pointer;
      z-index: 1000;
  }

.hideScreen {
    animation: fadeOutScreen 0.5s forwards;
}

#mainContent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; /* Initially hide the main content */
}
#mainContent.introAnim{
animation: fadeIn 3s;
animation-delay: 1s;
}
#curtain{
  display: block; 
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  z-index: 1;
    overflow: hidden; /* This hides any content that moves outside the curtain's area */

}
 
#curtainLeft, #curtainRight {
  position: absolute;
  left: 0;
  height: 50%;
  width: 100%; /* Each curtain takes up half the width */
  background-color: black; /* Or any color you prefer for the curtains */
  transition: transform 1.5s ease-in-out; /* The animation property */
}

#curtainLeft {
  top: 0;
}

#curtainRight {
  bottom: 0;
}

#curtain.open #curtainLeft {
  transform: translateY(-100%);
}

#curtain.open #curtainRight {
  transform: translateY(100%);
}
#frame{
    position: absolute;
    left:80px;
    top: 80px;
    width: calc(100% - 160px);
    height: calc(100% - 160px);
    border: solid rgba(255, 255, 255, 0.2) 1px;
        pointer-events: none; 
}

  #dotAnim {
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 10px);

  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: transparent;

 
  opacity: 0;

  z-index: 1000;
display: none;
  animation : dotAnimation 12s;
}

.dot-dimmed {
    opacity: 0.1 ;
    transition: opacity 0.3s ease;
}

 .label-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
   user-select: none; /* Standard syntax */

      cursor: pointer;
   transition: 0s;
  }

  .label-dot:hover {
      width:  20px;
      height: 20px;
         transition: .1s;
  }
 .label-dot.highlighted {
  opacity: 1;

      animation: beating 2.5s infinite;
  }

  .label-name {
      color: rgba(255, 255, 255, 0.429);
      font-size: 10px;
      margin-left: 4px;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
      transition: transform 0s ;
        user-select: none; /* Standard syntax */

  }
.no-pointer-events {
  pointer-events: none;
}
  .label-name:hover {
      color: white;
      font-size: 16px;
      background-color: rgba(0, 0, 0, 0.1);
      padding: 10px;
      border-radius: 5px;
      transition: 0.3s ease;
  }
 .label-name.highlighted {
        transition: 0s;
    top:20px;
font-size: 20px;
color: white;
background-color: rgba(0, 0, 0, 0.496); 
padding: 5px 15px 5px 15px;
  }



.label {
    color: white;
    font-size: 6px;
    font-weight: bold;
    text-shadow: 0 0 5px black;
    pointer-events: none; /* Ensure the labels don't block interaction */
    background: rgba(0, 0, 0, 0.4);
    padding: 2px 5px;
    border-radius: 3px;
    transition: all 0.2s ease-in-out;
    z-index: 10;
}

footer{
  width: calc(100% - 160px); 
  height:60px; 
  color: grey;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px; 
 font-family:  VictorMono-Thin;
  position: absolute;
  float: left;
  left:80px;
  bottom:0;
  animation: fadeIn 10s ; 
    user-select: none; /* Standard syntax */

 }

 footer span{
  transition: .3s;
  cursor: pointer; 
 }
 footer span:hover{
  transition: .3s;
 color:cyan;
 }
 
 #countryLabel{
    display: flex;
    font-size: 10px;
    border: none;
    justify-content: center;
    align-items: center;
    transform: translateX(-25%);
 
 }

.legendDot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  border: none;
}
 .legnedLabel{

  vertical-align: middle;
  margin-right: 18px;
}
.label-renderer{
 
    animation: introfadeIn 15s forwards;
} 
.labels-fade-in {
     animation: introfadeIn 10s forwards;
}
 

#discoverContainer{
  left: 80px;
  bottom: 79px;
  width: 200px;
  position: absolute;
  font-size: 30px;
  color: white;
  text-align: left;
  user-select: none;
  padding: 20px; 
display: none;
 gap:30px;
flex-direction: column;
      z-index: 2;
}

#discoverControllers{
  display: flex;
  width: 100%; 
 
  border-radius: 8px;
  justify-content: space-between;
}
  .rectButton {
 
text-align: center;
justify-content: center;
align-items: center;
 border: none;
 padding: 10px;
    color: white;
    border: solid rgba(255, 255, 255, 0.228) 1px;
    background-color: transparent;
        transition: .3s;
  cursor: pointer;
        user-select: none;
  }
  .find{
    background-color: rgba(128, 128, 128, 0.446);
  animation: exploreBack 3s infinite;
  }
  .rectButton:hover{
    color:black;
    background-color: white;
    transition: .3s;
  }

/* Animations */
  @keyframes pulse {
    0% {
      box-shadow: 0 0 20px 15px rgba(255, 255, 255, 0.26);
    }

    100% {
      box-shadow: 0 0 120px 15px rgb(255, 255, 255);
    }
  }

      @keyframes exploreBack {
    0%,100% {

      border: solid rgba(255, 255, 255, 0) 1px; 
        }

    50% {
      border: solid rgba(255, 251, 235, 0.554) 1px; 
    }
  }



    @keyframes zoomIn {
    0% {
     transform: scale(1);
     opacity: 1;
    }

    100% {
        transform: scale(8);
        opacity: 0;
    }
  }


     @keyframes introfadeIn {
    0% {
 display: flex;
     opacity: 0;
     transform: scale(1);
    }

    100% {
  display: flex;
        opacity:1;
          transform: scale(1);
    }
  }


   @keyframes fadeIn {
    0% {
 display: flex;
     opacity: 0;
    }

    100% {
  display: flex;
        opacity:1;
    }
  }


    @keyframes fadeOut {
    0% {
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) scale(1);
  
     opacity: 1;
    }

    100% {
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) scale(1.3);
    opacity: 0;
    }
  }


  @keyframes dotAnimation {

  0% {
    scale: 1;
    opacity: 1;
 

  }

  100% {
    scale: 20;
    opacity: 0;
 

 
  }
}


  @keyframes slideCover {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(200%);
    }

  }

  @keyframes revealText {
        0% { opacity: 0; color: rgb(255, 255, 255); }
    100% { opacity: 1; color: black; }
  }

  @keyframes showButton {
    to {  opacity: 1;  
      transform: translateY(0);
      
    }
  }
  
  @keyframes fadeOutScreen {
    from { opacity: 1; }
    to { opacity: 0; }
}
  @keyframes beating {
      0% {
          width: 10px;
          height: 10px;
          border-radius: 5px;
      }

      50% {
          width: 20px;
          height: 20px;
          border-radius: 10px;
      }

      100% {
          width: 10px;
          height: 10px;
          border-radius: 5px;
      }
  }
   @keyframes vExpand {
      0% {
          /* height:0; */
          height: 0;
          opacity: 0;
      }

      100% {
          /* height: calc(100% - 160px); */
        max-height: 100%; /* Use a value large enough to contain your content */
          opacity: 1;
      }
  }

    @keyframes expansion {
      0% {
          /* height:0; */
          width: 0;
          opacity: 0;
      }

      100% {
          /* height: calc(100% - 160px); */
        max-width: 100%; /* Use a value large enough to contain your content */
          opacity: 1;
      }
  }
    @keyframes verticalSqueezeAndFade {
      0% {
          width:250px;
          opacity: 1;
      }

      100% {
          width:0;
          opacity: 0;
      }
  }


  /* Styles for screens smaller than 768px */
@media screen and (max-width: 1000px) {
 #frame{
  display: none;
 }
  
  header{
    display: flex;
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 300px; 
    z-index: 2;
animation: fadeIn 1s ;
 background-image: linear-gradient(to bottom, black,rgba(255, 255, 255, 0));

  }

  .headerClass{
width: 100%;
 display: flex;
height:100%;
align-items: center;
justify-content: center;

color: rgb(136, 136, 136);
  }
  #headerTitle{
  justify-content: flex-start;
  align-items:center;
  font-size: 46px;
  color: white;
  padding-top: 40px;
  display: flex;
  flex-direction: column; 
 }
 #psId{
  font-size: 20px;
  color: grey;
  padding-top:14px ;
 font-family:  VictorMono-Thin;
   letter-spacing: 1.2px;

 }
#headerControllers{
    display: flex;
    flex-direction: row;        /* default, explicit */
    justify-content: flex-end; /* align horizontally to the right */
    align-items: flex-end;     /* align children to the bottom of the container */
    gap: 20px;
    margin-right: 40px;
    height: 240px;
    box-sizing: border-box;
    padding-bottom: 8px;       /* optional spacing from bottom */
}

  #vizType{
    display: flex;
    flex-direction: row;        /* default, explicit */
    justify-content: flex-start; /* align horizontally to the right */
    align-items: flex-end;     /* align children to the bottom of the container */
    gap: 20px;
    margin-left: 50px;
    height: 240px;
 font-size: 26px;
    box-sizing: border-box;
    padding-bottom: 8px; 
  }


  #vizSelector {
  /* General slider styling */
  -webkit-appearance: none; /* Removes the default browser styling */
  appearance: none;
    width:85px;
    border-radius: 15px;
  height: 30px; /* Sets the height of the track */
  background: transparent; /* Makes the default track invisible */
  outline: none; /* Removes the outline on click */
}

/* Styling for the slider track */
#vizSelector::-webkit-slider-runnable-track {
    width: 100%;
  height: 100%; /* Same height as the thumb */
  cursor: pointer;
  background:grey;
  border-radius: 15px; /* Rounded edges */
}

#vizSelector::-moz-range-track {
  width: 100%;
  height: 30px; /* Same height as the thumb */
  cursor: pointer;
  background:grey;
  border-radius: 15px;
}

/* Styling for the slider thumb (the draggable part) */
#vizSelector::-webkit-slider-thumb {
  -webkit-appearance: none; /* Removes the default styling */
  appearance: none;
  height: 30px; /* Same height as the track */
  width:30px; /* Adjust the width of the thumb */
  background: white; /* The color of the thumb */
  cursor: pointer;
  margin-top: 0px; /* Adjust this to vertically align the thumb */
  border-radius: 50%; /* Makes the thumb a circle */
}

#vizSelector::-moz-range-thumb {
  height: 30px; /* Same height as the track */
  width: 30px; /* Adjust the width of the thumb */
  background: white; /* The color of the thumb */
  cursor: pointer;
  border-radius:  0%; /* Makes the thumb a circle */
}


  .controlButton {
      font-family: PlayfairDisplay-Regular;
      letter-spacing: 1px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #FFEDD1;
      border: none;
      transition: .3s;
      font-size: 30px;
      cursor: pointer;
      padding: 15px;
      width: 65px;
      height:65px;
 border-radius: 50%;
      background-color: transparent;
      background-size: contain;
      z-index: 100;
  
  }
#info-close{
  border:solid rgb(67, 67, 67) 2px;
}
#readButton{
border:solid rgb(67, 67, 67) 2px;
}
    /* Glow circle */
  .glow-wrapper {
    position: relative;
    width: 800px;
    height: 800px;
    margin-bottom: 20px;
    user-select: none;
  }

   
  /* Text */
  .text-container {
     width: 100%;
    text-align: center;
    color: rgb(0, 0, 0);
    opacity: 0;
    transform: translateY(20px);
    animation: revealText 3s forwards;
    /* animation-delay: 2s; */
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    
    user-select: none;
  }

  .title {
    font-size: 5rem;
    margin: 0;
  }

  .subtitle {
    font-size: 1.6rem;
    margin: 15px 0 20px;
  }

  /* Button */
  .explore-btn {
    padding: 10px 30px;
    font-size:2rem;

  }

 .label-dot {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      cursor: pointer;
   transition: 0s;
  }

  .label-dot:hover {
      width:  40px;
      height: 40px;
         transition: .1s;
  }
 .label-dot.highlighted {
      animation: beating 2.5s infinite;
  }

  .label-name {
      font-size: 20px;
         transition: 0s;
  }

  .label-name:hover {
      font-size: 30px; 
  }
 .label-name.highlighted {
    top:25px;
font-size: 30px;
color: white;
background-color: rgba(0, 0, 0, 0.496); 
padding: 5px 15px 5px 15px;
  }


  .dragging .label-dot,
.dragging .label-name {
  transition: none !important;
}



footer{
    position: absolute;
  float: left;
  left:0px;
  bottom:0;
  width: 100%;
  height:250px;  
  color: grey;
  display: block;
 background-image: linear-gradient(to top, black,rgba(255, 255, 255, 0));
  
  animation: fadeIn 1s ;
  
 }

 footer span{
  transition: .3s;
  cursor: pointer; 
 }
 footer span:hover{
  transition: .3s;
 color:cyan;
 }
.footerBlock{
  width: 100%;
  height: 100%; 
  
}
#mapCredit{
  position: absolute;
  left:0;
  top:0;
  width: 50%;
  height: 80%;
  text-align: left;
  color:grey;
   font-size: 15px;
 justify-content: flex-start;
 align-items: flex-end;
 display: flex;
 margin-left: 40px;
}

#dataCredit{
  position: absolute;
  right:0;
  top:0;
  width: 50%;
  height: 80%;
  text-align: right;
 font-size: 15px; color:grey;
 
 justify-content: flex-end;
 align-items: flex-end;
 display: flex;
 margin-right: 40px;
}
 #countryLabel{
  position: absolute;
  left:36%;
  bottom:0;
 width: 50%;
 height:55%; 
  align-items: flex-start;
 display: flex;
padding-top: 10px; 
    gap: 2px;
    justify-content: space-between;


    
 }

.legendDot{
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  vertical-align: middle;
 margin-top: 5px;
  margin-right: 0px;
gap:80px;
  border: none;
}
 .legnedLabel{
font-size: 20px;
  vertical-align: middle;
  margin-right:  0px;
    display: flex; 
}

#mainContent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; /* Initially hide the main content */
}

  .mission-info {
      position: absolute;
      right: 0px;
      top:unset;
      bottom:180px;
 
      width:100%;

      height: auto;
      background: linear-gradient(to left,black,rgba(255, 255, 255, 0.113));
      font-size: 30px;
      z-index: 1000;
background-color: black;
      display: none;
      flex-direction: column;
align-items: center;
      justify-content: center;
      animation: expansion 0.3s forwards;
      border-left: solid rgb(56, 56, 56) 1px;
            overflow: hidden;
            user-select: none;
  }
  
    .mission-content {
      display: flex;
      flex-direction: row;
      width: 100%;
     padding-top:20px;
  }

 #missionHeader {
 
      padding-bottom: 10px;
      width: 100%;
      padding: unset;
      padding: 0 20px 0 20px;
      font-size: 55px;
      border:unset;
       }

  #missionTime {

      border-bottom: unset;;
      display: flex;
    
  }

  .missionTimeClass {

      height: 100%;
      align-items: center;
      padding: 0 20px 0 20px;
      display: flex;
  }

  #missionYear {

      border-right: unset;;
  }

  #missionLanding {
      padding: 15px 20px 15px 20px;
      border-bottom: unset;
  }

  #missionDetails {
      padding: 15px 20px 15px 20px;
      border-bottom: unset;
  }

  #missionFooter {
      display: flex;

      flex-direction: column-reverse;
      justify-content: space-between;
      padding: 15px 40px 15px 20px;
      gap:20px;
  }
#infoBlock1{
display: flex;
flex-direction: column;
width:35%;
}
#infoBlock2{
display: flex;
flex-direction: column;
width:65%;
}



  #timelineContainer {
      position: absolute;
      left: 40px;
      bottom: unset;
      top:260px;
  width: 330px;
 height: auto;
      background-image: linear-gradient(to left, rgba(32, 32, 32, 0.9), rgba(0, 0, 0, 0.681));
   background-color: black;
      color: white;
      z-index: 1000;
      font-size: 20px; 
      padding-bottom: 20px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    display: none;
     user-select: none;
  }

 
 #timelineSort {
      display: flex;
      align-items: center;
      gap: 0px;
      padding: 10px;
      font-size: 28px;
      justify-content: space-around;
      background-color: rgb(40, 40, 40);
      height: 50px;
      bottom: 0; 
  }
  #timelineSorter {
  /* Remove default browser styling */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
width: 120px;
height: 50px; 
  /* Basic styling */
  background-color: #2c2c2c; /* A dark background */
  color: white; /* White text for contrast */
  padding: 4px 6px;
  border: 1px solid #555; /* A subtle border */
  border-radius: 5px; /* Rounded corners */
  font-family: inherit; /* Inherits font from the body */
  font-size: 20px;
  cursor: pointer;
}

/* Style the dropdown arrow */
#timelineSorter {
  background-image: linear-gradient(45deg, transparent 50%, white 50%),
                    linear-gradient(135deg, white 50%, transparent 50%);
  
  background-position: calc(100% - 17.5px) center,
                       calc(100% - 12.5px) center;
  
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
/* Style the dropdown menu when it's open (optional) */
#timelineSorter:focus {
  outline: none;
  border-color: #007bff; /* A highlight color on focus */
}

/* Style the dropdown options */
#timelineSorter option {
  background-color: #2c2c2c;
  color: white;
}

  #timeline {
      flex: 1; 
      padding: 2px;
      display: flex;
 
 width: 100%;
      position: relative;
height: unset;
justify-content: flex-start;

  }

  .timeline-group {
 
 flex-direction: row;
 
      display: flex;
      justify-content: left;
      align-items: left; 
 padding-right: 6px;
 gap:5px;
  }

  .year-header,
  .country-header {
      font-size: 23px;
      font-weight: bold;
      color: #ccc;
      position: relative; 
      margin: 0;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: left; 
 width: 20%;
 margin-top: 10px;
  }

  .timeline-missions {
      flex: 1;
      display: flex;
      flex-direction: column;
      background-color: transparent;
      position: relative;  
       flex-direction: column-reverse;
 
      /* border-left: solid rgba(162, 162, 162, 0.613) 1px;
  */
  }

  .timeline-item { 
      color: rgb(102, 102, 102);
 
 
      margin-top: 10px;
 padding: 10px;
      cursor: pointer;
      font-size: 24px;
      transition: .5s;
      width: 100%;
  }

  .timeline-item:hover {
      transition: .5s;
      color: white;
      background-color: rgba(255, 255, 255, 0.1);
  }

  .timeline-item.highlighted {
      background-color: rgba(255, 255, 255, 0.3);
      border-color: #fff;
      color: white;
      font-size: 30px;
      height: 45px;
  }

#discoverContainer{
  left: 30px;
  top: 280px;
  width: calc(100% - 100px);
  position: absolute;
  font-size: 30px;
  color: white;
  text-align: left;
  user-select: none;
  padding: 20px; 
display: none;
 gap:30px;
flex-direction: column;
      z-index: 2;
}

  

}