.zs_social_proof {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 32px;
}

.zs_social_proof .social_proof_selector {
  width: 100%;
  height: auto;
}

.zs_social_proof .social_proof_selector ul {
  list-style: none;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  overflow-x: auto;

  &::-webkit-scrollbar {
    display: none;
  }

  li {
    background: #dfe9f4;
    border-radius: 60px;
    padding: 20px 32px;
    font-family: #181934;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.5px;
    color: var(--blue-strong);
    cursor: pointer;
    transition: 0.3s ease-in-out;
    user-select: none;
    white-space: nowrap;
  }

  li:hover {
    opacity: 0.6;
  }

  li.active_selector {
    background: #181934;
    color: #dfe9f4;
  }
}

.zs_social_proof .social_proof_content {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
}

.zs_social_proof .social_proof_content .social_proof_content_image {
  width: 50%;
  height: auto;

  img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
  }
}

.zs_social_proof .social_proof_content .social_proof_content_text {
  width: 50%;
  height: -webkit-fill-available;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.zs_social_proof
  .social_proof_content
  .social_proof_content_text
  .social_proof_content_text_item {
  border-bottom: 2px solid #d3d3d34f;
  width: 100%;
  height: 100%;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  transition: 0.3s ease-in-out;

  h4 {
    font-family: var(--primary-font);
    font-size: 22px;
    font-weight: 600;
    line-height: 122%;
    letter-spacing: -0.5px;
    color: var(--neutral-strong);
    margin: 0;
    padding: 0;
    transition: 0.3s ease-in-out;
  }

  span {
    
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    color: #6e6e6e;
    margin: 0;
    padding: 0;
    transition: 0.3s ease-in-out;
  }
}

.zs_social_proof
  .social_proof_content
  .social_proof_content_text
  .social_proof_content_text_item:last-child {
  border-bottom: none;
}

@media (max-width: 900px) {
  .zs_social_proof {
    align-items: center;
  }

  .zs_social_proof .social_proof_selector {
    width: 100%;
    padding: 0px;
  }

  .zs_social_proof .social_proof_content {
    width: 100%;
    gap: 0;
  }

  .zs_social_proof .social_proof_content .social_proof_content_image {
    display: none;
  }

  .zs_social_proof .social_proof_content .social_proof_content_text {
    width: 100%;

    .social_proof_content_text_item {
      position: relative;
      padding: 40px 40px 40px 0;
      cursor: pointer;
      user-select: none;

      &::before {
        content: "";
        filter: brightness(0.4);
        position: absolute;
        top: 50%;
        right: 16px;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        z-index: 1;
        transition: 0.3s ease-in-out;
      }

      span {
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: opacity 0.4s ease-in-out 0.1s, max-height 0.4s ease-in-out;
      }
    }

    .social_proof_content_text_item.active_proof_item_content {
      &::before {
        transform: translateY(-50%) rotate(180deg);
      }

      span {
        opacity: 1;
        max-height: 200px;
        transition: opacity 0.4s ease-in-out 0.2s,
          max-height: 0.4s ease-in-out 0.1s;
      }
    }
  }
}
