.sticky-menu {
  position: sticky;
  top: 0;
  z-index: 5
}

.scanSticky {
  position: sticky;
  top: 20px
}

.flex-center {
  align-self: center;
}

.anchorMenuActivator {
    position: fixed;
    opacity: 0.8;
    bottom: 80px;
    left: 10px;
    display: none;
    background-color: #fff;
    border-radius: 17px;
}

@media (max-width: 1259px) {
  .anchorMenu {
    display: none;
    position: fixed;
    top: auto;
    right: 10px;
    bottom: 10px;
    left: 60px;
    z-index: 3500;
    max-height: calc(100vh - 20px);
    overflow: auto;
    border-radius: 8px;
    width: auto;
  }
  
  .anchorMenu__list {
    flex-direction: column;
  }
  
  .anchorMenu__item {
    border: none;
    text-align: left;
  }
  
  .anchorMenu_show {
    display: block;
  }

  .anchorMenuActivator_show {
    display: block;
    z-index: 4000;
  }
}