.wcq-inquire-btn {
    cursor: pointer;
}

.wcq-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
}

.wcq-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.wcq-modal-content {
    position: relative;
    background: #fff;
    max-width: 600px;
    width: 90%;
    margin: 5% auto;
    padding: 30px;
    border-radius: 6px;
    max-height: 85vh;
    overflow-y: auto;
    z-index: 1;
}

.wcq-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}
/* Hard hide the Add to Cart form on single product pages
   when inquiry mode is active, regardless of theme markup */
body.wcq-inquiry-product form.cart,
body.wcq-inquiry-product .cart {
    display: none !important;
}