/*
 * Tables
 */
 
 .tblHeader{
	visibility: visible;
	display: grid;
 }
 
.rTablePV,
.rTable {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
}

.rTableRowPV,
.rTableRow {
    display: grid;
    grid-template-columns: minmax(200px, 2fr) 4fr 1fr 1fr 74px;

}

.rTableRowPV > div,
.rTableRow > div {
    border: 1px solid #ededed;
    padding: 6px 12px;
    /* min-width: 200px; */
}

.rTableRow > div:only-child {
    grid-column: 1 / 6;
}

.rTableRowPV {
    background-color: #ededed;
}

.rTableRowPV > div {
    border: 1px solid #ffffff;

}

.downloads h2 {
    margin-top: 3rem;
    font-family: "PT Sans", sans-serif;
    font-weight: 900;
    font-size: 20px;
    line-height: 36px;
    background-color: #0076c0;
    color: #ffffff;
    padding: 1rem;
    margin-bottom: 1.5rem;
    
}

.downloads img {
    margin-bottom: 0;
}

.downloads a {
    color: #0076c0;
}

.downloads a:active,
.downloads a:hover {
    text-decoration: underline;
}

@media (max-width: 800px) {
	
	
	 .tblHeader{
		visibility: collapse;
		display: none
	 }
 
    .rTableRowPV,
    .rTableRow {
        grid-template-columns: 1fr;
    }

    .rTableRowPV,
    .rTableRow  {
        margin-bottom: 1.5rem;
    }

    .rTableRowPV > div,
    .rTableRow > div {
        padding: 1rem;
    }

    .rTableRowPV > div {
        border: 1px solid #ffffff;
    }

    .rTableRowPV > div:first-child {
        background-color: #979797;
        color: white;
    }

    .rTableRow > div:first-child {
        background-color: #0076c0;
        color: white;
    }


    .rTableRow > div:only-child {
        background-color: transparent;
        color: black;
    }
}
