: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;
  }
}
.heading-wrapper {
  display: grid;
}
.heading-wrapper.has-carousel {
  display: flex;
  gap: 1rem;
}
@media (min-width: 480px) {
  .heading-wrapper.has-carousel {
    display: grid;
  }
}
@media (min-width: 768px) {
  .heading-wrapper.has-carousel {
    display: flex;
  }
}
.heading-wrapper .info {
  font-size: 0.75rem;
}
.heading-wrapper .carousel {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.heading-wrapper .carousel .carousel-next,
.heading-wrapper .carousel .carousel-prev {
  color: hsl(var(--brand-main-color));
  cursor: pointer;
  font-weight: 700;
}
.heading-wrapper .carousel .carousel-items .carousel-item {
  font-weight: 700;
  text-align: center;
}
.carousel-items .carousel-item {
  visibility: hidden;
  max-height: 0;
}
.carousel-items .carousel-item.active {
  visibility: visible;
  max-height: 1000px;
}
.comparison-wrapper {
  display: grid;
  gap: 1rem;
}
.comparison-wrapper .mobile-buttons {
  display: grid;
  gap: 1rem;
}
@media (min-width: 480px) {
  .comparison-wrapper .mobile-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .comparison-wrapper .mobile-buttons {
    display: none;
  }
}
.comparison-wrapper .table-wrapper table {
  width: 100%;
}
.comparison-wrapper .table-wrapper table td,
.comparison-wrapper .table-wrapper table th {
  padding: 1rem;
}
.comparison-wrapper .table-wrapper table thead tr th {
  text-align: start;
  background-color: hsl(var(--brand-main-color));
  white-space: nowrap;
  position: relative;
  display: none;
}
@media (min-width: 992px) {
  .comparison-wrapper .table-wrapper table thead tr th {
    display: table-cell;
  }
}
.comparison-wrapper .table-wrapper table thead tr th.show {
  display: table-cell;
}
.comparison-wrapper .table-wrapper table thead tr th:first-of-type {
  display: none;
}
@media (min-width: 480px) {
  .comparison-wrapper .table-wrapper table thead tr th:first-of-type {
    display: table-cell;
  }
}
.comparison-wrapper .table-wrapper table thead tr th:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
  z-index: 1;
  pointer-events: none;
}
html[dir="rtl"] .comparison-wrapper .table-wrapper table thead tr th:after {
  left: unset;
  right: 0;
}
.comparison-wrapper .table-wrapper table thead tr th.hover:after {
  box-shadow: 2px -2px 0 0 hsl(var(--brand-main-color)),
    -2px -2px 0 0 hsl(var(--brand-main-color)),
    -2px 0 0 0 hsl(var(--brand-main-color)),
    2px 0 0 0 hsl(var(--brand-main-color));
}
.comparison-wrapper .table-wrapper table tbody tr:nth-child(odd) > * {
  background-color: #fff;
}
.comparison-wrapper .table-wrapper table tbody tr td,
.comparison-wrapper .table-wrapper table tbody tr th {
  text-align: start;
}
.comparison-wrapper .table-wrapper table tbody tr th {
  font-weight: 500;
  display: none;
}
@media (min-width: 480px) {
  .comparison-wrapper .table-wrapper table tbody tr th {
    display: table-cell;
  }
}
.comparison-wrapper .table-wrapper table tbody tr td {
  display: none;
  position: relative;
  font-weight: 400;
}
@media (min-width: 992px) {
  .comparison-wrapper .table-wrapper table tbody tr td {
    display: table-cell;
  }
}
.comparison-wrapper .table-wrapper table tbody tr td.show {
  display: table-cell;
}
.comparison-wrapper .table-wrapper table tbody tr td:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
  z-index: 1;
  pointer-events: none;
}
html[dir="rtl"] .comparison-wrapper .table-wrapper table tbody tr td:after {
  left: unset;
  right: 0;
}
.comparison-wrapper .table-wrapper table tbody tr td.hover:after {
  box-shadow: -2px 0 0 0 hsl(var(--brand-main-color)),
    2px 0 0 0 hsl(var(--brand-main-color));
}
.comparison-wrapper .table-wrapper table tbody tr td .cell-wrapper {
  display: grid;
  gap: 1rem;
}
@media (min-width: 480px) {
  .comparison-wrapper
    .table-wrapper
    table
    tbody
    tr
    td
    .cell-wrapper
    .heading-wrapper {
    display: none;
  }
}
.comparison-wrapper .table-wrapper table tbody tr td .button-wrapper {
  display: grid;
}
.comparison-wrapper .table-wrapper table tbody tr:last-of-type td.hover:after {
  box-shadow: -2px 2px 0 0 hsl(var(--brand-main-color)),
    2px 2px 0 0 hsl(var(--brand-main-color)),
    -2px 0 0 0 hsl(var(--brand-main-color)),
    2px 0 0 0 hsl(var(--brand-main-color));
}
/*# sourceMappingURL=account-comparison.css.map */
