/*
 * Lightbox-FS
 * Copyright 2019
 * Author: Faisal Rashid
 * All Rights Reserved.
 * Use, reproduction, distribution, and modification of this code is subject to the terms and
 * conditions of the MIT license, available at http://www.opensource.org/licenses/mit-license.php
 *
 * Project: https://github.com/FaisalST32/fs-lightbox
 */

 .lightbox-image{position:fixed;top:50vh;left:50vw;transform:translate(-50%,-50%);z-index:50;padding:10px 10px 10px 10px;background-color:#fff;z-index:100000;border-radius:5px}.lightbox-image img{max-height:80vh;max-width:80vw}.lightbox-overlay{position:fixed;top:0;left:0;width:100vw;height:100vh;background-color:rgba(0,0,0,.7);z-index:10000}.lightbox-controls{position:fixed;left:0;top:0;z-index:100;text-align:center;color:rgba(255,255,255,.7);z-index:100000}.lightbox-controls span.lb-next,.lightbox-controls span.lb-prev{cursor:pointer;user-select:none}.lightbox-controls span.lb-next:active,.lightbox-controls span.lb-prev:active{color:#ff8c00}img[data-lightbox-index]{cursor:pointer}.lightbox-controls span.lb-disabled{cursor:default;color:gray}.lightbox-controls span.lb-prev{position:fixed;top:50vh;left:5vw;font-size:50px;transform:translateY(-50%)}.lightbox-controls span.lb-next{position:fixed;top:50vh;right:5vw;font-size:50px;transform:translateY(-50%)}.lightbox-controls span.lb-close{position:fixed;top:0;right:20px;font-size:60px;cursor:pointer;font-weight:700}span.lb-close:hover,span.lb-next:hover,span.lb-prev:hover{transition:all .2s ease-in-out;color:rgba(255,255,255,1)}@media screen and (max-width:991px){.lightbox-image img{max-width:70vw}.lightbox-controls span.lb-next{font-size:40px;right:10px}.lightbox-controls span.lb-prev{font-size:40px;left:10px}}