<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#modal-card-list {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 2026;
  align-items: flex-start;
  display: none;
  transition: all ease-in-out 0.3s;
}
#modal-card-list.show {
  display: flex;
}
.btn-close-modal {
  top: 16px;
  right: 16px;
}
.modal-list-dialog {
  height: 100dvh;
  position: relative;
  z-index: 2;
}
.model-content {
  width: 100%;
  flex-grow: 1;
  align-self: stretch;
  height: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.model-content::-webkit-scrollbar {
  display: none;
}
.list-card-add {
  height: 100%;
}
.card-add-item {
  border: 1px solid #ececec;
  height: 74px;
  cursor: pointer;
}
.card-add-item.active {
  border-color: #292929;
}
.card-add-item.disabled,
.card-add-item.un-active {
  cursor: not-allowed;
  pointer-events: none;
  background-color: #ececec !important;
  opacity: 0.5;
}
.card-add-item-image {
  width: 60px;
  height: 74px;
}
.card-add-item-image img {
  height: 40px;
  width: 60px;
}
.card-add-item-image.vertical img {
  height: 60px;
  width: 40px;
}
.compare-now {
  cursor: pointer;
}
@media (min-width: 992px) {
  #modal-card-list {
    background: transparent !important;
    align-items: center;
  }
  .modal-wrapper {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 0;
    opacity: 0.7;
    background-color: #292929 !important;
  }
  .modal-list-dialog {
    width: 850px !important;
    height: 580px !important;
    border-radius: 24px;
    overflow: hidden;
    background-color: #fff;
  }
  .list-card-add {
    height: 100%;
    flex-wrap: wrap;
    flex-direction: row !important;
  }
  .card-add-item {
    flex-basis: 50%;
    max-width: calc(50% - 6px);
    height: 80px;
  }
}
@media (min-width: 1280px) {
  .card-add-item {
    max-width: calc(50% - 8px);
  }
}
</pre></body></html>