a[data-tooltip],
abbr[data-tooltip] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: pointer;
}

.tooltip {
  --popup-background-color: var(--surface-card-color);
  --popup-border-color: var(--border-card-color);

  position: absolute;
  z-index: var(--z-tooltip);
  display: block;
  width: max-content;
  filter: drop-shadow(0 2px 5px hsl(0deg 0% 0% / 0.16));
}

.tooltip:not([active]) {
    display: none;
  }

.tooltip[arrow] {
    --arrow-size: 1rem;
    --arrow-rotation: 45deg;
  }

.tooltip[arrow] .tooltip__arrow {
    position: absolute;
    z-index: calc(var(--z-tooltip) - 1);
    display: none;
    inline-size: var(--arrow-size);
    block-size: var(--arrow-size);
    background-color: var(--popup-background-color);
    border-bottom: var(--popup-border-color) solid 1px;
    border-left: var(--popup-border-color) solid 1px;
    transform: rotate(var(--arrow-rotation));
  }

.tooltip .tooltip__container {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    inline-size: 11rem;
    padding: 1rem;
    background-color: var(--popup-background-color);
    border: var(--popup-border-color) solid 1px;
    filter:
            drop-shadow(0 2px 5px hsl(0deg 0% 0% / 0.1))
            drop-shadow(0 5px 5px hsl(0deg 0% 0% / 0.1));
    will-change: filter;
  }

.tooltip .tooltip__body {
    display: flex;
    flex-direction: column;
    overflow: auto;
    font-family: var(--font-family-body);
    font-size: var(--font-size-small-plus);
    line-height: 160%;
    color: var(--base-paragraph-text-color);
  }
twk-tag {
  --border-color: var(--border-tag-color);
  --icon-color: var(--text-tag-color);
  --tag-font-size: var(--font-size-small);
  --tag-line-height: 1.25;

  display: inline-flex;
  flex-direction: row;
  gap: 0.25rem;
  align-items: baseline;
  padding-block: var(--tag-vertical-padding, 0.125rem);
  padding-inline: var(--tag-horizontal-padding, 0.5rem);
  font-size: var(--tag-font-size);
  line-height: var(--tag-line-height);
  color: var(--text-tag-color);
  background-color: var(--surface-tag-color);
  border: var(--border-color) 1px solid;
  border-radius: var(--tag-border-radius, 0.25rem);
}
twk-tag[extra-small] {
    --icon-size: 0.5rem;
  }
twk-tag[small] {
    --icon-size: 0.625rem;
    --tag-font-size: var(--font-size-small-plus);
    --tag-border-radius: 0.5rem;
    --tag-vertical-padding: 0.25rem;
  }
twk-tag[medium] {
    --icon-size: 0.75rem;
    --tag-font-size: var(--font-size-medium-plus);
    --tag-line-height: 1.6;
    --tag-border-radius: 0.5rem;
    --tag-vertical-padding: 0.25rem;
  }
twk-tag[icon-leading] {
    --icon-vertical-align: baseline;
  }
twk-tag[special] {
    --icon-color: var(--border-color);
  }
twk-tag[success] {
    --border-color: var(--border-tag-highlight);
  }
twk-tag[accent] {
    --border-color: var(--accent-color);
  }
twk-tag[warning] {
    --border-color: var(--button-warning-border-color);
  }
twk-tag[brand] {
    --border-color: var(--brand-color);
  }
twk-tag[badge-excellent] {
    --border-color: var(--text-error-message-color);
  }
twk-tag[badge-ultimate] {
    --border-color: var(--ultimate-60);
  }
twk-tag[badge-great-value] {
    --border-color: var(--border-tag-highlight);
  }
twk-tag[badge-innovation] {
    --border-color: var(--visited-80);
  }
twk-tag[badge-best-buy] {
    --border-color: var(--accent-color);
  }
.score-summary-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-block: 1rem;
  border-top: 1px solid var(--border-base-color);
  border-bottom: 1px solid var(--border-base-color);
}
.score-summary-container h3 {
    margin: 0;
    font-size: var(--font-size-medium-plus);
    font-weight: var(--font-weight-bold);
  }
.score-summary-container .score-average {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-medium);
    line-height: 1.6;
    text-align: center;
  }
:is(.score-summary-container .score-average) .score {
      font-family: var(--font-family-heading);
      font-size: var(--font-size-jumbo);
      font-weight: var(--font-weight-bold);
    }
