.containerSixPayHub .content-footer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 0.750em;
  padding: 20px 0;
  margin-top: 120px;
  margin-bottom: -40px;

  & .content-footer-social,
  & .social_share {
    flex: 1;
    -ms-flex: 1 1 auto;
  }

  & ul {
    margin: 0;
    list-style-type: none;

    & li {
      display: inline-block;
      vertical-align: bottom;
      padding: 10px 10px;
      margin-bottom: 0;
      border-bottom: 1px solid #B8B8B8;
    }
    
    & li:last-child {
      border-bottom: none;
    }
  
  }

  & .section {
    margin: 0 !important;
  }

  &.separator {
    border-bottom: 1px solid var(--color-rock-20);
    margin-top: 80px;
    margin-bottom: 40px;
  }
}


.containerSixPayHub .heading.description.title + ul {
  display: none; /* Oculta la lista inicialmente */
    position: absolute;
    background: white;
    padding: 10px;
    border: 1px solid #ccc;
    list-style: none;
    top: 50px; /* Ubica el ul justo debajo del título */
    left: 0;
    z-index: 10;
    width: 228px;
}

.containerSixPayHub .heading.description.title ul {
  display: none;
  flex-direction: column;
}

.social_share .fa.sp-printer {
    margin-left: 0
}

.containerSixPayHub .content-footer-social,
.containerSixPayHub .social_share {
  text-align: center;

  & a {
    font-size: 16px;

    &:hover {
      color: var(--color-action-blue);
    }

    /* Remove the "external link arrow" */
    &::after {
      content: none !important;
    }
  }

  & .title {
    display: block;
    line-height: 1.5;
    font-size: 0.85rem;
    margin-bottom: 20px;
    width: 250px;
    height: 35px;
    background-color: #F7F6F4;
    align-items: center;
    justify-content: center;
    display: flex;
    gap: 10px;
    font-family: "Noto Sans";
    text-transform: uppercase;
    color: #262626;
  }

  & h6 {
    margin-bottom: 3px;
  }
}

.containerSixPayHub .social_share .sp-printer,
.containerSixPayHub .social_share .fa-print {
  position: relative;
  top: 3px;

  &:after {
    content: '';
    display: block;
    position: absolute;
    width: 2px;
    height: 120%;
    top: -10%;
    left: -16px;
    background: var(--color-rock-20);
  }
}

.social_share .title {
    cursor: pointer
}

/*back to top*/
.containerSixPayHub .content-footer-scroll-top {
  position: absolute;
  right: 0;
  bottom: 20px;

  & a {
    display: inline-block;
    transform: rotate(-90deg) translateX(100%);
    transform-origin: 100% 100%;
    min-width: 120px;
    font-size: 14px;
    font-family: "Noto Sans";
    color: #B8B8B8;
    text-decoration: none;
  }

  & span {
    display: inline-block;
    margin-left: 10px;
    position: relative;
    bottom: -1px;
    transform: none;
    transition: transform var(--transition-default);
  }

  & a:hover span {
    transform: translateX(10px);
  }

  & path {
    stroke: currentColor;
    fill: none;
  }
}