html {
	position: relative;
	min-height: 100%;
}

div.chromeframe,
html.js .js-notice,
html.no-js .js-notice {
	position: relative;
	display: block;

	margin: 10px 0px;
	padding: 0px;

	width: 100%;
}

div.chromeframe > div.chromeframe-wrapper,
html.js .js-notice > div.js-notice-wrapper,
html.no-js .js-notice > div.js-notice-wrapper {
	position: relative;
	display: block;

	margin: 0 20px;
	padding: 10px;

	border-radius: 5px;

	color: #c7254e;
	background-color: #f9f2f4;
	box-shadow: 0px 0px 10px 0px #000;
}

html.js .js-notice {
	display: none;
}

body {
	font-family: 'Open Sans', sans-serif;
	color: #304f78;
	font-size: 12px;
	letter-spacing: 0.2px;
	line-height: 20px;

	/* needed for the footer */
	padding-bottom: 55px;
}

body.site.view-login,
body.site.view-user.layout-remind,
body.site.view-user.layout-confirm {
	background: url('../media/images/login-background.jpg') no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

h2 {
	font-size: 12px;
	color: #304f78;
	font-weight: bold;
	letter-spacing: 1px;
	text-transform: uppercase;
}

h4{
	margin: 0;
	font-size: 10px;
	text-transform: uppercase;
}

footer {
	position: absolute;

	left: 0;
	right: 0;
	bottom: 0;

	width: 100%;

	text-align: right;
	background-color: transparent;
	color: #000;
	letter-spacing: 0.5px;
	}

	footer p.copyright {
		margin: 0;
		margin-bottom: 5px;
		/*margin: 55px 0 0 0;*/
	}
	footer .text-muted {
		color: #000;
		}
		footer .text-muted a {
			color: #000;
			font-weight: bold;
		}

.gray{
	background: #f9f9f9;
}
.yellow{
	color: #fbca04;
}
.white {
	background: #ffffff;
}
.container-fluid{
	padding:0;
}

.container-fixed{
	position: fixed;
}

.tooltip-inner {
	background: #ff7200;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	font-size: 10px;
	padding: 15px 10px;
}
.tooltip.top .tooltip-arrow{
    bottom:0;
    left:50%;
    margin-left:-5px;
    border-left:5px solid transparent;
    border-right:5px solid transparent;
    border-top:5px solid #ff7200;
}
.tooltip.left .tooltip-arrow{
    top:50%;
    right:0;
    margin-top:-5px;
    border-top:5px solid transparent;
    border-bottom:5px solid transparent;
    border-left:5px solid #ff7200;
}
.tooltip.bottom .tooltip-arrow{
    top:0;
    left:50%;
    margin-left:-5px;
    border-left:5px solid transparent;
    border-right:5px solid transparent;
    border-bottom:5px solid #ff7200;
}
.tooltip.right .tooltip-arrow{
    top:50%;
    left:0;
    margin-top:-5px;
    border-top:5px solid transparent;
    border-bottom:5px solid transparent;
    border-right:5px solid #ff7200;
}


.affix {
	top: 0;
	left: 0;
	width: 100%;

	z-index: 9999;
}

.modal {
	top: 30px;
}

.text-danger {
	color: #bf1515;
}

.text-superscript {
	font-size: 85%;
	vertical-align: super;
}

.text-superscript.text-danger > .icon-asterisk {
	padding-left: 5px;
}

/** busy overlay styling **/
div#AcadinBusyOverlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,0.75);
	z-index: 999999999;
}

div#AcadinBusyOverlay > div.loaderImage {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	vertical-align: middle;
}

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

div#AcadinBusyOverlay > div.loaderImage > .acadin-icon-spinner {
    display: inline-block;
	font-size: 75px;
	color: #0093bc;

    -webkit-animation:spin 0.5s linear infinite;
    -moz-animation:spin 0.5s linear infinite;
    animation:spin 0.5s linear infinite;
}

/** Confirmation Dialogue styling (taken from the backend) **/

div#AcadinConfirm {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.75);
	z-index: 123456799;
}

div#AcadinConfirm > div.dialogueWrapper {
	display: block;
	position: relative;

	margin: 0 auto;
	padding: 10px;

	top: 50px;

	width: 500px;
	height: auto;

	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0 0 10px 0 #000;

	z-index: 123456999;
}

div#AcadinConfirm > div.dialogueWrapper > div.messageWrapper {
	margin: 0;
	margin-bottom: 20px;
}

div#AcadinConfirm > div.dialogueWrapper > div.messageWrapper > h1 {
	display: block;

	margin: 0;
	margin-bottom: 10px;

	font-size: 1.25em;
	font-weight: bold;
}

div#AcadinConfirm > div.dialogueWrapper > div.messageWrapper > h1 > [class^="icon-"],
div#AcadinConfirm > div.dialogueWrapper > div.messageWrapper > h1 > [class*=" icon-"] {
	margin-right: 10px;
}

div#AcadinConfirm > div.dialogueWrapper > div.messageWrapper > p > input {
	width: 435px;
}

div#AcadinConfirm > div.dialogueWrapper > div.buttonsWrapper {
	display: block;
	position: relative;

	margin: 0;
	padding: 10px 0;

	text-align: center;
}

div#AcadinConfirm > div.dialogueWrapper > div.buttonsWrapper > button {
	display: inline-block;
	margin: 0 5px;
	min-width: 100px;
}

div#AcadinConfirm > div.dialogueWrapper > div.buttonsWrapper > button.confirm {
}

div#AcadinConfirm > div.dialogueWrapper > div.buttonsWrapper > button.cancel {
}


/** system-message styling **/
#system-message-container {
	position: fixed;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	top: 70px;
	left: 10%;
	width: 80%;
	z-index: 9999;
	}
	#system-message-container #system-message {
		background: #f9f9f9;
		border: 1px solid #e5e5e5;
		border-radius: 5px;
		padding: 15px 0;
		}
		#system-message-container #system-message ul {
			list-style-type: none;
			margin: 0;
			padding: 0;
		}
		#system-message-container #system-message  {
			color: #20727A;
		}
		#system-message-container #system-message .error {
			color: #f35858;
		}
	#system-message-container button.close {
		position: absolute;
		top: 10px;
		right: 10px;
	}


/** topbar styling **/

.topbar-wrapper {
	height: 87px;
}

.topbar {
	height: 86px;
	border-bottom: 1px solid #e5e5e5;
}

