.inv360Comparables {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}
.inv360Comparables__container {
  max-width: 1228px;
  margin: auto;
  padding: 0 16px;
  position: relative;
}
@media screen and (min-width: 1280px) {
  .inv360Comparables__container {
    max-width: 1260px;
    padding: 0 40px;
  }
}
.inv360Comparables__floatTab {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  bottom: -60px;
  z-index: 1;
  background: var(--inv360-primary-color, #ffde32);
  color: var(--inv360-accessible-color, #000000);
  padding: 16px;
  border-radius: 8px 8px 0 0;
  box-shadow: 0px -4px 8px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 244px;
  font-weight: 500;
}
.inv360Comparables__floatTab.show {
  bottom: 0;
}
.inv360Comparables__floatTab.expanded {
  background: var(--inv360-bg-color, #ffffff);
  color: var(--inv360-text-color, #000000);
  width: 100%;
  animation: postexpanded 0.3s ease 0.3s 1 forwards;
}
.inv360Comparables__floatTab.expanded .inv360Comparables__arrow {
  transform: rotate(180deg);
  background-color: var(--inv360-text-color, #000000);
}
.inv360Comparables__floatTab.expanded .inv360Comparables__icon {
  background-color: var(--inv360-text-color, #000000);
}
.inv360Comparables__floatTab:not(.expanded):hover {
  padding-bottom: 20px;
}
@keyframes postexpanded {
  0% {
    bottom: 0;
  }
  100% {
    bottom: 290px;
  }
}
@media screen and (max-width: 991px) {
  .inv360Comparables__floatTab {
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.08);
    z-index: 2;
  }
}
@media screen and (min-width: 1280px) {
  @keyframes postexpanded {
    0% {
      bottom: 0;
    }
    100% {
      bottom: 80px;
    }
  }
}
.inv360Comparables__icon {
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  background-color: var(--inv360-accessible-color, #000000);
  mask-image: url("images/icon_comparable.svg");
}
.inv360Comparables__arrow {
  mask-size: 12px;
  mask-repeat: no-repeat;
  mask-position: center;
  width: 24px;
  height: 24px;
  margin-left: 8px;
  transition: all 0.3s ease;
  background-color: var(--inv360-accessible-color, #000000);
  mask-image: url("images/arrow_down.svg");
}
.inv360Comparables__widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  height: 290px;
  overflow: hidden;
  bottom: -290px;
  z-index: 1;
  transition: all 0.3s ease;
  left: 16px;
  right: 16px;
  background: var(--inv360-bg-color, #ffffff);
  padding: 0 16px 16px;
  box-shadow: 0px 10px 8px rgba(0, 0, 0, 0.08);
}
.inv360Comparables__widget.show {
  animation: postshow 0.3s ease 0.3s 1 forwards;
}
@keyframes postshow {
  0% {
    bottom: -290px;
  }
  100% {
    bottom: 0;
  }
}
@media screen and (min-width: 1280px) {
  .inv360Comparables__widget {
    left: 40px;
    right: 40px;
    height: 80px;
    flex-direction: row;
  }
  @keyframes postshow {
    0% {
      bottom: -80px;
    }
    100% {
      bottom: 0;
    }
  }
}
.inv360Comparables__listVehicles {
  display: block;
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .inv360Comparables__listVehicles {
    display: grid;
    grid-template-columns: repeat(3, 33.33%);
    width: calc(100% - 310px);
  }
}
@media screen and (max-width: 991px) {
  .inv360Comparables__listVehicles {
    padding: 8px 0;
    min-height: 226px;
  }
}
.inv360Comparables__vehicleItem {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  .inv360Comparables__vehicleItem {
    padding: 8px 0;
  }
}
.inv360Comparables__vehicleImage {
  border-radius: 4px;
  overflow: hidden;
  min-width: 72px;
}
.inv360Comparables__vehicleImage img {
  height: 54px;
  width: 72px;
  object-fit: cover;
}
.inv360Comparables__vehicleImagePlaceholder {
  background-color: #8d8d8d;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 54px;
  width: 72px;
  border-radius: 4px;
}
.inv360Comparables__vehicleImagePlaceholder img {
  width: 32px;
  height: auto;
}
.inv360Comparables__vehicleContent {
  padding: 0 8px;
  min-width: 1px;
}
@media screen and (max-width: 991px) {
  .inv360Comparables__vehicleContent {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 0 16px;
  }
}
.inv360Comparables__vehicleTitle {
  overflow: hidden;
  font-weight: 600;
  font-size: 15px;
  line-height: 15px;
  color: var(--inv360-text-color, #2e2e2e);
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0;
  padding-right: 16px;
}
.inv360Comparables__vehicleRemove {
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  color: #8d8d8d;
  cursor: pointer;
  text-decoration: none;
}
.inv360Comparables__vehicleRemove:hover {
  color: var(--inv360-text-color, #2e2e2e);
}
.inv360Comparables__actions {
  display: flex;
  gap: 8px;
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .inv360Comparables__actions {
    width: auto;
  }
}
.inv360Comparables__button {
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .inv360Comparables__button {
    width: 150px;
  }
}
.inv360Comparables__button--primary {
  background: var(--inv360-primary-color, #ffde32);
  color: var(--inv360-accessible-color, #000000);
}
.inv360Comparables__button--primary:hover {
  opacity: 0.9;
}
.inv360Comparables__button--secondary {
  background: transparent;
  color: var(--inv360-text-color, #2e2e2e);
  border: 1px solid var(--inv360-text-color, #e0e0e0);
}
.inv360Comparables__button--secondary:hover {
  background: var(--inv360-secondary-color, #f5f5f5);
}
.inv360Comparables__modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
}
.inv360Comparables__modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
}
.inv360Comparables__modalOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
}
.inv360Comparables__modalContainer {
  position: relative;
  width: 100%;
  max-width: 1080px;
  max-height: 90vh;
  margin: 0 24px;
  z-index: 1;
}
.inv360Comparables__modalContent {
  background: var(--inv360-bg-color, #ffffff);
  border-radius: 4px;
  overflow: auto;
  max-height: 90vh;
}
.inv360Comparables__modalHeader {
  position: sticky;
  top: 0;
  padding: 24px 24px 16px;
  background: var(--inv360-bg-color, #ffffff);
  box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.11);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 4;
}
@media screen and (max-width: 991px) {
  .inv360Comparables__modalHeader {
    padding: 16px;
  }
}
.inv360Comparables__modalScroll {
  overflow-x: auto;
  overflow-y: hidden;
}
.inv360Comparables__modalTitle {
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  color: var(--inv360-text-color, #2e2e2e);
  margin: 0;
}
@media screen and (max-width: 991px) {
  .inv360Comparables__modalTitle {
    font-size: 18px;
    line-height: 20px;
  }
}
.inv360Comparables__modalHeaderRight {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 991px) {
  .inv360Comparables__modalHeaderRight {
    gap: 8px;
  }
}
.inv360Comparables__modalClose {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  color: var(--inv360-text-color, #000000);
}
.inv360Comparables__modalClose img {
  width: 100%;
  height: 100%;
}
.inv360Comparables__modalVehicles {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(3, 1fr);
  padding: 24px;
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (max-width: 991px) {
  .inv360Comparables__modalVehicles {
    grid-template-columns: repeat(3, 280px);
    gap: 24px;
    padding: 12px;
    min-width: 912px;
    max-width: 912px;
  }
}
.inv360Comparables__modalVehicle {
  position: relative;
}
@media screen and (max-width: 991px) {
  .inv360Comparables__modalVehicle {
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}
.inv360Comparables__modalVehicleImage {
  width: 100%;
  height: 220px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 991px) {
  .inv360Comparables__modalVehicleImage {
    height: 140px;
  }
}
.inv360Comparables__modalVehicleImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inv360Comparables__modalVehicleImage:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0.8;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}
.inv360Comparables__modalVehicleTitle {
  position: absolute;
  z-index: 2;
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  color: #ffffff !important;
  padding: 24px;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  margin: 0;
}
@media screen and (max-width: 991px) {
  .inv360Comparables__modalVehicleTitle {
    padding: 16px;
    font-size: 16px;
  }
}
.inv360Comparables__modalVehicleRemove {
  position: absolute;
  right: 16px;
  top: 16px;
  background: rgba(46, 46, 46, 0.7);
  border-radius: 4px;
  color: #ffffff;
  z-index: 3;
  padding: 8px;
  width: 72px;
  height: 32px;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  justify-content: center;
}
.inv360Comparables__modalVehicleRemove:hover {
  background: rgba(46, 46, 46, 0.9);
}
.inv360Comparables__modalVehiclePlaceholder {
  width: 100%;
  height: 220px;
  background: #f7f9fa;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #c8c8c8;
}
@media screen and (max-width: 991px) {
  .inv360Comparables__modalVehiclePlaceholder {
    height: 140px;
  }
}
.inv360Comparables__modalDetails {
  display: grid;
  grid-template-columns: repeat(3, 33.33%);
}
@media screen and (max-width: 991px) {
  .inv360Comparables__modalDetails {
    grid-template-columns: repeat(3, 280px);
    gap: 24px;
    padding: 12px;
    min-width: 912px;
    max-width: 912px;
  }
}
@media screen and (max-width: 991px) {
  .inv360Comparables__modalDetailColumn {
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}
.inv360Comparables__modalDetailColumn ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
}
.inv360Comparables__modalDetailColumn ul.disabled p,
.inv360Comparables__modalDetailColumn ul.disabled strong {
  color: #a2a5a6;
}
@media screen and (max-width: 991px) {
  .inv360Comparables__modalDetailColumn ul {
    font-size: 14px;
  }
}
.inv360Comparables__modalDetailColumn li {
  padding: 12px 24px;
  line-height: 1.3;
}
@media screen and (max-width: 991px) {
  .inv360Comparables__modalDetailColumn li {
    padding: 8px 16px;
  }
}
.inv360Comparables__modalDetailColumn li:nth-child(2n) {
  background: var(--inv360-bg-color, #ffffff);
}
.inv360Comparables__modalDetailColumn li:nth-child(2n+1) {
  background: var(--inv360-secondary-color, #f7f7f8);
}
.inv360Comparables__modalDetailColumn li strong {
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
  color: var(--inv360-text-color, #000000);
}
.inv360Comparables__modalDetailColumn li p {
  margin: 0;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: var(--inv360-text-color, #000000);
}
.inv360Comparables__modalVehicleLink {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  z-index: 3;
  background: var(--inv360-primary-color, #ffde32);
  color: var(--inv360-accessible-color, #000000);
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.inv360Comparables__modalVehicle:hover .inv360Comparables__modalVehicleLink {
  opacity: 1;
  pointer-events: auto;
}
.inv360Comparables__modalVehicle:hover .inv360Comparables__modalVehicleTitle {
  bottom: 48px;
}

/*# sourceMappingURL=styles.css.map */
