:root {
  --amarillo: #f7d51f;
  --amarillo-hover: #fff6c8;
  --negro: #353535;
}

*{
	outline: none!important;
}

html{
	overflow-x:hidden;
	width: 100vw;
}
body{
	font-size: 12px!important;
}
.btn-info, .btn-info:focus {
    color: var(--negro)!important;
    background-color: var(--amarillo)!important;
    border-color: var(--amarillo)!important;
	box-shadow: none!important;
}
.btn-info:hover, .headTitle .btn-info.active {
    background-color: #ffe975!important;
    border-color: var(--amarillo)!important;
	box-shadow: 0 0 7px 2px var(--amarillo)!important;
}
.wrap-content{
	background-color: #f1f1f1;
	min-height: 100vh;
	clear: both;
    overflow: hidden;
	background-image: url(../images/bg.png);
}
.wrap-body{
	padding: 0 30px;
}
#leftmenu{
	position: fixed;
	min-height: 100vh;
	left:0;
	width:60px;
	background-color: var(--negro);
	padding-top: 22px;
}
#leftmenu ul {
    margin: 0;
    padding: 0;
}
#leftmenu ul li {
    list-style: none;
    text-align: center;
}
#leftmenu ul li a {
    display: inline-block;
    font-size: 19px;
    padding: 12px 0;
	color: var(--amarillo);
	box-sizing: border-box;
    width: 45px;
    height: 45px;
    border-radius: 45px;
	transition: all .2s ease;
	margin: 2px;
}
#leftmenu ul li a:hover, #leftmenu ul li a.active {
	color: var(--negro);
	background-color: var(--amarillo);
}
#topmenu {
	background-color: var(--negro);
    padding: 10px 20px 14px;
    color: white;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 20%), 0 1px 5px 0 rgb(0 0 0 / 12%);
    transition-duration: .2s;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-property: max-height,box-shadow;
	border-left: 7px solid var(--amarillo);
	
	background: -moz-linear-gradient(90deg, rgba(53,53,53,1) 36%, rgba(69,69,69,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(53,53,53,1) 36%, rgba(69,69,69,1) 100%);
	background: linear-gradient(90deg, rgba(53,53,53,1) 36%, rgba(69,69,69,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#353535",endColorstr="#454545",GradientType=1);
}
#contentblock{
	width: calc(100vw - 60px);
	position:relative;
	left: 60px;
}
.headTitle, .modal-header{
	padding: 20px 20px;
    margin: 15px 0 40px;
    background: var(--amarillo);
    border-radius: 8px;
	background: -moz-linear-gradient(90deg, rgba(247,213,31,1) 0%, rgba(212,163,15,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(247,213,31,1) 0%, rgba(212,163,15,1) 100%);
	background: linear-gradient(90deg, rgba(247,213,31,1) 0%, rgba(212,163,15,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f7d51f",endColorstr="#d4a30f",GradientType=1);
	box-shadow: 0 3px 3px #0000002b;
}
.headTitle.fixed{
	position: fixed;
    z-index: 99;
    width: calc(100vw - 120px);
    top: 0;
}
.modal-header{
    margin: 0;
    border-radius: 0;
}
.headTitle .filtros {
    margin-top: -5px;
}
.headTitle .filtros .showfiltros{
	vertical-align: top;
}
.headTitle .buscador{
	width: 100%;
	padding-top: 25px;
}
.buscador button, .btn-bottom{
	position: absolute;
    bottom: 2px;
}
.headTitle .buscador label{
	margin-bottom:2px;
}
.sectitle, .modal-header .modal-title{
	font-size: 20px;
    color: var(--negro);
    font-weight: bold;
}
.secinfo {
    margin-left: 30px;
    color: var(--negro);
	font-size: 14px;
    font-weight: normal;
}
.modal-filtros {
    background-color: #e2e2e2;
    padding: 12px;
    border-radius: 7px;
}
.modal-filtros input[type=checkbox]{
	vertical-align: text-bottom;
}
button.comBtns {
    background-color: transparent;
    border: 0;
    padding: 7px 15px;
	cursor: pointer;
}
button.comBtns:hover {
    background-color: var(--amarillo);
}
.form-group label{
	font-weight: bold;
}
.archivo {
    background-color: #f3f3f3;
    padding: 5px 20px;
    border-radius: 20px;
    margin-bottom: 5px;
    font-size: 15px;
    line-height: 26px;
}
.archivo:hover {
    background-color: #fff7cb;
}
.horario {
    box-shadow: 0 2px 4px #0000001a;
    border-radius: 15px;
    overflow: hidden;
	background-color: white;
}
.horarioHead {
    margin: 0;
}
.horarioHead > .row {
    background: -moz-linear-gradient(90deg, rgba(247,213,31,1) 0%, rgba(212,163,15,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(247,213,31,1) 0%, rgba(212,163,15,1) 100%);
	background: linear-gradient(90deg, rgba(247,213,31,1) 0%, rgba(212,163,15,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f7d51f",endColorstr="#d4a30f",GradientType=1);
    padding: 7px 0;
}
.horarioBody > .row {
    border-bottom: 1px solid #e4e4e4;
    padding: 6px 0;
}
.horarioBody > .row:hover {
    background-color: #fff7cb;
	cursor: default;
}
.horarioBody a{
	color: var(--negro)!important;
}
.horarioDia {
    border-bottom: 1px solid #d6d6d6;
    padding: 0 0 5px;
    margin: 0 0 5px;
}
.horarioDia:last-child {
    border-bottom: 0;
    padding: 0;
    margin: 0;
}
#total-pagos td {
    border-top: 1px solid black;
    padding-top: 7px;
    font-size: 15px;
}
.secfila {
    background-color: white;
    margin: 0 0 5px;
    border-radius: 10px;
    color: var(--negro);
    vertical-align: middle;
	padding: 10px 0px;
	align-items: center;
	display: flex;
}
.trBody {
    background-color: white;
    margin: 0 0 5px;
    border-radius: 10px;
    vertical-align: middle;
	text-align: center;
}
.trBody td{
	padding: 10px 0px;
    color: var(--negro);
	border-bottom: 1px solid #e2e2e2;
}
.secfila > div, .tablelabels > div  {
    flex: 1;
	position: relative;
}
.secfila:hover, .trBody tr:hover {
    background-color: var(--amarillo-hover);
}
.modal-body{
	background-color: #f1f1f1;
}
.modal-body .secfila input[type=checkbox]{
	display: inline-block;
    vertical-align: text-bottom;
    margin-left: 10px;
    margin-right: 10px;
}
.tablelabels {
	color: #ffffff;
    align-items: center;
    display: flex;
    margin: 0 0 10px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 11px;
    background-color: #696969;
    padding: 10px 0;
    border-radius: 6px;
	font-family: sans-serif!important;
}
.thHeader{
	color: #ffffff;
	text-align: center;
    text-transform: uppercase;
    background-color: #696969;
    border-radius: 6px;
    margin: 0 0 10px;
}
.thHeader th{
    font-size: 11px;
    padding: 10px 0;
    font-weight: bold;
	font-family: sans-serif!important;
}

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem;
    align-content: center;
    align-items: center;
    text-align: center;
    justify-content: center;
	margin: 30px 0;
}
.pagination span a, .pagination .current {
    background-color: white;
    margin: 0 2px;
    padding: 5px 11px;
    text-align: center;
    display: block;
    font-weight: bold;
    color: var(--negro);
    text-decoration: none;
    border-radius: 0;
}
.pagination .current, .pagination a:hover {
	background-color: var(--amarillo);
}

.input_log{
    width:100%;
    background:#f7d51f;
    color: #353535;
    border-radius:25px;
    text-align:center;
    border:none;
    height: 35px;
}

input:focus{
    outline: none;
}

.editForm {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}

.editForm form > .form-group{
	margin-bottom: 20px;
}
.editForm form > .form-group label{
    font-weight: bold;
}
.linear-icon{
	font-size: 50px;
	background: -webkit-linear-gradient(#fad352,#fed44f, #353535 ,black);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.btn_remember{
    background: #353535;
    color: #f7d51f;
    border: none;
    border-radius: 13px;
    padding: 8px;
}

.footer_lists{
    /*max-width: 100%;*/
    background:#353535;
    position: absolute;
    left: 0;
    right: 0;
    /*margin-top: 20px;*/
}

.footer_lists img{
    margin-top: -20px;
}

.footerList, .footerList a{
	list-style: none;
	color: white
}

.footerList a:hover{
    color: white;
}

.footerList a.footerRem{
	color: #f7d51f ;
}

.remember_pass:hover{
    cursor: pointer;
    font-weight: bold;
}

.button_login{
    cursor: pointer;
    background:#f7d51f;
    color:#353535;
    border-radius:25px;
    padding:13px 58px;
    font-size:large;
    font-weight:400;
    position:absolute;
    left:31%;
    top:85%;
    border-top: 9px solid lightgrey;
    border-left: 9px solid lightgrey;
    border-right: 9px solid lightgrey;
    border-bottom: none;
}
.accesA{
	background: #353535;
	color: #f7d51f !important;
	font-weight: initial;
	font-size: 20px;
	border-radius: 25px;
	padding: 13px;
	position: absolute;
	top: -12%;
	left: 31%;
	border-bottom: 9px solid lightgrey;
	border-left: 9px solid lightgrey;
	border-right: 9px solid lightgrey;
}

.login-username{
	padding: 3.5vh 15px 5px 15px;
}

.login-password{
	padding: 5px 15px 3.5vh 15px;
}

.flotante{
	-webkit-box-shadow: 0px 1px 40px 10px rgba(0,0,0,0.32);
	-moz-box-shadow: 0px 1px 40px 10px rgba(0,0,0,0.32);
	box-shadow: 0px 1px 40px 10px rgba(0,0,0,0.32);
	border-radius: 20px;
	background: #ece9e9;
}

#pestanas_salas {
	cursor: pointer;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    border-bottom: 1px solid #dee2e6 !important;
    margin-right: 15px;
    margin-left: -15px;
}

#pestanas_salas, .nav-pestana {
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

.nav-pestana {
    display: block;
    padding: .5rem 1rem;
}

a.nav-link.active, a.nav-pestana.active {
    background-color: #fff !important;
    font-weight: bold !important;
    border-color: #dee2e6;
}
.nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    background-color: #e4e4e4;
    color: #a5a5a5;
    margin-right: 4px;
}

div.mdl-menu__container:last-child {
    top: -70px !important;
    right: 0px !important;
}

#topmenuname .mdl-menu__container{
    top: 50px !important;
    right: 0px !important;
}

#tabla_cajas td, #tabla_cajas th{
    padding: 14px 7px;
}

.on_rec{ 
	border-radius: 15px;
	width: 8px;
	height: 8px;
	background-color: red;
	animation-name: rec;
	animation-duration: 2s;
	animation-iteration-count: infinite;
}
.btnactive {
    width: 100px;
}
.btnactive.active {
    background-color: #d2d2d2!important;
    border: #d2d2d2!important;
    font-style: italic;
    color: grey!important;
}

.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn){
    width: 100% !important;
}

.bootstrap-select > .dropdown-menu{
    min-width: 500px !important;
    width: 100%;
}
.mes_selector{
    max-width: 100%;
    margin-right: 0px !important;
    margin-left: 0px !important;
    padding: .5rem;
}
.mes_selector:hover{
    background: #e9e9e9;
    cursor: pointer;
}

@keyframes rec {
	from {background-color: red;color:red;}
	to {background-color: white;color:white;}
}

.almhead{
	background-image: url(../images/desktop.jpg);
    min-height: 50px;
    width: 100vw;
    position: relative;
    margin: 0 -30px;
    padding: 50px 0;
    background-size: cover;
    background-position: top;
}
.almmenu {
    background-color: var(--negro);
    margin: 0 -30px 40px;
    color: white;
}
.almmenu ul {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0;
    position: relative;
}
.almmenu li {
    display: inline-block;
}
.almmenu li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
	padding: 10px 20px;
	display: block;
}
.almmenu li a:hover {
    background-color: var(--amarillo);
    color: var(--negro);
}
.almnombre {
    font-weight: bold;
    font-size: 30px;
    display: block;
    line-height: 30px;
	background-color: #ecedf1c4;
    border-radius: 5px;
}
.almpre {
    font-weight: bold;
    font-size: 17px;
    line-height: 20px;
}
.bgInpt {
    background-color: #f1f1f1;
    padding: 4px 7px;
    margin: 2px 0 12px;
    color: var(--negro);
	cursor: default;
	pointer-events: none;
	-moz-user-select: none; 
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none; 
	min-height: 28px;
}
.firstlvl {
    background-color: white;
    padding: 8px 0;
    font-size: 15px;
	cursor: default;
}
.firstlvl:hover, .firstlvl.active, .filelvl:hover{
	background-color: var(--amarillo-hover);
}
.scndlvl {
    background-color: #fbfbfb;
    box-shadow: inset 0 0 10px #0000002b;
	margin-bottom:20px;
}
.filelvl {
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #e8e8e8;
    color: var(--negro);
    cursor: pointer;
}
.elemBlock {
    margin-bottom: 7px;
}
.emit:hover{
	background-color: var(--amarillo);
}
.editForm.squareBorder {
    border-radius: 0;
    border-left: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
}
.frame-content iframe {
    max-width: 100%;
    max-height: 200px;
}

