.information-menu .tab[role="tab"]:focus-visible {
  outline: 2px solid #336699;
  outline-offset: 4px;
}

.site-gallery {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.site-gallery-stage {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background: #fff;
}

.site-gallery-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease;
}

.site-gallery-image.active {
  opacity: 1;
  visibility: visible;
}

.site-gallery-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 32px;
  height: 32px;
  margin: -16px 0 0;
  padding: 0;
  border: 0;
  background: url("../images/fotorama.png") no-repeat;
  cursor: pointer;
}

.site-gallery-arrow--previous {
  left: 2px;
  background-position: 0 0;
}

.site-gallery-arrow--next {
  right: 2px;
  background-position: -32px 0;
}

.site-gallery-arrow:focus-visible {
  border-radius: 50%;
  outline: 3px solid rgba(0, 175, 234, 0.75);
  outline-offset: 2px;
}

.site-gallery-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 68px;
  padding: 2px 8px;
  overflow-x: auto;
  background: #fff;
}

.site-gallery-thumb {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 0;
  opacity: 0.65;
  background: #fff;
  cursor: pointer;
}

.site-gallery-thumb:hover,
.site-gallery-thumb.active {
  opacity: 1;
}

.site-gallery-thumb.active,
.site-gallery-thumb:focus-visible {
  border-color: #336699;
  outline: none;
}

.site-gallery-thumb-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 600px) {
  .site-gallery-stage {
    height: 180px;
  }

  .site-gallery-nav {
    gap: 2px;
    min-height: 33px;
    padding: 2px 4px;
  }

  .site-gallery-thumb {
    flex-basis: 41px;
    width: 41px;
    height: 29px;
    border-width: 1px;
  }
}