.topbar.affix {
	background: none;
	border: none;
	height: 50px;
	}
	.topbar .nav.nav-pills {
		display: none;
		text-transform: uppercase;
		letter-spacing: 0.9px;
		font-size: 10px;
		}
		.topbar .nav.nav-pills li a {
			margin:49px 10px 0 0;
			padding: 0 0 15px 0;
			color: #2b4f7b;
			font-weight: bold;

			border-radius: 0;
			background: none;
		}
		.topbar .nav.nav-pills li.active a {
			border-bottom:3px solid #95C121;
		}
	.topbar .toolbar.pull-right {
		position: absolute;
		top:10px;
		right: 10px;
		}
		.topbar .toolbar.pull-right li {
			float: left;
			margin-left: 15px;
		}
		.topbar .toolbar.pull-right li:first-child {
			margin-left: 0;
		}
		.topbar .toolbar.pull-right .btn {
			color: #FFFFFF;
			text-transform: uppercase;
			letter-spacing: 0.9px;
		}
		.topbar .toolbar.pull-right .btn-default {
			padding: 10px 12px 10px 12px;
			font-weight: 400;
			font-size: 9px;

			border: none;
			background: #EC6220;
		}
		.topbar .toolbar.pull-right .btn-primary {
			font-weight: 300;
			font-size: 12px;

			border:1px solid #304f78;
			background: #304f78;
			}
			.topbar .toolbar.pull-right .btn-primary.submit-file{
				padding: 9px 10px;
			}
		.topbar .toolbar.pull-right .btn-default.toggle-all {
			background: #2B4F7B;
			}
	.topbar.affix .pull-right .btn-default {
	}
	.topbar.affix .nav.nav-pills li a {
		margin-top: 12px;
	}
	.topbar.affix .toolbar.pull-right {
		top: 7px;
	}


/** sidebar styling **/
.sidebar {
	text-transform: uppercase;
	z-index: 8;
}

.sidebar .sidebar-nav {
}

	.sidebar .sidebar-nav ul {
	}

		.sidebar .sidebar-nav ul li {
			padding: 8px 0;

			font-size: 10px;
			text-align: center;
			border-top: 1px solid #e5e5e5;

			-webkit-transition: all 0.5s; /* Safari */
			transition: all 0.5s;
			}

			.sidebar .sidebar-nav ul li a {
				color: #20727a;
				letter-spacing: 1px;

				-webkit-transition: all 0.5s; /* Safari */
				transition: all 0.5s;
			}

		.sidebar .sidebar-nav ul li.active {
			border-left: 10px solid #95c121;
		}

			.sidebar .sidebar-nav ul li.active a,
			.sidebar .sidebar-nav ul li.active a:focus,
			.sidebar .sidebar-nav ul li.active a:hover {
				font-weight: bold;
				background: none;
				color: #20727a;
				padding: 11px 0;
			}

		.sidebar .sidebar-nav ul li.last {
			border-bottom: 1px solid #e5e5e5;
			border-right: none;
		}

		.sidebar .sidebar-nav ul li:hover {
			background: #fef9f6;
		}

			.sidebar .sidebar-nav ul li:hover a {
				background: none;
				color: #ec6220;
				font-weight: bold;
			}

			.sidebar .sidebar-nav ul li.active:hover a {
				background: none;
				color: #ec6220;
			}

		.sidebar .sidebar-nav .nav-stacked > li + li {
			margin-top: 0;
		}

	.sidebar div.logo {
		margin-left: -15px;

		height: 85px;

		text-align: center;
	}

	.sidebar div.logo img {
		margin-top: 30px;
		max-width: 200px;
	}

	.sidebar .profile {
		padding: 40px 10px 30px 10px;
		text-align: center;
		color: #fff;
		background: #2b4f7b;
		border-top: 1px solid #e5e5e5;
		border-bottom: 1px solid #e5e5e5;
		}
		.sidebar .profile .image {
			margin: 0 auto;
			width: 80px;
			height: 80px;
			border-radius: 40px;
			border: 1px solid #e5e5e5;
			overflow: hidden;
			background: #fff;
			}
			.sidebar .profile .image a {
			}
			.sidebar .profile .image a:hover {
				text-decoration: none;
				opacity: 0.9;
			}
			.sidebar .profile .image img {
				width: 80px;
				height: auto;
			}
			.sidebar .profile .image [class^="icon-"] {
				font-size: 70px;
				line-height: 80px;
				color: #2b4f7b;
			}
		.sidebar .profile .name {
			margin: 15px 0 0 0;
			font-size: 14px;
			letter-spacing: 1px;
			font-weight: 400;
			line-height: 18px;
		}
		.sidebar .profile .grade {
			font-size: 11px;
			margin: 0;
			opacity: 0.7;
			line-height: 16px;
			}
			.sidebar .profile .grade label {
				margin-bottom: 0;
			}
			.sidebar .profile .grade a {
				color: #fff;
			}
		.sidebar .profile .mentor {
			margin: 0;
			font-size: 11px;
			opacity: 0.7;
			line-height: 16px;
			}
			.sidebar .profile .mentor label {
				margin-bottom: 0;
			}
		.sidebar .profile .settings {
			margin: 10px 0 0 0;
			font-size: 12px;
			letter-spacing: 1px;
			font-weight: 200;
			}
			.sidebar .profile .settings a {
				color: #fff;
			}
		.sidebar .profile .see-profile{
			font-size: 12px;
			letter-spacing: 1px;
			margin: 15px 0;
			font-weight: 200;
		}
		.sidebar .profile .logout {
			margin: 0 0 0 0;
			font-size: 12px;
			letter-spacing: 1px;
			font-weight: 200;
		}
		.sidebar .profile .logout a {
			color: #fff;
		}
	.sidebar .school-logo{
		padding: 10px 0;
		text-align:center;
		}
		.sidebar .school-logo img{
			max-width: 80%;
			/*max-height: 60px;*/
		}


/* datepicker */
body.view-student .calendar {
	margin-bottom: 60px;
}

