/* --------------------------------

Primary style

-------------------------------- */
*, *::after, *::before {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Source Sans Pro", sans-serif;
  color: #404042;
  background-color: #ffffff;
}

a {
  color: #9dc997;
  text-decoration: none;
}

img {
  max-width: 100%;
}

h1 {
  font-size: 2.2rem;
  text-align: center;
  padding: 4em 5%;
}
@media only screen and (min-width: 1170px) {
  h1 {
    font-size: 4rem;
    font-weight: 300;
    padding: 3em 5%;
  }
}

/* --------------------------------

Main Components

-------------------------------- */
.cd-products-comparison-table {
  margin-bottom: 6em;
}
.cd-products-comparison-table::after {
  /* never visible - this is used in jQuery to check the current MQ */
  display: none;
  content: 'mobile';
}
.cd-products-comparison-table header {
  padding: 0 5% 25px;
}
.cd-products-comparison-table header::after {
  clear: both;
  content: "";
  display: table;
}
.cd-products-comparison-table h2 {
  float: left;
  font-weight: bold;
}
.cd-products-comparison-table .actions {
  float: right;
}
.cd-products-comparison-table .reset, .cd-products-comparison-table .filter {
  font-size: 1.4rem;
}
.cd-products-comparison-table .reset {
  color: #404042;
  text-decoration: underline;
}
.cd-products-comparison-table .filter {
  padding: .6em 1.5em;
  color: #ffffff;
  background-color: #cccccc;
  border-radius: 3px;
  margin-left: 1em;
  cursor: not-allowed;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.cd-products-comparison-table .filter.active {
  cursor: pointer;
  background-color: #9dc997;
}
.no-touch .cd-products-comparison-table .filter.active:hover {
  background-color: #a7cea1;
}
@media only screen and (min-width: 1170px) {
  .cd-products-comparison-table {
    margin-bottom: 8em;
  }
  .cd-products-comparison-table::after {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'desktop';
  }
  .cd-products-comparison-table header {
    padding: 0 5% 40px;
  }
  .cd-products-comparison-table h2 {
    font-size: 2.4rem;
  }
  .cd-products-comparison-table .reset, .cd-products-comparison-table .filter {
    font-size: 1.6rem;
  }
  .cd-products-comparison-table .filter {
    padding: .6em 2em;
    margin-left: 1.6em;
  }
}

.cd-products-table {
  position: relative;
  overflow: hidden;
}

.cd-products-table .features {
  /* fixed left column - product properties list */
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 120px;
  border-style: solid;
  border-color: #e6e6e6;
  border-top-width: 1px;
  border-bottom-width: 1px;
  background-color: #fafafa;
  opacity: .95;
}
.cd-products-table .features::after {
  /* color gradient on the right of .features -  visible while scrolling inside the .cd-products-table */
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  width: 4px;
  height: 100%;
  background-color: transparent;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.06), transparent);
  background-image: linear-gradient(to right,rgba(0, 0, 0, 0.06), transparent);
  opacity: 0;
}
@media only screen and (min-width: 1170px) {
  .cd-products-table .features {
    width: 210px;
  }
}

.cd-products-table.scrolling .features::after {
  opacity: 1;
}

.cd-products-wrapper {
  overflow-x: auto;
  /* this fixes the buggy scrolling on webkit browsers - mobile devices only - when overflow property is applied */
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  border-style: solid;
  border-color: #e6e6e6;
  border-top-width: 1px;
  border-bottom-width: 1px;
}

.cd-products-wrapper.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.cd-products-columns {
  /* products list wrapper */
  width: 1200px;
  margin-left: 120px;
}
.cd-products-columns::after {
  clear: both;
  content: "";
  display: table;
}
@media only screen and (min-width: 1170px) {
  .cd-products-columns {
    width: 2480px;
    margin-left: 210px;
  }
}

.cd-products-columns .product {
  position: relative;
  float: left;
  width: 150px;
  text-align: center;
  -webkit-transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  -moz-transition: opacity 0.3s, visibility 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}
