.global-side-toolbar {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.global-side-toolbar__item {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: #fff;
  color: var(--gm-theme);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(94, 146, 225, 0.12);
  transition: transform .25s ease, box-shadow .25s ease;
}

.global-side-toolbar__item--top {
  flex-direction: column;
  gap: 2px;
}

.global-side-toolbar__item:hover {
  color:  var(--gm-theme);
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 12px 26px rgba(94, 146, 225, 0.12);
}

.global-side-toolbar__item:focus,
.global-side-toolbar__item:active {
  color:var(--gm-theme) ;
  background: #fff;
  box-shadow: 0 10px 24px rgba(94, 146, 225, 0.12);
  outline: none;
}

.global-side-toolbar__item .iconfont {
  font-size: 20px;
  line-height: 1;
}

.global-side-toolbar__top {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
}

