
.navbar .text-container{

  text {
    /*! cursor: pointer; */
    
    &:hover  {
/*       text-decoration: underline !important; */
    }
  }

}

g.btn {
    cursor: pointer !important;;
}
body{
  background:rgb(10,10,10);
}
.main_ui_viewer_thumbnails__thumbnail-preview {
  text-align: center;
}

.btn {
  cursor: pointer;
  
  path, text{
    transition: 0.3s;
  }
  &:hover {
    
    path{
      fill:#fff !important;
    }
    text{
      fill:rgb(220, 62, 31) !important;
    }
  }
}

#page2 {
    display: none;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.overlay.active {
  display: flex;
}

.overlay img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}


.card-container {
  display: flex;
  gap: 20px;
  padding: 40px 20px;
}

.card {
  flex: 1;
  opacity: 0;
  transition: all 0.8s ease-out;
}

.card-left {
  transform: translateX(-100px);
}

.card-right {
  transform: translateX(100px);
}

.card.visible {
  opacity: 1;
  transform: translateX(0);
}

.box-grid {
  /*! display: grid; */
  /*! grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
  /*! gap: 20px; */
  /*! padding: 40px 20px; */
  /*! transform-box: border-box; */
  /*! transform-origin: center; */
  position: relative;
}

.box {
  opacity: 0;
  transform-origin: center center;
/*   transform: scale(0.5); */
  transition: all 0.6s ease-out;
}

.box.visible {
  opacity: 1;
/*   transform: scale(1); */
}

/* Navigation buttons */
.page-nav {
  position: fixed;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 12px;
  z-index: 1000;
}

.nav-btn {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background-color: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-family: 'Berlin Sans FB', sans-serif;
}

.nav-btn:hover {
  border-color: rgba(255, 255, 255, 0.8);
  color: rgba(255, 255, 255, 0.9);
  background-color: rgba(255, 255, 255, 0.05);
}

.nav-btn--active {
  border-color: rgb(220, 62, 31);
  color: rgb(220, 62, 31);
  background-color: rgba(220, 62, 31, 0.1);
}