﻿@media only screen and (max-width: 900px) {
    .galleryZoomModal {
        display: none !important;
    }

    .productDetailImage {
        cursor: default !important;
    }
}

.galleryZoomModal {
    visibility: hidden;
    opacity: 0;
    height: 0;
    width: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999999;
    transition: all .5s;
}

    .galleryZoomModal.open {
        visibility: visible;
        opacity: 1;
        height: 100%;
        transition: all .5s;
    }

#galleryzoomImage {
    position: relative;
    width: fit-content;
    display: contents;
}

.galleryZoomModalOtherImages {
    border: 5px solid red;
    width: 38%;
    float: left;
}

.galleryzoomModalCloseBtn {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background-color: #f2f2f2;
    cursor: pointer;
    font-size: 15px;
    font-family: sans-serif;
    line-height: 3.1rem;
    text-align: center;
    font-weight: bolder;
    z-index: 100;
}

.zoomjsLens {
    position: absolute !important;
    left: 0;
    top: 0;
    display: none;
    cursor: crosshair;
    border-color: rgba(170, 170, 170, .7);
    box-shadow: 0 0 5px rgb(0 0 0 / 30%);
    border: 0px;
    z-index: 1001;
    overflow: hidden;
}

    .zoomjsLens img {
        -moz-transition: unset;
        -webkit-transition: unset;
        -i-transition: unset;
        transition: unset;
    }

.zoomjsZoomWindow {
    position: absolute !important;
    display: none;
    border-color: rgba(170, 170, 170, .7);
    box-shadow: 0 0 5px rgb(0 0 0 / 30%);
    -moz-transition: all 0.25s ease-out;
    -webkit-transition: all 0.25s ease-out;
    -i-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
    z-index: 1001;
    overflow: hidden;
}

    .zoomjsZoomWindow img {
        -moz-transition: all 0.25s ease-out;
        -webkit-transition: all 0.25s ease-out;
        -i-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }
#galeryScroll{
    margin-top:35px;
}
.enableScroll {
    max-height: 700px;
    overflow-y: auto;
}