/*--------------------------------------------------------------

# General

--------------------------------------------------------------*/

body {
	background: #fff;
	color: #666666;
	font-family: "Open Sans", sans-serif;
}
a {
	color: #18d26e;
	transition: 0.5s;
}
a:hover,
a:active,
a:focus {
	color: #18d36e;
	outline: none;
	text-decoration: none;
}
p {
	padding: 0;
	margin: 0 0 30px 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	margin: 0 0 20px 0;
	padding: 0;
}
/* Back to top button */

.back-to-top {
	position: fixed;
	display: none;
	background: #18d26e;
	color: #fff;
	width: 44px;
	height: 44px;
	text-align: center;
	line-height: 1;
	font-size: 22px;
	border-radius: 50%;
	right: 15px;
	bottom: 15px;
	transition: background 0.5s;
	z-index: 11;
}
.back-to-top i {
	padding-top: 12px;
	color: #fff;
}
/* Prelaoder */

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #fff;
}
#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #f2f2f2;
	border-top: 6px solid #18d26e;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	-webkit-animation: animate-preloader 1s linear infinite;
	animation: animate-preloader 1s linear infinite;
}
@-webkit-keyframes animate-preloader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes animate-preloader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
/*--------------------------------------------------------------

# Header

--------------------------------------------------------------*/

#header {
	padding: 30px 0;
	height: 92px;
	/*position: fixed;
	left: 0;
	top: 0;
	right: 0;
	transition: all 0.5s;
	z-index: 997;*/
	background: rgba(0, 0, 0, 0.9);
	border-bottom: solid 1px #333;
}
.login-page #header{
	background: rgba(0, 0, 0, 0.5);
}

#header.header-scrolled {
	background: rgba(0, 0, 0, 0.5);
	padding: 20px 0;
	height: 72px;
	transition: all 0.5s;
}
#header #logo {
	float: left;
}
#header #logo h1 {
	width: 100px;
	margin: -12px 0 0 0;
	padding: 0;
}
#header #logo h1:after,
#header #logo h1:before {
	display: none;
}
#header #logo h1 a,
#header #logo h1 a:hover {} #header #logo img {
	padding: 0;
	margin: 0;
	width: 100%;
}

/*--------------------------------------------------------------

# Navigation Menu

--------------------------------------------------------------*/

/* Nav Menu Essentials */

.nav-menu,
.nav-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
}
.nav-menu ul {
	position: absolute;
	display: none;
	top: 100%;
	left: 0;
	z-index: 99;
}
.nav-menu li {
	position: relative;
	white-space: nowrap;
}
.nav-menu>li {
	float: left;
	margin-left: 0;
	margin-right: 0;
	line-height: 1;
	border-right: solid 1px #999;
}
.nav-menu>li:last-child {
	border: none;
}
.nav-menu>li.online {
	background: #18d36e;
}
.nav-menu>li.online:hover a {
	color: #ffffff;
}
.nav-menu li:hover>ul,
.nav-menu li.sfHover>ul {
	display: block;
}
.nav-menu ul ul {
	top: 0;
	left: 100%;
}
.nav-menu ul li {
	min-width: 180px;
}
.nav-menu li.active a,
.nav-menu li.current-menu-item a {
	color: #18d36e;
}
/* Nav Meu Container */

#nav-menu-container {
	float: right;
	margin: 0;
}
/* Nav Meu Styling */

.nav-menu a {
	padding: 0 8px 5px 8px;
	text-decoration: none;
	display: inline-block;
	color: #000;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	outline: none;
}
.nav-menu li:hover>a,
.nav-menu>.menu-active>a {
	color: #18d26e;
}
.nav-menu ul {
	margin: 4px 0 0 0;
	padding: 10px;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	background: #fff;
}
.nav-menu ul li {
	transition: 0.3s;
}
.nav-menu ul li a {
	padding: 10px;
	color: #333;
	transition: 0.3s;
	display: block;
	font-size: 13px;
	text-transform: none;
}
.nav-menu ul li:hover>a {
	color: #18d26e;
}
.nav-menu ul ul {
	margin: 0;
}

