/**
 * Global settings.
 */
/**
 * Bacon overrides.
 */
/**
 * Mixins (imported after variables so they can use them)
 */
@keyframes skeleton-loading {
  0% {
    transform: translateX(-100%);
  }
  60% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}
:root {
  --load-container-max-width: calc(100% / 6);
  --table-background: #fff;
  --header-background: #fff;
  --header-shadow: 0 20px 20px -20px rgba(0, 0, 0, 0.1);
  --sidebar-background: #fff;
  --sidebar-width: 13rem;
  --label-background: #e6e6e6;
  --label-border: 0;
  --cell-background: var(--c-grayscale-off-white);
  --cell-border: 1px solid var(--c-grayscale-lighter);
  --cell-shadow: inset 0px -1px 0px 0px #fff;
  --cell-width: 18rem;
  --cell-spacing: 0.5rem;
  --indicator-height: 0.5rem;
  --indicator-background: var(--c-grayscale-lighter);
  --indicator-highlight: var(--c-brand-light);
}
@media (min-width: 1023px) {
  :root {
    --label-background: #fff;
    --label-border: 1px solid var(--c-grayscale-lighter);
  }
}

.product-comparison-table {
  position: relative;
  width: 100%;
  overscroll-behavior: contain;
  background: var(--table-background);
  margin-top: var(--s-7xl);
  margin-bottom: var(--s-7xl);
  overflow: hidden;
}
.product-comparison-table .c-text {
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
  margin-top: 0;
  margin-bottom: var(--s-7xl);
  margin-left: 0;
}
@media (min-width: 1023px) {
  .product-comparison-table .c-text {
    gap: var(--s-md);
    margin-bottom: var(--s-4xl);
    margin-left: var(--sidebar-width);
    padding-left: var(--cell-spacing);
  }
}
.product-comparison-table .c-text .product-comparison-table__title {
  color: var(--c-brand-secondary);
  font-size: var(--h2-size);
  line-height: var(--h2-line-height);
  font-weight: 700;
}
.product-comparison-table__header {
  position: relative;
  top: 0;
  z-index: 3;
  display: block;
  background: var(--header-background);
  border-bottom: var(--cell-border);
}
.product-comparison-table__header.hidden {
  display: none;
}
.product-comparison-table__header .product-comparison-table__table {
  padding-top: var(--s-xs);
  padding-bottom: var(--s-md);
}
.product-comparison-table__header .product-comparison-table__cell {
  scroll-snap-align: start;
}
.product-comparison-table__header .product-comparison-table__cell.heading {
  border: 0;
}
.product-comparison-table.is-sticky .product-comparison-table__header {
  position: fixed;
  max-width: calc(100% - 40px);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media (min-width: 1360px) {
  .product-comparison-table.is-sticky .product-comparison-table__header {
    max-width: 1280px;
  }
}
.product-comparison-table.is-sticky .product-comparison-table__header .product__description {
  visibility: hidden;
  position: absolute;
  top: 0;
  pointer-events: none;
  overflow: hidden;
}
.product-comparison-table__header-tracks {
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.product-comparison-table__header-tracks::-webkit-scrollbar {
  display: none;
}
.product-comparison-table__tracks {
  overflow: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: auto;
  scrollbar-color: var(--c-brand-light) var(--c-grayscale-lighter);
}
.product-comparison-table__tracks::-webkit-scrollbar {
  height: 10px;
}
.product-comparison-table__tracks::-webkit-scrollbar-track {
  background: var(--c-grayscale-lighter);
}
.product-comparison-table__tracks::-webkit-scrollbar-thumb {
  background: var(--c-brand-light);
}
.product-comparison-table__tracks::-webkit-scrollbar-thumb:hover {
  background: var(--c-brand-light);
}
.product-comparison-table .scroll-arrow {
  position: absolute;
  top: 100%;
  right: 0;
  font-size: 2.15rem;
  line-height: 1;
  margin-top: -1.575rem;
  padding: var(--s-xs);
  border: none;
  background-color: rgba(216, 216, 216, 0.8);
  visibility: hidden;
  z-index: 4;
}
.product-comparison-table .scroll-arrow:hover, .product-comparison-table .scroll-arrow:focus {
  background-color: rgba(216, 216, 216, 0.8);
}
.product-comparison-table .scroll-arrow.scroll-left-arrow {
  left: 0;
  right: auto;
}
@media (min-width: 1023px) {
  .product-comparison-table .scroll-arrow.scroll-left-arrow {
    left: var(--sidebar-width);
  }
}
.product-comparison-table__table {
  width: max-content;
  min-width: 100%;
}
.product-comparison-table__table.content .product-comparison-table__cell {
  padding: 4px var(--s-xl) 4px var(--s-sm);
}
.product-comparison-table__table.content .product-comparison-table__cell:not(.heading) {
  font-size: 0.9375rem;
  background: var(--cell-background);
}
.product-comparison-table__table.content .product-comparison-table__row {
  border-bottom: var(--cell-border);
}
.product-comparison-table__table.content .product-comparison-table__row:last-child .product-comparison-table__cell {
  border: 0;
}
.product-comparison-table__label {
  position: relative;
  display: block;
  padding: var(--s-2xs) var(--s-sm);
  font-size: var(--text-sm);
  font-weight: 700;
  background: var(--label-background);
}
@media (min-width: 1023px) {
  .product-comparison-table__label {
    display: none;
  }
}
.product-comparison-table__label .product-comparison-table__heading {
  position: sticky;
  left: 10px;
  z-index: 2;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.product-comparison-table__row {
  display: flex;
  gap: var(--cell-spacing);
}
.product-comparison-table__row .product__image {
  background-color: var(--c-grayscale-off-white);
  text-align: center;
}
.product-comparison-table__cell {
  flex: 1 0 var(--cell-width);
  width: var(--cell-width);
  min-height: var(--s-4xl);
}
.product-comparison-table__cell.heading {
  position: sticky;
  left: 0;
  z-index: 2;
  display: none;
  flex: 0 0 var(--sidebar-width);
  width: var(--sidebar-width);
  font-size: 1rem;
  background: var(--label-background);
  color: #000;
}
@media (min-width: 1023px) {
  .product-comparison-table__cell.heading {
    display: block;
  }
}
.product-comparison-table__indicator {
  position: relative;
  height: var(--indicator-height);
  background: var(--indicator-background);
}
.product-comparison-table__indicator span {
  position: absolute;
  left: 0;
  display: block;
  width: 100px;
  height: 100%;
  background: var(--indicator-highlight);
}
.product-comparison-table__load-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: var(--s-md);
  height: 100%;
}
.product-comparison-table__load-container .circle-value {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--c-brand-light);
}
.product-comparison-table__load-container .circle-value--filled {
  background-color: var(--c-brand-light);
}
.product-comparison-table .product__container {
  display: grid;
  justify-content: space-between;
}
.product-comparison-table .product__image {
  width: auto;
  height: 100px;
  min-height: 100px;
}
@media (min-width: 1023px) {
  .product-comparison-table .product__image {
    height: 120px;
    min-height: 120px;
  }
}
.product-comparison-table .product__title {
  margin-top: var(--s-md);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--c-grayscale);
}
.product-comparison-table .product__title a {
  display: inline-block;
  text-decoration: underline;
}
.product-comparison-table .product__title a .icon {
  margin-bottom: 0.2em;
  vertical-align: text-bottom;
}
.product-comparison-table .product__description {
  margin-top: var(--s-md);
  font-size: var(--text-sm);
  font-weight: 400;
}
.product-comparison-table .product__link {
  display: flex;
  align-items: flex-end;
  font-size: var(--text-md);
  font-weight: 500;
}