.TabsIcon-switcher {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.TabsIcon-switcher:after {
  content: "";
  position: absolute;
  width: 99vw;
  height: 1px;
  background: #f0f0f0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.TabsIcon-switch {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #b3b3b3;
  border-bottom: none;
  font-size: var(--textMd);
  font-weight: bold;
  color: #808080;
  transition: var(--animationBase);
  padding: 0 .9em;
  min-width: 12em;
  width: calc(25% - 2px);
  text-align: center;
  margin-bottom: var(--spaceLg);
}

.TabsIcon-switch:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(var(--spaceLg) * -1);
  background: var(--colorBrand);
  width: 100%;
  height: 0;
  transition: .25s;
}

.TabsIcon-switch.is-active, .TabsIcon-switch:hover, .TabsIcon-switch:focus {
  border-color: var(--colorOutlines);
  background: transparent;
  color: var(--colorBrand);
}

.TabsIcon-switch.is-active:after, .TabsIcon-switch:hover:after, .TabsIcon-switch:focus:after {
  height: 8px;
}

.TabsIcon-switch.is-responsive {
  border: 0;
  border-bottom: 1px solid #b3b3b3;
  width: 100%;
  align-items: flex-start;
  text-align: left;
  margin: 0;
  padding: var(--spaceMd) 0;
}

.TabsIcon-switch.is-responsive:first-of-type {
  border-left: 0;
}

.TabsIcon-switch.is-responsive:after {
  content: none;
}

.TabsIcon-switch:first-of-type {
  border-left: 1px solid #b3b3b3;
}

.TabsIcon-switch svg {
  margin-bottom: .15em;
}

.TabsIcon-switch:hover, .TabsIcon-switch:active, .TabsIcon-switch:focus {
  text-decoration: none;
}

.TabsIcon-switch + .TabsIcon-tab {
  display: block;
  max-height: 0;
  overflow: hidden;
  padding: 0;
}

.TabsIcon-switch + .TabsIcon-tab:before {
  content: none;
}

.TabsIcon-switch + .TabsIcon-tab.is-active {
  max-height: 2000px;
  padding: var(--spaceMd) 0;
}

.TabsIcon-switch + .TabsIcon-tab .TabsIcon-title {
  display: none;
}

.TabsIcon-tab {
  position: relative;
  display: none;
  transition: var(--animationBase);
  padding: var(--spaceXxl) 0;
}

.TabsIcon-tab:before {
  content: "";
  position: absolute;
  width: 99vw;
  height: 50px;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 15%, rgba(255, 255, 255, 0) 100%);
}

.TabsIcon-tab.is-active {
  display: block;
}

.TabsIcon-title {
  font-size: var(--textXl);
  margin-bottom: var(--spaceLg);
}

/*# sourceMappingURL=tabs.min.css.map */
