.featured-tabs__nav {
  border-bottom: 1px solid #D9DBE9;
  position: relative;
  overflow: hidden;
}
.featured-tabs__nav--auto-link-width .featured-tabs__link {
  flex: none;
}
.featured-tabs__link {
  position: relative;
  overflow: hidden;
  color: var(--bs-heading-color);
  background: none;
  border-bottom: 1px solid var(--bs-border-color);
  cursor: pointer;
  width: 100%;
  text-align: left;
  flex: 1;
}
.featured-tabs__link:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: url("_images/plus.svg") no-repeat left top;
  background-size: contain;
  transition: transform 0.3s ease;
}
@media (min-width: 1200px) {
  .featured-tabs__link:after {
    display: none;
  }
}
.featured-tabs__link.active:after {
  transform: translateY(-50%) rotate(45deg);
}
@media (min-width: 1200px) {
  .featured-tabs__link.active {
    color: var(--bs-heading-color);
  }
}
@media (min-width: 1200px) {
  .featured-tabs__link.active:before {
    width: 100%;
    height: 4px;
    background-color: var(--bs-heading-color);
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
  }
}
@media (min-width: 1200px) {
  .featured-tabs__link {
    text-align: center;
    width: unset;
    border: none;
    color: #77838F;
  }
}
.featured-tabs__panel {
  opacity: 0;
  visibility: hidden;
  /* transition: all .4s ease-in-out; */
  max-height: 0;
  border-bottom: 1px solid transparent;
}
.featured-tabs__panel.active {
  opacity: 1;
  visibility: visible;
  height: auto;
  max-height: 1000px;
  border-bottom: 1px solid var(--bs-border-color);
}
.featured-tabs__panel.active .featured-tabs__panel-title, .featured-tabs__panel.active .featured-tabs__panel-text-descriptions, .featured-tabs__panel.active .featured-tabs__panel-image {
  opacity: 1;
  transform: none;
}
@media (min-width: 1200px) {
  .featured-tabs__panel {
    border-bottom: none !important;
  }
}
@media (min-width: 1200px) {
  .featured-tabs__panel-text-descriptions {
    min-height: 290px;
  }
}
