/* Extra small devices (phones, less than 768px) */
body {
    margin: 0;
    padding: 0;
}

h1 {
    text-align: left;
    font-size: 40px;
    font-family: 'Domine';
    font-weight: normal;
}

p {
    text-align: left;
    font-size: 20px;
    font-family: 'Domine';
    line-height: 1.6;
}

li {
    text-align: left;
    font-size: 18px;
    font-family: 'Domine';
    line-height: 1.6;
}

#highlight {
    font-weight: bold;
}

#cookie {
    text-align: center;
    margin-top: 10%;
}

.subheading {
    padding: 0 15% 2.5% 15%;
}

table { 
    width: 100%; 
    border-collapse: collapse; 
}
/* Zebra striping */
tr:nth-of-type(odd) { 
    background: #eee; 
}

th { 
    background: #003F83; 
    color: white; 
    font-weight: bold; 
    font-family: 'Domine';
}

td, th { 
    padding: 6px; 
    border: 1px solid #ccc; 
    text-align: left; 
    font-family: 'Domine';
}

@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; 
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	thead tr { 
		position: absolute;
		top: -9999px;
        left: -9999px;
        font-weight: bold;
	}
	
	tr { border: 1px solid #ccc; }
	
	td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		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: "Purpose:"; }
	td:nth-of-type(2):before { content: "Info. Collected:"; }
	td:nth-of-type(3):before { content: "Technology:"; }
	td:nth-of-type(4):before { content: "Type/Duration:"; }
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
    
}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {

}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    #cookie {
        text-align: center;
        margin-top: 5%;
    }

    .subheading {
        padding: 0 25% 2.5% 25%;
    }
}