/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 22 2025 | 21:56:51 */
/*===============================*/
/* LIGHTBOX */
#lightbox {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0,0,0,0.85) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    visibility: hidden !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
    z-index: 9999999 !important;
}

#lightbox.active {
    visibility: visible !important;
    opacity: 1 !important;
}

#lightbox img {
    max-width: 90% !important;
    max-height: 90% !important;
    border-radius: 12px !important;
    box-shadow: 0 0 25px rgba(0,0,0,0.5) !important;
    cursor: zoom-out !important;
    transition: transform 0.3s ease !important;
}

#lightbox img:hover {
    transform: scale(1.03) !important;
}

#lightbox #close {
    position: absolute !important;
    top: 20px !important;
    right: 40px !important;
    color: #fff !important;
    font-size: 40px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    user-select: none !important;
}

/*===============================*/
/* BOUTON FACEBOOK FLOTTANT */
.floating-share {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    z-index: 999999 !important;
    pointer-events: auto !important;
}

.floating-share a img {
    width: 20px !important;
    height: 20px !important;
    background: #fff !important;
    padding: 10px !important;
    border-radius: 12px !important;
    box-shadow: 0 1px 13px rgba(0,0,0,0.2) !important;
    transition: 0.1s !important;
}

.floating-share a img:hover {
    background: #ADD8E6 !important;
    transform: scale(1.1) !important;
}

