/*
Theme Name: GBN1 Child
Template: gbn1
*/
@import url("../gbn1/style.css");

.results-horiz {
         border: 2px solid black;
         border-collapse: separate;
         border-spacing: 0;
         border-radius: 15px;
         width: 100%;
}

.results-horiz th {
         background-color: #045882;
	 color: #FADD06;
}

.results-horiz th, td {
         border: 1px solid black;
         padding: 20px;
	 text-align: center;
}

.results-horiz th:first-child {
        border-top-left-radius: 15px;
}

.results-horiz th:last-child {
         border-top-right-radius: 15px;
}

.results-horiz td:first-child {
         border-bottom-left-radius: 15px;
}

.results-horiz td:last-child {
         border-bottom-right-radius: 15px;
}

.results-vert {
         border: 2px solid black;
         border-collapse: separate;
         border-spacing: 0;
         border-radius: 15px;
         width: 100%;
}

.results-vert th {
         background-color: #045882;
         color: #FADD06;
}

.results-vert th, td {
         border: 1px solid black;
         padding: 20px;
	 text-align: center;
}

.results-vert tr:first-child th:first-child {
    border-top-left-radius: 15px;
}

.results-vert tr:first-child td:last-child {
    border-top-right-radius: 15px;
}

.results-vert tr:last-child th:first-child {
    border-bottom-left-radius: 15px;
}

.results-vert tr:last-child td:last-child {
    border-bottom-right-radius: 15px;
}

@media only screen and (max-width: 760px) {
    .results-horiz {
	display: none;
    }
    .results-vert {
	display: table;
    }
}

@media only screen and (min-width: 761px) {
    .results-horiz {
	display: table;
    }
    .results-vert {
	display: none;
    }
}
