*{
	outline: none;
}
html{
	height: 100%;
}
body{
	height: 100%;
	min-height: 100%;
	background: rgba(42,48,66,1);
	font-family: 'Rubik', sans-serif;
}
.checkbox-content{
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}
.checkbox-content input[type='checkbox'] {
	display: none;
}
.checkbox-content .fakecheck {
	cursor: pointer;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.checkbox-content .fakecheck::before{
	content:'';
	display: block;
	transition: all 0.2s ease-in-out;
	background: #eee;
	border-radius: 5px;
	border: 1px solid #555;
	width: 50px;
	height: 26px;
}
.checkbox-content .fakecheck::after{
	content: "";
	transition: all 0.2s ease-in-out;
	background: #c5c5c5;
	border-radius: 5px;
	border: 1px solid #aaa;
	width: 22px;
	position: absolute;
	left: 2px;
	top: 2px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
}
.checkbox-content input[type='checkbox']:checked + .fakecheck::after{
	content: '\2713';
	font-size: 1rem;
	background: #0db4ae;
	left: calc(100% - 24px);
	border: 1px solid transparent;
}

.access-denied{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: #fff;
	font-size: 1.25rem;
}
.access-denied .btn-back{
	background: #fff;
	text-decoration: none;
	height: 30px;
	width: 150px;
	border-radius: 5px;
	color: #333;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 1rem;
}

/* MENU OPEN BUTTON */
.open_main_menu.menu-open{
	background: rgba(0,0,0,0.15);
}
.open_main_menu{
	position: fixed;
	border-radius: 50px;
	top: 15px;
	left: 15px;
	z-index: 100;
	background: #0db4ae;
	padding: 0px;
	width: 40px;
	height: 40px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	border: none;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease-in-out;
}
.open_main_menu .line{
	width: 40%;
	height: 3px;
	background: #fff;
	border-radius: 4px;
	transition: all 0.2s ease-in-out;
}
.open_main_menu .line.mid-line{
	width: calc(40% + 8px);
}
.open_main_menu.menu-open .line.top-line{
	transition: all 0.2s ease-in-out;
	transform: rotate(45deg) translate(6px, 5px);
}
.open_main_menu.menu-open .line.mid-line{
	opacity: 0;
	transition: all 0.2s ease-in-out;
}
.open_main_menu.menu-open .line.bot-line{
	transition: all 0.2s ease-in-out;
	transform: rotate(-45deg) translate(6px, -6px);
}

/* MENU */
.menu-content{
	width: 5px;
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
	position: fixed;
	left: 0;
	top: 0;
	background-image: radial-gradient( circle farthest-corner at 10% 20%,  rgba(0,152,155,1) 0.1%, rgba(0,94,120,1) 94.2% );
	box-shadow: 3px 3px 8px rgba(0,0,0,0.5);
	overflow: hidden;
	transition: all 0.2s ease-in-out;
	z-index: 99;
}
.menu-content.menu-open{
	width: 290px;
}
.menu-content .menu{
	display: flex;
	align-content: center;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	padding: 30px 0;
	flex-direction: column;
	overflow-x: hidden;
	overflow-y: auto;
}
.menu-content .menu .img-menu {
    border-radius: 200px;
    max-width: calc(100% - 30px);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    display: none;
}
.menu-content .menu .img-menu svg{
	width: 120px;
	height: 100px;
}
.menu-content .menu .img-menu svg .brasao-svg{
	fill: #fff;
}
.menu-content .menu .img-menu .user_name{
	color: #e5e5e5;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
}
.menu-content .menu .menu-align{
	display: none;
}
.menu-content .menu .menu-items:not(:last-child){
	margin-bottom: 20px;
}
.menu-content .menu .menu-items{
	list-style: none;
	padding: 0;
	border-radius: 5px;
	width: 100%;
	background: rgba(0,0,0,0.2);
}
.menu-content .menu .menu-items .title-menu{
	font-size: 0.65rem;
	position: relative;
	text-align: center;
	font-weight: 500;
	height: 30px;
	background-color: rgba(0,0,0,0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ccc;
	line-height: 0;
	text-align: left;
	margin: 0;
	border-bottom: 1px solid rgba(255,255,255,0.1);
	border-radius: 5px 5px 0 0;
}
.menu-content .menu .menu-items ul{
	margin: 0;
	padding: 10px;
}
.menu-content .menu .menu-items ul li{
	color: #fff;
	text-transform: uppercase;
	font-size: 0.7rem;
	display: block;
	width: 100%;
	transition: all 0.2s ease-in-out;
}
.menu-content .menu .menu-items ul li:not(:last-child){
	margin-bottom: 10px;
}
.menu-content .menu .menu-items ul li a .text-link-menu{
	display: none;
}
.menu-content .menu .menu-items ul li a .text-link-menu{
	display: inline;
}
.menu-content .menu .menu-items ul li a{
	color: #fff;
	display: flex;
	align-items: center;
	flex-direction: row;
	justify-content: flex-start;
	border-radius: 0;
	width: 100%;
	padding: 6px 10px;
	text-decoration: none;
	position: relative;
	transition: all 0.2s ease-in-out;
	z-index: 2;
	border-left: 3px solid transparent;
}
	
.menu-content .menu .menu-items ul li:hover a{
	padding-left: 15px;
	border-left: 3px solid #fff;
	background: linear-gradient(90deg, rgba(0,0,0,0.3), transparent);
}
.menu-content .menu .exit button{
	height: 30px;
	width: 80px;
	font-size: 0.8rem;
	color: #ccc;
	border-radius: 50px;
	border: none;
	background: transparent;
	transition: all 0.2s ease-in-out;
	display: none;
}
.menu-content .menu .exit button:hover,
.menu-content .menu .exit button:focus{
	background: #fff;
	color: #333;
}
/* MENU */

.content-wrapper{
	padding: 30px;
	color: #fff;
}
.content-wrapper .content-collapses .curso-content{
	border-left: 3px solid #fff;
	padding: 5px 10px;
	padding-right: 0;
	margin-bottom: 30px;
}
.content-wrapper .content-collapses .path-pages{
	font-size: 0.8rem;
}

.content-wrapper .content-collapses .collapse-item{
	margin-bottom: 30px;
}
.content-wrapper .content-collapses .curso-content .collapse-item:last-child{
	margin-bottom: 0px;
}
.content-wrapper .content-collapses .collapse-item .collapse-button{
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	border: none;
	min-height: 50px;
	text-align: left;
	padding: 0 30px;
	color: #fff;
	background: linear-gradient( 180deg, rgba(0,152,155,1), rgba(0,94,120,1));
	transition: all 0.2s ease-in-out;
	border-radius: 5px;
	font-weight: 500;
	text-transform: uppercase;
	box-shadow: 2px 2px 6px rgb(0 0 0 / 40%);
}
.content-wrapper .content-collapses .collapse-item .collapse-button[aria-expanded="true"]{
	box-shadow: none;
	border-radius: 5px 5px 0 0;
}
.content-wrapper .content-collapses .collapse-item .collapse-button .action-collapse .line{
	height: 20px;
	width: 4px;
	background: #fff;
	display: block;
	transition: all 0.2s ease-in-out;
	border-radius: 5px;
}
.content-wrapper .content-collapses .collapse-item .collapse-button .action-collapse .line:first-child{
	transform: rotate(-45deg) translateX(-15px);
}
.content-wrapper .content-collapses .collapse-item .collapse-button .action-collapse .line:last-child{
	transform: rotate(45deg) translate(-6px, -8px);
}
.content-wrapper .content-collapses .collapse-item .collapse-button[aria-expanded="true"] .action-collapse .line:first-child{
	transform: rotate(45deg) translate(3px, 10px);
}
.content-wrapper .content-collapses .collapse-item .collapse-button[aria-expanded="true"] .action-collapse .line:last-child{
	transform: rotate(-45deg) translate(4px, -11px);
}

.content-wrapper .content-collapses .collapse-item .collapse{
	border: none;
	border-radius: 0 0 5px 5px;
}
.content-wrapper .content-collapses .collapse-item .collapse-body{
	background: linear-gradient( 0deg, rgba(0,152,155,1), rgba(0,94,120,1));
	color: #fff;
	padding: 30px;
	border-radius: 0 0 5px 5px;
}
.content-wrapper .content-collapses .collapse-item .collapse-body .card{
	background: transparent;
	border: none;
	border-radius: 8px;
	padding: 30px;
	padding-top: 0;
}
.content-wrapper .content-collapses .collapse-item .collapse-body .coord-disciplina{
	border: 1px solid #fff;
}

.content-wrapper .content-collapses .collapse-item .collapse-body .card-body{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.content-wrapper .content-collapses .collapse-item .collapse-body .card-body .flex-content,
.content-wrapper .content-collapses .collapse-item .collapse-body .card-body .types-content{
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}
.content-wrapper .content-collapses .collapse-item .collapse-body select{
	width: 100%!important;
	color: #fff!important;
	text-align: center;
	box-shadow: none;
	height: 40px;
    background: #0db4ae!important;
    border: none!important;
    border-radius: 5px!important;
    cursor: pointer;
}
.content-wrapper .content-collapses .collapse-item .collapse-body .card-body .flex-content .select-content{
	width: 50%;
}
.content-wrapper .content-collapses .collapse-item .collapse-body .card-body .flex-content .buttons-content{
	display: none;
	width: 50%;
	gap: 15px;
}

.content-wrapper .content-collapses .collapse-item .collapse-body .card-body .js_content_type{
	display: flex;
	width: 100%;
	gap: 15px;
	flex-wrap: wrap;
}

.content-wrapper .content-collapses .collapse-item .collapse-body .card-body .box-col-upload {
	width: calc(50% - 8px);
}
.content-wrapper .content-collapses .collapse-item .collapse-body .card-body .box-col-upload .upload-content{
	border: 1px solid #fff;
    padding: 15px;
    border-radius: 10px;
    width: 100%;
    box-shadow: 2px 2px 6px #555;
    text-align: center;
    padding-top: 0;
}
.content-wrapper .content-collapses .collapse-item .collapse-body .card-body .box-col-upload .upload-content h5{
	border: 1px solid #fff;
    width: 150px;
    border-radius: 0 0 10px 10px;
    border-top: 0;
    margin: 0 auto;
    margin-bottom: 20px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
}


/*.content-wrapper .content-collapses .collapse-item .collapse-body .card-body .upload-content .btn-fakeupload{*/
/*	width: 100%;*/
/*	border-radius: 5px;*/
/*	display: flex;*/
/*	align-items: center;*/
/*	justify-content: center;*/
/*	text-align: center;*/
/*	height: 40px;*/
/*	position: relative;*/
/*	background: #0db4ae;*/
/*	box-shadow: 2px 2px 6px rgba(0,0,0,0.2);*/
/*}*/

/*.content-wrapper .content-collapses .collapse-item .collapse-body .card-body .upload-content .gabarito {*/
/*	display: flex;*/
/*	align-items: center;*/
/*	justify-content: center;*/
/*	margin-top: 20px;*/
/*	gap: 5px;*/
/*}*/
/*.content-wrapper .content-collapses .collapse-item .collapse-body .card-body .upload-content .gabarito input[type='checkbox']{*/
/*	width: 20px;*/
/*	height: 20px;*/
/*}*/
.content-wrapper .content-collapses .collapse-item .collapse-body .card-body .title-card{
	border: 1px solid #fff;
    width: 150px;
    border-radius: 0 0 10px 10px;
    border-top: 0;
    margin: 0 auto;
    margin-bottom: 20px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2)
}
.content-wrapper .content-collapses .collapse-item .collapse-body .card-body .file-content{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.content-wrapper .content-collapses .collapse-item .collapse-body .card-body .form-control{
	border: none;
	border-bottom: 3px solid #fff;
	box-shadow: none;
	border-radius: 0;
	text-align: center;
	width: 150px;
	font-weight: 600;
	font-size: 1rem;
	color: #fff;
	background: transparent;
}
.content-wrapper .content-collapses .collapse-item .collapse-body .card-body .form-control[type="file"]{
	display: block;
}
.content-wrapper .content-collapses .collapse-item .collapse-body .card-body .form-control::placeholder{
	color: #ccc;
}

.content-wrapper .content-collapses .collapse-item .collapse-body .btn-envia-prova{
	margin-top: 30px;
	color: #fff;
	width: 100%;
    border-radius: 50px;
    display: block;
    padding: 10px 5px;
    background: rgb(61,154,234);
    background: -webkit-linear-gradient(165deg, rgba(61,154,234,1) 0%, rgba(73,84,238,1) 100%);
    background: -moz-linear-gradient(165deg, rgba(61,154,234,1) 0%, rgba(73,84,238,1) 100%);
    background: -o-linear-gradient(165deg, rgba(61,154,234,1) 0%, rgba(73,84,238,1) 100%);
    background: linear-gradient(165deg, rgba(61,154,234,1) 0%, rgba(73,84,238,1) 100%);
    border: none;
    display: flex;
    box-shadow: 1px 1px 4px rgb(0 0 0 / 30%);
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    display: none;
}
.content-wrapper .content-collapses .collapse-item .collapse-body .btn-envia-prova:hover{
    box-shadow: 3px 3px 8px rgb(0 0 0 / 50%);
	transform: scale(1.01);
	color: #fff;
}


.btn_custom{
	height: 40px;
	color: #ddd;
    border-radius: 5px;
    display: block;
    background: #eee;
    border: none;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;	
	box-shadow: 1px 1px 4px rgba(0,0,0,0.5);
	width: 100%;
	font-size: 0.85rem;
}
.btn_custom:hover{
	transform: scale(1.02);
	color: #fff;
	box-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}
.bg-remove{
	background: #E04A3A;
}
.bg-add{
	background: #5298E6;
}
.btn_disabled{
	filter: grayscale(100%);
	cursor: not-allowed;
	transition: none;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
	color: #fff;
	transform: none;
}
.btn_disabled:hover,
.btn_disabled:focus{
	filter: grayscale(100%);
	cursor: not-allowed;
	transition: none;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
	color: #fff;
	transform: none;
}

.card-button{
	position: relative;
	color: #fff;
	padding: 15px 30px;
	font-weight: 500;
	font-size: 1.1rem;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
	min-height: 120px;
	border-radius: 5px;
	background: linear-gradient( 180deg, rgba(0,152,155,1), rgba(0,94,120,1));
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.card-button:hover{
	color: #fff;
	filter: brightness(90%);
	transform: translateY(-5px);
	box-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}
.card-button .qtd-files{
	position: absolute;
	border-radius: 50px 0 0 50px;
	box-shadow: 2px 2px 6px rgba(0,0,0,0.35);
	right: 0;
	top: 5px;
	background: #fff;
	color: #0db4ae;
	padding: 6px 15px;
	font-size: 0.8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}
.card-button.no-files{
	background: linear-gradient(180deg, #757575, #555555);
}
.card-button .img-curso{
	filter: grayscale(100%) invert(1) brightness(1000%);
	width: 60px;
}
.card-button .subtitle{
	font-size: 0.75rem;
	display: block;
	font-weight: 400;
	color: #ddd;
}

.spin-loading{
	height: 20px;
    width: 20px;
    border: 2px solid #fff;
    border-bottom: 2px solid transparent;
    animation: rotate-spin 0.8s linear infinite;
    margin-left: 5px;
    border-radius: 50px;
    display: none;
}
.btn-download .spinner-border{
	width: 20px;
	height: 20px;
}
.btn-download{
	text-decoration: none;
	width: 200px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: #333;
	border-radius: 5px;
	font-size: 0.9rem;
	font-weight: 600;
	padding: 8px 20px;
	border: none;
	line-height: 1rem;
	box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}
.btn-download .spinner-border{
	display: none;
}

@keyframes rotate-spin{
	from{
		transform: rotate(0deg);
	}
	to{
		transform: rotate(360deg);
	}
}





@media screen and (max-width: 768px){
	h3{
		font-size: 1.2rem;	
	}
	h5{
		font-size: 1rem;	
	}
	.content-wrapper{
		padding-top: 60px;
	}
	.content-wrapper .content-collapses .collapse-item .collapse-button{
		padding: 0 15px;
		font-size: 0.8rem;
	}
	.content-wrapper .content-collapses .collapse-item .collapse-button .title-content{
		max-width: 90%;
	}
	.content-wrapper .content-collapses .collapse-item .collapse-button .action-collapse .line{
		height: 12px;
		width: 3px;
	}
	.content-wrapper .content-collapses .collapse-item .collapse-button[aria-expanded="true"] .action-collapse .line{
		height: 16px;
	}
	.content-wrapper .content-collapses .collapse-item .collapse-button .action-collapse .line:first-child{
		transform: rotate(-45deg) translate(-9px, -2px);
	}
	.content-wrapper .content-collapses .collapse-item .collapse-button .action-collapse .line:last-child{
		transform: rotate(45deg) translate(-5px, -5px);
	}
	.content-wrapper .content-collapses .collapse-item .collapse-button[aria-expanded="true"] .action-collapse .line:first-child{
		transform: rotate(45deg) translate(5px, 5px);
	}
	.content-wrapper .content-collapses .collapse-item .collapse-button[aria-expanded="true"] .action-collapse .line:last-child{
		transform: rotate(-45deg) translate(6px, -6px);
	}
	.content-wrapper .content-collapses .collapse-item .collapse-body{
		padding: 0;
		padding-bottom: 15px;
	}
	.content-wrapper .content-collapses .collapse-item .collapse-body .card-body .flex-content, .content-wrapper .content-collapses .collapse-item .collapse-body .card-body .types-content{
		flex-direction: column;
	}
	.content-wrapper .content-collapses .collapse-item .collapse-body .card-body .flex-content .select-content{
		width: 100%;
	}
	.content-wrapper .content-collapses .collapse-item .collapse-body select.form-control{
		height: 30px;
		font-size: 0.8rem!important;
		font-weight: 500;
	}
	.content-wrapper .content-collapses .collapse-item .collapse-body .card-body .flex-content .buttons-content{
		flex-direction: column;
		width: 100%;
	}
	.btn_custom{
		height: 30px;
		font-size: 0.8rem;
	}
	.content-wrapper .content-collapses .collapse-item .collapse-body .card-body .box-col-upload{
		width: 100%;
	}
	.content-wrapper .content-collapses .collapse-item .collapse-body .card-body .box-col-upload .upload-content h5{
		height: 30px;
		width: 100px;
		font-size: 0.9rem;
	}
	.checkbox-content .fakecheck::before{
		height: 20px;
		width: 40px;
	}
	.checkbox-content .fakecheck::after{
		width: 16px;
		height: 16px;
	}
	.checkbox-content input[type='checkbox']:checked + .fakecheck::after{
		left: calc(100% - 18px);
	}
	.checkbox-content{
		font-size: 0.8rem;
	}
	.content-wrapper .content-collapses .collapse-item .collapse-body .card-body .upload-content .form-control[type='file']{
		font-size: 0.65rem;
	}
	.content-wrapper .content-collapses .collapse-item .collapse-body .btn-envia-prova{
		max-width: 90%;
		font-size: 0.8rem;
		height: 40px;
		margin: 0 auto;
	}
	
	.card-button {
	    color: #fff;
	    padding: 10px 15px;
	    font-weight: 500;
	    font-size: 0.9rem;
	    text-decoration: none;
	    transition: all 0.2s ease-in-out;
	    min-height: 100px;
	    border-radius: 5px;
	    background: linear-gradient( 180deg, rgba(0,152,155,1), rgba(0,94,120,1));
	    display: flex;
	    align-items: center;
	    justify-content: flex-start;
	}
	.card-button .img-curso{
		width: 40px;
	}
	.card-button .qtd-files{
		position: absolute;
		border-radius: 50px 0 0 50px;
		box-shadow: none;
		right: 0;
		top: auto;
		bottom: 0;
		background: #fff;
		color: #0db4ae;
		padding: 6px 10px;
		font-size: 0.7rem;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 5px;
		text-align: center;
		border-radius: 15px 15px 0 0;
		line-height: 1;
		width: 100%;
	}
	
	 .content-wrapper .content-collapses .coordenador-item .collapse-body{
	 	padding: 15px;
	 	
	 }
	 .content-wrapper .content-collapses .coordenador-item .collapse-body .card-body .file-content .link-file{
		font-size: 0.75rem;
		font-weight: 500;
		border-radius: 5px;
		padding: 5px 5px;
		border: none;
		box-shadow: 1px 1px 4px rgb(0 0 0 / 50%);
		word-break: break-all;
	 }
	 .content-wrapper .content-collapses .coordenador-item .collapse-body .card-body label.text-center{
	 	font-size: 0.8rem;
	 }
	 .content-wrapper .content-collapses .path-pages{
	 	font-size: 0.65rem;
	 }
}










/*****************
	UB LOADING  
******************/
.ub-loading {
	z-index: 9999;
	position: fixed;
	background: radial-gradient( circle farthest-corner at 10% 20%,  rgba(0,152,155,1) 0.1%, rgba(0,94,120,1) 94.2% );
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.ub-loading svg{
	width: 22rem;
	height: 22rem;
}
.ub-loading .brasao-svg-loading{
	stroke: #fff;
	fill: transparent;
	stroke-width: 1.5;
	stroke-dashoffset: 4000;
	stroke-dasharray: 4000;
	animation: dashLoading 5s linear forwards;
}
.ub-loading .ub-loading-text{
	color: #fff;
	font-size: 1rem;
	font-weight: 200!important;
	line-height: 0;
	margin-top: -20px;
}
.ub-loading .ub-loading-text span{
	font-size: 3rem;
	letter-spacing: -5px;
	color: #009C9C;
}
.ub-loading .ub-loading-text span:nth-child(2){
	animation: dotsLoading 1s linear forwards infinite;
	animation-delay: 0.25s;
}
.ub-loading .ub-loading-text span:nth-child(3){
	animation: dotsLoading 1s linear forwards infinite;
	animation-delay: 0.5s;
}
.ub-loading .ub-loading-text span:nth-child(4){
	animation: dotsLoading 1s linear forwards infinite;
	animation-delay: 0.75s;
}

@keyframes dashLoading {
	95%{
		fill: transparent;
		stroke-dashoffset: 0;
		stroke: #fff;
		stroke-width: 1.5;
	}
	100%{
		stroke: #fff;
		stroke-dashoffset: 0;
		fill: #fff;
		stroke-width: 0.1;
	}
}
@keyframes dotsLoading {
	0%{
		opacity: 0.2;
	}
	50%{
		opacity: 1;
	}
}
/*****************
	UB LOADING  
******************/




.content-input-file-prova,
.content-input-file-gabarito{
	border: 1px dashed #fff;
	position: relative;
}
.content-input-file-gabarito{
	display: none;
	margin-top: 3rem;
}
.content-input-file-prova .titulo-box,
.content-input-file-gabarito .titulo-box{
    font-size: 0.9rem;
    color: #fff;
    background: #0db4ae;
    border-radius: 8px 8px 0 0;
    width: calc(100% + 2px);
    height: 30px;
    position: absolute;
    top: -30px;
    left: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
	border: none;
}
.content-input-file-gabarito .titulo-box{
	background: #eee;
	color: #333;
}
.content-input-file-prova .js_input_file,
.content-input-file-gabarito .js_input_file_gab{
	width: 100%;
	height: 100%;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	left: 0;
	top: 0;
}
.content-input-file-prova .js_input_file,
.content-input-file-gabarito .js_input_file_gab{
	display: none;
}
.content-input-file-prova .js_input_file + .label-input-file,
.content-input-file-gabarito .js_input_file_gab + .label-input-file{
    font-size: 0.9rem;
    height: 60px;
    color: white;
    background-color: rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}
.content-input-file-gabarito .js_input_file_gab:focus + .label-input-file,
.content-input-file-prova .js_input_file:focus + .label-input-file,
.content-input-file-gabarito .js_input_file_gab + .label-input-file:hover,
.content-input-file-prova .js_input_file + .label-input-file:hover{
    background-color: rgba(0,0,0,0.4);
    cursor: pointer;
}

.upload-icon{
	animation: moveIcon 1.8s ease-in-out infinite;
}
@keyframes moveIcon{
	0%,100%{
		transform: translateY(-3px);
	}
	50%{
		transform: translateY(3px);
	}
}


.form-zip-download{
	width: 100%;
}

.modal-zip .close{
	background: #c93737;
    outline: none;
    border: none;
    height: 30px;
    width: 30px;
    color: #fff;
    border-radius: 5px;
}

.modal-zip .modal-header,
.modal-zip .modal-footer{
	border: none;
}
.modal-zip .modal-content{
	padding: 15px;
	background: linear-gradient( 180deg, rgba(0,152,155,1), rgba(0,94,120,1));
}
.modal-zip .modal-title{
	color: #fff;
}
.modal-zip .check-radio{
	background: transparent;
	border: 2px dashed #ddd;
	color: #ddd;
	border-radius: 100px;
	width: 100%;
	display: block;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
	font-weight: 600;
}
.modal-zip .check-radio:hover{
	border: 2px dashed #fff;
	color: #fff;
}
.modal-zip .modal-body input[type="radio"]{
	display: none;
}
.modal-zip .modal-body input[type="radio"]:checked + label{
	background: #fff;
	border: 2px solid #fff;
	color: rgba(0,94,120,1);
	transform: translateY(-5px);
	box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
}
.modal-zip .modal-body input[type="radio"]:checked + label::before{
	content:"✔";
	background: radial-gradient( circle farthest-corner at 10% 20%,  rgba(0,152,155,1) 0.1%, rgba(0,94,120,1) 94.2% );
	padding: 4px;
	height: 30px;
	width: 30px;
	position: relative;
	border-radius: 50px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 5px;
}
.modal-zip .modal-body label{
	color: #fff;
}
.modal-zip .modal-body .form-control:focus,
.modal-zip .modal-body .form-control{
	border: none;
	border-radius: 0;
	border-bottom: 2px solid #fff;
	color: #fff;
	background: transparent;
	box-shadow: none;
	font-size: 1.125rem;
}
.modal-zip .modal-body .form-control::placeholder{
	color: #d5d5d5;
}


.js_info_box{
	font-size: 1rem;
	color: #fff;
}
.js_info_msg{
	background: #eee;
	border: 1px solid #333;
	position: absolute;
	min-width: 100px;
	min-height: 40px;
	display: flex;
	border-radius: 8px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	overflow: hidden;
	box-shadow: 0 0 10px rgba(212,175,55,0.75);
	z-index: 999;
}
.js_info_msg .title_info{
	text-align: center;
	font-weight: 600;
	color: #fff;
	width: 100%;
	padding: 4px 15px;
	font-size: 0.8rem;
	margin: 0!important;
	background: #ccc;
}
.js_info_msg .title_info.success{
	background: #2ad950;
}
.js_info_msg .title_info.warning{
	background: #ebab37;
}
.js_info_msg .title_info.info{
	background: #5386e3;
}
.js_info_msg .msg_info{
	width: 100%;
	color: #555;
	font-size: 0.75rem;
	padding: 15px;
}
.link-file{
	display: block;
	font-size: 0.8rem;
	font-weight: 600;
	border-radius: 100px;
	padding: 5px 20px;
	border: 1px solid #fff;
	text-decoration: none;
	background: #fff;
	color: #444;
	box-shadow: 1px 1px 4px rgb(0 0 0 / 50%);
	text-align: center;
}
.btn-reenviar-prova{
    margin-top: 30px;
    color: #fff;
    width: 100%;
    border-radius: 50px;
    display: block;
    padding: 10px 5px;
    background: #f36500;
    border: none;
    display: flex;
    box-shadow: 1px 1px 4px rgb(0 0 0 / 30%);
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}

.coord-disc-prova{
	margin-bottom: 20px;
	overflow: auto;
}
.coord-disc-prova .title-disc-container{
	display: flex;
	align-items: flex-end;
	gap: 5px;
}
.coord-disc-prova .title-disc,
.coord-disc-prova .qtd-alunos-disc{
    padding: 8px 15px;
    border-radius: 5px 5px 0 0;
    background: #0db4ae;
	color: #fff;
    font-size: 0.8rem;
    font-weight: 400;
    margin: 0;
    border-bottom: 1px solid #058b86;
    margin: 0;
    min-height: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 15px;
    display: inline-flex;
}
.coord-disc-prova .title-disc{
	width: 75%;
	font-weight: 500;
}
.coord-disc-prova .qtd-alunos-disc{
	width: 25%;
}
.coord-disc-prova .table{
	display: none;
	margin: 0;
}
.coord-disc-prova .table thead{
	background: #05958f;
	border: 1px solid #0db4ae;
	font-size: 0.8rem;
	text-align: center;
	color: #eee;
}
.coord-disc-prova .table tbody tr{
	transition: all 0.2s ease-in-out;
}
.coord-disc-prova .table tbody tr:hover{
	background-color: rgba(255,255,255,0.2);
}
.coord-disc-prova .table tbody {
	border: none;
}
.coord-disc-prova .table .FILEPROVA{
	min-width: 300px;
}
.coord-disc-prova .table .QTD{
	min-width: 100px;
}
.coord-disc-prova .table tbody td{
	text-align: center;
	vertical-align: middle;
	font-size: 0.8rem;
	color: #fff;
	border: 1px solid #0db4ae;
}
.coord-disc-prova .table .flex-buttons{
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: center;
}
.coord-disc-prova .table .flex-buttons .btn-aprova,
.coord-disc-prova .table .flex-buttons .btn-reprova{
	width: 50%;
	text-decoration: none;
	height: 30px;
	font-size: 0.75rem;
	min-width: 80px;
	color: #fff;
	display: flex;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
}
.coord-disc-prova .table .flex-buttons .btn-aprova{
	background: #40bb40;
}
.coord-disc-prova .table .flex-buttons .btn-reprova{
	background: #a91a1a;
}
.coord-disc-prova .table .input_qtd{
	max-width: 100px;
	height: 30px;
	margin: 0 auto;
	font-size: 0.9rem;
	text-align: center;
}
.badge{
	font-size: 0.8rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	line-height: 0;
	box-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

.Loading_Geral{
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(0,0,0,0.85);
	color: #fff;
	align-items: center;
	justify-content: center;
	z-index: 99999999999999;
	display: none;
}

.info-mudar-arquivo{
	display: none;
	background: rgba(0,0,0,0.2);
	border-radius: 0 0 100px 100px;
	padding: 0 30px;
}
.info-mudar-arquivo small{
	font-size: 0.75rem;
	color: #d7d7d7;
}

.minicard-reprovacao{
	max-width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 5px auto;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 2px 2px 4px #555;
}
.minicard-reprovacao .minicard-header{
    padding: 5px 15px;
    font-size: 0.8rem;
    color: #fff;
    background: orange;
    display: block;
    width: 100%;
}
.minicard-reprovacao .minicard-body{
    font-size: 0.8rem;
    color: #555;
    padding: 15px;
    background: #fff;
    display: block;
    width: 100%
}
.form-control:disabled, .form-control[readonly]{
	background: transparent;
	border: none;
	color: #fff;
	font-weight: 600;
}


/* DATATABLE */
div.dt-buttons{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin: 0 auto;
	margin-bottom: 15px;
	max-width: 290px;
}
div.dt-buttons .buttons-excel{
	background: #227822;
	border-radius: 5px!important;
	border: none;
}
div.dt-buttons .buttons-pdf{
	background: #b70606;
	border-radius: 5px!important;
	border: none;
}
div.dataTables_wrapper div.dataTables_filter{
	margin-right: 15px;
	margin-bottom: 15px;
}
div.dataTables_wrapper div.dataTables_filter label{
	width: 100%;
}
div.dataTables_wrapper div.dataTables_filter input{
	height: 40px;
	margin: 0;
	width: 100%;
	display: block;
}
table.dataTable{
	font-size: 0.8rem;
}
table.dataTable>tbody>tr{
	vertical-align: middle;
}

.FORM-ALTERAR-DATA{
	border-radius: 3px;
	overflow: hidden;
	flex-wrap: wrap;
}

.FORM-ALTERAR-DATA input{
	width: 150px;
}

.FORM-ALTERAR-DATA button{
	width: 150px;
}

.BTN-ALTERAR-DATA:hover{
	transform: scale(1.01);
}

.dataTables_paginate{
	font-size: 10px;
}

.page-link{
	padding: 5px!important;
}


.FORM-ALTERAR-SENHA-PROFESSOR{
	border-radius: 3px!important;
	overflow: hidden!important;
	border: solid 1.5px #ddd!important;
}

.BTN-ALTERAR-SENHA-PROFESSOR{
	font-size: 12px;
}

.BTN-ALTERAR-SENHA-PROFESSOR:hover{
	transform: scale(1.01);
}


.btn-color{
	background: linear-gradient( 180deg, rgba(0,152,155,1), rgba(0,94,120,1))!important;
	box-shadow: 2px 2px 6px rgb(0 0 0 / 40%)!important;
	border-color: transparent!important;
}

.btn-color:focus{
	box-shadow: none!important;
	border-color: transparent!important;
}

.th_pendencias{
	background: #d1e7dd!important;
	color: #000!important;
	padding: 0.5rem 0.5rem!important;
}

.fab-whatsapp{
	position:fixed;
	bottom:2vw;
	right:2vw;
	z-index:999;
	animation:zap 2s infinite linear
}

.fab-whatsapp .zap-icon{
	width:50px;
	height:50px
}

.fab-whatsapp .zap-icon .zap-path{
	fill: #0db4ae;
	transition:all 0.25s ease-in-out
}

.fab-whatsapp .zap-icon:hover .zap-path{
	fill: #4cd137
}


