.sp-header {

  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  transition: all 0.2s ease !important;
  padding: 14px 15px 0 15px !important;
  pointer-events: none !important;
  display: flex !important;
  justify-content: space-between !important;
  border-radius: $borderRadius !important;
  overflow: hidden !important;


  &__shadow {
    opacity: 0.9 !important;
    transform: rotate(-180deg) !important;
    background-image: linear-gradient(to bottom, rgba(#000000, 0), #000000) !important;
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
  }

  &__wrapper {
    position: relative !important;
    z-index: 2 !important;

    h2, p {
      margin: unset !important;
    }
  }

  &__text {
    font-family: $fontBold;
  }

  &__title {
    font-size: 22px !important;
    margin-bottom: 0 !important;
    color: $titleColor !important;
    display: inline-block;
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
    width: 100%;

    &:empty {
      display: none;
    }

    &.tiny {
      font-size: 14px !important;
    }

    &.narrow {
      font-size: 16px !important;
    }

  }

  &__sub-title {
    font-family: $fontRegular;
    padding-top:5px;
    display: block !important;
    font-size: 16px !important;
    color: $descColor !important;
    display: inline-block;
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
    width:100%;

    &:empty {
      display: none;
    }

    &.tiny {
      display:none !important;
    }

    &.narrow {
      font-size: 12px !important;
    }

  }

  &__hidden {
    opacity: 0 !important;
  }
}