.totalBlueField {
    height: 55px;
    color: white;
    font-family: 'Roboto regular';
    text-align: center;
    font-size: 17px;
    padding-top: 14px;
    background: var(--accent);
    margin-top: 55px;
}

.totalBlueField.redBlueField {
    background: var(--error) !important;
}

.totalBlueField .money {
    font-size: 20px;
    display: inline-block;
    vertical-align: top;
    margin-top: -3px;
    margin-left: 5px;

}

.header.paymentModal .title {
    width: 85%;
}

.paymentBody {
    border: 1px solid var(--border-color);
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    background: white;
    min-height: 100px;
}

.paymentPending {
    min-height: 53px;
    color: var(--accent);
    padding: 0.8em 1em;
}

.paymentPending .pendingQty {
    width: 100%;
    display: block;
    position: relative;
    margin-bottom: 15px;
}

.paymentDropdown {
    width: 65%;
    position: absolute;
    right: 0px;
    background: white;
    border: 1px solid var(--border-color);
    top: 46px;
}

.paymentDropdown ul {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
}

.paymentDropdown ul li {
    border-top: 1px solid var(--border-color);
    padding-top: 10px;
    padding-left: 10px;
    padding-bottom: 13px;
    line-height: 20px;
    cursor: pointer;
}

.paymentDropdown ul li.active {
    color: var(--accent);
}

.paymentDropdown ul li:hover {
    background: #d1d1d1;
}

.payInput {
    width: 90%;
    margin: 0px 5%;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    padding: 3px 9px;
}

.payInput input::placeholder {
    color: var(--text-color);
}

.payInput input {
    border: none;
    width: 90%;
    background: none;
    color: var(--text-color);
}

.payInput textarea::placeholder {
    color: var(--text-color);
}

.payInput textarea {
    border: none;
    width: 100%;
    background: none;
    color: var(--text-color);
}

.payInput label {
    float: right;
    color: var(--text-color);
}

.payInput.voucher_search_block {
    position: relative;
    background: #F2F2F2;
    display: flex;
    width: 100%;
    margin: 0;
    border: none;
    padding: 0px;
    border-radius: 2px;
}

.payInput.voucher_search_block input[type="text"] {
    padding: 10px;
    font-size: 14px;
    color: #9b9b9b;
}


.payInput.voucher_search_block:before {
    content: "";
    width: calc(100% + 30px);
    position: absolute;
    top: -15px;
    left: -15px;
    height: 1px;
    background: #F2F2F2;
}

button#search_voucher {
    max-width: 70px;
    text-align: center;
    width: 100%;
    padding: 0;
    font-size: 14px;
    border-radius: 2px;
}

button#search_voucher:focus {
    outline: none;
}

.discountVoucherList {
    padding: 15px 0px;
    margin: 0 20px;
    font-size: 14px;
    border-bottom: 1px solid #f2f2f2;
}

.discountVoucherList label {
    margin-bottom: 0;
    display: inline-block;
    width: 50%;
}

.discountVoucherList .cancelBtnVoucher {
    background: none;
    border: none;
    font-size: 14px;
    color: #ff5252;
    text-align: right;
    display: inline-block;
    width: 50%;
    padding: 0;
    float: right;
}

.discountVoucherList .name_voucher {
    color: #9b9b9b;
}

.returnMoney {
    color: var(--warning);
    margin-top: 4px;
    margin-bottom: 4px;
}

.returnMoney label {
    font-weight: bold;
}

.overRefound {
    text-align: center;
    border: 1px solid var(--danger);
    border-radius: 4px;
    padding: 3px;
    margin-top: 15px;
    color: var(--danger);
}