body.view-student div.content-calendar .ui-datepicker {
	width: 100%;
	padding: .2em .2em 0;
	display: none;
}
body.view-student div.content-calendar .ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0;
	text-transform: uppercase;
	background: #f9f9f9;
}
body.view-student div.content-calendar .ui-datepicker .ui-datepicker-prev,
body.view-student div.content-calendar .ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}
body.view-student div.content-calendar .ui-datepicker .ui-datepicker-prev-hover,
body.view-student div.content-calendar .ui-datepicker .ui-datepicker-next-hover {
	text-decoration: none;
}
body.view-student div.content-calendar .ui-datepicker .ui-datepicker-prev {
	top: 5px;
	left: 2px;
}
body.view-student div.content-calendar .ui-datepicker .ui-datepicker-next {
	top: 5px;
	right: 2px;
	text-align: right;
}
body.view-student div.content-calendar .ui-datepicker .ui-datepicker-prev:before,
body.view-student div.content-calendar .ui-datepicker .ui-datepicker-next:after
{
	font-family: 'icomoon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	color:#304f78;
}
body.view-student div.content-calendar .ui-datepicker .ui-datepicker-prev:before {
	content: "\f053";
	cursor: pointer;
}
body.view-student div.content-calendar .ui-datepicker .ui-datepicker-next:after {
	content: "\f054";
	cursor: pointer;
}
body.view-student div.content-calendar .ui-datepicker .ui-datepicker-prev-hover {
	text-decoration: none;
}
body.view-student div.content-calendar .ui-datepicker .ui-datepicker-next-hover {
	text-decoration: none;
}
body.view-student div.content-calendar .ui-datepicker .ui-datepicker-prev span,
body.view-student div.content-calendar .ui-datepicker .ui-datepicker-next span {
	display: none;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}
body.view-student div.content-calendar .ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
}
body.view-student div.content-calendar .ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}
body.view-student div.content-calendar .ui-datepicker select.ui-datepicker-month,
body.view-student div.content-calendar .ui-datepicker select.ui-datepicker-year {
	width: 45%;
}
body.view-student div.content-calendar .ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0;
	text-transform: lowercase;
}
body.view-student div.content-calendar .ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0;
	background: #f9f9f9;
}
body.view-student div.content-calendar .ui-datepicker td {
	border: 1px solid #E5E5E5;
	padding: 1px;
	background: #fff;
}
body.view-student div.content-calendar .ui-datepicker td span,
body.view-student div.content-calendar .ui-datepicker td a {
	display: block;
	padding: .2em;
	text-align: center;
	text-decoration: none;
	color: #304f78;
}
body.view-student div.content-calendar td.ui-datepicker-unselectable {
	background: #f9f9f9;
	opacity: 0.5;
}
body.view-student div.content-calendar td.ui-datepicker-current-day {
	background: #304f78;
	color: #fff;
	opacity: 0.3;
	}
	body.view-student div.content-calendar td.ui-datepicker-current-day a {
		color: #fff;
	}
body.view-student div.content-calendar td.course-due-date {
	background: #304f78;
	}
	body.view-student div.content-calendar td.course-due-date a {
		color: #fff;
	}
body.view-student div.content-calendar .ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}
body.view-student div.content-calendar .ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible;
}
body.view-student div.content-calendar .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
	margin: 2px 0 0 0;
	width: 101%;
	border: none;
	background: #304f78;
	color: #fff;
	opacity: 0.3;
}


/** login view **/
body.site.view-login form#login-form,
body.site.view-user.layout-remind form#remind-form,
body.site.view-user.layout-confirm form#confirm-form {
	position: relative;

	margin: 0px auto;
	margin-top: 10%;
	padding: 20px 80px;

	max-width: 600px;

	border: 1px solid #e5e5e5;
	background-color: #ffffff;
}

	body.site.view-login img#login-logo {
		margin-top: 60px;
		margin-bottom: 80px;
	}

	body.site.view-user.layout-remind img#remind-logo,
	body.site.view-user.layout-confirm img#confirm-logo {
		margin-top: 20px;
		margin-bottom: 20px;
	}

	body.site.view-login form#login-form button[type="submit"],
	body.site.view-user.layout-remind form#remind-form button[type="submit"],
	body.site.view-user.layout-confirm form#confirm-form button[type="submit"] {
		margin: 20px 0;
	}


/** students styling **/
body.view-students {
	}
	body.view-students .students {
		width: 100%;
	}
	body.view-students .panel.student {
		padding: 15px 20px;
		box-shadow: 3px 3px 3px #f5f5f5;
		border: 1px solid #e5e5e5;
		border-radius: 0px;

		-webkit-transition: all 0.1s ease-in;
		transition: all 0.1s ease-in;
	}
	body.view-students .panel.student .media-left {
		}
		body.view-students .panel.student .media-left .image {
			margin: 0 auto;
			width: 60px;
			height: 60px;
			border-radius: 30px;
			border: 1px solid #e5e5e5;
			overflow: hidden;
			text-align: center;
			}
			body.view-students .panel.student .media-left .image img {
				width: 60px;
				height: auto;
			}
			body.view-students .panel.student .media-left .image [class^="icon-"] {
				font-size: 60px;
				line-height: 60px;
			}
	body.view-students .panel.student .media-body {
		text-transform: uppercase;
		font-weight: bold;
		letter-spacing: 0.7px;
		}
		body.view-students .panel.student .media-body .name {
			float: left !important;
		}
		body.view-students .panel.student .media-body .grade {
			float: right !important;
		}
		body.view-students .panel.student .media-body .icons {
			margin-top: 40px;
			}
			body.view-students .panel.student .media-body .icons a {
				float: left;
				margin-right: 15px;
				text-decoration: none;
				font-size: 16px;
				}
				body.view-students .panel.student .media-body .icons a span[class^="icon-"] {
					color: #c4cdd8;

					-webkit-transition: all 0.4s ease-in-out;
					-moz-transition: all 0.4s ease-in-out;
					-o-transition: all 0.4s ease-in-out;
					transition: all 0.4s ease-in-out;
				}
				body.view-students .panel.student .media-body .icons a span[class^="icon-"]:hover {
					color: #ff7200;
				}
				body.view-students .panel.student .media-body .icons a span.number{
					margin-left:4px;
				}

	body.view-students ul.pagination {
		}
		body.view-students ul.pagination li {
			}
			body.view-students ul.pagination li a {
				color: #304f78;
				border: 1px solid #e5e5e5;
			}
			body.view-students ul.pagination li a:hover {
				background: #f5f5f5;
			}
			body.view-students ul.pagination li.active a {
				background: #304f78;
				color:#fff;
			}
		body.view-students ul.pagination li.disabled {
			opacity: 0.3;
		}
	body.view-students .panel.student.active {
		border-left:10px solid #EC6220;
		padding: 15px 20px 15px 11px;
		background:#fcf1e7;
	}
	body.view-students #filter_search-lbl {
		display: none;
	}


