.fixed-menu {
  position: fixed;
  top: 90px;
  right: 40px;
  z-index: 4; }

.fixed-menu__link {
  width: 16px;
  height: 16px;
  display: block;
  position: relative; }
  .fixed-menu__link:after, .fixed-menu__link:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%; }
  .fixed-menu__link:after {
    width: 6px;
    height: 6px;
    background: #fff; }
  .fixed-menu__link:before {
    width: 0px;
    height: 0px;
    border-radius: 50%;
    border: 1px solid #fff;
    opacity: 0;
    transition: 0.3s; }
  .fixed-menu__link:hover:before {
    width: 14px;
    height: 14px;
    opacity: 1; }

.fixed-menu__item.activescroll .fixed-menu__link:before {
  width: 14px;
  height: 14px;
  opacity: 1; }

.fixed-menu__item {
  margin-bottom: 5px; }