.filtering .cd-products-columns .product:not(.selected) {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.no-product-transition .cd-products-columns .product.selected {
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  -moz-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.filtered .cd-products-columns .product:not(.selected) {
  position: absolute;
}
@media only screen and (min-width: 1170px) {
  .cd-products-columns .product {
    width: 310px;
  }
}

.cd-features-list li {
  font-size: 1.4rem;
  font-weight: bold;
  padding: 25px 40px;
  border-color: #e6e6e6;
  border-style: solid;
  border-top-width: 1px;
  border-right-width: 1px;
}
.cd-features-list li.rate {
  /* rating stars */
  padding: 21px 0;
}
.cd-features-list li.rate span {
  display: inline-block;
  height: 22px;
  width: 110px;
  background: url(../img/cd-star.svg);
  color: transparent;
}
@media only screen and (min-width: 1170px) {
  .cd-features-list li {
    font-size: 1.6rem;
  }
  .cd-features-list li.rate {
    padding: 22px 0;
  }
}

.features .cd-features-list li,
.cd-products-table .features .top-info {
  /* fixed left column - items */
  font-size: 1.2rem;
  font-weight: bold;
  /* set line-height value equal to font-size of text inside product cells */
  line-height: 14px;
  padding: 25px 10px;
  text-align: left;
}
@media only screen and (min-width: 1170px) {
  .features .cd-features-list li,
  .cd-products-table .features .top-info {
    text-transform: uppercase;
    line-height: 16px;
    padding: 25px 20px;
    letter-spacing: 1px;
  }
}

.features .cd-features-list li {
  /* truncate text with dots */
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.cd-products-table .top-info {
  position: relative;
  height: 177px;
  width: 150px;
  text-align: center;
  padding: 1.25em 2.5em;
  border-color: #e6e6e6;
  border-style: solid;
  border-right-width: 1px;
  -webkit-transition: height 0.3s;
  -moz-transition: height 0.3s;
  transition: height 0.3s;
  cursor: pointer;
  background: #ffffff;
}
.cd-products-table .top-info::after {
  /* color gradient below .top-info -  visible when .top-info is fixed */
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  height: 4px;
  width: 100%;
  background-color: transparent;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.06), transparent);
  background-image: linear-gradient(to bottom,rgba(0, 0, 0, 0.06), transparent);
  opacity: 0;
}
.cd-products-table .top-info h3 {
  padding: 1.25em 0 0.625em;
  font-weight: bold;
  font-size: 1.4rem;
}
.cd-products-table .top-info img {
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.cd-products-table .top-info h3, .cd-products-table .top-info img {
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.cd-products-table .top-info .check {
  position: relative;
  display: inline-block;
  height: 16px;
  width: 16px;
  margin: 0 auto 1em;
}
.cd-products-table .top-info .check::after, .cd-products-table .top-info .check::before {
  /* used to create the check icon and green circle dot - visible when product is selected */
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  height: 100%;
  width: 100%;
}
.cd-products-table .top-info .check::before {
  /* green circle dot */
  border-radius: 50%;
  border: 1px solid #e6e6e6;
  background: #ffffff;
  -webkit-transition: background-color 0.3s, -webkit-transform 0.3s, border-color 0.3s;
  -moz-transition: background-color 0.3s, -moz-transform 0.3s, border-color 0.3s;
  transition: background-color 0.3s, transform 0.3s, border-color 0.3s;
}
.cd-products-table .top-info .check::after {
  /* check icon */
  background: url(../img/cd-check.svg) no-repeat center center;
  background-size: 24px 24px;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media only screen and (min-width: 1170px) {
  .cd-products-table .top-info {
    height: 280px;
    width: 310px;
  }
  .cd-products-table .top-info h3 {
    padding-top: 1.4em;
    font-size: 1.6rem;
  }
  .cd-products-table .top-info .check {
    margin-bottom: 1.5em;
  }
}

.cd-products-table .features .top-info {
  /* models */
  width: 120px;
  cursor: auto;
  background: #fafafa;
}
@media only screen and (min-width: 1170px) {
  .cd-products-table .features .top-info {
    width: 210px;
  }
}

.cd-products-table .selected .top-info .check::before {
  /* green circle dot */
  background: #9dc997;
  border-color: #9dc997;
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-animation: cd-bounce 0.3s;
  -moz-animation: cd-bounce 0.3s;
  animation: cd-bounce 0.3s;
}

@-webkit-keyframes cd-bounce {
  0% {
    -webkit-transform: scale(1);
  }
  60% {
    -webkit-transform: scale(1.6);
  }
  100% {
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes cd-bounce {
  0% {
    -moz-transform: scale(1);
  }
  60% {
    -moz-transform: scale(1.6);
  }
  100% {
    -moz-transform: scale(1.5);
  }
}
@keyframes cd-bounce {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  60% {
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -ms-transform: scale(1.6);
    -o-transform: scale(1.6);
    transform: scale(1.6);
  }
  100% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
}
.cd-products-table .selected .top-info .check::after {
  /* check icon */
  opacity: 1;
}

@media only screen and (min-width: 1170px) {
  .cd-products-table.top-fixed .cd-products-columns > li,
  .cd-products-table.top-scrolling .cd-products-columns > li,
  .cd-products-table.top-fixed .features,
  .cd-products-table.top-scrolling .features {
    padding-top: 160px;
  }

  .cd-products-table.top-fixed .top-info,
  .cd-products-table.top-scrolling .top-info {
    height: 160px;
    position: fixed;
    top: 0;
  }
  .no-cssgradients .cd-products-table.top-fixed .top-info, .no-cssgradients
  .cd-products-table.top-scrolling .top-info {
    border-bottom: 1px solid #e6e6e6;
  }
  .cd-products-table.top-fixed .top-info::after,
  .cd-products-table.top-scrolling .top-info::after {
    opacity: 1;
  }
  .cd-products-table.top-fixed .top-info h3,
  .cd-products-table.top-scrolling .top-info h3 {
    -webkit-transform: translateY(-116px);
    -moz-transform: translateY(-116px);
    -ms-transform: translateY(-116px);
    -o-transform: translateY(-116px);
    transform: translateY(-116px);
  }
  .cd-products-table.top-fixed .top-info img,
  .cd-products-table.top-scrolling .top-info img {
    -webkit-transform: translateY(-62px) scale(0.4);
    -moz-transform: translateY(-62px) scale(0.4);
    -ms-transform: translateY(-62px) scale(0.4);
    -o-transform: translateY(-62px) scale(0.4);
    transform: translateY(-62px) scale(0.4);
  }

  .cd-products-table.top-scrolling .top-info {
    position: absolute;
  }
}
.cd-table-navigation a {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 15px;
  -webkit-transform: translateY(55px);
  -moz-transform: translateY(55px);
  -ms-transform: translateY(55px);
  -o-transform: translateY(55px);
  transform: translateY(55px);
  /* replace text with image */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent;
  height: 60px;
  width: 40px;
  background: rgba(64, 64, 66, 0.8) url("../img/cd-arrow.svg") no-repeat center center;
  border-radius: 3px;
  -webkit-transition: background-color 0.3s, opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  -moz-transition: background-color 0.3s, opacity 0.3s, visibility 0.3s, -moz-transform 0.3s;
  transition: background-color 0.3s, opacity 0.3s, visibility 0.3s, transform 0.3s;
}
.cd-table-navigation a.inactive {
  opacity: 0;
  visibility: hidden;
}
.cd-table-navigation a.prev {
  left: 120px;
  right: auto;
  -webkit-transform: translateY(55px) translateX(15px) rotate(180deg);
  -moz-transform: translateY(55px) translateX(15px) rotate(180deg);
  -ms-transform: translateY(55px) translateX(15px) rotate(180deg);
  -o-transform: translateY(55px) translateX(15px) rotate(180deg);
  transform: translateY(55px) translateX(15px) rotate(180deg);
}
.no-touch .cd-table-navigation a:hover {
  background-color: #404042;
}
@media only screen and (min-width: 1170px) {
  .cd-table-navigation a {
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
  }
  .cd-table-navigation a.prev {
    left: 210px;
    -webkit-transform: translateY(100px) translateX(15px) rotate(180deg);
    -moz-transform: translateY(100px) translateX(15px) rotate(180deg);
    -ms-transform: translateY(100px) translateX(15px) rotate(180deg);
    -o-transform: translateY(100px) translateX(15px) rotate(180deg);
    transform: translateY(100px) translateX(15px) rotate(180deg);
  }
  .top-fixed .cd-table-navigation a {
    position: fixed;
  }
  .top-fixed .cd-table-navigation a, .top-scrolling .cd-table-navigation a {
    -webkit-transform: translateY(45px);
    -moz-transform: translateY(45px);
    -ms-transform: translateY(45px);
    -o-transform: translateY(45px);
    transform: translateY(45px);
  }
  .top-fixed .cd-table-navigation a.prev, .top-scrolling .cd-table-navigation a.prev {
    -webkit-transform: translateY(45px) translateX(15px) rotate(180deg);
    -moz-transform: translateY(45px) translateX(15px) rotate(180deg);
    -ms-transform: translateY(45px) translateX(15px) rotate(180deg);
    -o-transform: translateY(45px) translateX(15px) rotate(180deg);
    transform: translateY(45px) translateX(15px) rotate(180deg);
  }
}

/* --------------------------------

No JS

-------------------------------- */
.no-js .actions {
  display: none;
}

.no-js .cd-products-table .top-info {
  height: 145px;
}
@media only screen and (min-width: 1170px) {
  .no-js .cd-products-table .top-info {
    height: 248px;
  }
}

.no-js .cd-products-columns .check {
  display: none;
}

/* CarExamer inspection comparison */
html {
  font-size: 100%;
}

body {
  font-family: var(--bs-body-font-family, Lato, Arial, sans-serif);
  font-size: var(--bs-body-font-size, 1rem);
  color: #2c333e;
}

.product-comparison-page {
  background: #ffffff;
}

.product-comparison-hero {
  margin-bottom: 2rem;
  padding: 3rem 0 0;
  background: linear-gradient(180deg, #f5f9f4 0%, #ffffff 100%);
}

.product-comparison-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.product-comparison-hero__eyebrow {
  display: block;
  margin-bottom: 0.7rem;
  color: #48a62c;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-comparison-hero h1 {
  max-width: 760px;
  margin: 0 0 1rem;
  padding: 0;
  color: #2c333e;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.05;
  text-align: left;
  text-transform: uppercase;
}

.product-comparison-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(44, 51, 62, 0.78);
  font-size: 1rem;
  line-height: 1.65;
}

.carexamer-products-comparison {
  margin-bottom: 2rem;
  border: 1px solid #dbe5ec;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(44, 51, 62, 0.1);
}

.carexamer-products-comparison header {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #dbe5ec;
  background: #22577a;
}

.carexamer-products-comparison h2 {
  float: none;
  margin: 0;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.carexamer-products-comparison .actions {
  display: flex;
  float: none;
  gap: 0.6rem;
  align-items: center;
  margin-left: auto;
}

.carexamer-products-comparison .reset,
.carexamer-products-comparison .filter,
.carexamer-products-comparison .fullscreen-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  padding: 0;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.carexamer-products-comparison .actions i {
  position: static;
  padding: 0;
  color: inherit;
  font-size: 0.95rem;
  line-height: 1;
}

.carexamer-products-comparison .reset {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: #ffffff;
}

.carexamer-products-comparison .fullscreen-toggle {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: #ffffff;
  color: #22577a;
}

.carexamer-products-comparison .filter {
  margin-left: 0;
  background: rgba(255, 255, 255, 0.26);
  color: rgba(255, 255, 255, 0.72);
}

.carexamer-products-comparison .filter.active {
  background: #48a62c;
  color: #ffffff;
}

.carexamer-products-comparison .cd-products-table {
  background: #ffffff;
}

.carexamer-products-comparison .cd-products-table .features {
  width: 185px;
  border-color: #c9d8e2;
  background: #f7fafc;
}

.carexamer-products-comparison .cd-products-columns {
  margin-left: 185px;
}

.carexamer-products-comparison .cd-products-columns .product {
  width: 178px;
}

.carexamer-products-comparison .cd-products-wrapper {
  border-color: #c9d8e2;
}

.carexamer-products-comparison .cd-products-table .top-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 178px;
  height: 140px;
  border-color: #c9d8e2;
  padding: 0.85rem 0.75rem;
  background: #ffffff;
}

.carexamer-products-comparison .cd-products-table .features .top-info {
  justify-content: center;
  width: 185px;
  background: #22577a;
  color: #ffffff;
  cursor: default;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
}

.carexamer-products-comparison .top-info .check {
  margin-bottom: 0.55rem;
}

.carexamer-products-comparison .top-info h3 {
  margin: 0.35rem 0;
  padding: 0;
  color: #2c333e;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.carexamer-products-comparison .comparison-company,
.carexamer-products-comparison .comparison-price,
.carexamer-products-comparison .comparison-summary {
  display: block;
  line-height: 1.25;
}

.carexamer-products-comparison .comparison-company {
  color: #22577a;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.carexamer-products-comparison .comparison-price {
  margin-top: 0.15rem;
  color: #48a62c;
  font-size: 1.05rem;
  font-weight: 900;
}

.carexamer-products-comparison .comparison-summary {
  margin-top: 0.35rem;
  color: rgba(44, 51, 62, 0.7);
  font-size: 0.76rem;
}

.carexamer-products-comparison .product.is-carexamer .top-info {
  background: #f2faef;
}

.carexamer-products-comparison .product.is-unavailable .top-info {
  background: #f2f4f5;
}

.carexamer-products-comparison .features .cd-features-list li,
.carexamer-products-comparison .cd-features-list li {
  display: flex;
  min-height: 62px;
  align-items: center;
  border-color: #dbe5ec;
  padding: 0.65rem 0.75rem;
  white-space: normal;
  text-overflow: clip;
  overflow: visible;
  color: #2c333e;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.28;
  text-align: left;
  text-transform: none;
}

.carexamer-products-comparison .features .cd-features-list li {
  display: block;
  background: #f7fafc;
}

.carexamer-products-comparison .comparison-category {
  display: block;
  margin-bottom: 0.25rem;
  color: #22577a;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.carexamer-products-comparison .comparison-feature {
  display: block;
}

.carexamer-products-comparison .comparison-value {
  justify-content: center;
  text-align: center;
}

.carexamer-products-comparison .comparison-value span {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  color: #2c333e;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  overflow-wrap: anywhere;
}

.carexamer-products-comparison .comparison-value--included span {
  min-width: 30px;
  background: rgba(72, 166, 44, 0.14);
  color: #2f8f1b;
}

.carexamer-products-comparison .comparison-value--not_included span {
  min-width: 30px;
  background: rgba(220, 53, 69, 0.1);
  color: #b42333;
}

.carexamer-products-comparison .comparison-value--not_listed span {
  background: #edf2f5;
  color: #687887;
}

.carexamer-products-comparison .comparison-value--limited span,
.carexamer-products-comparison .comparison-value--varies span {
  background: rgba(255, 193, 0, 0.16);
  color: #856200;
}

.carexamer-products-comparison .cd-table-navigation a {
  background-color: rgba(34, 87, 122, 0.9);
}

.carexamer-products-comparison .cd-table-navigation a.prev {
  left: 185px;
}

.carexamer-products-comparison.is-fullscreen {
  width: 100vw;
  height: 100vh;
  margin: 0;
  border: 0;
  border-radius: 0;
  overflow: auto;
  background: #ffffff;
}

.carexamer-products-comparison.is-fullscreen header {
  position: sticky;
  top: 0;
  z-index: 20;
}

.carexamer-products-comparison.is-fullscreen .cd-products-table {
  min-height: calc(100vh - 72px);
}

.carexamer-products-comparison.is-fullscreen .cd-products-wrapper {
  max-height: none;
  overflow-y: visible;
}

.carexamer-products-comparison.is-fullscreen .fullscreen-toggle {
  background: #48a62c;
  color: #ffffff;
}

.carexamer-products-comparison .cd-products-table.top-fixed .cd-products-columns > li,
.carexamer-products-comparison .cd-products-table.top-scrolling .cd-products-columns > li,
.carexamer-products-comparison .cd-products-table.top-fixed .features,
.carexamer-products-comparison .cd-products-table.top-scrolling .features {
  padding-top: 0;
}

.carexamer-products-comparison .cd-products-table.top-fixed .top-info,
.carexamer-products-comparison .cd-products-table.top-scrolling .top-info {
  position: relative;
  top: auto !important;
}

.carexamer-products-comparison .cd-products-table.top-fixed .top-info h3,
.carexamer-products-comparison .cd-products-table.top-scrolling .top-info h3,
.carexamer-products-comparison .cd-products-table.top-fixed .top-info img,
.carexamer-products-comparison .cd-products-table.top-scrolling .top-info img {
  transform: none;
}

.carexamer-products-comparison .cd-products-table.top-fixed .top-info::after,
.carexamer-products-comparison .cd-products-table.top-scrolling .top-info::after {
  opacity: 0;
}

.product-comparison-notes {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
  padding: 1rem;
  border: 1px solid #dbe5ec;
  border-radius: 8px;
  background: #f7fafc;
}

.product-comparison-notes strong,
.product-comparison-notes span {
  display: inline-flex;
  align-items: center;
  margin-right: 0.85rem;
  color: #2c333e;
  font-size: 0.86rem;
  line-height: 1.4;
}

.product-comparison-notes strong {
  color: #22577a;
  font-weight: 900;
  text-transform: uppercase;
}

.product-comparison-notes b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  min-height: 24px;
  margin-right: 0.35rem;
  border-radius: 999px;
  padding: 0 0.35rem;
  font-size: 0.75rem;
}

.legend-included {
  background: rgba(72, 166, 44, 0.14);
  color: #2f8f1b;
}

.legend-not-included {
  background: rgba(220, 53, 69, 0.1);
  color: #b42333;
}

.legend-limited {
  background: rgba(255, 193, 0, 0.16);
  color: #856200;
}

.product-comparison-notes p {
  margin: 0;
  color: rgba(44, 51, 62, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

@media only screen and (min-width: 1170px) {
  .carexamer-products-comparison .cd-products-table .features {
    width: 245px;
  }

  .carexamer-products-comparison .cd-products-columns {
    margin-left: 245px;
  }

  .carexamer-products-comparison .cd-products-columns .product,
  .carexamer-products-comparison .cd-products-table .top-info {
    width: 215px;
  }

  .carexamer-products-comparison .cd-products-table .features .top-info {
    width: 245px;
  }

  .carexamer-products-comparison .cd-table-navigation a.prev {
    left: 245px;
  }

}

@media (max-width: 991.98px) {
  .product-comparison-hero__grid,
  .product-comparison-notes {
    grid-template-columns: 1fr;
  }

  .product-comparison-hero h1 {
    font-size: 2.25rem;
  }

  .carexamer-products-comparison header {
    align-items: flex-start;
    flex-direction: column;
  }

  .carexamer-products-comparison .fullscreen-toggle {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .product-comparison-hero {
    padding: 2rem 0 1.25rem;
  }

  .product-comparison-hero h1 {
    font-size: 1.9rem;
  }

  .carexamer-products-comparison {
    margin-right: -1rem;
    margin-left: -1rem;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .carexamer-products-comparison header {
    padding: 0.75rem;
  }

  .carexamer-products-comparison h2 {
    font-size: 1rem;
  }

  .carexamer-products-comparison .actions {
    width: 100%;
  }

  .carexamer-products-comparison .reset,
  .carexamer-products-comparison .filter,
  .carexamer-products-comparison .fullscreen-toggle {
    flex: 0 0 34px;
    width: 34px;
    min-height: 34px;
    padding: 0;
    font-size: 0.72rem;
  }

  .carexamer-products-comparison .cd-products-table .features {
    width: 128px;
  }

  .carexamer-products-comparison .cd-products-columns {
    margin-left: 128px;
  }

  .carexamer-products-comparison .cd-products-columns .product,
  .carexamer-products-comparison .cd-products-table .top-info {
    width: 132px;
  }

  .carexamer-products-comparison .cd-products-table .top-info {
    height: 132px;
    padding: 0.55rem 0.45rem;
  }

  .carexamer-products-comparison .cd-products-table .features .top-info {
    width: 128px;
    font-size: 0.72rem;
  }

  .carexamer-products-comparison .top-info .check {
    width: 13px;
    height: 13px;
    margin-bottom: 0.35rem;
  }

  .carexamer-products-comparison .top-info h3 {
    margin: 0.2rem 0;
    font-size: 0.8rem;
    line-height: 1.08;
  }

  .carexamer-products-comparison .comparison-company {
    font-size: 0.62rem;
  }

  .carexamer-products-comparison .comparison-price {
    font-size: 0.86rem;
  }

  .carexamer-products-comparison .comparison-summary {
    margin-top: 0.2rem;
    font-size: 0.64rem;
    line-height: 1.18;
  }

  .carexamer-products-comparison .features .cd-features-list li,
  .carexamer-products-comparison .cd-features-list li {
    min-height: 44px;
    padding: 0.42rem 0.45rem;
    font-size: 0.72rem;
    line-height: 1.18;
  }

  .carexamer-products-comparison .comparison-category {
    margin-bottom: 0.16rem;
    font-size: 0.56rem;
  }

  .carexamer-products-comparison .comparison-value span {
    padding: 0.14rem 0.36rem;
    font-size: 0.68rem;
    line-height: 1.14;
  }

  .carexamer-products-comparison .comparison-value--included span,
  .carexamer-products-comparison .comparison-value--not_included span {
    min-width: 24px;
  }

  .carexamer-products-comparison .cd-table-navigation a {
    width: 32px;
    height: 48px;
    right: 8px;
    transform: translateY(42px);
  }

  .carexamer-products-comparison .cd-table-navigation a.prev {
    left: 128px;
    transform: translateY(42px) translateX(8px) rotate(180deg);
  }

  .product-comparison-notes {
    margin-bottom: 2rem;
    padding: 0.75rem;
  }

  .product-comparison-notes strong,
  .product-comparison-notes span,
  .product-comparison-notes p {
    font-size: 0.78rem;
  }
}
