/* Lazy CSS */

@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
@import "https://fonts.googleapis.com/css?family=Inter:100,200,300,400,500,600,700,800,900";
@import "https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap";
@import url('servicios_escolares.css');

/* cambios css para PC */
@media only screen
	and (min-device-width: 736px)
{
	#topbar
	{
		height: 40px;
		margin: 0;
		padding: 0;
	}
}

/*
.nav-link:hover
{
	color:#000 !important;
	background-color: #ddd;
	border-radius: .2rem;
	padding-top: 0;
	padding-bottom: 0;
}

.nav-link:active
{
	color:#fff !important;
	background-color: #999;
	border-radius: .6rem;
}
//*/

#footer_fecha
{
	margin-right: 2em;
}

#footer_hora
{
	margin-right: 2em;
}

#ayuda_btn
{
	cursor: pointer;
}

.footer
{
	position: fixed;
	bottom: 0;
	width: 100%;
	/* Set the fixed height of the footer here */
	height: 20px;
	line-height: 20px; /* Vertically center the text there */
	background-color: #f5f5f5;
	z-index: 110; /* Behind the navbar */
	font-size: .8em;
}

.bootbox_titulo
{
	width:150px;
}
.modal-title{
	width: 100%;
}
body
{
	font-family: 'Inter', sans-serif;
	background-color: #eeeeee48;
	/* background: #b7c4ca27; */
	color: #000;
}

p
{
	font-family: 'Inter', sans-serif;
	font-weight: 300;
	line-height: 1.7em;
	color: #000;
}

pre
{
	font-family: 'Inter', sans-serif;
	font-size: 16px;
}
/*
a, a:hover, a:focus
{
	color: inherit;
	text-decoration: none;
	transition: all 0.3s;
}
//*/
.bg-purple
{
	background-color: #6f42c1;
}

.lh-100
{
	line-height: 1;
}
.lh-125
{
	line-height: 1.25;
}
.lh-150
{
	line-height: 1.5;
}

.enlace_desactivado
{
	cursor: not-allowed;
	pointer-events: none;
}

.btn:disabled
{
	cursor: not-allowed;
}

.btn:disabled:hover
{
	cursor: not-allowed;
}

