.overlay {
    background: #000000c7;
    height: 100vh;
    width: 100vw;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    display: none;
}
.overlay.open {
    display: block;
}
.gallery {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: white;
    box-shadow: 0px 0px 10px 0px #bdbdbd;
    z-index: 3;
    border-radius: 12px;
    display: none;
}
.gallery.open {
    display: block;
}
.gallery-title .box.shadow-lite {
    box-shadow: none;
    padding: 20px 25px;
}

.gallery-title .users-detail.active {
    background: transparent;
}

.gallery-title .close {
    cursor: pointer;
}

.gallery-body {
    background: #E9EDF6;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.gallery-body-photo__big{
    height: 530px;
    width: auto;
}
.gallery-body-left {
    margin-left: 30px;
    cursor: pointer;
}
.gallery-body-left img{
    transform: rotate(90deg);
}
.gallery-body-right {
    cursor: pointer;
    margin-right: 30px;
}
.gallery-body-right img{
    transform: rotate(-90deg);
}
.gallery-footer {
    background: white;
    padding: 12px 15px 15px;
    justify-content: center;
    display: flex;
    align-items: center;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    overflow-x: auto;
}
.gallery-footer img {
    max-height: 85px;
    height: 100%;
    margin: 0 5px;
}
.gallery-footer img.active {
    border: 4px solid #AA92F2;
    max-height: 93px;
    margin: 0 1px;
}
@media screen and (max-width: 1000px) {
    .gallery-body-photo__big {
        height: 400px;
    }
}

@media screen and (max-width: 790px) {
    .gallery-body-photo__big {
        height: 300px;
    }
}

@media screen and (max-width: 620px) {
    .gallery-body-photo__big {
        height: 200px;
    }
    .gallery-body-left {
        margin-left: 5px;
    }
    .gallery-body-right {
        margin-right: 5px;
    }
    .gallery-footer {
        justify-content: flex-start;
    }
}
@media screen and (max-width: 440px) {
    .gallery-body-photo__big {
        height: 150px;
    }

}
