#_desktop_cqw {
    height: 3rem;
    padding: 0.75rem;

    .disabled {
        pointer-events: none;
        cursor: pointer;

        .count {
            background-color: #bbb;
        }
    }

    .count {
        background-color: #24b9d7;
        border-radius: 50%;
        text-align: center;
        width: 20px;
        height: 20px;
        line-height: 20px;
        display: inline-block;
        color: white;
        font-size: 10px;
    }
}

.cqw-dialog {
    position: relative;
    padding-top: 40px;

    /*.close {
        position: absolute;
        color: black;
        opacity: 0.5;
        top: 10px;
        right: 10px;
        padding: 0.5rem;
        cursor: pointer;
        font-size: 12px;
    }*/
}

.cqw-quote-request-form {
    .qty {
        display: inline-flex;
        float: left;
        margin-right: 0.4em;

        #cqw_quantity {
            width: 3rem;
            height: 2.75rem;
            padding: 0.175rem 0.5rem;
            color: #232323;
            background-color: #fff;
        }
    }

    .cqw-add {
        display: inline-flex;
        float: left;

        #btn-cqw-add-to-quote {
            height: 2.75em;
            padding-top: 0.625rem;
            line-height: inherit;
        }
    }
}

#cqw-products {

    td {
        vertical-align: middle;
    }

    .product-details-content {
        display: grid;
        grid-template-columns: 60px auto;
        grid-gap: 10px;

        img {
            width: 60px !important;
        }
    }

    @media only screen and (max-width: 768px) {
        thead {
            display: none;
        }
        tr {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-rows: auto auto auto;
            grid-gap: 10px;

            .product-details {
                grid-column: span 3;
                padding-bottom: 0;
                font-size: 0.9rem;

                img {
                    width: 60px !important;
                }
            }

            .product-qty, .product-total, .product-price {
                padding-top: 0;
            }

            .product-tax-rate {
                display: none;
            }
        }

        .footer-row-total {
            td {
                padding-bottom: 0;
                padding-top: 0;
            }

            .footer-row-col-empty {
                display: none;
            }

            .footer-row-col-title {
                grid-column: span 2;
            }
        }

    }
}

.cqw-added-to-quote-modal.hummingbird {
    .close {
        display: none;
    }

    .btn-close {
        display: block !important;
    }

    .modal-content {
        transform: scale(1) !important;
        -webkit-transform: scale(1) !important;
    }
}
