/*
 * © 2025 Eventspace 3D. All rights reserved.
 * 
 * This source code is the exclusive property of Eventspace 3D.
 * Any reproduction, modification, distribution, or any form of exploitation
 * outside the boundaries of copyright law requires the written consent of the author.
 */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
  }


body, html {
    overflow: hidden;
    -webkit-user-select: none;  
    -moz-user-select: none;     
    -ms-user-select: none;
    user-select: none;
    height: 100%;
    margin: 0;
}
.fullscreen-mode{
    display: none;
}
body, html {
    overflow: hidden;
    height: 100%;
    margin: 0;
}

header{
    position: absolute;
    display: grid;
    top: 0;
    width: 100%;
    height: 50px;
    box-sizing: border-box;
    z-index: 55;
    background: white;
    align-items: center;
}

  /* Das Wordmark rechts anordnen */
  #wordmark {
    display: none;
  }

  #logo {

    position: absolute;
    right: 20px; /* Abstand von rechts – anpassen falls nötig */
    top: 50%;
    transform: translateY(-50%);
    height: 30px;

  }


@media only screen and (min-width: 650px) {
  #logo {
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    height: 30px;
  }

  #wordmark {
    display: block;
    position: absolute;
    right: 20px; /* Abstand von rechts – anpassen falls nötig */
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
  }
}



#navigationMenu, #guidedTourMenu {
  display: none;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; /* Breite des Menüs im eingeklappten Zustand */
  height: auto; /* Höhe automatisch an Inhalt anpassen */
  max-height: 70%;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: rgba(255, 255, 255, 0.95);
  transition: width 0.5s;
  z-index: 2;
  flex-direction: column; /* Menüpunkte vertikal anordnen */
  overflow-x: hidden;
}
.menu-item {
  display: flex; /* Flexibles Layout für jedes Menüelement */
  align-items: center; /* Zentriert die Inhalte vertikal */
  list-style: none;
  position: relative; /* Für die Positionierung des Submenüs */
  height: 50px; /* Festgelegte Höhe für jeden Menüeintrag */
}


@media only screen and (min-width: 600px) {
  #generalPopUpText {
      padding: 10px;
      padding-left: 20px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      font-size: 16px;
      color: #333;
      line-height: 1.6;
    }

#navigationMenu:hover , #guidedTourMenu:hover {
  width: 290px; /* Breite des Menüs im ausgeklappten Zustand */
}
}
#navigationMenu.hover-active , #guidedTourMenu.hover-active {
  width: 290px; /* Breite des Menüs im ausgeklappten Zustand */
}


.menu-icon {
  float: left; /* Icon linksbündig */
  width: 45px;
  height: 45px;
  padding: 10px;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  z-index: 10;
}

.menu-icon:hover{
  transform: scale(1.1); /* Bei Hover-Ereignis ändere die Skalierung auf 1.1 */

}

.menu-title {
  /* Anfangszustand: unsichtbar und links verschoben */
  position: relative; /* Für die Positionierung des Submenüs */
  display: none;
  height: 50px;
  left: 0;
  color: rgb(99, 99, 99);
  padding: 2px;
  line-height: 50px;
  cursor: pointer;
  overflow:hidden;
  white-space: nowrap; /* Text nicht umbrechen */
  opacity: 0; /* Unsichtbar machen */
  transform: translateX(-100%); /* Nach links verschieben */
  transition: transform 0.5s, opacity 0.5s; /* Übergänge für Verschiebung und Sichtbarkeit */
}

/* Right-align 'Presented by' */
.presented-by-container {
  text-align: right;
  font-size: 12px;
  color: rgb(99, 99, 99);
  display: flex; /* Flexibles Layout für jedes Menüelement */
  align-items: center; /* Zentriert die Inhalte vertikal */
  list-style: none;
  position: relative; /* Für die Positionierung des Submenüs */
  height: 10px; 
  margin: 10px;
  line-height: 0.1;

}

/* Add this class to the 'Presented by' container */
.menu-item.presented-by-container {
  display: flex;
  justify-content: flex-end; /* Align to the right */
}



a.menu-link {
  text-decoration: none; /* Entfernt die unterstrichene Textdekoration von Links */
  color: inherit; /* Vererbt die Textfarbe des übergeordneten Elements */
  cursor: inherit; /* Vererbt den Mauszeiger des übergeordneten Elements */
  display: inline-block; /* Stellt sicher, dass der Link inline im Text fließt */
  /* Weitere Stile hier, wenn nötig */
}