/** student styling **/
body.view-student {
	}
	body.view-student .information {
		margin-top: 30px;
		padding: 20px 40px;
		text-transform: uppercase;
		font-size: 12px;
		}
		body.view-student .information h2 {
			margin: 10px 0 20px 0;
		}
		body.view-student .information .image {
			margin: 0 auto;
			width: 70px;
			height: 70px;
			border-radius: 35px;
			border: 1px solid #e5e5e5;
			overflow: hidden;
			text-align: center;
			background: #fff;
			}
			body.view-student. .information .image img {
				width: 70px;
				height: auto;
			}
			body.view-student .information .image [class^="icon-"] {
				font-size: 70px;
				line-height: 70px;
			}
		body.view-student .information label {
			width: 48%;
			margin-right: 2%;
			text-align: right;
		}
		body.view-student .information .name,
		body.view-student .information .gender,
		body.view-student .information .grade,
		body.view-student .information .mentor {
			float: left;
			width: 100%;
			}
			body.view-student .information .name span,
			body.view-student .information .gender span,
			body.view-student .information .grade span,
			body.view-student .information .mentor span {
				float: right;
				width: 50%;
				line-height: 14px;
				margin-top: 3px;
			}
		body.view-student .information .name {
			margin-top: 30px;
		}
		body.view-student .information .mentor span {
			margin-bottom: 20px;
			/*line-height: 15px;*/
		}
		body.view-student h2 {
			margin: 30px 0 40px 0;
			font-size: 14px;
		}
		body.view-student .calendar h2 {
			margin: 40px 0 30px 0;
		}
/* todo*/
		body.view-student .row .col-md-12 h2.greet {
			margin: 30px 0 0 0;
			text-transform: capitalize;
			font-weight: normal;
		}
		body.view-student .menu-courses ul.nav-tabs {
			border: none;
			margin-bottom: 20px;
			}
			body.view-student .menu-courses ul.nav-tabs li {
				text-transform: uppercase;
				font-size: 12px;
				letter-spacing: 0.5px;
				}
				body.view-student .menu-courses ul.nav-tabs li a {
					padding: 0 0 3px 0;
					margin-right: 30px;
					border: none;
					color: #304f78;
				}
				body.view-student .menu-courses ul.nav-tabs li a:hover {
					background: none;
					border-bottom: 2px solid #0093BC;
				}
				body.view-student .menu-courses ul.nav-tabs li a.active {
					border-bottom: 2px solid #0093BC;
					font-weight: bold;
				}
		body.view-student .courses .panel.course {
			padding: 15px 20px;
			box-shadow: 3px 3px 3px #f5f5f5;
			border: 1px solid #e5e5e5;
			border-left: 10px solid #95C121;
			border-radius: 0px;
			text-transform: uppercase;

			-webkit-transition: all 0.1s ease-in;
			transition: all 0.1s ease-in;
			}
			body.view-student .courses .panel.course .title {
				font-weight: bold;
				letter-spacing: 0.7px;
			}
			body.view-student .courses .panel.course .status {
				font-size: 11px;
				margin-top: 20px;
				letter-spacing: 0.5px;
			}
			body.view-student .courses .panel.course .status span.badge.error {
				background-color: #f35858;
			}
			body.view-student .courses .favorites .panel.course .icons {
				margin-top: 0;
			}
			body.view-student .courses .panel.course .icons {
				margin-top: -20px;
				text-align: right;
				font-size: 16px;
				}
				body.view-student .courses .panel.course .icons a {
					color: #C4CDD8;
					margin-left: 5px;
				}
				body.view-student .courses .panel.course .icons a:hover {
					color: #EC6220;
					text-decoration: none;
					border: none;
				}

/** students / courses styling **/
body.view-students .js-stools-container-bar,
	body.view-courses .js-stools-container-bar {
		margin: 20px 0;
		}
		body.view-students .js-stools-container-bar .form-inline,
		body.view-courses .js-stools-container-bar .form-inline {
			}
			body.view-students .js-stools-container-bar .form-inline .form-group,
			body.view-courses .js-stools-container-bar .form-inline .form-group {
				}
				body.view-students .js-stools-container-bar .form-inline .form-group .input-group-btn,
				body.view-courses .js-stools-container-bar .form-inline .form-group .input-group-btn {
					}
					body.view-students .js-stools-container-bar .form-inline .form-group .input-group-btn .btn-primary,
					body.view-courses .js-stools-container-bar .form-inline .form-group .input-group-btn .btn-primary {
						background: #2b4f7b;
					}
				body.view-students .js-stools-container-bar .form-inline .form-group .js-stools-btn-filter,
				body.view-courses .js-stools-container-bar .form-inline .form-group .js-stools-btn-filter {
					background: #2B4F7B;
					color: #fff;
					text-transform: uppercase;
					letter-spacing: 0.5px;
					font-weight: normal;
					font-size: 12px;
					padding: 8px 12px 7px 12px;
				}
	body.view-students .js-stools-container-filters,
	body.view-courses .js-stools-container-filters {
		margin: 0 0 20px 0;
		}
		.students .js-stools-container-filters .js-stools-field-filter,
		body.view-courses .js-stools-container-filters .js-stools-field-filter {
			margin-bottom: 5px;
		}

	body.view-students .js-stools-container-list,
	body.view-courses .js-stools-container-list {
		margin: 20px 0;
	}

.js-stools-container-filters {
	display: none;
	width: 100%;
}

.js-stools-container-filters-visible {
	display: block;
}

