body {
  margin: 0px;
  padding: 0px;
  overflow: hidden; 
}

#header-container {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  color: navy;
  width: 90%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0)
  );
  border: 0px solid blue;
  padding: 10px 0px 10px 20px;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 5;
}

#header {
  border: 0px solid red;
  text-align: left;
  font-size: 30px;
  font-weight: bold;
  color: navy;
  display: inline-block;
  margin-right: clamp(10px, 5vw, 20px); 
}

#links {
  border: 0px solid blue;
  display: inline-block;
}

.link {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: normal;
  color: navy;
  text-decoration: none;
  margin-right: clamp(10px, 5vw, 30px);	
}

.link:hover {
  color: rgb(100, 100, 150);
}

.slideshow-container {
/*
  max-width: 100%;
  position: relative;
  margin: 0px;
  height:500px;
  border: 0px solid red;
  */
}

.imageSlide {
  width: 100%;
  position: absolute;
  opacity: 0;
  transition: opacity 5s ease-in-out;
}

img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.controls {
  position: absolute;
  width: 100%;
  display: flex;
  height: 100vh;
}

.fullscreen:hover, .prev:hover, .next:hover {
  background-color: #888;
}

.fullscreen {
  cursor: pointer;
  background-color: #333;
  color: white;
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 30px;
  transition: 0.6s ease;
  user-select: none;
  padding: 16px 16px 14px 14px;
  z-index: 6;
}

.fscaret {
  position: absolute;
  margin: 0px;
  padding: 0px;
  font-size: 9px;
  font-weight: bold;
  user-select: none;
}

.fscaret-topleft {
  top: 0px;
  right: 20px;
}

.fscaret-topright {
  top: 0px;
  right: 2px;
}

.fscaret-bottomleft {
  top: 18px;
  right: 20px;
}

.fscaret-bottomright {
  top: 18px;
  right: 2px;
}

#fs-exit {
	display: none;
}

.fsexit-topleft {
  top: 6px;
  left: 6px;
}

.fsexit-topright {
  top: 6px;
  right: 6px;
}

.fsexit-bottomleft {
  bottom: 6px;
  left: 6px;
}

.fsexit-bottomright {
  bottom: 6px;
  right: 6px;
}

.prev, .next {
  background-color: #333;
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border: none;
  user-select: none;
  z-index: 3;
}

.prev {
  padding: 2px 10px 5px 8px;
  margin-left: 5px;
  left: 0;
}

.next {
  right: 0;
  padding: 2px 8px 5px 10px;
  margin-right: 5px;
}

.navigationPins {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 10px;
  z-index: 3;
}

.navigationPin {
  display: inline-block;
  height: 10px;
  width: 10px;
  margin: 0 2px;
  border-radius: 50%;
  background-color: #bbb;
  cursor: pointer;
  border: 1px solid grey;
  z-index: 3;
  transition: 0.6s ease;
}

.navigationPin.active {
  background-color: #717171;
}

.image-tooltip {
  position: absolute;
  background-color: white;
  color: black;
  font: 12px Segoe UI, sans-serif;
  padding: 4px 7px 5px 7px;
  border: 1px solid black;
  border-radius: 3px;
  display: none;
  z-index: 4;
}

.st-toggle {
}

.st-toggle > .st-right > img, .st-toggle > .st-left > img {
  height: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
}