.profe_asg_list{
    cursor:pointer;
    margin-bottom: 5px;
}

.profe_asg_list:hover{
    font-weight: bold;
    text-decoration: underline;
    color: burlywood;
}

.videoclase {
    background-color: white;
    box-shadow: 0 1px 40px #00000026;
	padding: 10px;
	margin-top: 17px;
}

.videoclase label {
    margin-top: 10px;
    font-weight: bold;
    color: #505050;
	word-break: break-all;
}

.archivoclase {
    background-color: white;
    box-shadow: 0 1px 40px #00000026;
	padding: 10px;
	margin-top: 17px;
	cursor: pointer;
}

.archivoclase label {
    margin-top: 10px;
    font-weight: bold;
    color: #505050;
	word-break: break-all;
	cursor: pointer;
	font-size: 12px;
}
.archivoclase .icono {
    color: var(--amarillo);
    font-size: 35px;
    margin-bottom: 12px;
}

.section-title {
    text-align: left;
    font-size: 16px;
    background-color: #e4e4e4;
    padding: 6px 10px;
    color: #636363;
    border-radius: 50px;
}

#drop-area {
    border: 2px dashed #ccc;
    border-radius: 20px;
    font-family: sans-serif;
    padding: 20px;
}
#drop-area.highlight {
    border-color: purple;
}
p {
    margin-top: 0;
}
.my-form {
    margin-bottom: 10px;
}
#gallery {
    margin-top: 10px;
}
#gallery img {
    width: 150px;
    margin-bottom: 10px;
    margin-right: 10px;
    vertical-align: middle;
}
.button {
    display: inline-block;
    padding: 10px;
    background: #ccc;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid #ccc;
}
.button:hover {
    background: #ddd;
}
#fileElem {
    display: none;
}

#progress-bar{
    width:100%;
}

.progressDiv{
    padding: 0 !important;
    margin-top: 15px;
}

.tox-promotion {
    display: none;
}

@media (max-width: 420px){
	.logosMovil{
		width: 50% !important;
	}
	.logosMovil h3{
		font-size: 1.2rem;
		padding-left: 20px !important;
	}
	.entry-title-left h2{
		text-align: center;
		padding-left: 15px;
		
	}
	.accesA{
		left: 18% !important;
	}
	.flotante{
		margin-top: 40px;
	}
	.login-submit input{
		left: 20% !important;
	}
}


@media(min-width: 421px) and (max-width: 768px){
	.accesA{
		left: 17% !important;
	}
	.flotante{
		margin-top: 40px;
	}
	.login-submit input{
		left: 19% !important;
	}
}

@media(min-width: 769px) and (max-width: 1024px){
	.accesA{
		left: 25% !important;
	}
	.flotante{
		margin-top: 40px;
	}
	.login-submit input{
		left: 27% !important;
	}
}