.hover-bold a:hover,
.hover-bold a:focus {
  font-weight: bold;
  cursor: pointer;
}
.no-select {
  user-select: none;
  -webkit-user-select: none; /* для Safari */
  -moz-user-select: none;    /* для Firefox */
  -ms-user-select: none;     /* для IE/Edge */
  cursor: default;           /* чтобы не показывался курсор-выделение */
}

/* Фиксированная группа */
.fixed-group {
  position: fixed !important;
  top: 0; /* можно изменить на нужное смещение */
  left: 0;
  z-index: 1000; /* чтобы была выше остальных */
}

/* Скроллируемая группа */
.scroll-group {
  position: absolute !important;
  z-index: 1;
}

