<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.js-popin-zoom {
  height: 100%;
  width: 100%;
  background: #F0F0F0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center; }
  .js-popin-zoom .btn-wrapp-zoom img {
    transform: scale(1); }
  .js-popin-zoom .btn-wrapp-zoom .slick-list {
    margin: 0 2%;
    padding: 0 2%; }

.image-zoomable {
  width: 100%;
  height: auto;
  display: none;
  margin: 0 auto; }
  .image-zoomable.slides {
    display: block;
    object-fit: contain; }
    @media (max-width: 1239.98px) {
      .image-zoomable.slides {
        display: inline-block; } }
  .image-zoomable.active {
    display: block; }
    @media (max-width: 1239.98px) {
      .image-zoomable.active {
        display: inline-block; } }

.btn-wrapp-zoom {
  position: absolute;
  top: calc(100% - 100px);
  left: 50%;
  display: -ms-inline-flexbox;
  display: inline-flex;
  transform: translate(-50%, 0%); }
  .btn-wrapp-zoom .slick-slide:last-child img {
    margin-right: 0; }
  .btn-wrapp-zoom img {
    display: block;
    position: relative;
    margin: 0;
    border: 2px solid #fff;
    background-color: #F0F0F0;
    opacity: 0.6;
    width: 80px;
    height: 80px;
    border-radius: 0;
    overflow: hidden;
    transition: 0.3s;
    margin-right: 10px; }
    .btn-wrapp-zoom img:hover {
      cursor: pointer;
      opacity: 1;
      transition: 0.3s;
      border: 2px solid var(--global-color); }
      @media (max-width: 1024.98px) {
        .btn-wrapp-zoom img:hover {
          border: 2px solid #fff; } }
    .btn-wrapp-zoom img.active {
      opacity: 1;
      transition: 0.3s;
      border: 2px solid var(--global-color); }
  @media (max-width: 1239.98px) {
    .btn-wrapp-zoom {
      bottom: 15px;
      width: 100%;
      -ms-flex-pack: center;
          justify-content: center; } }
  .btn-wrapp-zoom .slick-slide {
    margin: 0 5px;
    width: 90px; }
    .btn-wrapp-zoom .slick-slide:focus {
      outline: none; }
  .btn-wrapp-zoom .slick-list .slick-slide img {
    opacity: 0.6; }
    .btn-wrapp-zoom .slick-list .slick-slide img:hover {
      opacity: 1;
      transition: opacity 1s; }
    .btn-wrapp-zoom .slick-list .slick-slide img.active {
      opacity: 1;
      transition: opacity 1s; }

.zoom-mobile {
  position: absolute;
  bottom: 145px;
  background: #fff;
  width: 40px;
  height: 40px;
  left: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border-radius: 50%;
  opacity: 0.4; }
  .zoom-mobile svg {
    width: 25px;
    height: 25px;
    display: block; }
  @media (min-width: 544px) {
    .zoom-mobile {
      display: none; } }

.panzoom-parent {
  position: relative;
  margin: 30px;
  padding: 80px; }

.panzoom {
  text-align: center; }

.buttons-zoom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px; }
  .buttons-zoom .btn-zoom {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    text-align: center;
    border-radius: 2.2rem;
    background-color: #fff;
    border: 1px solid #F0F0F0;
    transition: background-color 0.2s ease-in-out;
    margin-bottom: 10px; }
    .buttons-zoom .btn-zoom button {
      background-color: #fff;
      border: 0;
      height: 2.9rem;
      width: 2.7rem;
      border-radius: 2.2rem; }
      .buttons-zoom .btn-zoom button svg {
        width: 18px;
        height: 18px; }
  .buttons-zoom .reset {
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #F0F0F0;
    height: 2.7rem;
    width: 2.7rem; }
    .buttons-zoom .reset svg {
      width: 20px;
      height: 20px;
      top: 3px;
      position: relative; }
  @media (max-width: 768.98px) {
    .buttons-zoom {
      display: none; } }

.js-popin-zoom-modal {
  display: -ms-flexbox;
  display: flex;
  z-index: 9999;
  width: 100%;
  height: 100%;
  position: fixed;
  visibility: hidden;
  top: 0;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all 0.3s ease-in-out; }

.js-popin-zoom-modal.open {
  visibility: visible;
  opacity: 1;
  filter: alpha(opacity=1); }

.modal-popin-zoom {
  display: inline-block;
  height: auto;
  width: 100%;
  position: relative;
  transition: all 0.3s ease-in-out; }

.js-popin-zoom-moda.open .modal {
  opacity: 1;
  filter: alpha(opacity=100);
  transform: scale(1); }

.btn-close {
  cursor: pointer;
  position: absolute;
  right: 17px;
  top: 25px;
  margin: 3px;
  float: right;
  z-index: 9999;
  width: 37px;
  height: 37px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border-radius: 50%; }
  .btn-close svg {
    width: 37px;
    height: 37px;
    position: relative;
    top: 1px; }
</pre></body></html>