.score-summary-container .score-per-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
.score-summary-container .score-row {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
.score-summary-container .score-group {
    min-width: 90px;
  }
.score-summary-container .score-percentage {
    width: 100%;
    height: 0.5rem;
    background-color: var(--slider-bar-unselected-color);
    border-radius: 2px;
  }
:is(.score-summary-container .score-percentage) .score-bar {
      height: 0.5rem;
      background-color: var(--slider-bar-selected-color);
      border-radius: 2px;
    }
.score-summary-container .score-count {
    min-width: 20px;
    line-height: 160%;
    color: var(--secondary-paragraph-text-color);
    text-align: right;
  }
@media not (prefers-reduced-motion) {
  :root {
    scroll-behavior: smooth;
  }
}

.pdp-section-heading {
  display: flex;
  align-items: center;
  align-self: stretch;
  padding-top: 1rem;
  font-size: var(--font-size-large-plus);
  color: var(--heading-color);
  border-top: 2px solid var(--border-card-color);
}

@media screen and (min-width: 720px) {
  body.page-grid {
    grid-template-columns: minmax(8px, 1fr) [content-start] minmax(304px, 1440px) [content-end] minmax(8px, 1fr);
  }

  #layout.content-grid {
    grid-column: content;
  }

    #layout.content-grid #contentArea {
      width: auto;
      max-width: none;
    }
}

@media screen and (min-width: 1160px) {
      :is(.listing-grid.priceFilter .priceGraph) #b_re {
        display: block;
        margin-top: 2rem;
      }

    .listing-grid.priceFilter .bottom-banner {
      display: none;
      grid-column: 1/-1;
    }

      .show-with-few-prices:is(.listing-grid.priceFilter .bottom-banner) {
        display: block;
      }
}
.header-grid > .bar.flash {
  margin-inline: 0;
}

twk-pdp-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

twk-pdp-header .pdp-gallery-specs {
    display: flex;
    flex-wrap: nowrap;
    grid-area: gallery;
    gap: 0.5rem;
    align-items: center;
  }

:is(twk-pdp-header .pdp-gallery-specs) .pdp-editions {
      flex-grow: 2;
    }

twk-pdp-header .pdp-specs-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
  }

twk-pdp-header .pdp-specs-list-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: var(--font-size-medium);
  }

twk-pdp-header .product-heading {
    --icon-color: var(--heading-color);

    display: flex;
    align-items: center;
    justify-content: space-between;
  }

:is(twk-pdp-header .product-heading) .shield {
      margin-left: 0.5rem;

      /* Don't show 'Tweakers' in old-style score badges */
    }

:is(:is(twk-pdp-header .product-heading) .shield) > p {
        display: none;
      }

:is(twk-pdp-header .product-heading) .score-shield {
      width: 30px;
      height: auto;
    }

twk-pdp-header .product-heading h1 {
    --line-clamp-lines: 2;

    margin-bottom: 0;
    font-size: var(--font-size-large);
    line-height: normal;
  }

twk-pdp-header .breadcrumbinfo {
    --icon-color: var(--text-link-color);

    display: none;
  }

:is(twk-pdp-header .breadcrumb) li {
      display: none;
    }

:is(twk-pdp-header .breadcrumb) .back {
      display: inline;
    }

twk-pdp-header .breadcrumbinfo + .breadcrumb {
    margin-left: 0;
  }

twk-pdp-header .price {
    display: flex;
    gap: 0.5rem;
    align-items: baseline;
    font-size: var(--font-size-medium);
    text-wrap: nowrap;
  }

:is(twk-pdp-header .price) .icon {
      --icon-size: 0.75rem;
      --icon-vertical-align: baseline;
    }

twk-pdp-header .price-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

:is(twk-pdp-header .price-block) .action-buttons {
      position: relative;
      display: flex;
      gap: 0.5rem;
      align-items: center;
      justify-content: normal;
    }

:is(:is(twk-pdp-header .price-block) .action-buttons) .hidden {
        display: none;
      }

:is(:is(twk-pdp-header .price-block) .action-buttons) .action-button {
        --icon-size: 1rem;
        --icon-vertical-align: top;
        
        position: relative;
        width: 2rem;
        height: 2rem;
        border-width: 1px;
      }

:is(:is(twk-pdp-header .price-block) .action-buttons) button > twk-icon {
        pointer-events: none;
      }

:is(twk-pdp-header .price-block) twk-price-alert .price-alert-price-line {
      text-wrap: nowrap;
    }

twk-pdp-header .price-item {
    display: flex;
    gap: 0.5rem;
    align-items: baseline;
    justify-content: space-between;
  }

:is(twk-pdp-header .price-item) .price {
      min-width: 0;
    }

twk-pdp-header .lowest-price {
    font-size: var(--font-size-large-plus);
    font-weight: var(--font-weight-bold);
  }

twk-pdp-header .specs-reviews {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: baseline;
    justify-content: space-between;
  }

:is(twk-pdp-header .specs-reviews) div {
      font-weight: var(--font-weight-normal);
    }

