.pdqo-window {
    position: relative;
    background: #FFF;
    padding: 0px;
    width: auto;
    max-width: 700px;
    margin: 20px auto;
    
}
.pdqo-header {
    background: #fff;
    font-size: 22px;
    text-align: center;
    padding: 30px;
    font-weight: 500;
    color: #353535;
}
.pdqo-window label {
    color: #6D6B6B;
    padding-bottom: 3px;
}
input.pdqo-field, textarea.pdqo-field {
    border: 1px solid #CACACA;
    transition: 0.3s;
}
input.pdqo-field, textarea.pdqo-field {
    padding: 6px 15px;
    width: 100%;
    height: 40px;
    display: block;
    border-radius: 4px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
textarea.pdqo-field {
    resize: vertical;
}
input.pdqo-field:hover, textarea.pdqo-field:hover, input.pdqo-field:focus, textarea.pdqo-field:focus {
    transition: 0.3s;
    border: 1px solid #14b383;
    box-shadow: 0 0 2px #14b383;
    outline: none;
}
button.pdqo-button {
    padding: 14px 0px;
    background: #ECECEC;
    border-radius: 0px;
    display: inline-block;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
}
button.pdqo-confirm {
    display: block;
    float: right;
    border-radius: 0;
    width: 48.9%;
    padding: 20px;
    background: #14b383;
   color: #fff;
   margin-top: 30px;
    text-transform: uppercase;
    border: 2px solid #14b383;
}
button.pdqo-cancel {
    display: block;
    float: left;
    width: 48.9%;
    border-radius: 0;
    background: #ffffff;
    /* border-color: #3193f6; */
    border: 2px solid #14b383;
    padding: 20px;
    color: #000;
    text-transform: uppercase;
    margin-top: 30px;
}
button.pdqo-cancel:hover, button.pdqo-cancel:active, button.pdqo-cancel:focus {
    cursor: pointer;
    background: #ffffff;
    color: #000000;
    border: 2px solid #14b383;
}
button.pdqo-confirm:hover, button.pdqo-confirm:active, button.pdqo-confirm:focus {
    cursor: pointer;
    background: #14b383;
    border:2px solid #14b383;
}
button.pdqo-button:focus {
    outline: none;
}
.pdqo-required {
    vertical-align: middle;
    color: #F52A2A;
}
.pdqo-content {
    padding: 5px 20px 15px 20px;
}
.pdqo-complete-order {
    padding: 15px;
    background-color: #d6e9c6;
    border-radius: 4px;
}
.pdqo-complete-order-header {
    text-align: center;
    padding-bottom: 10px;
    font-size: 2em;
    font-weight: bold;
    color: #3c763d;
}
.pdqo-complete-order-content {
    text-align: center;
    color: #3c763d;
}

.pdqo-order-number {
    font-size: 1.6em;
    font-weight: bold;
    padding: 0 0 8px 0;
}
table.pdqo-products {
    margin: 0 auto;
    border-collapse: collapse;
    
    color: #757575;
    text-rendering: auto;
    border-radius: 4px;
    width: 100%;
}
table.pdqo-products thead th {
    
}
table.pdqo-products thead th,
table.pdqo-products tbody td {
    height: 20px;
    min-height: 20px;
    color: #000;
    font-weight: normal;
    padding: 6px 10px 7px;
    background: #fff;
}
table.pdqo-products tbody td {
    padding: .4rem;
    font-size: 1em;
    color: #444;
    background: #fff;
   
    vertical-align: middle;
}

table.pdqo-products tbody tr:not(:last-child) {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

@media screen and (max-width: 600px) {
    table.pdqo-products thead {
        display: none;
    }
    table.pdqo-products tbody td {
        display: block;
        padding: .6rem;
    }
    table.pdqo-products tbody tr td:first-child {
        background: #666;
        color: #fff;
    }
    table.pdqo-products tbody td:before {
        text-align: left;
        content: attr(data-th); 
        font-weight: bold;
        display: inline-block;
        width: 6rem;
    }
}
input.pdqo-products-quantity {
    width: auto;
    max-width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.pdqo-products-remove 
{
    width: 7px;
    height: 7px;
}
img.pdqo-products-remove:hover {
    cursor: pointer;
    opacity: 0.5;
}
.pdqo-products-totals
{
    border-top: 1px solid #ddd;
}
.pdqo-products-totals tr
{
    border: none!important;
}

@media(max-width:470px)
{
    button.pdqo-cancel
    {
        font-size: 11px;
    }
    button.pdqo-confirm
    {
        font-size: 11px;
    }
}

@media(max-width:416px)
{
    button.pdqo-cancel
    {
        width: 100%;
        margin-top: 15px;
    }
    button.pdqo-confirm
    {
        width: 100%;
        margin-top: 10px;
    }
}