.menu-title-selected {
  color: rgb(0, 0, 0); /* Weiße Textfarbe */
}
@media only screen and (min-width: 600px) {

#navigationMenu:hover .menu-title, #guidedTourMenu:hover .menu-title {
  opacity: 1;
  display: block;
  transform: translateX(0%);
}
}
#navigationMenu.hover-active .menu-title, #guidedTourMenu.hover-active .menu-title {
  opacity: 1;
  display: block;
  transform: translateX(0%);
}


.titleDivScolling{
  position: absolute;
  width: 220px;
  height: 50px;
  overflow: hidden;
  clip-path: inset(0 0 0 50px);
}
.menu-title.scrolling {
  position: absolute;
  left: 0;
  white-space: nowrap; /* Verhindert Zeilenumbrüche im Text */
  animation: scrollText 5s linear infinite; /* Animiert den Text */
}

@keyframes scrollText {
0%{
  transform: translateX(50px);
}
}

.submenu {
  display: none; /* Standardmäßig versteckt */
  position: absolute; /* Absolut zur Position des übergeordneten menu-item */
  left: 40px; /* Rechts vom menu-item */
  height: auto;
  max-height: 250px;
  /*max-height: 250%;*/
  color: rgb(99, 99, 99);
  top: 46px; /* Positioniert das Submenü direkt unter dem Menütitel */
  width: 80%;
  list-style: none;
  flex-direction: column; /* Submenüelemente vertikal anordnen */
  z-index: 1001; /* Über dem Hauptmenü */
  overflow-x:hidden; /* Scrollbar, wenn Inhalt größer als die maximale Höhe ist */
}

.submenu a {
  display: block;
  padding: 5px 10px;
  color: rgb(99, 99, 99);
  text-decoration: none;
}

.submenu-arrow {
  margin-left: 5px; /* Abstand zwischen Text und Pfeil */
  display: inline-block;
  transition: transform 0.3s;
}

.submenu-arrow.rotated {
  transform: rotate(90deg);
}

.buttonDiv{
    position: absolute;
    display: inline-block;
    top: 70px;
    right: 25px;
    height: 37px;
    cursor: pointer;
    transition: background-color 0.5s;
    border-radius: 8px;
    z-index: 1;
}

.buttonDiv:hover {
    background-color: rgba(126, 126, 126, 0.2);
}

.button{
    border: 1px solid white;
    border-radius: 8px;
    height: 25px;
    width: 25px;
    padding: 4px;
    background-color: transparent;
    /* box-sizing: border-box; */
}

#stopGuidedTourDiv, #startGuidedTourDiv {
    display: none;
    align-items: center;
    width: 200px;
    height: 25px;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.5s; /* Übergangsdauer definieren */
    cursor: pointer;
}

#stopGuidedTourDiv:hover , #startGuidedTourDiv:hover {
    background-color: rgba(126, 126, 126, 0.2);
}

#menuIconText ,#stopGuidedTourText{
    padding-left: 4px;
    font-size: large;
}

  
#startDiv {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 53;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  #startHeading {
    color: white;
    font-size: x-large;
    margin-bottom: 20px; /* Abstand zum Spinner */
    text-align: center; /* Text zentrieren */
  }
  
  .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0,0,0,0.1);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  #pPanoLoad{
    display: none;
    position: absolute;
    padding: 10px;
    top:50%;
    left: 50%;
    flex-direction: column;
    align-items: center;
    justify-content: center;    
    z-index: 30;
      }

  #startVideo{
    position: absolute;
    transition: opacity 1s ease;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    background-color: #1e1e1e;
    z-index: 51;
   }

.modalBackground,
.modal {
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-sizing: border-box;
  height: 100dvh;
min-height: 100vh;
}

/* Modal Background */
.modalBackground {
  display: none;
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(30, 30, 30, 0.9);
  z-index: 999;
}
.modalCloseBtn {
  position: absolute;
   top: 10px;
   right: 10px;
   background: white;
   border: none;
   z-index: 10;
   cursor: pointer;
   border-radius: 50%;
  width: 40px;
  height: 40px;
}
@media (min-width: 900px) {
  .modalCloseBtn {
    display: none !important;
  }
}
/* Modal Box */
.modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
}

/* Modal Image */
.modalImg, #drawerImg {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Modal Content */
.modalContent {
  padding: 20px;
  text-align: center;
  color: white;
}

.drawerContent {
  padding-top: 20px;
  text-align: center;
  color: white;
}

.modalContent h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
#drawerHeader {
  font-size: 12px;
  margin-bottom: 10px;
}