:is(twk-pdp-header .specs-reviews) .spec-line {
      --line-clamp-lines: 1;
    }

:is(twk-pdp-header .specs-reviews) .reviews {
      display: inline;
      flex-grow: 0;
      text-wrap: nowrap;
    }

:is(:is(twk-pdp-header .specs-reviews) .reviews) > div {
        display: inline;
      }

:is(:is(twk-pdp-header .specs-reviews) .reviews) a {
        margin-inline-start: auto;
      }

twk-pdp-header twk-meta-tag[product-review-score-count] {
    --background-color: var(--surface-base-color);
  }

:is(twk-pdp-header .compare-button) button.compare {
      --icon-size: 1rem;
      --icon-vertical-align: top;

      width: 2rem;
      height: 2rem;
      border-width: 1px;
    }

:is(twk-pdp-header .compare-button) input[type="checkbox"] {
      display: none;
    }

twk-pdp-header .collection-buttons {
    --count-text-color: var(--tertiary-paragraph-text-color);

    flex-direction: row;
    flex-wrap: wrap;
    inline-size: 100%;
  }

:is(twk-pdp-header .collection-buttons) .compare input[type="checkbox"] {
      display: none;
    }

:is(twk-pdp-header .collection-buttons) > a {
      box-sizing: border-box;
    }

:is(twk-pdp-header .collection-buttons) > .btn {
      flex-grow: 1;
    }

:is(twk-pdp-header .collection-buttons) .hide-on-mobile {
      display: none;
    }

:is([data-popup]:is(:is(twk-pdp-header .collection-buttons) .btn),[data-modal]:is(:is(twk-pdp-header .collection-buttons) .btn)) > * {
          pointer-events: none;
        }

:is([data-popup]:is(:is(twk-pdp-header .collection-buttons) .btn),[data-modal]:is(:is(twk-pdp-header .collection-buttons) .btn)):not(.checked) twk-icon {
          display: none;
        }

.compare:is(:is(twk-pdp-header .collection-buttons) .btn) input,.compare:is(:is(twk-pdp-header .collection-buttons) .btn):not(.selected) twk-icon {
        display: none;
      }

.checked:is(:is(twk-pdp-header .collection-buttons) .btn) {
        --count-text-color: var(--button-state-text-color);
      }

:is(:is(twk-pdp-header .collection-buttons) .btn) .count {
        margin-left: 0.25rem;
        color: var(--count-text-color);
      }

twk-pdp-header .media-gallery-container {
    position: relative;
  }

:is(twk-pdp-header .media-gallery-container) .shield {
      position: absolute;
      inset: 0.5rem 0.5rem auto auto;
      z-index: var(--z-top);
      display: none;

      /* Don't show 'Tweakers' in old-style score badges */
    }

:is(:is(twk-pdp-header .media-gallery-container) .shield) > p {
        display: none;
      }

:is(twk-pdp-header .media-gallery-container) .score-shield {
      width: 3rem;
      height: auto;
    }

twk-pdp-header twk-media-gallery {
    width: 100%;
  }

:is(twk-pdp-header twk-media-gallery) .gallery-thumbs {
      margin-right: 0;
    }

twk-pdp-header twk-star-rating {
    margin-right: 0.5rem;
  }

twk-pdp-header .gallery-thumbs {
    align-self: flex-end;
    margin-inline-end: 0.5rem;
  }

@media screen and (max-width: 799px) {
      :is(twk-pdp-header .collection-buttons) .compare {
        display: none;
      }
}

