html, body {
	overflow: hidden!important;
}

.headerTopRow, .navbar-wrapper.sticky-header, #mobileNavbarVersion {
	display: none;
}

#topFooter, .footer-wrapper {
	display: none!important;
}

#nav {
  	position: absolute;
  	
  	width: 100%;
	z-index: 9995;
    top: 37px;
    font-size: 16px;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#nav a {
	color: #fff!important;
  	opacity: 0.8;
  	transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#nav a:hover {
	opacity: 1;
}

#gallery {
    height: 100vh;
    width: 100vw;
    background-color: black;
    margin: 0rem;
    overflow: hidden;
  }

  .navigation {
    position: absolute;
    top: 50%;
    /* padding: 0 5%; */
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 3;
}

.navigation .prev, .navigation .next {
    cursor: pointer;
    font-size: 2rem;
    color: white;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    user-select: none;
}

#next {
  margin-right: 5%;
}

#prev {
  margin-left: 5%;
}

  #background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: background-image 0.5s ease-in-out;
    z-index: 1;
    
  }
  
  #image-track {
    display: flex;
    gap: 4vmin;
    width: max-content;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(0%, -50%); 
    user-select: none; /* -- Prevent image highlighting -- */
    z-index: 2;
    transition: all 0.5s ease-in-out;
  }

  #image-track > .image {
    width: 40vmin;
    height: 56vmin;
    object-fit: cover;
    object-position: 100% center;
    border-radius: 4px;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
  } 


  .minimzed {
    transition: all 0.5s ease-in-out;
  }
  
  #image-track.minimized {
    width: 70%;
    height: auto;
  
    top: auto;
    right: 10px;
    bottom: 0;
    transform: translate(0%, -50%); 
    gap: 2vmin;
    z-index: 2;
    justify-content: end;
    transition: all 0.5s ease-in-out;
}

#image-track.minimized > .image {
  width: 10vmin;
  height: auto;
  border-radius: 4px;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}