/** student --> layout-evaluate styling / evaluate form (modal) **/
body.view-student.layout-evaluate {
	}
	body.view-student.layout-evaluate h1,
	.evaluation-content h1 {
		margin: 40px 0 10px 0;
		padding-bottom: 0px;
		font-size: 24px;
		letter-spacing: 1px;
		font-weight: bold;
		text-transform: uppercase;
	}
	body.view-student.layout-evaluate h2,
	.evaluation-content h2 {
		margin: 30px 0 10px 0;
		font-size: 12px;
	}

	body.view-student.layout-evaluate .student h2 {
		margin: 20px 0 10px 0;
	}

	body.view-student.layout-evaluate form {
		}
		body.view-student.layout-evaluate .evaluation label {
			font-weight: normal;
			margin-top: 10px;
		}
		.evaluation-content .evaluation label {
			font-weight: normal;
			margin-top: 0;
		}
		body.view-student.layout-evaluate form .btn-group,
		.evaluation-content form .btn-group {
			float: right;
			margin: -5px 0 2px 0;
		}
		body.view-student.layout-evaluate form .btn-group#jform_evaluation_mentor_generic,
		.evaluation-content form .btn-group#jform_evaluation_mentor_generic {
			float: left;
		}
		body.view-student.layout-evaluate form textarea,
		body.view-student.layout-evaluate form input,
		body.view-student.layout-evaluate form .btn-default,
		.evaluation-content textarea,
		.evaluation-content input,
		.evaluation-content .btn-default {
			color: #304F78;
			font-size: 12px;
			letter-spacing: 0.5px;
		}
		body.view-student.layout-evaluate form textarea {
			border-radius: 0;
			width: 100%;
			}
			body.view-student.layout-evaluate form textarea.optional {
				border-left: 6px solid #95C121;
			}
			body.view-student.layout-evaluate form textarea.required {
				border-left: 6px solid #bf1515;
			}
			body.view-student.layout-evaluate .evaluation.student .form-group #jform-evaluation-student-comment {
				margin-bottom: 60px;
			}
		.evaluation-content textarea {
			border-radius: 0;
			margin-top: 5px;
			width: 100%;
		}
		.evaluation-content .form-inline .form-group {
			margin-bottom: 5px;
		}
		.evaluation-content a.print-course {
			color: #304F78;
			font-size: 16px;
			}
			.evaluation-content a.print-course:hover {
				text-decoration: none;
			}

	body.view-student.layout-evaluate .form-group {
		margin-bottom:20px;
	}
	body.view-student.layout-evaluate .evaluation.mentor.gray {
		background: #FFFFFF;
		}
		body.view-student.layout-evaluate .evaluation.mentor.gray #jform-evaluation-mentor-comment {
			margin-bottom: 60px;
		}


/** user->layout-edit **/
body.view-user.layout-edit {
	}
	body.view-user.layout-edit .col-md-6.change-password {
		margin-bottom: 60px;
	}
	body.view-user.layout-edit .information {
		margin-bottom: 20px;
		text-transform: uppercase;
		font-weight: bold;
		letter-spacing: 0.7px;
		font-size: 12px;
		border-right: 1px solid #E5E5E5;
		border-bottom: 1px solid #E5E5E5;
		}
		body.view-user.layout-edit .information h2 {
			margin: 30px 0 30px 0;
			font-size: 14px;
		}
		body.view-user.layout-edit .information .image {
			position: absolute;
			right: 20px;
			width: 80px;
			height: 80px;
			border-radius: 40px;
			border: 1px solid #e5e5e5;
			overflow: hidden;
			text-align: center;
			background: #fff;
			}
			body.view-user.layout-edit .information .image img {
				width: 80px;
				height: auto;
			}
			body.view-user.layout-edit .information .image [class^="icon-"] {
				font-size: 70px;
				line-height: 70px;
			}
			body.view-user.layout-edit .information label {
				min-width: 100px;
			}
			body.view-user.layout-edit .information span {
				font-weight: normal;
			}
		body.view-user.layout-edit .information .school {
			margin-bottom: 27px;
		}
		body.view-user.layout-edit .change-password .btn-primary {
			background: #2b4f7b;
			text-transform: uppercase;
			letter-spacing: 0.7px;

			-webkit-transition: all 0.2s ease-in;
			transition: all 0.2s ease-in;
		}
		body.view-user.layout-edit .change-password .btn-primary:hover {
			opacity: 0.8;
		}


/** courses styling **/
body.view-courses {
	}
	body.view-courses .search-result-count {
		margin: 20px 0 10px 0;
	}
	body.view-courses .search-results {
	}
	body.view-courses .search-results .panel.course {
		padding: 15px 20px;
		box-shadow: 3px 3px 3px #f5f5f5;
		border: 1px solid #e5e5e5;
		border-radius: 0px;

		-webkit-transition: all 0.1s ease-in;
		transition: all 0.1s ease-in;
		}
		body.view-courses .search-results .panel.course .media-left {
		}
		body.view-courses .search-results .panel.course .media-left .image {
			margin: 0 auto;
			width: 60px;
			height: 60px;
			border-radius: 30px;
			border: 1px solid #e5e5e5;
			overflow: hidden;
			text-align: center;
			}
			body.view-courses .search-results .panel.course .media-left .image img {
				width: 50px;
				height: auto;
			}
			body.view-courses .search-results .panel.course .media-left .image [class^="icon-"] {
				/*font-size: 50px;*/
				font-size: 38px;
				line-height: 50px;
			}
		body.view-courses .search-results .panel.course .media-body {
			text-transform: uppercase;
			}
			body.view-courses .search-results .panel.course .media-body .title {
				width: 100%;
				margin-bottom: -8px;

				font-size: 12px;
				font-weight: bold;
				letter-spacing: 0.8px;
			}
			body.view-courses .search-results .panel.course .media-body .duration {
				line-height: 14px;
				width: auto;
				margin-top: 8px;
				font-size: 11px;
				color: #304f78;
				}
				body.view-courses .search-results .panel.course .media-body .duration span {
					float: left;
				}
				body.view-courses .search-results .panel.course .media-body .duration span.icon-clock-o {
					margin: 1px 5px 0 0;
					color: #b0c133;
				}
			body.view-courses .search-results .panel.course .media-body .cooperation {
				color: #B0C133;
				width: auto;
				margin-top: 2px;
				font-size: 11px;
			}
			body.view-courses .search-results .panel.course .media-body .difficulty {
				width: auto;
				color: #b0c133;
				margin-top: 2px;
				font-size: 11px;
			}
			body.view-courses .search-results .panel.course .media-body .groups {
				margin-top: -35px;
				width: 100%;
				text-align: right;
				}
				body.view-courses .search-results .panel.course .media-body .groups span.badge {
					background: #b0c133;
					margin-left: 5px;
				}
			body.view-courses .search-results .panel.course .media-body .assign-students {
				margin-top: 0px;
				text-align: right;
				}
				body.view-courses .search-results .panel.course .media-body .assign-students .btn-default {
					border: none;
					background: #EC6220;
					color: #ffffff;
					text-transform: uppercase;
					letter-spacing: 0.7px;
					font-size: 14px;
					padding: 8px 12px;
				}
			body.view-courses .search-results .panel.course .media-body .assigned-state {
				margin-top: -7px;
				}
				body.view-courses .search-results .panel.course .media-body .assigned-state a {
					color: #EC6220;
					font-size: 14px;
				}
				body.view-courses .search-results .panel.course .media-body .assigned-state a:hover {
					text-decoration: none;

					color: #B0C133;
				}


