﻿@charset "utf-8";

.sticky-section-nav{
  position: fixed;
  right: 12px;
  bottom: 60px;
  z-index: 1000;
  width: 60px;
  height:auto;
  display: flex;      
  opacity: 0;
  pointer-events: none;
  box-sizing: border-box;
  transition: opacity 0.3s ease, bottom 0.3s ease;
  z-index: 990;
}
.sticky-section-nav.visible {
  opacity: 1;
  pointer-events: auto;
}
.sticky-section-nav.at-bottom {
  bottom: 100px;
}
.sticky-section-nav ul {
  margin: 0 auto 12px;
  padding: 0;
  list-style-type: none;
}
.sticky-section-nav li{
  line-height: 2em;
  margin-bottom: 12px;
  width: 36px;
  height: 36px;
  border: 4px #FFF solid;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  background: var(--keycolor);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.sticky-section-nav li.active,
.sticky-section-nav li:hover {
  opacity: 1;
}
.sticky-section-nav li img{
  filter: invert(92%) sepia(91%) saturate(40%) hue-rotate(218deg) brightness(108%) contrast(100%);
  vertical-align: middle;
  width: 75%;
}