:root {
  --brand-main-color: 158.08deg 100% 40.78%;
  --brand-secondary-color: 0 0% 93.7%;
  --brand-tertiary-color: 0 0% 46.3%;
  --brand-background: 0 0% 93.7%;
  --white: 0 0% 100%;
  --black: 0 0% 0%;
  --black-alpha-0: 0 0% 0%/0;
  --black-alpha-1: 0 0% 0%/0.1;
  --black-alpha-2: 0 0% 0%/0.2;
  --black-alpha-5: 0 0% 0%/0.5;
  --gray-1: 0 0% 91%;
  --gray-2: 0 0% 76.9%;
  --gray-3: 0 0% 65.5%;
  --gray-4: 0 0% 55.7%;
  --gray-5: 0 0% 43.9%;
  --gray-calculator: 0 0% 46%;
  --purple: 242 82% 62%;
  --red: 356 95% 46%;
  --accessibility-focus-background-color: 0 0% 94.5%;
  --accessibility-focus-color: 198.7 64.9% 36.9%;
  --body-color: 0 0% 13.3%;
  --primary-btn-color: var(--brand-main-color);
  --secondary-btn-color: var(--brand-secondary-color);
  --tertiary-btn-color: var(--brand-tertiary-color);
  --category-background: 226.8 100% 50%;
  --right-sidebar-divider-color: 357.7 84.6% 51.8%;
  --table-border: 0 0% 94.1%;
  --bar-height: 0px;
  --nav-padding: 0px;
  --nav-height: 67px;
  --container-width: 100%;
  --section-padding-block: 2rem;
}
@media (min-width: 601px) {
  :root {
    --nav-padding: 60px;
  }
}
@media (min-width: 992px) {
  :root {
    --nav-padding: 82px;
  }
}
@media (min-width: 1200px) {
  :root {
    --nav-padding: 88px;
  }
}
@media (min-width: 992px) {
  :root {
    --nav-height: 86px;
  }
}
@media (min-width: 1200px) {
  :root {
    --nav-height: 92px;
  }
}
@media (min-width: 601px) {
  :root {
    --container-width: 540px;
  }
}
@media (min-width: 768px) {
  :root {
    --container-width: 720px;
  }
}
@media (min-width: 992px) {
  :root {
    --container-width: 940px;
  }
}
@media (min-width: 1200px) {
  :root {
    --container-width: 1140px;
  }
}
@media (min-width: 768px) {
  :root {
    --section-padding-block: 4rem;
  }
}
@media (min-width: 992px) {
  :root {
    --section-padding-block: 6rem;
  }
}
.admin-bar {
  --bar-height: 46px;
}
@media (min-width: 783px) {
  .admin-bar {
    --bar-height: 32px;
  }
}
.tabs-component:not(.with-title-wrapper) {
  padding-top: var(--section-padding-block);
}
.tabs-component .tab-headings {
  display: grid;
  justify-content: center;
  border-bottom: 1px solid hsl(var(--brand-main-color));
}
@media (min-width: 992px) {
  .tabs-component .tab-headings {
    display: flex;
  }
}
.tabs-component .tab-headings .mobile {
  position: relative;
}
@media (min-width: 992px) {
  .tabs-component .tab-headings .mobile {
    display: none;
  }
}
.tabs-component .tab-headings .mobile:before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
  background-image: url(../../images/angle-down.svg);
  background-size: cover;
  background-position: 0;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}
html[dir="rtl"] .tabs-component .tab-headings .mobile:before {
  right: unset;
  left: 0.5rem;
  transform: translateY(50%);
}
.tabs-component .tab-headings .mobile:after {
  content: "";
  position: absolute;
  height: 5px;
  width: 100%;
  background-color: hsl(var(--brand-main-color));
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
}
html[dir="rtl"] .tabs-component .tab-headings .mobile:after {
  left: unset;
  right: 50%;
  transform: translate(50%, -50%);
}
.tabs-component .tab-headings .mobile select {
  background-color: transparent;
  border: 0;
  padding: 1rem;
  padding-right: 2.25rem;
  appearance: none;
}
html[dir="rtl"] .tabs-component .tab-headings .mobile select {
  padding-right: 1rem;
  padding-left: 2.25rem;
}
.tabs-component .tab-headings .desktop {
  display: flex;
  gap: 2rem;
}
@media (max-width: 991px) {
  .tabs-component .tab-headings .desktop {
    display: none;
  }
}
.tabs-component .tab-headings .tab-heading {
  font-weight: 400;
  padding: 1rem;
  position: relative;
  cursor: pointer;
}
.tabs-component .tab-headings .tab-heading:after {
  content: "";
  position: absolute;
  height: 5px;
  width: 100%;
  background-color: transparent;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
html[dir="rtl"] .tabs-component .tab-headings .tab-heading:after {
  left: unset;
  right: 50%;
  transform: translate(50%, -50%);
}
.tabs-component .tab-headings .tab-heading:hover:after {
  background-color: hsl(var(--brand-main-color));
}
.tabs-component .tab-headings .tab-heading.active {
  font-weight: 700;
}
.tabs-component .tab-headings .tab-heading.active:after {
  content: "";
  position: absolute;
  height: 5px;
  width: 100%;
  background-color: hsl(var(--brand-main-color));
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
}
html[dir="rtl"] .tabs-component .tab-headings .tab-heading.active:after {
  left: unset;
  right: 50%;
  transform: translate(50%, -50%);
}
.tabs-component .tab-contents .tab-content {
  display: none;
}
.tabs-component .tab-contents .tab-content.active {
  display: block;
}
/*# sourceMappingURL=tabs.css.map */
