.cancelHeader.error {
    background-color: #910000;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    width: 875px;
    padding: 15px;
}

.accordion {
    padding-top: 15px;
    width: 70%;
}

.accordion_label {
    position: relative;
    color: #000000;
    overflow: hidden;
    background-color: #E4EEEE;
    display: inline-block;
    width: 100%;
    padding: 10px;
}

.accordion_label:hover {
    cursor: pointer;
    background-color: #bac2c2;
}

.accordion ul li {
    font-size: 1.5em;
    padding-top: 5px;
    padding-bottom: 5px;
}

.accordion input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.iteration {
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s;
}
.iteration table {
    width: 100%;
}

.iteration table.revokeTable {
    width: 80%;
}

.iteration table tr{
    background-color: #fff;
}

.iteration table tr.error{
    background-color: #f58888 !important;
    color: #000000 !important;
}

.iteration table tr.error td{
    color: #000000 !important;
}

.iteration table tr td{
    color: #808080;
    padding-left: 20px;
}

.iteration table tr:nth-child(2n){
    background-color: #E4EEEE;
}

.accordion input:checked ~ .iteration {
    max-height: 100%;
}