.dots {
  position: fixed;
  right: 4vw;
  top: 40%;
  display: flex;
  /*  nasconde all'animazione Page Preloader */
  /* display: none; */
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  opacity: 1;
  cursor: default;
}
.menu-open .dots {
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .dots {
    display: none !important;
  }
}
.dots li {
  position: relative;
  display: block;
  float: left;
  margin: 30px 0;
  width: 14px;
  height: 14px;
  cursor: pointer;
}
.dots a {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: none;
  border-radius: 50%;
  text-indent: -999em;
  cursor: pointer;
  opacity: 0.8;
  position: absolute;
  overflow: hidden;
  background-color: #00a7ff5e;
  box-shadow: inset 0 0 0 0px rgb(255, 255, 255);
  -webkit-transition: all 0.3s ease;
  transition: var(--link-transition);
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.menu-open .dots a {
  opacity: 0;
}
.dots a:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 0;
  left: 0;
  width: 100%;
  background-color: var(--wp--preset--color--primario);
  box-shadow: 0 0 1px #fff;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
.dots.active a {
  -webkit-transform: scale3d(1.3, 1.3, 1.3);
  transform: scale3d(1.3, 1.3, 1.3);
}
.dots .active a:after {
  height: 120%;
}

.tooltip .tooltiptext {
  visibility: hidden;
  min-width: 120px;
  background-color: rgb(0 0 0 / 80%);
  backdrop-filter: blur(2px);
  color: #fff;
  white-space: nowrap;
  text-align: center;
  border-radius: 6px;
  font-size: 16px;
  padding: 10px 15px;
  font-weight: 500;
  position: absolute;
  top: -100%;
  right: 150%;
  z-index: 1;
  opacity: 0;
  transition: all 0.2s ease;
  pointer-events: none;
  cursor: default;
}

.tooltip.active .tooltiptext,
.tooltip:hover .tooltiptext {
  opacity: 1;
  visibility: visible;
}