.navbar
{
	padding: 5px;
	border: none;
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-btn
{
	box-shadow: none;
	outline: none !important;
	border: none;
}

.tachado
{
	color: #8391A1;
	text-decoration: line-through;
}

.line
{
	width: 100%;
	height: 1px;
	border-bottom: 1px dashed #ddd;
	margin: 40px 0;
}

.oculto
{
	display: none;
}

/* ---------------------------------------------------
	SIDEBAR STYLE
----------------------------------------------------- */

.wrapper
{
	margin-top: 40px;
	display: flex;
	width: 100%;
	align-items: stretch;
	perspective: 1500px;
	margin-bottom: 30px;
	background: #F9F9F9 url('../images/background.png') repeat fixed;
}


#sidebar
{
	min-width: 250px;
	max-width: 250px;
	border-radius: 5px;
	color: #fff;
	transition: all 0.6s cubic-bezier(0.945, 0.020, 0.270, 0.665);
	transform-origin: bottom left;
}

#sidebar.active
{
	margin-left: -250px;
	transform: rotateY(100deg);
}

#sidebar .sidebar-header
{
	text-align: center;
	padding: 5px;
	background: #585f66;
}

#sidebar ul.components
{
	padding: 5px 0;
	border-bottom: 1px solid #848f99;
}

#sidebar ul p
{
	color: #fff;
	padding: 10px;
}

#sidebar ul li a
{
	padding: 5px;
	font-size: .8em;
	display: block;
}
#sidebar ul li a:hover
{
	color: #7386D5;
	background: #fff;
}

#sidebar ul li.active > a, a[aria-expanded="true"]
{
	color: #fff;
	background: #79838c;
}


a[data-toggle="collapse"]
{
	position: relative;
}

.dropdown-toggle::after
{
	display: block;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}

ul ul a
{
	font-size: 0.75em !important;
	padding-left: 30px !important;
	background: #79838c;
}

ul.CTAs
{
	padding: 20px;
}

ul.CTAs a
{
	text-align: center;
	font-size: 0.9em !important;
	display: block;
	border-radius: 5px;
	margin-bottom: 5px;
}

a.download
{
	background: #fff;
	color: #7386D5;
}

a.article, a.article:hover
{
	background: #6d7fcc !important;
	color: #fff !important;
}



/* ---------------------------------------------------
	CONTENT STYLE
----------------------------------------------------- */
#content
{
	width: 100%;
	padding: 5px 20px;
	margin-top: 20px;
	background-color: #455a64;
	/*min-height: 100vh;*/
	transition: all 0.3s;
}

#sidebarCollapse
{
	width: 25px;
	height: 25px;
	background: #f5f5f5;
	cursor: pointer;
}

#sidebarCollapse span
{
	width: 80%;
	height: 2px;
	margin: 0 auto;
	display: block;
	background: #555;
	transition: all 0.8s cubic-bezier(0.810, -0.330, 0.345, 1.375);
	transition-delay: 0.2s;
}

#sidebarCollapse span:first-of-type
{
	transform: rotate(45deg) translate(2px, 2px);
}
#sidebarCollapse span:nth-of-type(2)
{
	opacity: 0;
}
#sidebarCollapse span:last-of-type
{
	transform: rotate(-45deg) translate(1px, -1px);
}


#sidebarCollapse.active span
{
	transform: none;
	opacity: 1;
	margin: 2px auto;
}
#navbarSupportedContent
{
	line-height: .9;
}


/* ---------------------------------------------------
	MEDIAQUERIES
----------------------------------------------------- */
@media (max-width: 768px)
{
	#sidebar
	{
		margin-left: -250px;
		transform: rotateY(90deg);
	}
	#sidebar.active
	{
		margin-left: 0;
		transform: none;
	}
	#sidebarCollapse span:first-of-type,
	#sidebarCollapse span:nth-of-type(2),
	#sidebarCollapse span:last-of-type
	{
		transform: none;
		opacity: 1;
		margin: 5px auto;
	}
	#sidebarCollapse.active span
	{
		margin: 0 auto;
	}
	#sidebarCollapse.active span:first-of-type
	{
		transform: rotate(45deg) translate(2px, 2px);
	}
	#sidebarCollapse.active span:nth-of-type(2)
	{
		opacity: 0;
	}
	#sidebarCollapse.active span:last-of-type
	{
		transform: rotate(-45deg) translate(1px, -1px);
	}

}


/* Animación Reloj */
.animacion
{
	/*position: absolute;*/

	animation-name: parpadeo;
	animation-duration: 1s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;

	-webkit-animation-name:parpadeo;
	-webkit-animation-duration: 1s;
	-webkit-animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
}

@-moz-keyframes parpadeo
{
	0% { opacity: 1.0; }
	50% { opacity: 0.0; }
	100% { opacity: 1.0; }
}

@-webkit-keyframes parpadeo
{
	0% { opacity: 1.0; }
	50% { opacity: 0.0; }
	100% { opacity: 1.0; }
}

@keyframes parpadeo
{
	0% { opacity: 1.0; }
	50% { opacity: 0.0; }
	100% { opacity: 1.0; }
}




/*
* Login
*/

:root
{
	--input-padding-x: .75rem;
	--input-padding-y: .75rem;
}

#recordar
{
	width: 20px;
	height: 20px;
}
#recordar_lbl
{
	line-height: 20px;
}
.img-signin{
	transform: translateY(-30px);
}
.form-signin
{
	width: 100%;
	max-width: 500px;
	height: auto;
	padding: 15px;
	margin: auto;
	transform: translateY(-120px);
	transition: all ease 0.5s;
}
.form-signin-restore-pass{
	width: 100%;
	max-width: 750px;
	height: auto;
	padding: 15px;
	margin: auto;
	transform: translateY(-120px);
	transition: all ease 0.5s;
}
.form-home-button{
	width: auto;
	color: var(--usb-color);
	font-size: 1rem;
	padding: .4rem;
	transition: all ease .4s;
	position: absolute;
	transform: translate(300px, -60px);
}
.form-home-button:hover{
	width: auto;
	font-size: 1.1rem;
	padding: .4rem;

}
.login {
    background-color: #005ba0 !important;
    overflow: hidden;
	padding: 4rem;
	padding-bottom: 5rem;
}
.login_div
{
	box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
	height: 400px;
	position: absolute;
	right: 50px;
	top: 50px;
	width: 350px;
}

#close_div_login
{
	float: left;
	cursor: pointer;
	top: 5px;
	left: 5px;
}

/* Tareas */
#tareas_div
{
	box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
	height: 400px;
	position: absolute;
	right: 85px;
	top: 40px;
	width: 350px;
    z-index: 900;
}

#close_div_tareas
{
	float: left;
	cursor: pointer;
	text-align: center;
	top: 10px;
	left: 10px;
	width: 24px;
	height: 24px;
}

.main-wrapper
{
	display: flex;
	align-items: center;
	justify-content: center;
}

.signboard-wrapper
{
	width: 400px;
	height: 300px;
	margin: 20px;
	position: relative;
	flex-shrink: 0;
	transform-origin: center 12px;
	animation: 1000ms init, 1000ms init-sign-move ease-out 1000ms, 3000ms sign-move 2000ms infinite;
}
.signboard-wrapper .signboard
{
	color: #ffffff;
	font-family: "Lato", sans-serif;
	font-size: 80px;
	font-weight: bold;
	background-color: #e00909;
	width: 100%;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 0;
	border-radius: 5% / 8%;
	text-shadow: 0 -0.02em #7e0505;
}
.signboard-wrapper .string
{
	width: 150px;
	height: 150px;
	border: solid 5px #ad5700;
	border-bottom: none;
	border-right: none;
	position: absolute;
	top: 12%;
	left: calc(33.33333% - 10px);
	transform: rotatez(45deg);
}
.signboard-wrapper .pin
{
	width: 24px;
	height: 24px;
	position: absolute;
	border-radius: 50%;
}
.signboard-wrapper .pin.pin1
{
	background-color: #9f9f9f;
	top: 0;
	left: calc(50% - 12px);
}
.signboard-wrapper .pin.pin2, .signboard-wrapper .pin.pin3
{
	background-color: #9c0a00;
	top: 110px;
}
.signboard-wrapper .pin.pin2
{
	left: 80px;
}
.signboard-wrapper .pin.pin3
{
	right: 80px;
}

@keyframes init
{
	0%
	{
		transform: scale(0);
	}
	100%
	{
		transform: scale(1);
	}
}
@keyframes init-sign-move
{
	100%
	{
		transform: rotatez(3deg);
	}
}
@keyframes sign-move
{
	0%
	{
		transform: rotatez(3deg);
	}
	50%
	{
		transform: rotatez(-3deg);
	}
	100%
	{
		transform: rotatez(3deg);
	}
}

/* Estilos de la página de inicio */
:root{
	--usb-color: #0066b3;
	--usb-color-hover: #005ba0;
	--light-gray: #c9c9c9;
	--medium-gray: #999999;
}

.nav-link{
	font-size: 13px;
}
.nav-link.active{
	border: none;
	font-size: 13px;
	bottom: 0;
	height: 100%;
}

.div-row-card{
	margin-top:80px ;
}

.div-card{
	transition: all 0.5s;
}

.card-styles{
	/* min-height: 300px; */
	padding: 10px 0;
	background-color: white;
	border: solid 2px;
	border-color: var(--light-gray);
	border-radius: 15px;
	position: relative;
	overflow: hidden;
}

.card-styles:hover{
	border-color: var(--usb-color);
}

.card-styles:hover .icon-card{
	background-color: var(--usb-color);
	color: white;
}

.icon-card{
	font-size: 40px;
	border: 1px solid;
	border-radius: 15px;
	border-color: var(--light-gray);
	position: absolute;
	bottom: 0;
	right: 0;
	width: 35%;
	height: 40%;
	transform: rotate(-35deg) translateY(55px);
	transition: all ease 0.5s;
}

.btn-card{
	padding: 10px;
	border-radius: 20px;
	border: 1px solid;
	border-color: var(--medium-gray);
	transition: all ease 0.5s;
	color: var(--medium-gray);
}

.btn-card:hover{
	background-color: var(--usb-color);
	color: white;
	text-decoration: none;
	border-color: var(--usb-color);
}

.text-card{
	min-height: 200px;
}

@media (max-width: 1000px) {

	.card-styles{
		margin-bottom: 20px;
	}

	.div-card{
		margin-top:40px ;
	}

	.form-signin
	{
		width: 100%;
		max-width: 450px;
		height: auto;
		padding: 20px;
		margin: auto;
		transform: translateY(-100px);
		transition: all ease 0.5s;
	}
	.form-signin-restore-pass{
		width: 100%;
		max-width: 450px;
		height: auto;
		padding: 15px;
		margin: auto;
		transform: translateY(-120px);
		transition: all ease 0.5s;
	}
	.form-home-button{
		font-size: .8rem;
		transition: all ease .4s;
		transform: translate(170px, -35px);
	}
	.form-home-button:hover{
		font-size: .9rem;
	}
}

@media (max-width: 560px) {
	.form-home-button{
		font-size: .6rem;
		transition: all ease .4s;
		transform: translate(125px, -30px);
	}
	.form-home-button:hover{
		font-size: .7rem;
	}
	.card-styles{
		margin-bottom: 20px;
	}

	.form-signin
	{
		width: 100%;
		max-width: 300px;
		height: auto;
		padding: 20px;
		margin: auto;
		transform: translateY(-100px);
		transition: all ease 0.5s;
	}
	.form-signin-restore-pass{
		width: 100%;
		max-width: 320px;
		height: auto;
		padding: 15px;
		margin: auto;
		transform: translateY(-120px);
		transition: all ease 0.5s;
	}
	.div-card{
		margin-top:20px ;
	}
}
/* Finalizan estilos de la página de inicio */
@media print
{
	.no-imprimir *
	{
		display: none !important;
	}
	.watermark {
        position: fixed;
		text-align: center;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 5rem;
        color: rgba(0, 0, 0, 0.1);
        z-index: 1000;
        pointer-events: none;
        user-select: none;
    }
}

.fs-medium {
    font-size: 12px;
    font-weight: 300;
}
.collapse>.accordion-btn{
	width: 25%;
}
.text-coral{
	color: #FA8072;
}
@media (max-width: 768px) {
    /* .navbar-primary {
		padding: 15px;
        width: 100%;
        position: fixed;
        height: 100%;
        top: 210px;
		left: 0;
		bottom: 0;
        margin-top: 0px;
        margin-bottom: 20px;
		margin-right: 10px; */
        /* z-index: 100; */
		/* overflow: auto;
    }
    .collapsed {
        height: 100%;
    }
	.btn-menu{
		display: none;
	}
    .btn-expand-collapse {
        position: static;
        display: block;
        left: 0px;
        width: 100%;
        padding: 8px 0;
        color: grey;
        font-size: 20px;
        text-align: center;
		z-index: 50;
    }
    .navbar-primary.collapsed {
        width: 50px;
    }
    .main-content {
        margin-left: 50px;
        padding: 10px;
    }
    .collapsed+.main-content {
        margin-right: 0;
        margin-left: 0;
    }
    .foto_alumno {
        width: 80px;
        height: 80px;
    }
	.main-content.no-collapse{
		display: none;
	} */
	
}
/* Comienzan estilos del sidebar */