.lightbox{
    position: fixed;
    z-index: 100000;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    width: 100vw;
    height: 100vh;
    display: none;
}
.lightbox .imgPart{
    width: 90%;
    margin: auto;
    margin-top: 5px;
    position: relative;
    height: 100vh;
    overflow: scroll;
    text-align: center;
}
.lightbox .imgPart img{
    height: 100vh;
}
.box{
    position: absolute;
    right: 0px;
    z-index: 100000;
}
.box .btnAll {
    position: relative;
    background-color: white;
    border-radius: 50%;
    cursor: pointer;
    margin: 5px 5px 5px 15px;
    display: inline-table;
}

.box .icon {
    width: 52px;
    height: 52px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.box .icon.close {
    background-image: url('../image/icon/icon_o_close.svg');
}