/*--------------------------------------------------------------

# Sections

--------------------------------------------------------------*/


section {
	overflow: hidden;
}

main{
	min-height: 600px;
	padding-top: 30px;
}
.login-page main{
	padding-top:100px;
}


.profile-page aside{
	padding: 20px;
	/*min-height: 80vh;*/
	background: #f1f1f1;
}

.profile-page aside h5{
	font-size: 18px;
	padding: 0 0 10px 0;
	margin: 0;
}
.profile-page aside h6{
	font-size: 16px;
	padding: 0 0 10px 0;
	margin: 0;
}

.profile-details figure{
	max-width: 150px;
	margin: 0 auto;
	margin-bottom: 20px;
}

.bg-none{
	background: none !important;
}

@media only screen and (max-width: 768px) {
	.profile-details figure{
		max-width: 100px;
		margin: 0 auto;
	}
	.profile-page aside{
		min-height: auto;
	}
	
}



.profile-page .notice-board{
	background: #ddd;
	padding:0;
}
.profile-page .notice-board h3{
	font-size: 18px;
	padding:10px 20px;
	margin: 0;
	font-weight: 700;
	color: #fff;
	background: #666;
}
.profile-page .notice-board p{
	font-size: 14px;	
	padding: 0 0 10px;
	margin: 0;
}
.profile-page .notice-board .message{
	padding: 20px;
}

.profile-page .class-details,
.profile-page .assignment{
	background: #f1f1f1;
	border: solid 1px #e1e1e1;
	padding: 20px;
	margin: 30px 0;
}
.profile-page .class-details h3,
.profile-page .assignment h3{
	font-size: 18px;
	font-weight: 700;
	padding: 0 0 5px 0;
	border-bottom: solid 1px #e1e1e1;
}
.profile-page .class-details h4,
.profile-page .assignment h4{
	font-size: 16px;
	font-weight: 700;
}
.profile-page .class-details h5,
.profile-page .assignment h5{
	font-size: 16px;
}
.profile-page .class-details p,
.profile-page .assignment p{
	font-size: 14px;
	padding: 0 0 10px;
	margin: 0;
}

.fees-payment{
	margin: 50px 0;
	padding: 20px;
	background: #e7dec5;
}
.fees-payment form{
	display: inline-block;
}
.fees-payment h5{
	
}




/*--------------------------------------------------------------

# Login page

--------------------------------------------------------------*/
.login-page{
height: 100%;
align-content: center;
background: linear-gradient(rgba(0, 142, 99, 0.1), rgba(0, 0, 0, 0.1)), url(../images/call-to-action-bg.jpg) fixed center center;
}


.card{
height: 350px;
margin-top: auto;
margin-bottom: auto;
width: 400px;
background-color: rgba(0,0,0,0.5);
}

.social_icon span{
font-size: 60px;
margin-left: 10px;
color: #FFC312;
}

.social_icon span:hover{
color: white;
cursor: pointer;
}

.card-header h3{
color: white;
}

.social_icon{
position: absolute;
right: 20px;
top: -45px;
}

.input-group-prepend span{
width: 50px;
background-color: #FFC312;
color: black;
border:0 !important;
}

input:focus{
outline: 0 0 0 0  !important;
box-shadow: 0 0 0 0 !important;

}

.remember{
color: white;
}

.remember input
{
width: 20px;
height: 20px;
margin-left: 15px;
margin-right: 5px;
}

.login_btn{
color: black;
background-color: #FFC312;
width: 100px;
}

.login_btn:hover{
color: black;
background-color: white;
}

.links{
color: white;
}

.links a{
margin-left: 4px;
}








/*--------------------------------------------------------------

# Admin Page / Dashboard

--------------------------------------------------------------*/

main.admin-page{
	min-height:calc(100vh - 173px);
	padding-top:0px;
}
.admin-page aside{
	padding: 20px;
	min-height: 82vh;
	background: #f1f1f1;
}
.admin-page .card{
	height: 280px;
	margin-top: 100px;
}

/*--------------------------------------------------------------

# Admin Page / Sidemenu

--------------------------------------------------------------*/

