.portalWrapper{
	width:100%;
	height:100%;
	display:flex;
	flex-direction: row;
	flex-wrap: nowrap;

}


.portalWrapper .portalMenu {
	width: 300px;
	display: flex;
	background:#283746;
	flex-grow: 0;
	flex-direction: column;
	color:#8594A3;

}
.portalWrapper .portalMenu .accountInfo {
	margin-bottom: 30px;
}
.portalWrapper .portalMenu .accountInfo .accountInfoDiv {
	text-align: center;
	padding-top:10px;
	padding-bottom: 10px;
}
.portalWrapper .portalMenu a {
	padding:20px;
	text-decoration: none;
	color:#8594A3; 

}

.portalWrapper .portalContent {
	flex-grow:1;
	background-color: green;
	display: flex;
	
	flex-direction: column;

}

.portalContent .banner {
	height: 50px;
	flex-grow: 0;
	background:#f8f8f8;
	display: flex;
	flex-direction: row;
}

.portalContent .banner .logoffButton{
    height: 100%;
    width: 80px;
    background: #9a9a9a;
    text-decoration: none;
    text-align: center;
    color: white;
    padding-top: 15px;
    box-sizing: border-box;
    flex-grow: 0;
}

.portalContent .banner h1{
	flex-grow: 1;
}

.portalContent .banner h1{
	font-size: 1.1em;
	font-weight: normal;
	padding-right: 20px;
	padding-left: 20px;
}

.portalContent .content {
	flex-grow: 1;
	background:#f2f2f2;
}




.wrapper {
	width: 900px;
	margin:0 auto;
	margin-top: 40px;
}
.eventWrapper {
	display: flex;
	flex-direction: column;

}
.no_bookings_message {
	 text-align: center;
    font-weight: bold;
    margin-top: 20%;
}
.event {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;	
	background-color: white;
	border-radius: 6px;
	margin-bottom: 30px;

}
.dayBlock{
	display: flex;
	flex-direction: column;
	padding:10px;
	justify-content: center;
	font-size: 1.3em;
	font-weight: bold;
	width: 80px;
	color:white;
	background-color: #006d9e;
	border-radius:6px 0px 0px 6px;
	
}
.dayBlock div {
	text-align:center;

}
.contentBlock {
	padding:10px;
}
.contentBlock h3 {
	margin-top:0px;

}

.candidateForm {
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.candidateForm h2 {
	width:100%;

	margin-bottom: 20px;
}

.candidate {
	width: 500px;
    /* margin: 3%; */
    margin-bottom: 20px;
    justify-content: right;
    padding: 10px;
    border-radius: 8px;
    background: white;
    box-sizing: border-box;
}
.candidate h3 {
	margin-top:0px;
}
.candidate label {
	display: block;
	margin-top:12px;
}

.candidate input.name {
	width:400px;
}

.candidate input.day {
	width:60px;
	display: inline-block;
}

.candidate input.month {
	width:60px;
	display: inline-block;
}

.candidate input.year {
	width:100px;
	display: inline-block;
}
.bookingBormWrapper {
	background: white;
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

.submitWrapper {
	width: 100%;
	text-align:center;
}

.submitWrapper input {
    padding: 10px;
    /* height: 20px; */
    border-radius: 10px;
    width: 200px;
    font-size: 1.1em;
    background: #006d9e;
    display: inline-block;
    color: white;
}

