/* Swiper with THUMBNAIL vertical*/
.swiper-main-content[vertical] {
    display: flex;
    width: 750px;
    height: 350px
}

.swiper-main-content[vertical] .swiper-container:not(.gallery-thumbs) {
    width: 500px;
    height: 100%
}

.swiper-main-content[vertical] .swiper-container.gallery-thumbs {
    height: 100%;
    width: 100px
}

/* Swiper with THUMBNAIL horizontal*/
.swiper-main-content[horizontal] {
    display: flex;
    flex-direction: column;
    width: 800px;
    height: 600px
}


.swiper-main-content[horizontal] .swiper-container:not(.gallery-thumbs) {
    width: 500px;
    height: 100%
}


.swiper-main-content[horizontal] .swiper-container.gallery-thumbs {
    height: 100px;
    width: 100%
}

.dpdsh-gallery__video-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dpdsh-gallery__video-icon svg {
    width: 60%;
    height: 60%;
}

/* Full screen viewer */
.dpdsh-fullscreen-gallery-container-parent {
    position: relative;
}

.dpdsh-fullscreen-gallery-container {
    position: absolute;
    z-index: 999;
    top: 10px;
    right: 10px;
}
.dpdsh-fullscreen-gallery-button {
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.dpdsh-fullscreen-gallery-button svg {
    fill: #fff;
}

.dpdsh-fullscreen-gallery-button.no-active {
    display: none;
}

body.fullscreen-gallery-open {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

body.fullscreen-gallery-open:before {
    content: '';
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.9);
    z-index: 99998;
}

body.fullscreen-gallery-open .dpdsh-fullscreen-gallery-container {
    top: -50px;
}

body.fullscreen-gallery-open .dpdsh-fullscreen-gallery-container-parent {
    position: fixed;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99999;
}