.shortcut {
  display: flex;
  width: 100%;
  justify-content: center;
  right: 0;
  top: 10px;
}

.shortcut.fixed {
  position: fixed;
}

.shortcut .tooltip {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  text-align: center;
  height: 45px;
  line-height: 45px;
  margin-bottom: 8px;
  background: rgb(var(--c-primary));
  cursor: pointer;
  border: 1px solid rgb(var(--c-neutral-lightest));
}

.shortcut a {
  color: rgb(var(--c-neutral-lightest));
  display: block;
  height: 45px;
  line-height: 45px;
  width: 100%;
}

@media (hover: hover) {
  .shortcut .tooltip:hover {
    color: rgb(var(--c-neutral-lightest));
    background: rgb(var(--c-primary-dark));
  }

  .shortcut .tooltip:hover > span {
    color: rgb(var(--c-neutral-lightest));
  }
}

.shortcut .font__fal, .shortcut .font__fab, .shortcut .font__fas, .shortcut .font__far {
  color: rgb(var(--c-neutral-lightest));
  font-size: 20px;
  height: 45px;
  line-height: 45px;
}

.shortcut__image img {
  max-width: 22px;
  max-height: 22px;
  margin: 0 auto;
}

.shortcut > span {
  margin: 0 5px;
}

.tooltip {
  position: relative;
  text-decoration: none;
}

.tooltip:after {
  content: attr(data-tooltip);
  position: absolute;
  top: 6px;
  /* right: 57px; */
  background: rgb(var(--c-primary));
  padding: 5px 15px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  white-space: nowrap;
  display: none;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  line-height: 25px;
  height: 35px;
  font-family: var(--f-family);
  font-size: var(--f-size-s-1);
}

.tooltip:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid rgb(var(--c-primary));
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
  right: 47px;
  top: 16px;
}

@media (hover: hover) {
  .tooltip:hover:after,
  .tooltip:hover:before {
    display: block;
  }
}

#page .shortcut > .top-fixed {
  display: none;
}

.startseite .content {
  padding-top: 67px;
}

/* =============================================================================
   Media Queries
   ========================================================================== */

@media (min-width: 800px) {
  .shortcut {
    position: absolute;
    right: 3%;
    top: 100px;
    width: 45px;
    z-index: 3000;
    display: block;
  }

  .shortcut > span {
    margin: 0;
  }

  #page .shortcut > .top-fixed {
    display: block;
  }

  .startseite .content {
    padding-top: 0;
  }
}