@charset "utf-8";

@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);
@import 'https://fonts.googleapis.com/css?family=Slabo+27px';

table { 
    width: 100%; 
    border-collapse: collapse; 
}
    tr:nth-of-type(odd) { 
    background: #f4f4f4; 
}
th { 
    background: #006f82; 
    color: white; 
    font-weight: bold; 
    font-family: 'Montserrat', sans-serif;
	font-weight:900;
}
td, th { 
    padding: 10px; 
    border: 2px solid #fff; 
    text-align: left; 
}
td {
    font-family: 'Slabo 27px', serif;
}

/*--media queries--*/
@media 
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {

	/* Force table to not be like tables anymore */
	table, thead, tbody, th, td, tr { 
		display: block; 
        border: 1px solid #f4f4f4;
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	
	tr {
        padding: 10px;
    }
	
	td { 
		/* Behave  like a "row" */
		border: none;
		position: relative;
		padding-left: 50%; 
	}
	
	td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
	}
	
	/*
	Label the data
	*/
	td:nth-of-type(1):before { 
        content: "LEVEL";
        font-family: 'Montserrat', sans-serif;
	    font-weight:900;
        color: #333;
        font-size: 14px;
    }
	td:nth-of-type(2):before { 
        content: "TYPE"; 
        font-family: 'Montserrat', sans-serif;
	    font-weight:900;
        color: #333;
        font-size: 14px;
    }
	td:nth-of-type(3):before { 
        content: "DIMENSIONS"; 
        font-family: 'Montserrat', sans-serif;
	    font-weight:900;
        color: #333;
        font-size: 14px;
    }
}