/**
 * Comparison Slider
 */

.comparison-slider__images {
  position: relative;
  max-width: fit-content;
  margin: 0 auto;
}
.comparison-slider__info-text {
  position: absolute;
  top: 1.25rem;
  background-color: var(--brand-primary-medium-color);
  padding: 0.5rem 1.5rem;
  z-index: 4;
}
.comparison-slider__info-text::before {
  content: "";
  display: block;
  position: absolute;
  top: -9px;
  width: 18px;
  height: 9px;
  background-position: center;
  background-repeat: no-repeat;
}
.comparison-slider__info-text--before {
  left: -18px;
}
.comparison-slider__info-text--before::before {
  left: 0;
  background-image: url("../../images/corner.svg");
}
.comparison-slider__info-text--after {
  right: -18px;
}
.comparison-slider__info-text--after::before {
  right: 0;
  background-image: url("../../images/corner-right.svg");
}
.comparison-slider__images-item--overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: auto;
  height: auto;
  z-index: 2;
  border-right: 2px solid var(--brand-white);
}
.comparison-slider__images-item-wrapper {
  overflow:hidden;
  height: 100%;
}
.comparison-slider__images-item--overlay img {
  display:block;
  height: inherit;
  max-width: none;
}
.comparison-slider__link {
  text-align: center;
  margin-top: 2rem;
}
.comparison-slider__link .cta__wrapper a{
  margin-left: auto;
  margin-right: auto;
}

.img-comp-slider {
  position: absolute;
  z-index:9;
  cursor: ew-resize;
  width: 45px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.img-comp-slider-part1,
.img-comp-slider-part2 {
  width: 20px;
  height: 40px;
  background-color: var(--brand-white);
  background-position: center;
  background-repeat: no-repeat;
}
.img-comp-slider-part1 {
  border-bottom-left-radius: 35px;
  border-top-left-radius: 35px;
  background-image: url('../../images/comparator-left.svg');
}
.img-comp-slider-part2 {
  border-bottom-right-radius: 35px;
  border-top-right-radius: 35px;
  background-image: url('../../images/comparator-right.svg');
}