.personal-shopper-no-scroll {
    overflow: hidden !important;
}
.personal-shopper-no-scroll > .mfp-bg,
.personal-shopper-no-scroll > .mfp-wrap {
    z-index: 10000;
}

.personal-shopper-no-scroll > .mfp-wrap > .mfp-container {
    overflow-y: auto;
}

#personal-shopper-open-product-modal {
    background: #000000;
    color: #fff;
    display: block;
    width: 100%;
    box-shadow: 1px 2px 3px #ccc;
}

#personal-shopper-product-modal {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#personal-shopper-notices {
    position: absolute;
    top: 50px;
    z-index: 1;
    left: 0;
    background: #ffffff;
    padding: 5px;
}

#personal-shopper-toggle {
    margin: 0 0 0 2px;
    padding: 0;
}

#personal-shopper-product-modal .modal-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff;
    padding: 20px;
    width: 95%;
    height: 95%;
    position: relative;
    max-width: none;
}
#personal-shopper-product-modal .close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 50px;
    z-index: 2;
    line-height: 1;
}

#personal-shopper-product-modal #product-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#personal-shopper-product-modal #product-slider .grid-tools .add-to-cart-grid,
#personal-shopper-product-modal #product-slider .wishlist-icon {
    display: none;
}

#personal-shopper-product-modal #product-slider .slick-track
{
    display: flex !important;
}

#personal-shopper-product-modal #product-slider .slick-slide {
    display: flex;
    flex-wrap: wrap;
}

#personal-shopper-product-modal #product-slider .slick-slide > div {
    height: inherit !important;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

#personal-shopper-product-modal #product-slider .col,
#personal-shopper-product-modal #product-slider .col-inner {
    max-height: 600px;
    height: 100%;
}

#personal-shopper-product-modal #product-slider .col .title-wrapper {
    display: none;
}

#personal-shopper-product-modal .hidden {
    display: none !important;
}

#personal-shopper-loading-spinner {
    display: none;
    text-align: center;
    height: calc(100% - 40px);
    position: absolute;
    width: calc(100% - 40px);
}

.personal-shopper-spinner {
    animation: personal-shopper-rotate 1s linear infinite;
    stroke: #0073aa;
    stroke-linecap: round;
}

.personal-shopper-path {
    stroke-dasharray: 150, 200;
    stroke-dashoffset: -10;
    animation: personal-shopper-dash 1.5s ease-in-out infinite;
}

@media only screen and (max-width: 480px) {
    #personal-shopper-toggle {
        margin-left: 0 !important;
    }
    #personal-shopper-product-modal .close-modal {
        top: 0;
        right: 0;
    }

    #personal-shopper-product-modal #product-slider .slick-slide {
        height: 80vh;
        height: 80dvh;
        max-height: 80svh;
        flex-direction: column;
    }

    #personal-shopper-product-modal #product-slider .slick-slide > div {
        flex: 0 0 50%;
        max-height: 50%;
    }

    #personal-shopper-product-modal #product-slider .col {
        padding: 0 5px 15px !important;
    }

    #personal-shopper-product-modal #product-slider .col .box {
        display: flex;
        flex-direction: column;
        height: inherit;
    }

    #personal-shopper-product-modal #product-slider .col .box > .box-image > .image-fade_in_back {
        display: flex;
        max-height: 100%;
    }

    #personal-shopper-product-modal #product-slider .col .box > .box-image img{
        /*max-height: 130px;*/
        /*object-fit: cover;*/
        max-height: 100%;
        width: auto;
    }
}

button.quick-view-close {
    position: sticky;
    left: calc(100% - 30px);
    top: 10px;
    font-size: 40px;
    padding: 0;
    margin: 0;
    line-height: 1;
    min-height: auto;
    z-index: 10;
}

@media only screen and (max-width: 849px) {
    /* Quick view */
    .mfp-close {
        position: absolute;
        top: 35px;
        right: 35px;
        opacity: 1;
    }

    .personal-shopper-no-scroll .product.row {
        position: relative;
    }

    .personal-shopper-no-scroll .product-info.summary,
    .personal-shopper-no-scroll .product-lightbox-inner {
        position: initial !important;
    }

    #personal-shopper-notices {
        padding-right: 35px !important;
        top: 10px;
    }
}

@keyframes personal-shopper-rotate {
    100% { transform: rotate(360deg); }
}

@keyframes personal-shopper-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
    }
}

