.tabs-wrapper {
  position: relative;
  width: 100%;
  padding: 6px;
  min-height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 8px;
}

.tabs-wrapper li {
  font-weight: 500;
  cursor: pointer;
  padding: 6px 10px;
  font-size: 14px;
  height: 24px;
  display: flex;
  align-items: center;
  color: #111;
  user-select: none;
  transition: color .25s ease;
  border-radius: 0.25rem ;
}

.tabs-wrapper li.active {
  color: #ff662c;
  font-weight: 600;
  background-color: #fff;
}

.tabs-wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 50%;
  background-color: #691883;
  z-index: -1;
  pointer-events: none;
  clip-path: var(--clip-path);
  transition: clip-path .25s ease;
}


/* .showCont{
  display: block;
} */