.admin-page .side-menu nav {
  margin: 0 0 30px 0;
}
.admin-page .side-menu nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.admin-page .side-menu nav ul li {
  margin: 0;
  padding: 0 0 2px;
  list-style: none;
}
.admin-page .side-menu nav ul li a {
  display: block;
  padding: 7px 10px;
  font-size: 14px;
  color: #333;
  background: #e1e1e1;
  line-height: 24px;
  font-weight: 700;
}
.admin-page .side-menu nav ul li a:hover {
  background: #d1d1d1;
}


.admin-page  .btn-add , 
.admin-page .btn-edit, 
.admin-page .btn-delete, 
.admin-page .btn-block, 
.admin-page .btn-unblock,
.admin-page .btn-receipt{
	width: 32px;
	height: 32px;
	margin: 0 5px;
	overflow: hidden;
	display:inline-block;
	text-indent: -999em;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}
.admin-page .btn-add{
	background-image: url(../images/add.png);
}
.admin-page .btn-edit{
	background-image: url(../images/edit.png);
}
.admin-page .btn-delete{
	background-image: url(../images/delete.png);
}
.admin-page .btn-block{
	background-image: url(../images/block.png);
}
.admin-page .btn-unblock{
	background-image: url(../images/unblock.png);
}
.admin-page .btn-receipt{
	background-image: url(../images/receipt.png);
}

.admin-page .pagination a{
	color: #333;
}

/*--------------------------------------------------------------

# Footer

--------------------------------------------------------------*/

#footer {
	background: #000;
	padding: 0 0 30px 0;
	color: #eee;
	font-size: 14px;
}
#footer .footer-top {
	background: #111;
	padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info h3 {
	font-size: 34px;
	margin: 0 0 20px 0;
	padding: 2px 0 2px 10px;
	line-height: 1;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	letter-spacing: 3px;
	border-left: 4px solid #18d26e;
}
#footer .footer-top .footer-info p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	font-family: "Montserrat", sans-serif;
	color: #eee;
}
#footer .footer-top .social-links a {
	font-size: 18px;
	display: inline-block;
	background: #333;
	color: #eee;
	line-height: 1;
	padding: 8px 0;
	margin-right: 4px;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
	background: #18d26e;
	color: #fff;
}
#footer .footer-top h4 {
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	text-transform: uppercase;
	position: relative;
	padding-bottom: 12px;
}
#footer .footer-top h4::before,
#footer .footer-top h4::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
}
#footer .footer-top h4::before {
	right: 0;
	background: #555;
}
#footer .footer-top h4::after {
	background: #18d26e;
	width: 60px;
}

#footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
#footer .footer-top .footer-links ul i {
	padding-right: 8px;
	color: #ddd;
}
#footer .footer-top .footer-links ul li {
	border-bottom: 1px solid #333;
	padding: 10px 0;
}
#footer .footer-top .footer-links ul li:first-child {
	padding-top: 0;
}
#footer .footer-top .footer-links ul a {
	color: #eee;
}
#footer .footer-top .footer-links ul a:hover {
	color: #18d26e;
}

#footer .footer-top .footer-contact p {
	line-height: 26px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
	border: 0;
	padding: 6px 8px;
	width: 65%;
}
#footer .footer-top .footer-newsletter input[type="submit"] {
	background: #18d26e;
	border: 0;
	width: 35%;
	padding: 6px 0;
	text-align: center;
	color: #fff;
	transition: 0.3s;
	cursor: pointer;
}
#footer .footer-top .footer-newsletter input[type="submit"]:hover {
	background: #13a456;
}
#footer .copyright {
	text-align: center;
	padding-top: 30px;
}
#footer .credits {
	text-align: center;
	font-size: 13px;
	color: #ddd;
}
.pagination {
	padding-top: 50px;
	width: 100%;
	align-items: center;
	justify-content: center;
}
.pagination .nav-links a,
.pagination .nav-links span {
	padding: 10px;
	font-weight: 700;
}
/*--------------------------------------------------------------

# Responsive Media Queries

--------------------------------------------------------------*/