@media screen and (min-width: 800px) {
  twk-pdp-header {
    display: grid;
    grid-template-areas:
      'breadcrumbs gallery'
      'heading gallery'
      'editions gallery'
      'specs gallery';
    grid-template-rows: repeat(3, min-content) 1fr;
    grid-template-columns: repeat(2, minmax(0,1fr));
    row-gap: 0.5rem;
    column-gap: 1rem;
  }

    twk-pdp-header .pdp-gallery-specs {
      display: contents;
    }

      :is(twk-pdp-header .pdp-gallery-specs) .pdp-editions {
        display: flex;
        flex-direction: column;
        grid-area: editions;
        gap: 0.5rem;
        font-size: var(--font-size-medium);
      }

      :is(twk-pdp-header .pdp-gallery-specs) .compare-button {
        display: none;
      }

    twk-pdp-header .breadcrumbinfo {
      display: inline-block;
    }

      :is(twk-pdp-header .breadcrumbinfo) > twk-icon {
        pointer-events: none;
      }

      :is(twk-pdp-header .breadcrumbinfo) twk-breadcrumb-info-tooltip:not([active]) {
        display: none;
      }
      :is(twk-pdp-header .breadcrumb) li a {
        font-size: 0.75rem;
      }

      :is(twk-pdp-header .breadcrumb) li {
        display: inline;
      }

      :is(twk-pdp-header .breadcrumb) > li {
        float: left;
      }

      :is(twk-pdp-header .breadcrumb) .noLink {
        color: var(--base-paragraph-text-color);
      }

      :is(twk-pdp-header .breadcrumb) .hide {
        display: none;
      }

    twk-pdp-header .breadcrumbinfo + .breadcrumb,twk-pdp-header twk-breadcrumb-info-tooltip + .breadcrumb {
      margin-left: 17px;
    }

    twk-pdp-header .product-heading {
      grid-area: heading;
    }

      :is(twk-pdp-header .product-heading) h1 {
        margin-bottom: 0.5rem;
        font-size: var(--font-size-large-plus);
      }

      :is(twk-pdp-header .product-heading) .shield {
        display: none;
      }

    twk-pdp-header .product-breadcrumbs {
      grid-area: breadcrumbs;
    }

    twk-pdp-header .pdp-specs-list {
      grid-area: specs;
      justify-content: space-evenly;
    }

    twk-pdp-header .specs-reviews {
      flex-direction: column;
      gap: 0.5rem;
    }

      :is(twk-pdp-header .specs-reviews) .seperator {
        display: none;
      }

      :is(twk-pdp-header .specs-reviews) .reviews,:is(twk-pdp-header .specs-reviews) .specs {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
      }

      :is(twk-pdp-header .specs-reviews) .reviews {
        flex-grow: 2;
      }

    twk-pdp-header .media-gallery-container {
      grid-area: gallery;
    }

      :is(twk-pdp-header .media-gallery-container) .shield {
        inset: 0.25rem calc(50% - 10rem) auto auto;
        display: block;
      }

    twk-pdp-header twk-media-gallery {
      --large-thumb-height: 15.75rem;
      --small-thumb-size: 3rem;
    }

    twk-pdp-header .gallery-thumbs {
      align-self: auto;
      margin-inline-end: 0;
    }
      :is(twk-pdp-header .collection-buttons) .hide-on-mobile {
        display: flex;
      }
}

@media screen and (min-width: 1160px) {
  twk-pdp-header {
    margin-inline: 0.5rem;
  }

    twk-pdp-header .price-block {
      flex-direction: row;
      flex-wrap: wrap;
      align-items: baseline;
      justify-content: space-between;
    }

    twk-pdp-header .collection-buttons > .btn {
      flex-grow: initial;
    }
}
twk-product-edition-dropdown .selectable-dropdown {
    position: relative;
    height: 2rem;
    cursor: pointer;
    background-color: var(--surface-card-color);
    border: 1px solid var(--border-card-color);
  }
:is(twk-product-edition-dropdown .selectable-dropdown)  > div {
      background: var(--surface-base-color);
    }
:is(:is(twk-product-edition-dropdown .selectable-dropdown) > div)::before {
        position: absolute;
        right: 0;
        display: inline-block;
        width: 2rem;
        height: 2rem;
        content: '';
        background: var(--toggleable-chevron) no-repeat center / 6px 10px;
        transform: rotate(90deg);
      }
.dropdown:is(twk-product-edition-dropdown .selectable-dropdown) > div::before {
        transform: rotate(-90deg);
      }
.dropdown:is(twk-product-edition-dropdown .selectable-dropdown) ul {
        top: 2rem;
        display: flex;
        flex-direction: column;
        min-width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
        background-color: var(--surface-card-color);
        border: 1px solid var(--surface-bar-color);
      }
:is(.dropdown:is(twk-product-edition-dropdown .selectable-dropdown) ul) li {
          height: 2rem;
          padding-inline: 0.5rem;
          line-height: 2rem;
        }
:is(:is(.dropdown:is(twk-product-edition-dropdown .selectable-dropdown) ul) li):hover {
            background-color: var(--surface-dropdown-hover-color);
          }
.dropdown:is(twk-product-edition-dropdown .selectable-dropdown) a {
        --line-clamp-lines: 1;

        overflow: hidden;
        text-overflow: ellipsis;
      }
:is(twk-product-edition-dropdown .selectable-dropdown) .specName {
      --line-clamp-lines: 1;

      margin-inline-start: 0.5rem;
      margin-inline-end: 2rem;
      overflow: hidden;
      text-overflow: ellipsis;
      font-weight: normal;
      line-height: 2rem;
    }
:is(twk-product-edition-dropdown .selectable-dropdown) ul {
      position: absolute;
      top: -5px;
      left: -1px;
      z-index: var(--z-spec-dropdown);
      display: none;
    }
.pdp-section-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-inline: 0.5rem;
  margin-bottom: 1rem;
}
.pdp-section-grid h1,.pdp-section-grid h2 {
    margin: 0;
  }