/** course styling **/
body.view-course {
}
body.view-course.layout-default {
	border-bottom: 1px solid #E5E5E5;
	}
	body.view-course .container-fluid {
	}
	body.view-course .col-md-10 {
		border-left: 1px solid #E5E5E5;
	}
	body.view-course .content {
		margin-bottom: 30px;
	}
	body.view-course .list-group {
		}
		body.view-course .list-group .list-group-item {
			border: 0px solid #fff;
			padding: 0;
		}

		body.view-course h1 {
			margin: 40px 0 10px 0;
			padding-bottom: 0px;
			font-size: 24px;
			letter-spacing: 1px;
			font-weight: bold;
			text-transform: uppercase;
		}
		body.view-course h2 {
			margin: 0 0 20px 0;
			font-size: 12px;
			font-weight: bold;
			text-transform: uppercase;
			letter-spacing: 0.8px;
		}
		body.view-course h3 {
			font-size: 10px;
			font-weight: bold;
			text-transform: uppercase;
			letter-spacing: 0.8px;
		}
		body.view-course p {
			margin-bottom: 26px;
		}

		body.view-course .head-wrapper,
		body.view-course .mentor.meta-data,
		body.view-course .student.introduction,
		body.view-course .student.procedure,
		body.view-course .student.assignment,
		body.view-course .mentor.additional-information {
			line-height: 20px;
		}

		body.view-course .cover-wrapper {
			margin-top: -1px;
		}

		body.view-course .details {
			font-size: 11px;
			margin: 5px 0 40px 0;
			padding-bottom: 15px;
			border-bottom: 1px solid #e5e5e5;
			}
			body.view-course .details .duration {
				font-size: 8px;
				padding: 0;
				text-transform: uppercase;
				}
				body.view-course .details .duration span.icon-clock-o {
					color: #B0C133;
				}
			body.view-course .details .difficulty {
				text-align: center;
				color: #B0C133;
			}
			body.view-course .details .cooperation {
				text-align: center;
				color: #B0C133;
			}
			body.view-course .details .groups {
				text-align: right;
				}
				body.view-course .details .groups .badge {
					background: #B0C133;
					margin-left: 1px;
					border-radius: 20px;

					padding: 3px 5px;
					font-size: 8px;
				}

		body.view-course .students {
			margin-top: 45px;
		}

		body.view-course .meta-data {
			margin-top:0px;
			}
			body.view-course .meta-data .gray {
				padding-top: 25px;
				padding-bottom: 40px;
				}
				body.view-course .meta-data .gray h2 {
					margin: 30px 0 0 0;
				}
			body.view-course .meta-data ul {
				padding: 0 0 0 20px;
				margin: 0;
				list-style-type: none;
				}
				body.view-course .meta-data ul li {
					text-indent: -20px;
					margin: 0 0 3px 0;
				}
				body.view-course .meta-data ul li:before {
					content: "• ";
    				color: #95C121;
				}

		body.view-course .head {
			border-bottom: 1px solid #E5E5E5;
			}
			body.view-course .head a.print-course {
				color: #2B4F7B;
				margin-right: 15px;
			}
			body.view-course .head a.print-course:hover {
				opacity: 0.8;
				text-decoration: none;
			}

		body.view-course .submission-criteria {
			margin-top: 40px;
			}
			body.view-course .submission-criteria .form-inline {
				}
				body.view-course .submission-criteria .form-inline {
					margin: 0 0 10px 0;
					}
					body.view-course .submission-criteria .form-inline label {
						min-width: 100%;
						font-weight: normal;
						font-size: 12px;
					}
					body.view-course .submission-criteria .form-inline label.btn-default {
						min-width: 20px;
						font-size: 12px;
					}
					body.view-course .submission-criteria .form-control {
						font-size: 12px;
					}

		body.view-course .student.introduction {
			border-top: 1px solid #e5e5e5;
			padding-top: 45px;
			}
			body.view-course .student.introduction > .content {
				}
				body.view-course .student.introduction > .content > h2 {
					color: #86ad1e;
				}
				body.view-course .student.introduction > .content > h3 {
					margin-bottom: 0;
					font-size: 14px;
					color: #86ad1e;
					text-transform: none;
				}
				body.view-course .student.introduction > .content strong {
				}
				body.view-course .student.introduction > .content .text-strong {
					font-weight: bold;
				}

		body.view-course .student.assignment,
		body.view-course .student.procedure {
			border-top: 1px solid #e5e5e5;
			margin-top: 30px;
			padding-top: 45px;
			}
			body.view-course .student.assignment > .content {
				}
				body.view-course .student.assignment > .content > h2 {
					color: #0097be;
				}
				body.view-course .student.assignment > .content > h3 {
					margin-bottom: 0;
					font-size: 14px;
					color: #0097be;
					text-transform: none;
				}
				body.view-course .student.assignment > .content strong {
				}
				body.view-course .student.assignment > .content .text-strong {
					font-weight: bold;
				}
			body.view-course .student.procedure > .content {
				}
				body.view-course .student.procedure > .content > h2 {
					color: #ec4c25;
				}
				body.view-course .student.procedure > .content > h3 {
					margin-bottom: 0;
					font-size: 14px;
					color: #ec4c25;
					text-transform: none;
				}
				body.view-course .student.procedure > .content strong {
				}
				body.view-course .student.procedure > .content .text-strong {
					font-weight: bold;
				}

		body.view-course .mentor.additional-information {
			border-top: 1px solid #e5e5e5;
			margin-top: 30px;
			}
			body.view-course .mentor.additional-information .gray {
				padding-top: 30px;
			}

		body.view-course .generic-evaluation {
			margin-top: 50px;
			}
			body.view-course .generic-evaluation .form-inline {
				}
				body.view-course .generic-evaluation .form-inline {
					margin: 0 0 10px 0;
					}
					body.view-course .generic-evaluation .form-inline label {
						min-width: 250px;
						font-weight: normal;
					}
					body.view-course .generic-evaluation .form-group {
						font-size: 12px;
					}
					body.view-course .generic-evaluation .form-control {
						font-size: 12px;
					}

	body.view-course .attachments {
		}
		body.view-course .attachments ul {
			margin: 0;
			padding: 0;
			list-style-type: none;
			}
			body.view-course .attachments ul li {
				}
				body.view-course .attachments ul li a.thumbnail {
					float: left;
					width: 100%;
					padding: 10px;
					min-height: 60px;
					box-shadow: 3px 3px 3px #f5f5f5;
					overflow: hidden;

					-webkit-transition: all 0.2s;
    				transition: all 0.2s;
					}
					body.view-course .attachments ul li a.thumbnail span[class^="icon-"] {
						float: left;
						width: 20%;
						padding: 9px;
						font-size: 24px;
						color: #EC6220;
					}
					body.view-course .attachments ul li a.thumbnail .caption {
						float: left;
						width: 80%;
						}
						body.view-course .attachments ul li a.thumbnail h3 {
							margin: 4px 0 0 0;
							line-height: 14px;
							font-size: 9px;
							letter-spacing: 0.5px;
							color: #304F78;
						}
				body.view-course .attachments ul li a.thumbnail:hover {
					background: #FEF9F6;
				}

	body.view-course div#ModalFeedback textarea {
		resize: vertical;
	}