@media (min-width: 768px) {
	#contact .contact-address,
	#contact .contact-phone,
	#contact .contact-email {
		padding: 20px 0;
	}
	#contact .contact-phone {
		border-left: 1px solid #ddd;
		border-right: 1px solid #ddd;
	}
}
@media (min-width: 992px) {
	#testimonials .testimonial-item p {
		width: 80%;
	}
}
@media (min-width: 1024px) {
	/*#header #logo {

    padding-left: 60px;

  }*/
	#intro p {
		width: 60%;
	}
	#intro .carousel-control-prev,
	#intro .carousel-control-next {
		width: 5%;
	}
	#nav-menu-container {
		padding-right: 60px;
	}
}
@media (max-width: 768px) {
	.back-to-top {
		bottom: 15px;
	}
	#header #logo h1 {
		margin: -5px 0 0 0;
	}
	#header #logo h1 {
		font-size: 28px;
	}
	#header #logo img {
		max-height: 40px;
	}
	#intro h2 {
		font-size: 28px;
	}
	#nav-menu-container {
		display: none;
	}
	#mobile-nav-toggle {
		display: inline;
	}
	.landing_banner,
	.landing_banner .testimonials-carousel,
	.landing_banner .testimonials-carousel .bg_image {
		height: 300px;
	}
	#clients,
	#latest-products {
		padding: 0;
	}
}
.fadeInUp {
	overflow: hidden;
}
.blog-details figure {
	float: left;
	max-width: 45%;
	margin-right: 30px;
}
.wrap-contact_address {
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 555;
	background-color: rgba(0, 0, 0, 0.7);
	display: none;
}
.wrap-contact_address.show-contact {
	display: block;
}
.wrap-contact_address .contact_address {
	width: 250px;
	height: 100px;
	margin: auto;
	background: #fff;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 600;
	border: solid 2px #e1e1e1;
}
.wrap-contact_address .contact_address .close {
	width: 32px;
	height: 32px;
	margin: -15px;
	background: red;
	border-radius: 50%;
	text-align: center;
	opacity: 1;
	text-shadow: none;
	display: block;
	vertical-align: middle;
	line-height: 28px;
	color: #fff;
	font-size: 18px;
}
.wrap-contact_address .contact_address .close:hover {
	opacity: 1;
	color: #000;
}
.wrap-contact_address .contact_address p {
	padding: 15px;
	font-size: 14px;
}
.wrap-contact_address .contact_address p span {
	display: block;
}
.wrap-contact_address .contact_address p strong {
	display: block;
}
#downloads {
	margin-bottom: 100px;
}
#downloads li {
	width: 100%;
	padding: 10px 20px;
	border-bottom: solid 1px #999;
}
#downloads li:nth-child(even) {
	background: #f1f1f1;
}
#downloads li strong {
	width: 50%;
	display: inline-block;
}
#downloads li span {
	width: 22%;
	display: inline-block;
}
.registration-form form,
.wrap_poup form {
	width: 100%;
	margin-top: 50px;
	padding: 30px;
	padding-right: 0;
	box-sizing: border-box;
	background: #fff;
	padding-top: 130px;
	position: relative;
	border: solid 1px #dddddd;
}
.registration-form form:before,
.wrap_poup form:before {
	content: "";
	right: 30px;
	top: 30px;
	position: absolute;
	width: 146px;
	height: 59px;
	background-image: url(http://tintart.art/wp-content/themes/tint/images/logo-tint.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.registration-form form .form-group label,
.wrap_enq_form .enq_form form .form-group label,
.caricature_form form .form-group label {
	width: 100%;
}
.registration-form form .form-group span,
.registration-form form .form-group input,
.registration-form form .form-group textarea,
.registration-form form .form-group select,
.caricature_form form .form-group span,
.caricature_form form .form-group input,
.caricature_form form .form-group textarea,
.caricature_form form .form-group select,
.wrap_enq_form .enq_form form .form-group span,
.wrap_enq_form .enq_form form .form-group input,
.wrap_enq_form .enq_form form .form-group select {
	width: 95%;
}
.registration-form form .form-group textarea,
.caricature_form form .form-group textarea {
	height: 100px;
	overflow: auto;
}
.registration-form form .form-group input[type=submit],
.wrap_enq_form .enq_form form .form-group input[type=submit],
.caricature_form form .form-group input[type=submit],
.login_form input[type=submit] {
	background: #18d26e;
	border: 0;
	padding: 10px 30px;
	color: #fff;
	transition: 0.4s;
	cursor: pointer;
	width: auto;
}
.registration-form form .form-group input[type=submit]:hover,
.wrap_enq_form .enq_form form .form-group input[type=submit]:hover,
.caricature_form form .form-group input[type=submit]:hover,
.login_form input[type=submit]:hover {
	background: #13a456;
}
.registration-form form .form-group .wpcf7-mail-sent-ok,
.caricature_form form .form-group .wpcf7-mail-sent-ok {
	text-align: center;
	background: #a9f1b8;
	padding: 10px;
	text-align: center;
}
#blogUpdates.class_category,
#blogUpdates.video_list {
	padding-top: 0;
}
#blogUpdates.class_category .about-col h2.title,
#blogUpdates.video_list .about-col h2.title {
	padding: 10px 0;
	margin: 0;
	font-size: 14px;
}
.login_form form button[type="submit"] {
	background: #18d26e;
	border: 0;
	padding: 10px 30px;
	color: #fff;
	transition: 0.4s;
	cursor: pointer;
}
.login_form form button[type="submit"]:hover {
	background: #13a456;
}
.wrap_login {
	border: solid 1px #e1e1e1;
	padding: 10px;
}
.wrap_login .login_form .form-row {
	margin-right: 0px;
	margin-left: 0px;
}
.wrap_login .login_form .form-group {
	width: 100%;
}
.assignments {
	text-align: center;
	margin: 0 0 50px;
	background: linear-gradient(rgba(0, 142, 99, 0.1), rgba(0, 0, 0, 0.1)), url(../images/call-to-action-bg.jpg) fixed center center;
}
.live-video-block {
	margin: 20px 0;
	background: #000;
	padding: 10px;
}
#latest-products.highlight_slider {
	margin-top: 75px;
	background: #f1f1f1;
	padding-bottom: 20px;
	margin-bottom: 50px;
}
.frame_type_block {
	padding: 50px 0;
	background: linear-gradient(rgba(0, 142, 99, 0.1), rgba(0, 0, 0, 0.1)), url(../images/bg-wall-texture.jpg) fixed center center;
}
.frame_type_block h3,
.frame_type_block p {
	color: #000;
}
/* -- Video Listing Page --*/

