#form-firma {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-container input[type="checkbox"] {
    width: unset !important;
}

.checkbox-container label {
    margin: 0;
}

.field-container {
    display: flex;
    flex-flow: column;
}

.displayNone {
    display: none;
}

.po-container {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.po-container h4 {
    font-weight: 600;
    font-size: 16px;
    color: #493F3A;
    margin-bottom: 4px;
    margin-top: 22px;
}

#sign_po,
#show_po_doc,
#download_po,
#disabled_download_po,
button[type="submit"] {
    padding: 6px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    width: 100%;
}


#show_po_doc {
    font-size: 14px;
    text-decoration: none;
    color: #fff;
    background-color: #4A4A4A;
}

.disabled,
#disabled_download_po {
    cursor: default !important;
    pointer-events: none !important;
    color: #FFF !important;
    background-color: #b6b6b6 !important;
}

#sign_po,
#download_po,
button[type="submit"] {
    color: #4C4C4C;
    background-color: #C0DD59;
}

.small-hint {
    font-size: 12px;
    font-weight: 300;
    width: 100%;
    text-align: center;
    color: #848484;
    display: block;
    margin-top: 6px;
}

.file-upload-wrapper {
    position: relative;
    width: 100%;
}

.file-upload-label {
    display: inline-block;
    padding: 4px 20px;
    background-color: #f0f0f0;
    color: #333;
    border-radius: 4px;
    cursor: pointer;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    font-weight: 400;
    font-size: 12px;
    margin-bottom: 6px;
}


.file-upload-label:hover {
    background-color: #e8e8e8;
}

.po-table{
    border: 1px solid #aaa;
    border-radius: 5px;
}
.single-po-event{
    border-bottom: 1px solid #aaa;
}
.event-name, .total-label, .total-amount{
    color: #4c4c4c;
    font-size: 13px;
    text-transform: uppercase;
    padding-bottom: 5px;
    margin: 0;
    border-bottom: 1px solid #aaa;
    padding: 5px;
    font-weight: 600;
}
.total-label, .total-amount{
    border-bottom: none !important;
}
.total-amount{
    text-align: right;
}
.amount-spec{
    display: inline-block;
    text-align: center;
}
.event-amount{
    border-bottom: 1px solid #eee;
    margin: 0;
    padding: 3px;
    font-size: 12px;
    font-weight: 300;
}
.effective-amount{
    text-align: right;
}
.event-amount:last-child{
    border-bottom: none !important;
}
.po-total-row, .event-amount{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.po-total-row:first-child{
    border-bottom: 1px solid #aaa;
}