/* nav{
	box-shadow: 1px -3px 20px 2px lightgrey;
	background-color: #f2af5e;
} */
#brand{
	font-size: 1.4em;
}
/* .accept{
	background-color: #17a2b8;
	color: white;
}
.decline{
	color: white;
	background-color: purple;
} */
/* nav, footer{
	background-color: teal;
} */
footer{
	display: flex;
	align-items: center;
	min-height: 10em;
	padding: 1em;
	color: white;
}
.no-dots{
	list-style-type: none;
}
.no-dots li a{
	font-size: 1em;
}

#main{
	display: flex;
	flex-direction: column;
	min-height: calc(100vh - 60px - 10em);
}

section{
	margin: 0.3em;
	max-width: 100%;
	padding: 1em;
	/* border: 1px solid lightgrey; */
	border-radius: 0.2em;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12)
}

.blink{
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 3s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    
    -moz-animation-name: blinker;
    -moz-animation-duration: 3s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;
    
    animation-name: blinker;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
     
@-moz-keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}
 
@-webkit-keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}
 
@keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

.table td.session{
	background-color: #d1ecf1;
	text-align: left;
	text-indent: 3em;
}

tr#special{
	background-color: #f3a96c;
}

.main-table td, .main-table th{
	font-family: 'Lato' , sans-serif;
    font-size: 15px;
    color: #808080;
    /* line-height: 1.4; */
    border: none;
}

.main-table tr.header td{
	color: white;
	background-color: #6c7ae0;
	font-weight: bold;
	padding-top: 2px;
	padding-bottom: 2px;
}
.main-table{
	margin-bottom: 0;
}
.curve-table{
	overflow: hidden;
	min-height: 0;
	border-radius: 1em;
	margin: 3em;
	box-shadow: 0 0px 40px 0px rgba(0, 0, 0, 0.15);
}

.main-table tr:nth-child(even){
	background-color: #f8f6ff;
}

.QR{
	border: none;
	width: 150px;
	height: 150px;
	float: right;
}