body #mainContent .products .details {
    position: relative;
    /*z-index: 15;*/
}

    body #mainContent .products .details button.quick_view {
        margin: 0 auto;
        left: 0;
        right: 0;
        position: absolute;
        width: 98%;
        white-space: nowrap;
        display: none;
        background: white;
        color: var(--bg-color);
        border: none;
        box-shadow: 0 0 3px #e2e2e2;
        top: 2px;
        opacity: .7;
        height: 30px;
    }

    body #mainContent .products .details:hover button.quick_view {
        display: block;
    }

        body #mainContent .products .details:hover button.quick_view:hover {
            opacity: 1;
        }

        body #mainContent .products .details:hover button.quick_view:hover,
        body #mainContent .products .details:hover button.quick_view:focus,
        body #mainContent .products .details:hover button.quick_view:active {
            background: white;
            color: inherit;
        }

body.hidden-bpopup #quickViewModal,
body.hidden-bpopup .b-modal.__b-popup1__ {
    display: none !important;
}

@media screen and (max-width: 950px) {
    body #mainContent .products .details:hover button.quick_view {
        display: none;
    }
}