.pdp-section-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media screen and (min-width: 1160px) {
  .pdp-section-grid {
    --grid-column-span: 9;

    display: grid;
    grid-template-columns: repeat(var(--grid-column-span), 104px);
    gap: 1rem;
    justify-content: center;
    margin-inline: 0.5rem;
  }

    .pdp-section-grid .pdp-section-heading {
      grid-column: 1/-1;
      margin-bottom: 0;
    }

  .pdp-section-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, 104px);
    grid-column: 1/-1;
    gap: 1rem;
  }
}

@media screen and (min-width: 1504px) {
  .sidebar-open .pdp-section-grid {
    --grid-column-span: 9;

    justify-content: center;
  }

  .pdp-section-grid {
    --grid-column-span: 12;

    justify-content: initial;
    padding: 0;
  }
}

@media screen and (min-width: 1848px){
  .sidebar-open .pdp-section-grid {
    --grid-column-span: 12;
  }
}
.popular-specs-container .popular-specs-heading {
    display: flex;
    gap: 1rem;
    align-items: center;
    align-self: stretch;
    padding: 0.75rem 1rem;
    font-size: var(--font-size-medium);
    font-weight: var(--font-weight-bold);
    background: var(--surface-bar-color);
    border-radius: var(--border-radius-small);
  }
.popular-specs-container .popular-specs-list {
    padding-inline-start: 0;
    list-style: none;
  }
.popular-specs-container .popular-spec-item {
    display: grid;
    grid-template-columns: 1fr 1rem 1fr;
    gap: 1rem;
    padding: 0.75rem 1rem;
    font-size: var(--font-size-medium);
    border-bottom: 1px solid var(--border-base-color);
  }
[name='fa-check']:is(:is(.popular-specs-container .popular-spec-item) twk-icon) {
        --icon-color: var(--icon-positive-color);
      }
[name='fa-xmark']:is(:is(.popular-specs-container .popular-spec-item) twk-icon) {
        --icon-color: var(--icon-negative-color);
      }
:is(.popular-specs-container .popular-spec-item) .spec-info-container {
      --icon-color: var(--accent-color);
    }
:is(:is(.popular-specs-container .popular-spec-item) .spec-info-container) twk-icon {
        cursor: help;
      }
:is(.popular-specs-container .popular-spec-item) .tooltip.spec-info {
      width: auto;
      max-width: var(--grid-column-width);
    }
:is(:is(.popular-specs-container .popular-spec-item) .tooltip.spec-info) .tooltip__container {
        width: auto;
      }
:is(:is(:is(.popular-specs-container .popular-spec-item) .tooltip.spec-info) .tooltip__body) h4,:is(:is(:is(.popular-specs-container .popular-spec-item) .tooltip.spec-info) .tooltip__body) p {
          margin: 0;
        }
.popular-specs-container .slide-in-buttons-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
.popular-specs-container .specs-link {
    width: fit-content;
  }

.pdp-ai-product-text-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pdp-ai-product-text-container h3,.pdp-ai-product-text-container h4 {
    margin: 0;
  }

.pdp-ai-product-text-container .pdp-ai-product-text-content {
    font-size: var(--font-size-medium);
    line-height: var(--line-height-medium);
  }

.pdp-ai-product-text-container .pdp-ai-product-text-heading {
    --icon-size: 3rem;
    --icon-color: var(--surface-card-selectable-item-highlight-color);

    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-template-columns: 1fr auto;
    gap: 1rem;
  }

:is(.pdp-ai-product-text-container .pdp-ai-product-text-heading) .pdp-ai-product-text-title {
      grid-column: 1;
      padding-block: 0.75rem;
      font-size: var(--font-size-large);
      font-weight: var(--font-weight-bold);
    }

:is(.pdp-ai-product-text-container .pdp-ai-product-text-heading) .pdp-ai-product-text-subtitle {
      grid-column: 1;
      font-size: var(--font-size-small-plus);
      font-style: italic;
      font-weight: var(--font-weight-normal);
    }

:is(.pdp-ai-product-text-container .pdp-ai-product-text-heading) h3,:is(.pdp-ai-product-text-container .pdp-ai-product-text-heading) h4 {
      margin: 0;
    }

:is(.pdp-ai-product-text-container .pdp-ai-product-text-heading) .icon {
      grid-row: 1/-1;
      grid-column: 2;
    }