/** course()s styling **/
	body.view-courses .students,
	body.view-course .students {
		padding: 20px 5px;
    	border: 1px solid #e5e5e5;
    	border-right: none;
    	border-radius: 0px;
    	background: #f9f9f9;
		}
		body.view-courses .students .add-student,
		body.view-course  .add-student {
			float: left;
			width: 100%;
			}
			body.view-courses .students .add-student .btn-default,
			body.view-course .add-student .btn-default {
				background: #EC6220;
				color: #FFFFFF;
				border: none;
				text-transform: uppercase;
				letter-spacing: 0.7px;
				font-size: 12px;
				padding: 10px 12px;
			}
		body.view-courses .students .panel.student,
		body.view-course .panel {
			float: left;
			margin:15px 15px 0 15px;
			padding: 15px 20px;
			box-shadow: 3px 3px 3px #f5f5f5;
			border: 1px solid #e5e5e5;
			border-radius: 0px;
			}
			body.view-courses .students .panel.student .media-left .image,
			body.view-course .panel .media-left .image {
				margin: 0 auto;
				width: 60px;
				height: 60px;
				border-radius: 30px;
				border: 1px solid #e5e5e5;
				overflow: hidden;
				text-align: center;
				}
				body.view-courses .students .panel.student .media-left .image img,
				body.view-course .panel .media-left .image img {
					width: 60px;
					height: auto;
				}
				body.view-courses .students .panel.student .media-left .image [class^="icon-"],
				body.view-course .panel .media-left .image [class^="icon-"] {
					font-size: 60px;
					line-height: 60px;
				}
			body.view-courses .students .panel.student .media-body,
			body.view-course .panel .media-body {
				text-transform: uppercase;
				}
				body.view-courses .students .panel.student .media-body .name,
				body.view-course .panel .media-body .name {
					float: left;
					width: 100%;
					font-size: 10px;
					font-weight: bold;
					letter-spacing: 0.5px;
				}
				body.view-courses .students .panel.student .media-body .grade,
				body.view-course .panel .media-body .grade {
					float: left;
					font-size: 10px;
					font-weight: normal;
				}
				body.view-course .panel .media-left .image {
					display: none;
				}
				body.view-course .panel .media-body .btn-default {
					float: right;
					background: #304f78;
					color: #fff;
					border: none;

					-webkit-transition: all 0.5s; /* Safari */
   		 			transition: all 0.5s;
				}
				body.view-course .panel .media-body .btn-default:hover {
					opacity: 0.8;
				}
				body.view-courses .students .panel.student .media-body .icons,
				body.view-course .students .panel .media-body .icons {
					margin-top: 30px;
				}
				body.view-courses .students .panel.student .media-body .icons > button.trash-student,
				body.view-course .panel .media-body .icons > button.trash-student {
					float: right;
				}


/** media queries **/

