:root {
  --primary-color: #000;
  --theme-color: #FF8000;
  --secondary-color: #FFD500;
  --button-color: #000;
  --button-hover-color: #000;
}

[data-theme=seed] {
  --theme-color: #35A198;
  --secondary-color: #FFD500;
  --button-color: #000;
  --button-hover-color: #000;
}

[data-theme=soss] {
  --theme-color: #8355E8;
  --secondary-color: #FFD500;
  --button-color: #000;
  --button-hover-color: #000;
}

[data-theme=salc] {
  --theme-color: #FFD500;
  --secondary-color: #6A2383;
  --button-color: #fff;
  --button-hover-color: #000;
}

.tabs {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .tabs {
    grid-template-columns: 50% 50%;
    grid-template-rows: minmax(700px, 900px);
    max-height: 100vh;
    overflow: hidden;
  }
}
.tabs__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
  z-index: 1;
  height: 100%;
  grid-row: 1;
  grid-column: 1;
}
@media (min-width: 1200px) {
  .tabs__left {
    padding-left: 90px;
    padding-right: 90px;
  }
}
.tabs__right {
  position: relative;
  grid-row: 1;
  grid-column: 2;
}
.tabs__nav {
  padding: 0;
  margin: 0;
  list-style: none;
}

.tab__pane {
  position: absolute;
  display: block;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  height: 100%;
}
.tab__pane.active {
  visibility: visible;
}
.tab__pane.show {
  opacity: 1;
}
.tab__pane figure {
  height: 100%;
}
.tab__pane figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tab__link {
  text-align: left;
  border: none;
  background: none;
  padding: 0;
}
.tab__link {
  font-size: 22px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .tab__link {
    font-size: calc(22px + 6 * (100vw - 390px) / (1050));
  }
}
@media (min-width: 1440px) and (max-width: 2000px) {
  .tab__link {
    font-size: calc(28px + (100vw - 1440px) * 28 / 1440);
  }
}
@media (min-width: 2000px) {
  .tab__link {
    font-size: calc(28px + (2000px - 1440px) * 28 / 1440);
  }
}
.tab__link__data {
  display: none;
  margin-top: 10px;
}
.tab__link.active + .tab__link__data {
  display: block;
}
.tab__content {
  height: 100%;
}
.tab__item {
  position: relative;
  margin-top: 30px;
  padding-bottom: 30px;
}
.tab__item:after {
  content: "";
  background: #E3E3E3;
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.25s ease-in-out;
}
.tab__item.active:after {
  background: var(--theme-color);
  height: 5px;
  width: calc(100% + 200px);
}
@media (max-width: 991.98px) {
  .tab__item.active:after {
    max-width: 100%;
  }
}

.layout {
  padding-left: 0;
  padding-right: 0;
}/*# sourceMappingURL=tabs.css.map */
