/* The Lightbox Responsive Image Style */

.lri-main {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 0%;
    height: 0%;
    background: rgba(0,0,0,0.6);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999999;
    overflow: hidden;
}

.lri-main.active {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}

.lri-top-bar {
    height: 5%;
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    background: rgba(0,0,0,0.8);
}

.lri-main-content {
    position: relative;
    width: 100%;
    height: 90%;
    text-align: center;
    z-index: 9;
}

@media only screen and (max-width: 900px) {
    .lri-main-content {
        width: 100%;
        height: 100%;
    }    
}

.lri-nav-link {
    position: absolute;
    top: 50%;
    margin-top: -20px;
    height: 30px;
    width: 30px;
    background: rgba(0,0,0,0.8);
    color: white;
    line-height: 30px;
    text-align: center;
    display: block;
    opacity: 0.2;
    z-index: 99999999;
    cursor: pointer;
}

.lri-nav-link i {
    color: white;
}

.lri-nav-link:hover {
    opacity: 1;
    transition: .5s;
}

.lri-prev-link {
    color: white;
    left: 30px;
}

.lri-next-link {
    color: white;
    right: 30px;
}

.lri-loader {
    position: absolute; 
    top: 0px; 
    left: 0px;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
    width: 100%;
    height: 100%;
    color: white;
}

.lri-loader img {
    margin: auto;
}