.custom-lightbox-wrapper{
    .lightbox-trigger {
        cursor: pointer;
    }
    .custom-lightbox-content {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 9999;
        display: flex;
        justify-content: center;
        align-items: center;
        .lightbox-inner {
            padding: 30px;
            border-radius: 5px;
            max-width: 60%;
            max-height: 80%;
            overflow: auto;
            position: relative;
            img {
                max-width: 100%;
                height: auto;
            }
            .lightbox-close {
                position: absolute;
                top: 20px;
                right: 0px;
                font-size: 50px;
                cursor: pointer;
                color: #ffffff;
            }
            .lightbox-text-content {
                padding: 20px;
                border-radius: 4px;
                max-width: 800px;
                background-color: #ffffff;
                display: flex;
                align-items: center;
                justify-content: center;

            }
            iframe,video{
                width: 800px;
                height: 450px;
                max-width: 100%;
            }
        }
        
    }
}
body.lightbox-open {
    overflow: hidden;
}