@media screen and (min-width: 1160px) {
  .pdp-section-specs {
    --specifications-column-span-end: 6;
  }

  .popular-specs-container {
    grid-column: 1/var(--specifications-column-span-end);
  }

  .pdp-ai-product-text-container {
    grid-column: var(--specifications-column-span-end)/-1;
  }

    .pdp-ai-product-text-container .pdp-ai-product-text-content {
      max-height: 16rem;
      padding-right: 1rem;
      overflow-y: auto;
      font-size: var(--font-size-medium);
      line-height: var(--line-height-medium);
      scrollbar-width: thin;
    }
}
.pdp-section-video .pdp-section-content > * {
  grid-column: 1/-1;
}
ul.pros-cons {
  padding: 0;
  margin: 0;
  list-style: none;
}
ul.pros-cons li {
    display: flex;
    gap: 0.5rem;
    padding-bottom: 0.25rem;
    font-size: var(--font-size-medium);
    line-height: 1.3;
    overflow-wrap: break-word;
  }
:is(ul.pros-cons li) .icon {
      --icon-vertical-align: top;
    }
.pro:is(:is(ul.pros-cons li) .icon) {
        --icon-color: var(--icon-positive-color);
      }
.con:is(:is(ul.pros-cons li) .icon) {
        --icon-color: var(--icon-negative-color);
      }
:is(ul.pros-cons li) a {
      -webkit-text-decoration: none;
      text-decoration: none;
    }
:is(:is(ul.pros-cons li) a):hover {
        -webkit-text-decoration: underline;
        text-decoration: underline;
      }

.product-review-summary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  container: product-review-summary / inline-size;
  font-size: var(--font-size-medium);
}

.product-review-summary .product-review-author {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

:is(.product-review-summary .product-review-author) .author-container {
      display: flex;
      gap: 0.5rem;
    }

:is(.product-review-summary .product-review-author) .thumb.community {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      padding: 0;
      border: 0;
    }

:is(:is(.product-review-summary .product-review-author) .thumb.community)  > img {
        width: 100%;
        height: 100%;
      }

:is(.product-review-summary .product-review-author) .info {
      display: flex;
      flex-grow: 1;
      flex-direction: column;
      gap: 0.05rem;
      margin-top: -0.25rem;
    }

:is(.product-review-summary .product-review-author) .author-info{
      display: flex;
      gap: 0.3rem;
      align-items: center;
    }

:is(.product-review-summary .product-review-author) .author-info .username {
      font-size: var(--font-size-medium);
      font-weight: bold;
      color: var(--base-paragraph-text-color);
      -webkit-text-decoration: none;
      text-decoration: none;
    }

:is(.product-review-summary .product-review-author) .review-info {
      font-size: var(--font-size-small-plus);
      color: var(--tertiary-paragraph-text-color);
    }

:is(.product-review-summary .product-review-author) .product-source {
      text-align: right;
    }

:is(.product-review-summary .product-review-author) .scoreButton.large {
      min-width: 28px;
    }

.product-review-summary .product-review-scorecard {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

:is(.product-review-summary .product-review-scorecard) .product-title {
      display: flex;
      gap: 1rem;
      justify-content: space-between;
      order: 1;
    }

:is(:is(.product-review-summary .product-review-scorecard) .product-title) h3 {
        margin: 0;
      }

:is(:is(.product-review-summary .product-review-scorecard) .product-title) a {
        color: var(--text-link-color);
        -webkit-text-decoration: none;
        text-decoration: none;
      }

:is(:is(:is(.product-review-summary .product-review-scorecard) .product-title) a):hover {
          -webkit-text-decoration: underline;
          text-decoration: underline;
        }

:is(.product-review-summary .product-review-scorecard) .review-proscons {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      order: 3;
    }

:is(.product-review-summary .product-review-scorecard) .review-summary {
      order: 2;
      font-size: var(--font-size-medium);
      line-height: 160%;
    }

:is(.product-review-summary .product-review-scorecard) .review-score {
      order: 4;
    }

:is(.product-review-summary .product-review-scorecard) .review-cta {
      display: flex;
      justify-content: space-between;
      order: 5;
    }

@container product-review-summary (width >= 41rem) {
    .product-review-summary .product-review-scorecard .review-proscons {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }
  }

.pdp-section-user-reviews  > a {
    max-width: fit-content;
  }

.pdp-section-user-reviews .product-review-section-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

:is(.pdp-section-user-reviews .product-review-summary) h3 {
      margin: 0;
      font-family: var(--font-family-heading);
      font-size: var(--font-size-large);
      font-weight: var(--font-weight-bold);
      color: var(--heading-color);
    }

:is(:is(.pdp-section-user-reviews .product-review-summary) .product-review-scorecard) p {
        margin: 0;
      }

:is(:is(.pdp-section-user-reviews .product-review-summary) .product-review-scorecard) .review-score {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        order: 2;
      }

:is(:is(.pdp-section-user-reviews .product-review-summary) .product-review-scorecard) .review-summary {
        order: 3;
      }

:is(:is(.pdp-section-user-reviews .product-review-summary) .product-review-scorecard) .review-proscons {
        order: 4;
      }

@media screen and (min-width: 800px) {
    :is(:scope .pdp-section-user-reviews) .score-summary-container {
      flex-direction: row-reverse;
      flex-wrap: wrap;
    }

      :is(:is(:scope .pdp-section-user-reviews) .score-summary-container) h3 {
        width: 100%;
      }

      :is(:is(:scope .pdp-section-user-reviews) .score-summary-container) .score-per-row {
        flex-grow: 2;
      }

    :is(:scope .pdp-section-user-reviews) .product-review-section-actions:not(.empty) {
      display: flex;
      flex-direction: row;
      gap: 1rem;
      justify-content: space-between;
    }
}

@media screen and (min-width: 1160px) {
  :scope .pdp-section-user-reviews {
    grid-auto-flow: row dense;
  }

    :is(:scope .pdp-section-user-reviews) .product-review-summary {
      grid-row: 1/2;
      grid-column: 1/7;
    }

      :is(:is(:scope .pdp-section-user-reviews) .product-review-summary) a {
        align-self: start;
      }

    :is(:scope .pdp-section-user-reviews) .pdp-section-content.empty {
      display: block;
    }
    
    :is(:scope .pdp-section-user-reviews) .score-summary-container {
      flex-direction: column;
      flex-wrap: nowrap;
      grid-column: 7/span 3;
      border: 0;
    }

      :is(:is(:scope .pdp-section-user-reviews) .score-summary-container) h3 {
        order: 2;
        width: auto;
      }

      :is(:is(:scope .pdp-section-user-reviews) .score-summary-container) .score-average {
        order: 1;
      }

      :is(:is(:scope .pdp-section-user-reviews) .score-summary-container) .score-per-row {
        flex-grow: initial;
        order: 3;
      }

    :is(:scope .pdp-section-user-reviews) .product-review-section-actions {
      grid-row: 2/3;
      grid-column: 1/7;
    }
}
.pdp-section-va {
  font-size: var(--font-size-medium);
}
.pdp-section-va .pdp-va-highlight {
    min-width: 2rem;
    font-size: var(--font-size-large);
    font-weight: var(--font-weight-bold);
    color: var(--text-link-color);
    text-align: right;
  }
.pdp-section-va .pdp-va-offers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
.pdp-section-va .pdp-va-offer {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: baseline;
  }
.pdp-section-va .pdp-va-offer-action {
    max-width: fit-content;
  }
.pdp-section-va .pdp-va-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--surface-card-color);
    border-radius: var(--border-radius-small);
  }
