.tabs-wrapper {
  border-radius: 0;
  padding: 0;
  position: relative;
  margin-top: 2.5rem;
  position: relative;
}
.tabs-wrapper::after {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: var(--info-blue);
}

.tabs-links-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: fit-content;
}

.tabs-wrapper .tab-link {
  --medium-font-weight:600;
  font-weight: var(--medium-font-weight);
  font-size: 1rem;
  line-height: 1.5;
  padding: 1rem 1rem 0.85rem 1.1rem;
  transition: all 200ms ease-in-out;
  cursor: pointer;
  background-color: white;
  min-width: 140px;
  flex-basis: fit-content;
  flex-grow: 1;
  min-height: 54px;
  display: inline-block;
  text-align: center;
  color: #74848d;
  border: 1px solid rgba(33, 37, 47, 0.2);
  border-bottom: 1px solid transparent;
  border-radius: 4px;
  margin-top: 0.25rem;
  margin-right: 0.25rem;
  margin-bottom: 0;
}
@media (max-width: 1319px) {
  .tabs-wrapper .tab-link {
    border-bottom: 1px solid rgba(33, 37, 47, 0.2);
  }
}
@media (max-width: 991px) {
  .tabs-wrapper .tab-link {
    border-bottom: 1px solid rgba(33, 37, 47, 0.2);
  }
}
.tabs-wrapper .tab-link:hover {
  background: #fafafa;
}

.tabs-wrapper a.tab-link {
  text-decoration: none !important;
}

@media (min-width: 768px) {
  .tabs-wrapper .tab-link {
    border-radius: 4px 4px 0 0;
    margin-right: 0.25rem;
    margin-top: 0.25rem;
  }
}
.tabs-wrapper .tab-link.active .todo-numb {
  background: #EAF1FF;
  color: var(--info-blue);
}

.tabs-wrapper .tab-link .todo-numb {
  margin-left: 0.25rem;
  display: inline-block;
  border-radius: 100px;
  align-items: center;
  justify-content: center;
  margin-left: 0.25rem;
  width: min-content;
  min-width: 24px;
  padding: 0 0.35rem;
  background-color: #E6EAEC;
}

@media (max-width: 640px) {
  .tabs-wrapper .tab-link {
    display: block;
  }
}
.tabs-wrapper .tab-link.active {
  background: var(--info-blue);
  color: white;
  z-index: 2;
  border: 1px solid var(--info-blue);
  border-radius: 4px;
}

@media (min-width: 641px) {
  .tabs-wrapper .tab-link.active {
    border-radius: 4px 4px 0 0;
  }
}
.tab-item {
  display: none;
  padding: 0;
}

.tab-item.active {
  display: block;
}