.modalContent p {
  font-size: 16px;
  margin-bottom: 20px;
}

#drawerText {
  font-size: 12px;
}

.modalBtn{
  background-color: transparent;
  border-radius: 8px;
  border: 1px solid white;
  cursor: pointer;
  color: white;
  width: 200px;
  height: 50px;
  transition: background-color 0.5s; /* Übergangsdauer definieren */
}

.modalBtn:hover {
  background-color: rgba(126, 126, 126, 0.2);
}


#modalClose {
  background-color: transparent;
  border-radius: 8px;
  border: 1px solid white;
  cursor: pointer;
  color: white;
  width: 200px;
  height: 50px;
  transition: background-color 0.5s; /* Übergangsdauer definieren */
}

#modalClose:hover {
  background-color: rgba(126, 126, 126, 0.2);
}


  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
}
  
  @media  (min-height: 350px) {
    #startHeading{
        top: 50%; 
    }
    .spinner {
        top: 60%;
    }
  }
  


  
  /* Container für Viewer + Panels */
#tourWrapper {
  display: flex;
  width: 100%;
}

/* Im „Info-Step“ sichtbar: 75% / 25% Aufteilung */
#viewer,         /* Matterport-Viewer */
#descriptionDiv  /* Beschreibungstext */ {
  transition: width 1s ease;
}

#infoPanelMobile {
  display: none; /* Standardmäßig versteckt */
  position: absolute;
  right: 0;
  top: 50px;
  transform: translateY(100%);
  width: 100%;
  height: calc(100% - 50px); /* Höhe abzüglich der Header-Höhe */
  padding: 1rem;
  box-sizing: border-box;
  background: #fff;

}


#infoPanel {
  position: absolute;
  right: 0;
  top: 50px;
  transform: translateX(100%);
  margin-top: -16px;

  width: 25%;
  padding: 1rem;
  box-sizing: border-box;
  background: #fff;

  /* Flexbox in Spaltenrichtung: Bild (und ggf. Header) fix, Text flexibel */
  display: none;           /* bleibt initial hidden */
  flex-direction: column;
  
  /* Übergänge für Ein-/Ausblenden und Position */
  transition: opacity 1s ease, transform 1s ease-out;

  /* Max-Höhe, damit das Panel insgesamt nicht über den Viewport hinausragt */
  max-height: 96%;
}

#infoPanel.enter {
  display: flex;           /* oder display: block, falls du block-Layout brauchst */
  transform: translateX(0);
}

/* Bild bleibt in natürlicher Höhe, nicht scrollbar */
#infoImage {
  flex: none;
  max-width: 100%;
  height: auto;
  margin-bottom: 0.5rem;    /* Abstand zum Text */
  cursor: zoom-in;

}

#infoVideoContainer {
  aspect-ratio: 16 / 9; /* Seitenverhältnis 16:9 */
  flex: none;
  max-width: 100%;
  height: auto;
  margin-bottom: 0.5rem;    /* Abstand zum Text */
}

/* Den Text-Container als flexibles, scrollbares Element definieren */
#infoText{
  flex: 1;                  /* nimmt verbleibenden Platz ein */
  overflow-y: auto;         /* nur hier scrollen */
  /* Optional: Innenabstand, damit Zeilen nicht am Rand kleben */
  padding-right: 0.5rem;
  /* Übergang für Opacity beibehalten */
  transition: opacity 1s ease;
}

#infoModalText{
  max-height: 30vh;     /* oder: 50vh; je nach Design */
  overflow-y: auto;
  text-align: left;
  padding-right: 4px;
  margin-bottom: 15px;
  background-color: #1e1e1e;
  border-radius: 15px;
  padding: 10px;
}

#infodrawerText{
  max-height: 20vh;     /* oder: 50vh; je nach Design */
  overflow-y: auto;
  text-align: left;
  margin-bottom: 50px;
  background-color: #1e1e1e;
  border-radius: 15px;
  padding: 5px;
}