:is(.pdp-section-va .pdp-va-cta) .pdp-va-actions {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 1rem;
    }

@media screen and (min-width: 800px) {
    .pdp-section-va .pdp-va-offers {
      grid-column: span 3;
    }

    .pdp-section-va .pdp-va-cta {
      grid-column: span 3;
    }
}
.listing-grid.priceFilter .listOptions {
    display: block;
  }
:is(.listing-grid.priceFilter .listOptions) .sortOptions {
      display: flex;
      flex-direction: row;
      gap: 0.25rem;
      margin: 0;
      text-align: left;
    }
.listing-grid.priceFilter .report-price {
    text-align: right;
  }
.listing-grid.priceFilter #listingContainer {
    position: relative;
    float: none;
  }
:is(.listing-grid.priceFilter #listingContainer) button[data-popup] {
      --icon-color: var(--text-link-color);

      position: absolute;
      inset: 0.45rem 1rem auto auto;
      z-index: var(--z-above);
    }
:is(.listing-grid.priceFilter #listingContainer) twk-spinner {
      --icon-size: 1.5rem;

      position: absolute;
      top: 0;
      right: 2rem;
      left: auto;
      width: auto;
      margin: 0;
    }
.listing-grid.priceFilter .price-listing-list {
    display: flex;
    flex-direction: column;
    padding-inline-start: 0;
    margin-top: 0;
    list-style: none;
  }
.nonmatch:is(.listing-grid.priceFilter .price-listing-list) .price-listing-item .shop-name a {
      color: var(--tertiary-paragraph-text-color);
    }
:is(.listing-grid.priceFilter .price-listing-list) .banner-row:has( > :not(.loading)) + .price-listing-item {
      border-top: var(--border-base-color) 1px solid;
    }

@media screen and (min-width: 500px) {
  .listing-grid.priceFilter #listingContainer button[data-popup] {
      inset: 0.375rem 1rem auto auto;
  }
}

@media screen and (min-width: 500px) {
    .listing-grid.priceFilter .price-listing-list {
      gap: 0;
    }
}

