/*
Theme Name: Corretto Child
Theme URI: https://corretto.qodeinteractive.com/
Description: A child theme of Corretto Theme
Author: Elated Themes
Author URI: http://themeforest.net/user/elated-themes
Version: 1.0.2
Text Domain: corretto
Template: corretto
*/
.main-light-box {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox {
    max-width: 100%;
    max-height: 85%;
	margin-top:50px;
	 position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: contents;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.lightbox-image {
    max-width: 25%;
    max-height: 100%;
	 transition: transform 0.3s ease; 
	cursor:all-scroll;
}
.lightbox-image:hover {
    transform: scale(1.2);
}
.lightbox-controls {
    position: fixed;
    top: 12px;  
    right: 5%;
    display: flex;
    flex-direction: row; 
    gap: 10px; 
    z-index: 10;
}
.image-container{
	display:flex;
	justify-content:center;
	align-items:center;
}
.lightbox-controls i {
    color: white;
    font-size: 24px;
    cursor: pointer;
	display: contents;
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
}
.fa {
	position:absolute;
	top:0;
	right:0;
}
.lightbox .share-options {
    display: none;
    position: absolute;
    top: 5%;
    right: 100px;
    padding: 10px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    background-color: #fff;
    border-radius: 6px;
    padding: 14px 20px;
    transform-origin: 90% 10%;
    transition: all 0.25s 0.1s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.lightbox .share-options a {
    display: flex;
    align-items: center;
    margin: 8px 0;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: color 0.3s;
}

.lightbox .share-options a:hover {
    color: #3C71FF;
}

.lightbox .share-options i {
    margin-right: 10px;
}

.fb-color {
    color: #3b5998;
}

.twt-color {
    color: #1da1f2;
}

.pint-color {
    color: #e60023;
}

.dld-color {
    color: #555;
}

@media (max-width: 600px) {
    .lightbox .share-options {
        right: 1em;
        min-width: 180px;
		top:6%;
    }
}
@media (max-width: 567px){
	.lightbox-image {
    max-width: 50%;
    max-height: 100%;
	 transition: transform 0.3s ease; 
	cursor: grab;
	}
}