/* Mobil: Panel komplett verstecken */
@media (max-width: 899px) {
  #infoPanel {
    display: none !important;
  }
}


  #descriptionDiv {
    opacity: 0;
    position: absolute;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    pointer-events: none; /* Allows clicks to pass through to the underlying viewer */
    transition: opacity 1s ease;
  }
  
  #descriptionDiv.show{
    opacity: 1;
  }
  
  #description{
    position: absolute;
    color: white;
    width: 80%;
    padding: 13px;

    bottom: 140px; /* Move the element to the middle of the container */
    left: 50%; /* Horizontal centering */
    transform: translateX(-50%);
    justify-content: center; /* Horizontal alignment for flex content */
    align-items: center; /* Vertical alignment for flex content (optional) */
  }
  
  #stepButtonDiv{
    display: none;
    flex-direction: column; /* Vertikale Ausrichtung */
    align-items: center; /* Horizontal zentrieren */
    justify-content: center; /* Vertikal zentrieren */
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: all;
    align-items: center;
  }

  #nextStepButton{
    background-color: transparent;
    border-radius: 8px;
    border: 1px solid white;
    cursor: pointer;
    color: white;
    width: 200px;
    height: 50px;
    transition: background-color 0.5s; /* Übergangsdauer definieren */
  }

  #nextStepButton:hover{
    background-color: rgba(126, 126, 126, 0.2);
  }
  
  #prevStepButton{
    all: unset; /* Entfernt alle Standardstile des Buttons */
    cursor: pointer; /* Zeigt an, dass der Text klickbar ist */
    color: white; /* Verwendet die Standardfarbe des Textes */
    visibility: hidden; /* Anfangs unsichtbar */
    width: 70px; /* width: 90px; mit arrow pfeil*/
    font-size: small;
    height: 20px;
    padding: 4px;
    margin-top: 5px;
    border-radius: 8px;
    text-align: center; /* Textzentrierung */
    transition: background-color 0.5s; /* Übergangsdauer definieren */
  }

  #prevStepButton:hover{
    background-color: rgba(126, 126, 126, 0.2);
  }
 .imageContainer, .imageContainer2 {
    display: none;
  }

  .moreInfoDiv {
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    z-index: 1000;
    transition: transform 0.5s cubic-bezier(.41,.85,.49,1.01);
    box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
    background: #282828;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    will-change: transform;
  }
  
  .drawer-handle {
    width: 44px;
    height: 6px;
    border-radius: 3px;
    background: #d5d6da;
    margin: 9px auto 8px auto;
    cursor: pointer;
  }
  
  .drawer-content {
    text-align: center;
    padding: 0 20px 18px 20px;
    font-size: 18px;
    color: #ffffff;
    user-select: none;
  }

  .drawer-content2{
    display: none;
    text-align: center;
    padding: 0 20px 18px 20px;
    font-size: 18px;
    color: #ffffff;
    user-select: none;
  }

  .drawer-content2.visible {
    display: block;
  }

  .drawer-content2.hide {
    display: none;
  }

  .extra-info {
    display: none;
    margin-top: 12px;
    font-size: 16px;
    color: #444;
    text-align: left;
  }
  
  /* Drawer geschlossen: nur Handle und Hinweis sichtbar */
  .moreInfoDiv.closed {
    display: block;
    height: 55px;
    transform: translateY(0);
    overflow: hidden;
  }

  .moreInfoDiv.hide {
    display: none;
  }
  
  .moreInfoDiv.open {
    display: block;
    height: 100%;
    transform: translateY(50px);
    box-shadow: 0 -6px 18px rgba(0,0,0,0.16);
  }
  
  .moreInfoDiv.open .extra-info {
    display: block;
  }
 /* 
  .imageContainer {
    left: 20px; 
  }
  
  .imageContainer2 {
    right: 20px; 
  } */
  
  .image {
    width: 142px;
    height: auto; /* Füllt den Kreis */
    border-radius: 8px;
    height: auto;
    box-shadow: none; /* Standard ohne Glow */
    animation: pulse 2s infinite;
    opacity: 0; /* Unsichtbar beim Start */
    transition: none; /* Keine Transition standardmäßig */
  }
  
  .image.visible {
    opacity: 1; /* Sichtbar nach dem Laden */
    box-shadow: 0 0 15px 5px rgba(200, 200, 200, 0.4); /* Glow-Effekt */
    transition: opacity 0.5s ease-in-out, box-shadow 0.5s ease-in-out; /* Nur Transition, wenn die Klasse .visible hinzugefügt wird */
  }
  
  @keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
  }
  
  @media (min-width: 500px) and (min-height: 510px) {
    #description{
        width: 400px;
    }
  }
  
  @media (min-width: 700px) and (min-height: 510px) {
    #descriptionDiv{
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    }
    #description{
        width: 510px;
        font-size: large;
    }
    #prevStepButton {
      font-size: medium;

    }
    #nextStepButton{
      width: 250px;
      font-size: large;
    }
    .image{
      width: 100%;
      height: auto;
    }

    .imageContainer, .imageContainer2 {
      display: block;

      position: fixed;
      bottom: 220px; /* Anhebung der Position */
      width: 150px;
      height: 67.5px; /* Berechnete Höhe für ein Seitenverhältnis von 16:9 */
      height: auto;
      border-radius: 8px; /* Leicht abgerundete Ecken */
      cursor: pointer;
      pointer-events: all;
      overflow: hidden; /* Wichtig für das Zuschneiden */
      z-index: 100;

    }
    .imageContainer2{
        right: 50px;
    }
    .imageContainer {
        left: 50px;
    }
    .button{
    height: 30px;
    width: 30px;
    }

  }
  
  @media (min-width: 900px) and (min-height: 510px) {

    #startHeading{
      font-size: xx-large;
  }
    .modalBackground {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(30, 30, 30, 0.9);
      z-index: 999;
    }

    .modal {
      position: fixed;
      top: 50%;
      left: 50%;
      width: 75%;
      max-width: 950px;
      height: 70%;
      background-color: black;
      border-radius: 10px;
      transform: translate(-50%, -50%);
      overflow: hidden;
    }

    #infoModalText, #infodrawerText {
      max-height: 17vh;     /* oder: 50vh; je nach Design */

    }

    .imageContainer2{
        right: 75px;
    }.imageContainer {
        left: 75px;
    }
  }
  
  @media (min-width: 1200px) and (min-height: 510px)  {
    .imageContainer2{
        width: 200px;
        right: 100px;
        bottom: 130px;
    }
    
    .imageContainer {
        width: 200px;
        left: 100px;
        bottom: 130px;
    }

    #description{
        width: 540px;
    }
  }


