/* MODAL */
@-webkit-keyframes image-blur {
  0% {
    -webkit-filter: blur(5px);
  }
  100% {
    -webkit-filter: blur(13px);
  }
}
@-moz-keyframes image-blur {
  0% {
    -webkit-filter: blur(5px);
  }
  100% {
    -webkit-filter: blur(13px);
  }
}
@-o-keyframes image-blur {
  0% {
    -webkit-filter: blur(5px);
  }
  100% {
    -webkit-filter: blur(13px);
  }
}
@keyframes image-blur {
  0% {
    -webkit-filter: blur(5px);
  }
  100% {
    -webkit-filter: blur(13px);
  }
}
@-webkit-keyframes image-blur-out {
  0% {
    filter: blur(13px);
  }
  100% {
    -webkit-filter: blur(0px);
  }
}
@-moz-keyframes image-blur-out {
  0% {
    filter: blur(13px);
  }
  100% {
    -webkit-filter: blur(0px);
  }
}
@-o-keyframes image-blur-out {
  0% {
    filter: blur(13px);
  }
  100% {
    -webkit-filter: blur(0px);
  }
}
@keyframes image-blur-out {
  0% {
    filter: blur(13px);
  }
  100% {
    -webkit-filter: blur(0px);
  }
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media -sass-debug-info{filename{font-family:file\:\/\/C\:\/Users\/danie\/PhpstormProjects\/Lightbox\/scss\/style\.scss}line{font-family:\000037}}
img {
  width: 100%;
}

@media -sass-debug-info{filename{font-family:file\:\/\/C\:\/Users\/danie\/PhpstormProjects\/Lightbox\/scss\/style\.scss}line{font-family:\0000310}}
a.lightbox > img.img-lightbox {
  position: relative;
  height: 200px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
}

/* The Modal (background) */
@media -sass-debug-info{filename{font-family:file\:\/\/C\:\/Users\/danie\/PhpstormProjects\/Lightbox\/scss\/style\.scss}line{font-family:\0000320}}
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: #FFF;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.1);
  /* Black w/ opacity */
  opacity: 1;
}
@media -sass-debug-info{filename{font-family:file\:\/\/C\:\/Users\/danie\/PhpstormProjects\/Lightbox\/scss\/style\.scss}line{font-family:\0000333}}
.modal:hover, .modal:focus {
  cursor: pointer;
}

@media -sass-debug-info{filename{font-family:file\:\/\/C\:\/Users\/danie\/PhpstormProjects\/Lightbox\/scss\/style\.scss}line{font-family:\0000338}}
.modal-active {
  display: block;
  -webkit-animation: fade-in 0.6s;
  -moz-animation: fade-in 0.6s;
  -ms-animation: fade-in 0.6s;
  -o-animation: fade-in 0.6s;
  animation: fade-in 0.6s;
}

/* Modal Content/Box */
@media -sass-debug-info{filename{font-family:file\:\/\/C\:\/Users\/danie\/PhpstormProjects\/Lightbox\/scss\/style\.scss}line{font-family:\0000344}}
.modal-content {
  background-color: transparent;
  margin: 20px auto;
  /* 15% from the top and centered */
  height: auto;
  width: 60%;
  /* Could be more or less, depending on screen size */
}
@media only screen and (max-width: 550px) {
@media -sass-debug-info{filename{font-family:file\:\/\/C\:\/Users\/danie\/PhpstormProjects\/Lightbox\/scss\/style\.scss}line{font-family:\0000344}}
  .modal-content {
    width: 100%;
  }
}
@media -sass-debug-info{filename{font-family:file\:\/\/C\:\/Users\/danie\/PhpstormProjects\/Lightbox\/scss\/style\.scss}line{font-family:\0000352}}
.modal-content:hover, .modal-content:focus {
  cursor: default;
}

/* The Close Button */
@media -sass-debug-info{filename{font-family:file\:\/\/C\:\/Users\/danie\/PhpstormProjects\/Lightbox\/scss\/style\.scss}line{font-family:\0000358}}
.close {
  color: #aaa;
  font-size: 28px;
  position: absolute;
  width: 60%;
  margin-left: -10px;
  margin-top: 10px;
  text-align: right;
}
@media only screen and (max-width: 550px) {
@media -sass-debug-info{filename{font-family:file\:\/\/C\:\/Users\/danie\/PhpstormProjects\/Lightbox\/scss\/style\.scss}line{font-family:\0000358}}
  .close {
    display: none;
  }
}

@media -sass-debug-info{filename{font-family:file\:\/\/C\:\/Users\/danie\/PhpstormProjects\/Lightbox\/scss\/style\.scss}line{font-family:\0000371}}
.close:hover,
.close:focus {
  color: #8f8f8f;
  text-decoration: none;
  cursor: pointer;
}

@media -sass-debug-info{filename{font-family:file\:\/\/C\:\/Users\/danie\/PhpstormProjects\/Lightbox\/scss\/style\.scss}line{font-family:\0000378}}
.blur-active .wrapper {
  filter: blur(13px);
  animation: image-blur 1s;
}

@media -sass-debug-info{filename{font-family:file\:\/\/C\:\/Users\/danie\/PhpstormProjects\/Lightbox\/scss\/style\.scss}line{font-family:\0000383}}
.blur-out .wrapper {
  filter: blur(0px);
  -webkit-animation: image-blur-out 0.6s;
  -moz-animation: image-blur-out 0.6s;
  -ms-animation: image-blur-out 0.6s;
  -o-animation: image-blur-out 0.6s;
  animation: image-blur-out 0.6s;
}

@media -sass-debug-info{filename{font-family:file\:\/\/C\:\/Users\/danie\/PhpstormProjects\/Lightbox\/scss\/style\.scss}line{font-family:\0000388}}
.wrapper {
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000;
  transform: translate3d(0, 0, 0);
  transform: translateZ(0);
}