@media (min-width: 768px) {
	.container {
		width: 750px;
	}

	/** specific view styling **/
	body.view-students:after,
	body.view-courses:after,
	body.view-student:after,
	body.view-course:after,
	body.view-user.layout-edit:after {
		content: "";
		position: absolute;
		z-index: 3;
		top: 0;
		bottom: 0;
		left: 16.66666667%;
		border-left: 1px solid #E5E5E5;
	}

	body.layout-modal:after {
		border: none;
	}

	/** topbar **/
	.topbar .nav.nav-pills {
		display: block;
	}
	.topbar.affix {
		background: #FFFFFF;
		border: 1px solid #E5E5E5;
	}
	.topbar .toolbar.pull-right .btn-primary {
		font-size: 9px;
	}

	/** modal **/
	.modal-lg {
		width: 700px;
	}

	/** searchtool **/
	body.view-students .js-stools-container-bar .form-inline .form-group .js-stools-btn-filter,
	body.view-courses .js-stools-container-bar .form-inline .form-group .js-stools-btn-filter {
		font-size: 9px;
		padding: 10px 12px 10px 12px;
	}

	/** sidebar **/
	.sidebar .profile {
		border-bottom: 1px solid #e5e5e5;
	}
	.sidebar div.logo img {
		max-width: 100%;
	}

	/** students **/
	body.view-students .searchtools .col-md-6 {
		width: 100%;
	}

	/** student **/
	body.view-student .information {
		font-size: 10px;
		border: 1px solid #E5E5E5;
		border-right: none;
	}

	/** student evaluatie **/
	body.view-student.layout-evaluate .form-group {
		margin-bottom: 15px;
		width: 100%;
	}

	/** user layout-edit **/
	body.view-user.layout-edit .col-md-6 {
		width: 100%;
	}

	/** evaluation modal **/
	.evaluation-content textarea {
		width: 725px;
	}

	/** view-courses **/
	body.view-courses .search-results .panel.course .media-body .cooperation,
	body.view-courses .search-results .panel.course .media-body .duration,
	body.view-courses .search-results .panel.course .media-body .difficulty {
		margin-top: 12px;
	}
	body.view-courses .search-results .panel.course .media-body .groups {
		margin-top: -45px;
	}
	body.view-courses .search-results .panel.course .media-left .image {
		display: block;
	}
	body.view-courses .searchtools .col-md-6 {
		width: 100%;
	}
	body.view-courses .search-results .panel.course .media-body .assign-students .btn-default {
		font-size: 10px;
	}
	body.view-courses .students .add-student .btn-default, body.view-course .add-student .btn-default {
		font-size: 10px;
	}
}
@media (min-width: 1024px) {
	body {
		font-size: 14px;
		letter-spacing: 0.4px;
		line-height: 26px;
	}

	/** topbar **/
	.topbar .nav.nav-pills li a {
		font-size: 12px;
	}
	.topbar .nav.nav-pills li a {
		margin-top: 43px;
	}
	.topbar.affix .nav.nav-pills li a {
		margin-top: 12px;
		padding-bottom: 9px;
	}
	.topbar .toolbar.pull-right .btn-default {
		font-size: 12px;
		padding: 8px 12px 8px 12px;
	}
	.topbar .toolbar.pull-right .btn-primary {
		font-size: 12px;
	}
	.topbar .toolbar.pull-right .btn-primary.submit-file{
		padding: 7px 10px;
	}

	/** sidebar **/
	.sidebar .profile {
		padding: 40px 30px 30px 30px;
	}
	.sidebar .sidebar-nav ul li {
		font-size: 14px;
	}
	.sidebar div.logo img {
		margin-top: 20px;
	}

	/** modal **/
	.modal-lg {
		width: 900px;
	}

	/** searchtool **/
	body.view-students .js-stools-container-bar .form-inline .form-group .js-stools-btn-filter,
	body.view-courses .js-stools-container-bar .form-inline .form-group .js-stools-btn-filter {
		font-size: 12px;
		padding: 8px 12px 7px 12px;
	}


	/** students **/
	body.view-students .students {
		width: 50%;
	}
	body.view-students .searchtools .col-md-6 {
		width: 50%;
	}

	/** user layout-edit **/
	body.view-user.layout-edit .col-md-6 {
		width: 50%;
	}

	/** course **/
	body.view-course h3 {
		font-size: 12px;
	}
	body.view-course h2 {
		font-size: 14px;
	}
	body.view-course .panel .media-left .image {
		display:block;
	}
	body.view-course .meta-data .gray h2 {
		font-size: 14px;
		margin:30px 0 5px 0;
	}
	body.view-course .attachments ul li a.thumbnail h3 {
		font-size: 12px;
	}
	body.view-course .meta-data {
		/*margin-top: 30px;*/
	}
	body.view-course .submission-criteria {
		margin-top: 60px;
	}
	body.view-course .submission-criteria .form-inline label,
	body.view-course .generic-evaluation .form-inline label {
		min-width: 200px;
	}
	body.view-course .submission-criteria .form-inline label,
	body.view-course .submission-criteria .form-control,
	body.view-course .submission-criteria .form-inline label.btn-default,
	body.view-course .generic-evaluation .form-inline label,
	body.view-course .generic-evaluation .form-control {
		font-size: 14px;
	}
	body.view-course .details .groups .badge {
		padding: 5px 7px;
		margin-left: 3px;
		font-size: 12px;
	}
	body.view-courses .students .add-student .btn-default,
	body.view-course .students .add-student .btn-default {
		font-size: 12px;
	}

	/** view-courses **/
	body.view-courses .search-results .panel.course .media-body .cooperation,
	body.view-courses .search-results .panel.course .media-body .duration,
	body.view-courses .search-results .panel.course .media-body .difficulty {
		margin-top: 2px;
	}
	body.view-courses .search-results .panel.course .media-body .duration {
		margin-top: 8px;
	}
	body.view-courses .search-results .panel.course .media-body .groups {
		margin-top: -45px;
	}
	body.view-courses .search-results .panel.course .media-left .image {
		display: block;
	}
	body.view-courses .searchtools .col-md-6 {
		width: 50%;
	}
	body.view-courses .search-results .panel.course .media-body .assign-students .btn-default {
		font-size: 12px;
	}

	/** student evaluatie **/
	body.view-student.layout-evaluate h2 {
		font-size: 14px;
	}

	/** student **/
	body.view-student .information {
		font-size: 12px;
	}
	body.view-student .information .name span,
	body.view-student .information .gender span,
	body.view-student .information .grade span,
	body.view-student .information .mentor span {
		margin-top: 6px;
	}

	/** evaluation modal **/
	.evaluation-content textarea {
		width: 100%;
	}
}

@media (min-width: 1200px) {
	.container {
		width: 960px;
	}

	/* sidebar */
	.sidebar div.logo img {
		max-height: 50px;
	}
	/* datepicker */
	body.view-student div.content-calendar .ui-datepicker {
		width: 20em;
		background: #f9f9f9;
	}
	body.view-student div.content-calendar .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
		width: 19.4em;
	}

/** students **/
	body.view-students .panel.student .media-body .icons a {
		font-size: 14px;
	}

	/** course **/
	body.view-course h1 {
		font-size: 28px;
	}
	body.view-course h2 {
		font-size: 24px;
	}
	body.view-course .meta-data .gray h2 {
		font-size: 24px;
		margin: 40px 0 10px 0;
	}
	body.view-course .meta-data {
		/*margin-top: 40px;*/
	}
	body.view-course .details {
		font-size: 14px;
	}
	body.view-course .details .duration {
		font-size: 10px;
	}

	/* view-courses */
	body.view-courses .students .panel.student .media-body .name,
	body.view-course .panel .media-body .name {
		float: left;
		width: auto;
		font-weight: bold;
		letter-spacing: 0.5px;
	}
	body.view-courses .students .panel.student .media-body .grade,
	body.view-course .panel .media-body .grade {
		float: right;
		font-weight: bold;
	}

	body.view-course .panel .media-body .btn-default {
		margin-left: 50%;
	}

	body.view-courses .search-results .panel.course .media-left .image {
		width: 80px;
		height: 80px;
		border-radius: 40px;
		}
		body.view-courses .search-results .panel.course .media-left .image img {
			width: 74px;
			height: auto;
		}
		body.view-courses .search-results .panel.course .media-left .image [class^="icon-"] {
			font-size: 50px;
			/*font-size: 74px;*/
			line-height: 74px;
		}
	body.view-courses .search-results .panel.course .media-body .title {
		font-size: 14px;
		margin-bottom: -8px;
	}
	body.view-courses .search-results .panel.course .media-body .groups {
		margin-top: -50px;
	}

	/** student evaluatie **/
	body.view-student.layout-evaluate h1 {
		font-size: 28px;
	}

	body.view-student.layout-evaluate form .form-inline .btn-group,
	body.view-student.layout-evaluate .form-inline .form-group label,
	body.view-student.layout-evaluate form .form-inline textarea {
		float: left;
		width: auto;
	}
	body.view-student.layout-evaluate form .form-inline textarea {
		margin-left: 5px;
	}
	body.view-student.layout-evaluate form .form-inline .btn-group {
		margin: -3px 0 0 5px;
	}
}
