/* The Modal (background) */
.onlineTab {
	display: none;
	padding-top: 10px;
	padding-bottom: 10px;
	border: 0px solid #ccc;
}
.onlineTabContainer
{
	height:calc(100% - 80px);/* remove header*/
}
.online-modal {
	display: none; 
	position: fixed; 
	z-index: 3000; 
	left: 0;
	top: 0;
	width: 100%; 
	height: 100%;
	overflow: none;
	background-color: rgba(0, 0, 0, 0.8);
}
.overlay {
	display: none; 
	position: fixed; 
	z-index: 5000; 
	left: 0;
	top: 0;
	width: 100%; 
	height: 100%;
	overflow: none;
	background-color: rgba(0, 0, 0, 0.0);
}
/* Modal Content/Box */
.online-modal-content {
	background-color: #fefefe;
	padding: 0px;
	border: 0px solid #888;
	position: relative;
  	left: 50%;
  	top: 50%;
  	transform: translate(-50%,-50%);
  	width:90%;
	height: 90%;
	max-width: 1024px;
	max-height: 900px;
}
.empty,.filled,.wrong,.correct
{
	text-align: center;
	cursor:pointer;
}
.empty
{
	background-color:#eee;
}
.filled
{
	background-color:#aaa;
}
.correct
{
	background-color:#1f1;
	color:#0c0;
}
.wrong,.error
{
	background-color:#f66;
}
#divList{
	font-size:0.9em;
}
#divList a{
	padding:0.6em;
}
.dropdown-menu {
	min-width: 200px;
}

.dropdown-menu.columns-2 {
	min-width: 400px;
}

.dropdown-menu.columns-3 {
	min-width: 410px;
	min-height: 100px;
	margin: 10px;
}

.dropdown-menu li a {
	padding: 0px;
	font-weight: 500;
}

.multi-column-dropdown {
	list-style: none;
	margin: 0px;
	padding: 5px;
}

.dropdown-menu li a {
	display: block;
	clear: both;
	line-height: 1.128571429;
	color: #333;
	white-space: normal;
	min-width: 20px;
}

.dropdown-menu li a:hover {
	text-decoration: none;
	color: #262626;
	background-color: #999;
}

#main-video video{
	height:70px;
}

.student-vid video{
	width:100%;
}
@media only screen and (max-width: 576px) {
	.online-modal {
		overflow: auto;
	}
	.online-modal-content {
		max-width: none;
		max-height: none;	
		width: 100%;
		height: 100%;
	}
	.onlineTabContainer
	{
		height:100%;
	}	
}


@media only screen and (max-width: 800px) {
	/* Force table to not be like tables anymore */
	.resptable table, .resptable thead, .resptable tbody, .resptable th,
		.resptable td, .resptable tr {
		display: block;
	}

	/* Hide table headers (but not display: none;, for accessibility) */
	.resptable thead tr {
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	.resptable tr {
		border: 1px solid #ccc;
	}
	.resptable td {
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee;
		position: relative;
		padding-left: 50%;
		white-space: normal;
		text-align: left;
	}
	.resptable 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;
		text-align: left;
		font-weight: bold;
	}

	/*
	Label the data
	*/
	.resptable td:before {
		content: attr(data-title);
	}
}