.video_list a {
	display: block;
}
.video_list .video-popup,
.wrap_poup {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: none;
	z-index: 999;
}
.video_list .img.show-video .video-popup,
.wrap_poup.show-form {
	display: block;
}
.video_list .video-popup:after,
.wrap_poup:after {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
}
.video_list .video-popup .video_wrap,
.wrap_poup .caricature_form {
	width: 100%;
	height: 100%;
	max-height: 345px;
	max-width: 590px;
	background: #ffff;
	padding: 15px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 100;
}
.wrap_poup .caricature_form {
	max-height: 80%;
	max-width: 590px;
}
.wrap_poup form {
	margin-top: 15px;
}
.wrap_poup .caricature_form .screen-reader-response {
	color: red;
}
.wrap_poup .caricature_form .screen-reader-response ul {
	display: none
}
.wrap_poup .caricature_form .form_content {
	height: 100%;
	overflow: hidden;
	overflow-y: auto;
}
.video_list .video-popup a.close,
.wrap_poup a.close {
	position: absolute;
	right: -10px;
	top: -15px;
	background: #fff;
	padding: 4px;
	line-height: 1;
	width: 32px;
	text-align: center;
	border-radius: 50%;
	opacity: 1 !important;
}
body.no-scroll {
	height: 100vh;
	overflow: hidden;
}
.back_btn {
	position: fixed;
	bottom: 10px;
	z-index: 555;
	left: 10px;
	background: url(../images/back.png) no-repeat 0 0;
	padding: 20px 0 17px 42px;
	font-size: 16px;
	color: #000;
	background-size: 45%;
	line-height: 0px;
}
.wrap_enq_form {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.9);
	border: solid 1px #e1e1e1;
	display: none;
}
.wrap_enq_form.show-form {
	display: block;
}
.wrap_enq_form .enq_form {
	padding: 40px;
}
.wrap_enq_form .enq_form a.close {
	right: 20px;
	top: 20px;
	background: #fff;
	padding: 4px;
	line-height: 1;
	width: 32px;
	text-align: center;
	border-radius: 50%;
	opacity: 1 !important;
	position: absolute;
	top: 0px;
	right: 0px;
}
.wrap_enq_form .enq_form input[type=text],
.wrap_enq_form .enq_form input[type=tel],
.wrap_enq_form .enq_form input[type=email],
.wrap_enq_form .enq_form select {
	display: block;
	width: 100%;
	height: calc(2.25rem + 2px);
	padding: .375rem .75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #495057;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: .25rem;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.video-responsive {
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;
	height: 0;
}
.video-responsive iframe {
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	position: absolute;
}
@media (max-width: 768px) {
	.wrap_enq_form {
		position: fixed;
		top: 72px;
	}

	#downloads ol{
		padding:0;
		margin:0;
	}
	#downloads ol li{
		padding: 0 0 10px;
		margin:0;
	}
	#downloads ol li strong {
	    width: 100%;
	}
	#downloads ol li span {
	    width: 49%;
	}

	.section-header h3, h1 {
	    font-size: 22px;
	}

}
.registration-form .wpcf7-response-output {
	/*position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background:rgba(255, 255, 255, 0.8);
    text-align: center;
    padding-top: 35%;
    font-size: 30px;
    color: green;*/
}

