    #picStage {
        position: fixed;
        top: 0px;
        bottom: 0px;
        left: 0px;
        right: 0px;
        background-color: var(--bgcolor);
        text-align: center;
    }

    #picBox {
        transition: height 0.3s, width 0.3s;
        border: 0px solid #fff;
        display: block;
        background-size: contain;
        background-repeat: no-repeat;
        background-color: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .imgSmall {
        width: 30%;
        display: inline-block;
        height: 80px;
        margin-right: 5px;
        border-radius: 10px;
        cursor: pointer;
    }

    .arrowRight {
        display: inline-block;
        height: 50px;
        width: 50px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        background-image: url(icons/arrowx.png);
        transform: rotate(180deg);
        cursor: pointer;
        top: calc(50% - 50px);
        right: 0px;
        position: fixed;
        z-index: 100;
        background-color: #fff;
        opacity: 0.8;
    }

    .arrowLeft {
        display: inline-block;
        height: 50px;
        width: 50px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        background-image: url(icons/arrowx.png);
        margin-right: 20px;
        cursor: pointer;
        top: calc(50% - 50px);
        left: 0px;
        position: fixed;
        z-index: 100;
        background-color: #fff;
        opacity: 0.8;

    }

    .closeX {
        display: inline-block;
        height: 50px;
        width: 50px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 50%;
        background-image: url(icons/cross.png);
        position: absolute;
        right: 0px;
        top: calc(0px);
        cursor: pointer;
        z-index: 100;
        background-color: #fff;
        opacity: 0.8;
    }

    .hideDiv {
        opacity: 0;
        display: none;
    }
