/*
  ___________    _____    __    ___       __    ____________  ____________  ____ _  __
 /_  __/  _/ |  / /   |  / /   /   |     / /   /  _/ ____/ / / /_  __/ __ )/ __ \ |/ /
  / /  / / | | / / /| | / /   / /| |    / /    / // / __/ /_/ / / / / __  / / / /   / 
 / / _/ /  | |/ / ___ |/ /___/ ___ |   / /____/ // /_/ / __  / / / / /_/ / /_/ /   |  
/_/ /___/  |___/_/  |_/_____/_/  |_|  /_____/___/\____/_/ /_/ /_/ /_____/\____/_/|_|  
                                                                                      
*/
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#tvp-lightbox-wrapper {
  height: 100vh !important;
  width: 100vw !important;
  top: 0px !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  position: fixed !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 99999 !important;
  background: rgba(255, 255, 255, 0.8) !important;
}

#tvp-lightbox-wrapper img {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
  border: 9px solid #343d46;
  border-radius: 5px;
}

@media screen and (orientation: portrait) {
  #tvp-lightbox-wrapper img {
    height: auto !important;
    width: 85% !important;
  }
}

@media screen and (orientation: landscape) {
  #tvp-lightbox-wrapper img {
    height: 85% !important;
    width: auto !important;
  }
}

#tvp-lightbox-wrapper .tvp-lightbox-bar {
  color: #343d46;
  cursor: pointer;
  padding: 5px;
}

.tvp-lightbox img {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.tvp-lightbox img:hover {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
}
/*# sourceMappingURL=tivala-lightbox.css.map */