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

.tabs-form-sidebar {
  overflow: auto;
}

.tabs-form-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
  margin-left: 0;
}
.tabs-form-wrapper .tab-form-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: var(--medium-font-weight);
  width: 175px;
  min-height: 75px;
  text-align: center;
  color: var(--blueish-dark-grey);
  border: 1px solid #d9dce1;
  border-radius: 4px;
  padding: 0.75rem;
  cursor: pointer;
  box-shadow: none;
  text-decoration: none;
  cursor: pointer;
  background-color: white;
  margin-right: 1.5rem;
}
.tabs-form-wrapper .tab-form-link i {
  font-size: 1.35rem;
  line-height: 1.5;
}
.tabs-form-wrapper .tab-form-link:not(.active) i, .tabs-form-wrapper .tab-form-link:not(.active) span {
  opacity: 0.7;
  transition: all 200ms ease-in-out;
}
.tabs-form-wrapper .tab-form-link span {
  letter-spacing: -0.15px;
}
.tabs-form-wrapper .tab-form-link:hover i, .tabs-form-wrapper .tab-form-link:hover span {
  opacity: 1;
}
.tabs-form-wrapper .radio-circle {
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 0.5rem;
  margin-right: 0.5rem;
  border: 1px solid var(--info-blue);
  border-radius: 100px;
  width: 18px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
}
.tabs-form-wrapper .radio-circle::after {
  content: "";
  position: absolute;
  background-color: var(--info-blue);
  height: 10px;
  width: 10px;
  border-radius: 150px;
}

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

.tabs-form-wrapper .tab-form-link.active {
  color: var(--info-blue);
  border: 1px solid var(--info-blue);
  z-index: 2;
}
.tabs-form-wrapper .tab-form-link.active .radio-circle {
  visibility: visible;
  opacity: 1;
}

.tab-form-item {
  display: none;
  padding: 0;
}

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