.no-click{
    pointer-events: none;
}

.custom-gallery-lightbox{
    display: none;
    /* display: flex; */
    flex-direction: column;
    position:fixed;
    width: 100%; 
    height: 100%;
    z-index: -1;
    justify-content: center;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
}

.open{
    display: flex;
    z-index: 10000;
    
}

.custom-gallery-lightbox-content{
    max-height: 60vw;
    margin: 20vh;
    text-align:center;
    margin: 0 auto;
    max-width: 80vw;
    color: white;
    display:flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 80vh;
    bottom: 0;
    & span{
        font-size: 12px;
        padding: 0;
        margin:0;
    }
}

.custom-gallery-lightbox-logo{
    max-width: 300px;
    width: 80%;

}


.custom-gallery-lightbox-caption{
    min-height: 10vh;
    text-shadow: 2px 2x 3x black;
     width: 100vw;
      position: relative;
/*      left: calc(-50vw + 50%);*/
}

.custom-gallery-lightbox-controls{
    z-index: 100000;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 200px;
    text-shadow: 2px 2x 3x black;

    & .custom-gallery-lightbox-controls-counter{
        padding: 0 20px;

    }
    


}


@media only screen and (max-width:600px){

    .custom-gallery-lightbox-content{
        max-height: 80vh;
        padding: 20px;
        width: 80vw;
        
    }

    .gallery-caption{
        display:none;
    }

    .custom-gallery-lightbox-controls-counter{
        padding: 0;
    }


}    


@media only screen and (min-width: 600px){


    .custom-gallery-lightbox-logo{
        max-width: 150px;
    }
    
    .custom-gallery-lightbox-caption{
/*        font-size: 12px;    */
    }
    .gallery-caption{
        font-size: 12px;
    }

    .custom-gallery-lightbox-image{
        flex-grow: 1;
    }

}


