.social-media-icon-container {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;

  .icon-social-media-hover {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
  }

  &:hover {
    .icon-social-media-hover {
      display: block;
    }

    .icon-social-media {
      display: none;
    }
  }
}

.open-teaser-icon {
  font-size: 46px;
  cursor: pointer;
}

.icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.up-icon {
  position: fixed;
  bottom: 50px;
  right: 50px;
  cursor: pointer;
}

.scroll-up-container {
  @media (max-width: $breakpoint_sm) {
    display: none !important;
  }
}