table#custom-table thead tr {
    background-color: #000 !important;
    font-weight: bold;
}

table#custom-table tr:nth-child(even) {
    background: #f2f2f2;
}

table#custom-table tr:nth-child(odd) {
    background: #FFF;
}

.tab1,
.tab4,
.tab7 {
    background: #231f20;
}

.tab2,
.tab5,
.tab8 {
    background: #5f6062;
}

.tab3,
.tab6,
.tab9 {
    background: #F57E20;
}

.half {
    width: 100%;
}


/* Acordeon styles */

.tab {
    position: relative;
    margin-bottom: 1px;
    width: 100%;
    color: #5c5c5c;
    overflow: hidden;
}

input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

label {
    position: relative;
    display: block;
    padding: 0 0 0 1em;
    background: #eee;
    line-height: 3;
    cursor: pointer;
}

.blue label {
    background: #2980b9;
}

.tab-content {
    max-height: 0;
    overflow: hidden;
    background: #FFF;
    -webkit-transition: max-height .35s;
    -o-transition: max-height .35s;
    transition: max-height .35s;
}

.blue .tab-content {
    background: #3498db;
}

.tab-content p {
    margin: 1em;
}


/* :checked */

input:checked~.tab-content {
    max-height: 160em;
}


/* Icon */

label::after {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    width: 3em;
    height: 3em;
    line-height: 3;
    text-align: center;
    -webkit-transition: all .35s;
    -o-transition: all .35s;
    transition: all .35s;
}

input[type=checkbox]+label::after {
    content: "+";
    color: #fff;
    font-weight: bold;
}

input[type=radio]+label::after {
    content: "\25BC";
}

input[type=checkbox]:checked+label::after {
    transform: rotate(315deg);
}

input[type=radio]:checked+label::after {
    transform: rotateX(180deg);
}

.highlights li:before {
    color: #FFF;
}