/* Table */

.span8_table {
	padding: 0 21px;
	width: 100%;
}

.table-resp {
    overflow-x: auto;
}

.table_all {
    display: flex;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.table1 {
    border-collapse: collapse;
    width: 100%;    
    border-color: #8F8F8F;
}

.table2 {
    border-collapse: collapse;
    width: 100%;
    text-align: center;
/*    border-left-color: transparent;*/
}

.table2 td {
    border: 1px solid #8F8F8F;
}

.table2 td:first-child {
    border: 1px solid #8F8F8F;
    border-left: none;
}

.table_dubleheader {
    background: linear-gradient(to right top, #5DFF35 40%, #00FFF0 60%);
    color: #3C3C3C;
    font-weight: 600;
    height: 80px;
}

.table_dubleheader td {
    border-color: #8F8F8F;
    padding: 5px;
}

.dubleheader_inner {
    display: flex;
    justify-content: space-between;
    height: 100%;
}

.dubleheader_item_l {
    align-self: end;
    }

.dubleheader_item_r {
    align-self: center;
    text-align: right;
}

.table_header {
    background-color: #00D93D;
    color: #fff;
    font-weight: 600;
}

.table_header:nth-child(odd) {
    background-color: #5DFF35;
    color: #3C3C3C;
    font-weight: 600;
}

.table_header td {
    border-color: #8F8F8F;
    padding: 5px;
}

.table_header_yellow {    
	height: 80px;
}

.table_header_yellow td {
    background-color: #00FFF0;
    color: #3C3C3C;
    font-weight: 600;
    padding: 5px;
    border-color: #8F8F8F;

}

.table_header_yellow td:nth-child(odd) {
    background-color: #A4FFFA;
    border-color: #8F8F8F;
}

.table_data {
    color: #3C3C3C;
    background-color: #FFF;
}

.table_data:nth-child(odd) {
    background-color: #F2F2F2;
}

.table_data td {
    padding: 5px;
    border-color: #8F8F8F;
}

.table_accept {
    margin: 0 auto;
    fill: #00D93D;
    height: 20px;
    width: 20px;
    display: block;
}

@media (max-width: 991px) {

.span8_table {
	padding: 0 14px;
}

}