.modal-background{
    top: 50px;
    height: calc(100% - 50px);
}

@keyframes pulseAnimation {
    0% { transform: scale(1); opacity: 0.5;color:rgb(237, 239, 242) }
    50% { transform: scale(1.1); opacity: 1;  }
    100% { transform: scale(1); opacity: 0.5; color: rgb(237, 239, 242) }
}


.vr-modal{
    top: 50px !important;
    height:  calc(100% - 50px) !important;
}

.help-modal{
    top: 50px !important;
    height:  calc(100% - 50px) !important;
}

.terms-modal {
    top: 50px !important;
}

.headset-header{
    margin-top: 50px !important;
}

#help-modal{
    margin-top: 50px;
    height:  calc(100% - 50px) !important;
    z-index: 999;
}

.container {
    display: flex;
    flex-direction: column;
    margin: 0;
    width: auto;
    height: 100%;
    overflow: hidden;
}

#ThreejsBillboard {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border: none;
    border-radius: 0;
    overflow: hidden;
    z-index: 50;
}

#CloseThreejsBillboard {
    background-color: white; 
    height: 34px;
}

#ThreejsContainer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#mouseid-container {
    display: none;
    position: absolute;
    flex-direction: column;
    align-items: center; /* Zentriert die Kind-Elemente horizontal */
    justify-content: center;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%); /* Korrektur, um sowohl X als auch Y zu zentrieren */
    z-index: 50;
    pointer-events: none;
  }
  
  #mouseidtext{
    position: absolute;
    color: white;
    font-size: large;
    top: 80%;
    left: 50%;
    width: 220px;
    text-align: center; /* Stellt sicher, dass der Text zentriert ist */
    transform: translateX(-50%); /* Zentriert den Container in der Mitte der x-Achse */
    background-color: rgba(90, 90, 90, 0.5);
    padding: 5px;
    border-radius: 8px;
    z-index: 50;
  
  }

#mouseid {
    width: 100px;
    height: 100px;
    animation: moveLeftAndRight 4s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite; /* Animationseinstellungen */
}

  /* Definiere die CSS-Animation mit cubic-bezier-Timing-Funktion */
  @keyframes moveLeftAndRight {
    0% {
      transform: translate3d(0, 0, 0);
    }
    25% {
      transform: translate3d(-20px, 0, 0);
    }
    50%, 100% {
      transform: translate3d(0, 0, 0);
    } 
    75% {
      transform: translate3d(20px, 0, 0);
    }
  }

  @media screen and (min-width: 480px) {
        #closeGuidedTour{
            right: 10px;
        }
    }

@media only screen and (min-width: 489px) and (min-height: 488px) {
        .terms-modal {
            top: 100px !important;
        }
    } 

@media only screen and (min-width: 602px) and (min-height: 488px) {

    .vr-modal{
        top: 55% !important;
    }
}

