/*
Stylesheet for any additional styles that are required by the content team after the build.
All selectors should be prefixed with .content__region to avoid conflicts.
This file should not be compiled from sass.
*/


/***** TABLE 1 STYLING *****/

.content__region .table__container table {
   /*border: medium none;*/
}

.content__region .table__container table tbody {
  border: none;
}
 
.content__region .table__container table thead tr {
    border: none;
} 

.content__region .table__container table thead th {
    border: medium none;
    padding-left: 10px;
    color: #fff
}

.content__region .table__container table tr th {
    text-align: left; 
    font-weight: normal;
    border: medium none;
    color: #fff; 
    padding-left: 10px;
}

.content__region .table__container table tr th p {
    margin: 0 5px;
    color: #fff; 
}


.content__region .table__container table tr {
    border: 1px solid #fff;
    vertical-align: top;
}

.content__region .table__container table tbody td {
    border:solid 0px #EFEFEF !important;
    padding: 4px 10px;
    box-shadow: inset 0 0 0 0px #fff;
    background: none;
}

.content__region .table__container table tbody td p {
    margin: 2px 0;
}

/***** COLOURED TABLE ROWS *****/

.content__region .table__container table tbody tr:nth-child(odd) {
    background: #f7f7f7;
}

.content__region .table__container table tbody tr:nth-child(even) {
    background: #ededed;
}