<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">  a.zoomout  {
    display: inline-block;
    width: 292px;
    margin: 10px;
    border: 3px solid #ccc;
    border-radius: 15px;
    overflow: hidden;
  }
 
  a.zoomout img {
    display: block;
    width: 100%;
  }

  .zoomout {
    -webkit-transform: scale(1);
    -webkit-transition: .5s all ease-in-out;
    transform: scale(1);
    transition: .5s all ease-in-out;
  }

  .zoomout:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    /*-webkit-transform: rotate(2deg);
	transform: rotate(2deg);*/
  }

  #zoomout-loader {
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(50%,50%,0);
    transform: translate3d(-50%,-50%,0);
    -webkit-transition: .5s opacity ease-in;
    transition: .5s opacity ease-in;
  }

  #zoomout-loader.lb-visible {
     opacity: 1;
  }

  #zoomout-screen {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    -webkit-animation: lb-screen-fade-out;
    animation: lb-screen-fade-out;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
  }

  #zoomout {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%,-50%,0) scale(.5);
    transform: translate3d(-50%,-50%,0) scale(.5);
    display: none;
    opacity: 0;
    padding: 20px;
    background: #fff;
    -webkit-transition: 1s width ease-in-out;
    transition: 1s width ease-in-out;
  }


  #zoomout img, #zoomout video {
    display: block;
  }

  #zoomout.lb-invisible, #zoomout-screen.lb-invisible {
    display: block;
    visibility: hidden;
  }

  #zoomout.lb-visible {
	z-index:999;
    display: block;
    opacity: 1;
    -webkit-animation: lb-lightbox-fade-in;
    animation: lb-lightbox-fade-in;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-transform: translate3d(-50%,-50%,0) scale(1);
    transform: translate3d(-50%,-50%,0) scale(1);
  }

  #zoomout.lb-lightbox-fade-out {
    opacity: 0;
    -webkit-animation: lb-lightbox-fade-out;
    animation: lb-lightbox-fade-out;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
  }
  #zoomout-screen.lb-visible {
    display: block;
    opacity: 0.8;
    z-index: 9;
    -webkit-animation: lb-screen-fade-in;
    animation: lb-screen-fade-in;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
  }
  #zoomout-screen.lb-screen-fade-out {
    display: none;
    -webkit-animation: lb-screen-fade-out;
    animation: lb-screen-fade-out;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
  }

  #zoomout .lb-close, #zoomout .lb-prev, #zoomout .lb-next {
    position: absolute;
    z-index: 2;
    border: 0;
    outline: 0;
    color: transparent;
    cursor: pointer;
  }

  #zoomout .lb-close {

    top: 30px;
    right: 30px;
    width:65px;
    height:65px;
    background: url(../images/close.png);
  }

  #zoomout .lb-prev {
    visibility: hidden;
    top: 50%;
    left: 30px;
    width: 65px;
    height: 65px;
    background: url(../images/prev.png);
  }

  #zoomout .lb-next {
    visibility: hidden;
    top: 50%;
    right: 30px;
    width: 65px;
    height: 65px;
    background: url(../images/next.png);
  }

  #zoomout .lb-prev.lb-enabled, #zoomout .lb-next.lb-enabled {
    visibility: visible;
  }
 

@-webkit-keyframes lb-lightbox-fade-in {
    0%   {display: none; opacity: 0; transform: -webkit-translate3d(-50%,-50%,0) scale(.5); transform: translate3d(-50%,-50%,0) scale(.5);}
    1%   {display: block;}
    100% {opacity: 1; -webkit-transform: translate3d(-50%,-50%,0) scale(1); transform: translate3d(-50%,-50%,0) scale(1);}
}
@-webkit-keyframes lb-screen-fade-in {
    0%   {display: none; opacity: 0;}
    1%   {display: block;opacity: 0;}
    100% {display: block; opacity: .5;}
}

@-webkit-keyframes lb-lightbox-fade-out {
    0%   {opacity: 1;-webkit-transform: translate3d(-50%,-50%,0) scale(1);transform: translate3d(-50%,-50%,0) scale(1);}
    99%   {opacity: 0;-webkit-transform: translate3d(-50%,-50%,0) scale(.1);transform: translate3d(-50%,-50%,0) scale(.1);}
    100% {display: none; }
}
@-webkit-keyframes lb-screen-fade-out {
    0%   {opacity: .5;}
    99%   { opacity: 0;}
    100% {display: none;}
}


@keyframes lb-lightbox-fade-in {
    0%   {display: none; opacity: 0; transform: -webkit-translate3d(-50%,-50%,0) scale(.5); transform: translate3d(-50%,-50%,0) scale(.5);}
    1%   {display: block;}
    100% {opacity: 1; -webkit-transform: translate3d(-50%,-50%,0) scale(1); transform: translate3d(-50%,-50%,0) scale(1);}
}
@keyframes lb-screen-fade-in {
    0%   {display: none; opacity: 0;}
    1%   {display: block;opacity: 0;}
    100% {display: block; opacity: .5;}
}

@keyframes lb-lightbox-fade-out {
    0%   {opacity: 1;-webkit-transform: translate3d(-50%,-50%,0) scale(1);transform: translate3d(-50%,-50%,0) scale(1);}
    99%   {opacity: 0;-webkit-transform: translate3d(-50%,-50%,0) scale(.1);transform: translate3d(-50%,-50%,0) scale(.1);}
    100% {display: none; }
}
@keyframes lb-screen-fade-out {
    0%   {opacity: .5;}
    99%   { opacity: 0;}
    100% {display: none;}
}
@keyframes lb-fade-in {
    0%   {display: none; opacity: 0;}
    1%   { display: block;}
    100% {opacity: 1;}
}
@keyframes lb-fade-out {
    0%   {display: block; opacity: 1;}
    99%   { opacity: 0;}
    100% {display: none;}
}</pre></body></html>