.highlite-servey-quest-card {
  background-color: #c7f3ea;
  border-radius: 16px;
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0);
  padding: 15px 12px;
  margin: auto;


  ::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

  .highlite-uppper {
    display: flex;
    column-gap: 10px;
    align-items: center;
   
  }

  .servey-status {
    padding: 2px 14px;
    background-color: white;
    border-radius: 20px;
  }

  .survey-voucher {
    width: 200px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0px 10px;
    box-sizing: border-box;
    margin-bottom: 10px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);

  
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    line-height: 15.29px;
    height: 20px; 
    cursor: pointer;
    text-overflow: ellipsis;
    .text {
      display: inline-block;
      text-overflow: ellipsis;
      overflow: hidden;
      color: #06182CCC;
    }
    
  }
  .survey-voucher:hover .text {
      animation: scroll-left 3s linear 1;
    }
    .survey-voucher .scroll-active{
      animation: scroll-left 3s linear 1;
    }
  @keyframes scroll-left {
      from {
        overflow: visible;
        transform: translateX(0);
      }
      to {
        overflow: visible;
        transform: translateX(-100%);
      }
    }
  

  .commission {
    padding: 2px 20px;
    background-color: #e1f3ef;
    border-radius: 20px;
  }

  .highlite-last {
    display: flex;
    align-items:center;
    justify-content: space-between;
    margin-top: 10px;

  }

  .highlite-points {
    display: flex;
  }

  .points-referrals {
    color: #858383;
    font-size: 0.9rem;
    font-weight: bold;
    position: relative;
    bottom: -14px;

  }

  .task {
    font-size: 16px;
    font-weight: 500;
    color: #06182CE5;
    margin-top: 0px;
    margin-bottom: 0;
  }

  .progress-bar {
    background-color: #fff;
    border-radius: 10px;
    height: 8px;
    margin: 10px 0;
    // position: relative;
    width: 60%;
    margin: 0 auto;

    .progress-indicator {
      margin: 0;
      background-color: #000;
      height: 100%;
      border-radius: 10px;
      transition: width 0.4s ease;
    }
  }

  .survey-go-button {
    background-color: black;
    color: #fff;
    width: 60px;
    height: 26px;
    padding: 2.5px 8px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;

    &:hover {
      background-color: #333;
    }
  }

}