.pdqo-window {
    position: relative;
    background: #f4f4f4;
    padding: 60px 50px;
    width: auto;
    max-width: 700px;
    margin: 20px auto;
}
.pdqo-header {

    text-align: center;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    font-family: "Lato-Bold", sans-serif;

}
.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 {
    border-radius: 0;
    box-shadow: none;
    outline: none;
    height: 50px;
    border: 1px solid #ccc;
    padding: 0 15px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
}
.pdqo-col {
    margin: 0;
}
textarea.pdqo-field {
    resize: vertical;
}

button.pdqo-confirm {
    padding: 22px 0;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 1px;
    box-shadow: none;
    background: #e9d5e0;
    color: #333;
    border: none;
    border-radius: 0;
    width: 100%;
    margin-top: 10px;
}
button.pdqo-cancel {
    background: #9C9B9B;
    color: #FFFFFF;
}
button.pdqo-cancel:hover, button.pdqo-cancel:active, button.pdqo-cancel:focus {
    cursor: pointer;
    background: #8C8C8C;
    color: #FFFFFF;
}
button.pdqo-confirm:hover, button.pdqo-confirm:active, button.pdqo-confirm:focus {
    cursor: pointer;
    background: #f2dee9;
    color: #121212;
}
button.pdqo-button:focus {
    outline: none;
}
.pdqo-required {
    vertical-align: middle;
    color: #F52A2A;
}

.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;
    font-family: Agenda-Light, sans-serif;
    background: #dbdbdb;
    color: #757575;
    text-rendering: auto;
    border-radius: 4px;
    width: 100%;
}
table.pdqo-products thead th {
    font-weight: 600;
}
table.pdqo-products thead th,
table.pdqo-products tbody td {
    padding: .4rem;
    font-size: 1em;
}
table.pdqo-products tbody td {
    padding: .4rem;
    font-size: 1em;
    color: #444;
    background: #fff;
    border: 1px solid #ddd;
    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;
	border: 1px solid #CACACA;
	text-align: center;
}
img.pdqo-products-remove:hover {
    cursor: pointer;
    opacity: 0.5;
}

.pdqo-window img.mfp-close {
    height: 25px;
    width: 25px;
    opacity: 1;
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0;
}
.pdqo-window img.mfp-close:hover {
    opacity: 0.6;
}