.navigation {
  position: sticky;
  top: 50%;
  bottom: 50%;
  z-index: 1000000;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navigation ul {
  position: absolute;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.navigation ul li {
  position: relative;
  list-style: none;
  width: 50px;
  height: 50px;
  z-index: 1;
  background: #0D5EF4;
  margin: 5px 0;
  border-radius: 50%;
}
.navigation ul li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 500;
}
.navigation ul li a .icon {
  position: relative;
  display: block;
  line-height: 56px;
  text-align: center;
  transition: 0.5s;
  font-family: var(--font-family);
  color: #1B63ED;
}
.navigation ul li a .icon i {
  font-size: 24px;
  color: #fff;
}
.navigation ul li a .title {
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  top: 50%;
  left: 105px;
  background: #fff;
  transform: translateY(-50%);
  padding: 5px 10px;
  border-radius: 6px;
  transition: 0.5s;
  box-shadow: 0.8rem 0.8rem 1.4rem #c8d0e7, -0.2rem -0.2rem 1.8rem #FFFFFF;
  font-family: var(--font-family);
  opacity: 0;
  visibility: hidden;
}
.navigation ul li a .title::before {
  content: " ";
  position: absolute;
  width: 12px;
  height: 12px;
  background: #fff;
  left: -10px;
  top: 46%;
  transform: rotate(45deg) translateY(-50%);
  border-radius: 2px;
}
.navigation ul li:hover a .title {
  opacity: 1;
  visibility: visible;
  transform: translateX(-25px) translateY(-50%);
}
.navigation ul li:hover a .icon {
  color: black;
}/*# sourceMappingURL=tarmoq.css.map */