* {
	margin: 0;
	padding: 0;
	font-family: "Lato", sans-serif;
}

body{
	font-family: "Lato", sans-serif;
	transition: background-color .5s;
}

.sidenav {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 0;
	left: 0;
	background-color: #111;
	overflow-x: hidden;
	transition: 0.5s;
	padding-top: 60px;
}

.sidenav a{
	padding: 8px 8px 8px 32px;
	text-decoration: none;
	font-size: 25px;
	color: #818181;
	display: block;
	transition: 0.3s;
}

.sidenav a:hover{
	color: #f1f1f1;
}

.sidenav .close{
	position: absolute;
	top: 0;
	right: 25px;
	font-size: 36px;
	margin-left: 50px;
}

#main{
	transition: margin-left .5s;
	padding: 16px;
}

@media screen and (max-height: 450px){
	.sidenav{padding-top: 15px;}
	.sidenav a{font-size: 18px;}
}

/* Terms of conditions pop-up */
.close-button{
	text-align: center;
	margin: 24px 0 12px 0;
	position: relative;
}

.modal{
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.4);
	padding-top: 60px;
}

.modal-content{
	background-color: #fefefe;
	margin: 5% auto 15% auto;
	border: 1px solid #888;
	width: 80%;
	height: auto;
	padding-bottom: 2%;
}

.close-modal{
	position: absolute;
	right: 25px;
	top: 0;
	color: #000;
	font-size: 35px;
	font-weight: bold;
}

.close-modal:hover,
.close-modal:focus{
	cursor: pointer;
}

.animate{
	-webkit-animation: animatezoom 0.6s;
	animation: animatezoom 0.6s;
}

@-webkit-keyframes animatezoom{
	from {transform: scale(0);}
	to {transform: scale(1);}
}

@keyframes animatezoom {
	from {transform: scale(0);}
	to {transform: scale(1);}
}
/* END */
#toc-content{
	padding-left: 1%;
	padding-right: 5%;
}

#content{
	width: 80%;
	margin-left: 10%;
	margin-right: 10%;
}

#form{
	width: 100%;
}

.accordion{
	background-color: #AB0062;
	color: black;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: 1px solid white;
	text-align: left;
	outline: none;
	font-size: 15px;
	transition: 0.4s;
	font-family: Arial;
}

.active, .accordion:hover {
	background-color: #db238c; 
}

.accordion2 {
	background-color: #AB0062;
	color: Black;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 15px;
	transition: 0.4s;
	font-family: Arial;
}

.active, .accordion2:hover {
	background-color: #db238c; 
}

.panel {
	padding: 5px 18px 5px 5px;
	display: none;
	background-color: white;
	overflow: hidden;
}

#contact label{
	text-align: right;
}

textarea{
	/*vertical-align: top;
	height: 5em;*/
        padding:8px;
	display:block;
	border:none;
	border-bottom:1px solid #ccc;
	width:90%;
	margin-left: 5%;
	margin-right: 5%;
}

input, select, option{
	padding:8px;
	display:block;
	border:none;
	border-bottom:1px solid #ccc;
	width:90%;
	margin-left: 5%;
	margin-right: 5%;
}