.registration-form div[role="alert"]{
	color: red;
    text-align: center;
    font-weight: bold;
}

 .wrap_poup.upload_assignment .caricature_form{
	max-height: 515px;
}
 .upload_assignment .form_content{
 	position: relative;
}
 .upload_assignment.file_uploading form:after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/Upload.gif);
	background-repeat: no-repeat;
	background-position: center center;
	background-color: rgba(255, 255, 255, 0.7);
}

 .wrap_poup.upload_assignment .caricature_form form {
 	padding-top: 110px;
 }
 .wrap_poup.upload_assignment .caricature_form .wpcf7-response-output {
 	display: none;
 }
 .wrap_poup.upload_assignment .caricature_form a.close {
 	right: -10px;
    top: 0px;
    z-index: 100;	
 }
 .wrap_poup.upload_assignment .caricature_form .screen-reader-response {
    color: red;
    position: absolute;
    top: 20px;
    z-index: 999;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
}


 .Clsss_Url_details .class_url_icon{
 	float:right;
 	text-align: right;
 }
 .Clsss_Url_details .class_url_icon a{
	width:32px;
	height: 32px;
	display: inline-block;
	overflow: hidden;
	text-indent: 999em;
	background-image: url(../images/videoconference.png);
	background-repeat:no-repeat;
	background-size: contain;
	background-position: center center;
}
#downloads .Clsss_Url_details li{
	float:left;
	padding: 10px;
}
#downloads .Clsss_Url_details li strong{
	width: 70%;
	float:left;
}
#downloads .Clsss_Url_details li span{
	width: 30%;
	float:left;
}
.assignments .btn_upload.hide_button{
	opacity:0.5;
	pointer-events: none;
}


.profile-page aside h6.btn-logout{
	display: block;
  padding: 0px;
  background: #fff;
  margin-top: 20px;
  color: #000;
}
.profile-page aside h6.btn-logout a{
	display: block;
	padding: 10px;
}
.profile-page aside h6.btn-logout:hover{
	background: #e7cece;
}


#addStudentModal .form-group{
    margin-bottom: 0;
}


.admin-page .side-menu nav ul li a.assignment-enabled{
	background: #9fd7b9;
}
.admin-page .side-menu nav ul li a.assignment-disabled{
	background: #dda4a9;
}