﻿


/******************************************************************************/
/*                             CSS FOR LIGHTBOX                               */
/******************************************************************************/
.pnlLightboxContainer {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.6);
    height: 100vh;
    width: 100vw;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pnlLightboxMainPanelOuter {
    position: relative;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-right: 4%;
}

.pnlLightboxMainPanel {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 80vh;
    max-width: 80vw;
    margin: 15px;
}

    .pnlLightboxMainPanel > img {
        max-height: inherit;
        max-width: inherit;
        object-fit: contain;
    }

.pnlLightboxCloseButton {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 22px;
    top: -10px;
    right: -10px;
    background-color: #fff;
    border-radius: 11px;
}

.lbtnLightboxCloseX {
    color: #333;
    font-weight: bold;
    font-size: 20px;
    text-decoration: none;
}
