﻿.np-wo-summary {
    margin-top: 50px;
}

    .np-wo-summary thead th {
        /*padding: 10px 0;*/
        border: 1px solid #ccc;
    }

    .np-wo-summary td {
        text-align: center;
        /*padding: 2px 0;*/
        /*border: 1px solid #ccc;*/
    }


.np-wo-order-queue-summary {
    margin-top: 20px;
}

.np-wo-order-queue-summary img.product-image {
    width: 80px;
}

.np-wo-order-queue-summary .no-wo-subtotal-panel {
    text-align: right;
    background-color: #f6f6f6;
    padding: 20px;
    font-weight: bold;
    font-size: 20px;
}

    .np-wo-order-queue-summary .no-wo-subtotal-panel label {
        display: inline-block;
    }

.np-wo-order-queue-summary .common-buttons {
    margin: 0 0 60px;
    background-color: #f6f6f6;
    padding: 0 20px 20px;
    font-size: 0;
}

    .np-wo-order-queue-summary .common-buttons input {
        display: inline-block;
        min-width: 180px;
        margin: 5px;
        border: none;
        background-color: #aaa;
        padding: 10px 20px;
        font-size: 15px;
        color: #fff;
    }

        .np-wo-order-queue-summary .common-buttons input:first-child {
            background-color: #f2c242;
        }

.np-wo-product-list-header {
    cursor: pointer;
    padding: 10px 20px;
    background-color: #f2c242;
    border-bottom: 1px solid #fff;
    position: relative;
    color:white;
}

    .np-wo-product-list-header:first-child {
        border-top: 1px solid #fff;
    }

    .np-wo-product-list-header:after {
        content: "+";
        font-size: 1.5em;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s ease-in-out;
    }

    .np-wo-product-list-header.expanded:after {
        transform: translateY(-50%) rotate(-225deg);
    }

.np-wo-product-list.collapsed,
.np-wo-product-list {
    height: 0;
    opacity: 0;
    transition: all 0.1s linear;
    transform: scaleY(0);
    transform-origin: top;
}

    .np-wo-product-list.expanded {
        margin: 10px 0;
        padding: 0 10px;
        display: block;
        opacity: 1;
        height: 100%;
        transform: scaleY(1);
    }