@media screen and (max-width: 1159px) {
  .listing-grid.priceFilter #listingContainer.refurbished-only button[data-popup] {
    top: -1.375rem;
  }
}

@media screen and (min-width: 1160px) {
  .listing-grid.priceFilter {
    --listing-column-span: 6;
    --pricegraph-column-span: 3;

    display: grid;
    grid-template-columns: [listing-column-start]repeat(var(--listing-column-span), 104px)[listing-column-end pricegraph-column-start]repeat(var(--pricegraph-column-span), 104px)[pricegraph-column-end];
    gap: 1rem;
    justify-content: center;
    margin-inline: 0.5rem;
  }

    .listing-grid.priceFilter #listingContainer + .priceGraph {
      grid-column: pricegraph-column;
    }

      :is(.listing-grid.priceFilter #listingContainer + .priceGraph) > h2 {
        display: none;
      }

      :is(.listing-grid.priceFilter #listingContainer + .priceGraph) .zoomButtons {
        display: flex;
        align-items: center;
        justify-content: center;
      }

    .listing-grid.priceFilter #listingContainer {
      grid-column: listing-column;
    }

  .listing-grid.priceFilter #listingContainer button[data-popup] {
    inset: 0.25rem 0 auto auto;
  }
}


@media screen and (min-width: 1504px) {
  .sidebar-open:scope .priceFilter {
    --pricegraph-column-span: 3;
    --listing-column-span: 6;

    justify-content: center;
  }

  :scope .priceFilter {
    --pricegraph-column-span: 5;
    --listing-column-span: 7;

    justify-content: initial;
  }
}

@media screen and (min-width: 1848px) {
  .sidebar-open:scope .priceFilter {
    --pricegraph-column-span: 5;
    --listing-column-span: 7;
  }
}
.pdp-section-prices .price-list {
    position: relative;
  }
.refurbished-only:is(.pdp-section-prices .price-list) #listing {
      margin-block-start: 2rem;
    }
:is(.pdp-section-prices .price-list) twk-spinner {
      --icon-size: 1.5rem;

      position: absolute;
      top: 0;
      right: 2rem;
      left: auto;
      width: auto;
      margin: 0;
    }
.pdp-section-prices .price-listing-list {
    display: flex;
    flex-direction: column;
    padding-inline-start: 0;
    margin-top: 0;
    list-style: none;
  }
.nonmatch:is(.pdp-section-prices .price-listing-list) .price-listing-item .shop-name a {
      color: var(--tertiary-paragraph-text-color);
    }
/* Todo TWK-27091: To be removed. */
:is(.pdp-section-prices .price-listing-list):not(.refurbished) li:nth-child(n + 17 of .price-listing-item) {
      display: none;
    }
:is(.pdp-section-prices .price-listing-list) .banner-row:has( > :not(.loading)) + .price-listing-item {
      border-top: var(--border-base-color) 1px solid;
    }

@media screen and (min-width: 500px) {
    .pdp-section-prices .price-list button[data-popup] {
      inset: 0.375rem 1rem auto auto;
    }

    .pdp-section-prices .price-listing-list {
      gap: 0;
    }

    .pdp-section-prices .report-price-text {
      text-align: right;
    }
}

@media screen and (max-width: 1159px) {
  .pdp-section-prices .price-list.refurbished-only button[data-popup] {
    top: -1.375rem;
  }
}

@media screen and (min-width: 1160px) {
  .pdp-section-prices {
    --price-listing-column-span-end: 7;
  }

    .pdp-section-prices .price-list + .priceGraph {
      grid-column: var(--price-listing-column-span-end)/-1;
    }

    .pdp-section-prices .price-list {
      grid-column: 1/var(--price-listing-column-span-end);
    }

      :is(.pdp-section-prices .price-list) button[data-popup] {
        inset: 0.25rem 0 auto auto;
      }

    .pdp-section-prices .noPriceMessage {
      grid-column: 1/-1;
    }

    .pdp-section-prices .noPriceMessage + .priceGraph {
      grid-column: 1/-1;
    }
      :is(.pdp-section-prices .priceGraph) > h2 {
        display: none;
      }

      :is(.pdp-section-prices .priceGraph) .zoomButtons {
        display: flex;
        align-items: center;
        justify-content: center;
      }

  :scope .bottom-banner {
    display: block;
    grid-column: 1/-1;
  }
}


@media screen and (min-width: 1504px) {
  .pdp-section-prices {
    --price-listing-column-span-end: 8;

    justify-content: initial;
  }

  .sidebar-open .pdp-section-prices {
    --price-listing-column-span-end: 7;

    justify-content: center;
  }
}

@media screen and (min-width: 1848px) {
  .sidebar-open .pdp-section-prices {
    --price-listing-column-span-end: 8;
  }
}

