div.shortcut {
  background: rgb(var(--c-neutral-lightest));
  border-top: 5px solid rgb(var(--c-third));
  top: inherit;
  bottom: 0;
  z-index: 500;
  position: fixed;

  & .tooltip {
    background: none;
    border: none;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin: 0;
    color: rgb(var(--c-neutral));

    &::after {
      right: 57px;
    }

    & a {
      color: rgb(var(--c-neutral));
      height: 35px;
      line-height: 35px;
      border-right: 1px solid rgb(var(--c-neutral-lighter));
    }
  }

  & .tooltip.top-fixed {
    display: none;
  }

  & .tooltip:nth-last-child(2) a {
    border-right: none;
  }
}

.textimage {
  padding: 0 !important;
  border: none !important;

  & .textimage__content {
    .headline {
      text-align: left;
    }
  }

  & .textimage__imagewrap {
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
  }
}

.partner {

  & div.slider__iteminner {
    border: none;
    border-radius: var(--b-radius);
    padding: 1.5rem;
    height: 210px;

    & img {
      max-height: 120px;
    }
  }

}

.content > .frame:nth-child(2n) .partner .slider__iteminner {
  background: rgb(var(--c-neutral-lighter));
}

div.slider__prev .slider__arrow,
div.slider__next .slider__arrow {
  fill: rgb(var(--c-secondary));
  stroke: none;
  stroke-width: 2;
}

@media (min-width: 800px) {
  div.shortcut {
    top: 100px;
    bottom: inherit;
    position: absolute;
    border-bottom-left-radius: 5px;
    width: 50px;
    right: 0;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15);

    & .tooltip {
      & a {
        border-right: none;
        border-bottom: 1px solid rgb(var(--c-neutral-lighter));
        line-height: 50px;
        height: 50px;
        width: 35px;
      }
    }
    & .tooltip:nth-last-child(2) a {
      border-bottom: none;
    }
  }
}
@media (min-width: 900px) {
  div.textimage.-fullwidth {
    grid-template-columns: 4% 1fr 1fr 4%;

    & .textimage__content {
      grid-column: 2;
    }

    & .textimage__imagewrap {
      grid-column: span 2;
    }

  }

}

@media (min-width: 1580px) {
  div.textimage.-fullwidth {
    grid-template-columns: 1fr 50px 720px 720px 50px 1fr;

    & .textimage__content {
      grid-column: 3;
    }

    & .textimage__imagewrap {
      grid-column: span 3;
    }
  }
}


@media (min-width: 1600px) {
  div.shortcut {
    right: 4%;
    border-bottom-right-radius: 5px;
  }
}