* {
	box-sizing: border-box;
  }
  
body{
	  background-color: #FAFAFF;
	  background-repeat: no-repeat;
	  background-attachment: fixed;
	  background-size: 100% 100%;
	  text-align: center;
	  margin: 0;
	  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }
  
  
  /*estilos boton login*/
  
  
  .btn_register{
	  width: 100%;
	  padding: 15px;
	  background-color: #219ebc;
	  border: 0;
	  box-sizing: border-box;
	  cursor: pointer;
	  font-weight: bold;
	  font-size: large;
	  color: white;
	  margin-top: 20px;
	  /* Para dar la apariencia de un boton */
	  -webkit-appearance: button;
	  -moz-appearance: button;
	  appearance: button;
	  text-decoration: none;
	  border-radius: 8px;
  
	}
	.btn_register:hover,.btn_register:active{
	  color:black;
	  background-color: #ffb703;
	  border-color:#ffb703;
	}
  

/*CODIGO LOGIN*/

.login_form, .contenedor{
	width: 40%;
	margin: 0 auto;
  }

/* logo principal 
*/

.logo_principal{
    object-fit: contain;
	margin: 0 auto;
}

/*titulos principales*/

.titulos_principales {
	text-align: center;
	color:#1C1C1C;
  }

.titulos_secundarios{	
	
	color: #1C1C1C;
	display: flex;
	overflow-x: auto;
	-ms-overflow-style: none; /* Hide the scrollbar for MS Edge */
	scrollbar-width: none; /* Hide the scrollbar for Mozilla Firefox */
	margin: 0 auto 0 auto;
	width: 90vw;
	height: fit-content;
}
/*login_form especificado tipo text*/

.login_form input[type="text"], .login_form input[inputmode="text"]{
	width: 75%;
	padding: 15px;
	margin-bottom: 10px;
	box-sizing: border-box; 
	border-radius: 40px;
	border: 1px solid #DADDD8;
	background-color: #ECEBE4;
}


/*login_form especificado tipo password*/

.login_form input[type="password"], .login_form input[inputmode="password"]{
	width: 75%;
	padding: 15px;
	margin-bottom: 10px;
	box-sizing: border-box; 
	border-radius: 40px;
	border: 1px solid #DADDD8;
	background-color: #ECEBE4;
}

/*boton  de login*/

.btn_login{
	width: 75%;
	padding: 15px;
	margin-bottom: 10px;
	box-sizing: border-box; 
	border-radius: 40px;
	border: 0px;
	background-color: #1C1C1C;
	color: white;
    text-align: center;
    font-weight: bold;
    font-size: large;
}

/*boton de login*/

.btn_login:hover,.btn_login:active{
	color:black;
	background-color: #DADDD8;
	border-color: #DADDD8;
	text-align: center;
    font-weight: bold;
    font-size: large;
}
/*boton de registrarse aqui*/

.btn_register{
	width: 75%;
	padding: 15px;
	margin-bottom: 10px;
	box-sizing: border-box; 
	border-radius: 40px;
	border: 0px;
	background-color: #1C1C1C;
	color: white;
    text-align: center;
    font-weight: bold;
    font-size: large;
}

.btn_register:hover,.btn_register:active{
	color:black;
	background-color: #DADDD8;
	border-color: #DADDD8;
	text-align: center;
    font-weight: bold;
    font-size: large;
}

/*PAGINA REGISTER*/

/*boton de guardar en registrarse*/

.btn_guardar{
	width: 75%;
	padding: 15px;
	margin-bottom: 10px;
	box-sizing: border-box; 
	border-radius: 40px;
	border: 0px;
	background-color: #1C1C1C;
	color: white;
    text-align: center;
    font-weight: bold;
    font-size: large;
}

.btn_guardar:hover,.btn_guardar:active{
	color:black;
	background-color: #DADDD8;
	border-color: #DADDD8;
	text-align: center;
    font-weight: bold;
    font-size: large;

}

/*DASHBOARD*/

.fondo_top{
	height: 85px;
	width:100%;
    text-align: center;
	background-color: #1C1C1C;
	position: fixed;
	z-index: 100;
}

.menu_login {
	position: fixed;
	top: 5px;
	right: 1%;
	width: auto;
	height: auto;
	cursor: pointer;
	z-index: 100;
  }

.btn_ingreso{
	width: auto;
	height: 50px;
	padding: auto;
	margin: 12px;
	box-sizing: border-box; 
	border-radius: 10px;
	border: 0px;
	background-color: #FAFAFF;
	text-align: center;
    font-size: medium;
	color: black;
}

.btn_ingreso:hover,.btn_ingreso:active{
	color:black;
	background-color: #DADDD8;
	border-color: #DADDD8;
    text-align: center;
    font-weight: bold;
    font-size: medium;
}
  
.btn_panel_admin{
	width: 75%;
	padding: 15px;
	margin-bottom: 10px;
	box-sizing: border-box; 
	border-radius: 40px;
	border: 0px;
	border: 1px solid #DADDD8;
	background-color: #ECEBE4;
	text-align: center;
    font-weight: bold;
    font-size: large;
	color: black;
}

.btn_panel_admin:hover,.btn_panel_admin:active{
	color:black;
	background-color: #DADDD8;
	border-color: #DADDD8;
    text-align: center;
    font-weight: bold;
    font-size: large;
}

/*HAMBURGUER MENU*/

#menu__toggle {
	opacity: 0;
  }
  #menu__toggle:checked + .menu__btn > span {
	transform: rotate(45deg);
  }
  #menu__toggle:checked + .menu__btn > span::before {
	top: 0;
	transform: rotate(0deg);
  }
  #menu__toggle:checked + .menu__btn > span::after {
	top: 0;
	transform: rotate(90deg);
  }
  #menu__toggle:checked ~ .menu__box {
	left: 0 !important;
  }
  .menu__btn {
	position: fixed;
	top: 40px;
	left: 20px;
	width: 26px;
	height: 26px;
	cursor: pointer;
	z-index: 100;
  }
  .menu__btn > span,
  .menu__btn > span::before,
  .menu__btn > span::after {
	display: block;
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: black;
	transition-duration: .25s;
  }
  .menu__btn > span::before {
	content: '';
	top: -8px;
  }
  .menu__btn > span::after {
	content: '';
	top: 8px;
  }
  .menu__box {
	display: block;
	position: fixed;
	top: 0;
	left: -100%;
	width: 300px;
	height: 100%;
	margin: 0;
	padding: 80px 0;
	list-style: none;
	background-color: #14213D;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
	transition-duration: .25s;
  }
  .menu__item {
	display: block;
	padding: 12px 24px;
	color: white;
	font-size: 20px;
	font-weight: 600;
	text-decoration: none;
	transition-duration: .25s;
  }
  .menu__item:hover {
	background-color: #FCA311;
  }


/*REGISTER USER*/

.flex-container {
    text-align: left;
	position: relative;
}

.flex-container form{
	text-align: left;
	position: absolute;
	width: 40%;
	left: 30%;
	height: auto;
}


.flex-container input[type="text"], .flex-container input[inputmode="text"]{
	width: 100%;
	padding: 15px;
	margin-bottom: 10px;
	box-sizing: border-box; 
	border-radius: 40px;
	border: 1px solid #DADDD8;
	background-color: #ECEBE4;
}

.flex-container input[type="email"], .flex-container input[inputmode="email"]{
	width: 100%;
	padding: 15px;
	margin-bottom: 10px;
	box-sizing: border-box; 
	border-radius: 40px;
	border: 1px solid #DADDD8;
	background-color: #ECEBE4;
}

.flex-container input[type="number"], .flex-container input[inputmode="decimal"]{
	width: 100%;
	padding: 15px;
	margin-bottom: 10px;
	box-sizing: border-box; 
	border-radius: 40px;
	border: 1px solid #DADDD8;
	background-color: #ECEBE4;
}

.flex-container input[type="password"], .flex-container input[inputmode="password"]{
	width: 100%;
	padding: 15px;
	margin-bottom: 10px;
	box-sizing: border-box; 
	border-radius: 40px;
	border: 1px solid #DADDD8;
	background-color: #ECEBE4;
}

.flex-container input[type="date"], .flex-container input[type="datetime-local"],
.flex-container input[inputmode="date"], .flex-container input[inputmode="datetime-local"]{
	width: 100%;
	padding: 15px;
	margin-bottom: 10px;
	box-sizing: border-box; 
	border-radius: 40px;
	border: 1px solid #DADDD8;
	background-color: #ECEBE4;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.flex-container input[type="file"], .flex-container input[inputmode="file"]{
	width: 100%;
	padding: 15px;
	margin-bottom: 10px;
	box-sizing: border-box; 
	border-radius: 40px;
	border: 1px solid #DADDD8;
	background-color: #ECEBE4;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.flex-container select {
	width: 100%;
	padding: 15px;
	margin-bottom: 10px;
	box-sizing: border-box; 
	border-radius: 40px;
	border: 1px solid #DADDD8;
	background-color: #ECEBE4;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.flex-container textarea {
	text-align: justify;
	width: 100%;
	height: 150px;
	padding: 15px;
	margin-bottom: 10px;
	box-sizing: border-box; 
	border-radius: 10px;
	border: 1px solid #DADDD8;
	background-color: #ECEBE4;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.flex-container optgroup{
	width: 100%;
	padding: 15px;
	margin-bottom: 10px;
	box-sizing: border-box; 
	border-radius: 40px;
	border: 1px solid #DADDD8;
	background-color: #ECEBE4;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/*
CUADRES - centrar divs

*/

.sfechas{
	display: flex; 
	flex-direction:column;
}

table {
	background-color: #ECEBE4;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	border-collapse: collapse;
    width: 50%;
	margin: 0 auto;
}
  
td, th {
	border: 1px solid #DADDD8;
	background-color: #ECEBE4;
	text-align: center;
	padding: 8px;
}
  
tr:nth-child(even) {
	border: 1px solid #DADDD8;
	background-color: #ECEBE4;
}


.formulario_fechas form{
	/* position: relative; */
	text-align: left;
	width: 40%;
	margin: 0 auto;
	/* left: 30%; */
	/* height: auto; */
}
.firmac {
	display: flex;
	justify-content: center;
}
.estilo_forms{
	width: 100%;
	padding: 15px;
	margin-bottom: 10px;
	box-sizing: border-box; 
	border-radius: 40px;
	border: 1px solid #DADDD8;
	background-color: #ECEBE4;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}


#metodo2{
	display: none;
}


/*BOTON PARA LISTA DATATABLES*/

.btn_dt{
	width: 100px;
	padding: 6px;
	box-sizing: border-box; 
	border-radius: 14px;
	border: 0px;
	background-color: #1C1C1C;
	color: white;
    text-align: center;
    font-weight: bold;
    font-size: large;
	margin: 0 auto;
	margin-top: 15px;
	margin-block-end: 5px;
}

.btn_dt:hover,.btn_dt:active{
	color:black;
	background-color: orange;
	text-align: center;
    font-weight: bold;
    font-size: large;
}

.flexd{
	display: flex;
}
/*
BOTONES PARA ANTES Y DESPUES FORMULARIO
*/

.btn_ad_colum_1{
	width: 100%;
	text-align: left;
}

.btn_ad_colum_2{
	width: 100%;
	text-align: right;	
}

.btn_formulario{
	width: 150px;
	padding: 15px;
	margin-bottom: 10px;
	box-sizing: border-box; 
	border-radius: 40px;
	border: 0px;
	background-color: #1C1C1C;
	color: white;
    text-align: center;
    font-weight: bold;
    font-size: large;
	margin-top: 20px;
	cursor: pointer;
}

.btn_formulario:hover,.btn_formulario:active{
	color:black;
	background-color: #DADDD8;
	border-color: #DADDD8;
	text-align: center;
    font-weight: bold;
    font-size: large;
}


.btn_ad{
	display: flex;
    flex-direction: row;
	width: auto;
	height: auto;
}

.btn_ad_colum_1{
	width: 100%;
	text-align: left;
}

.btn_ad_colum_2{
	width: 100%;
	text-align: right;
}

.btn_formulario{
	width: 150px;
	padding: 15px;
	margin-bottom: 10px;
	box-sizing: border-box; 
	border-radius: 40px;
	border: 0px;
	background-color: #1C1C1C;
	color: white;
    text-align: center;
    font-weight: bold;
    font-size: large;
	margin-top: 20px;
}

.btn_formulario:hover,.btn_formulario:active{
	color:black;
	background-color: #DADDD8;
	border-color: #DADDD8;
	text-align: center;
    font-weight: bold;
    font-size: large;
}


/* Estilos propios */



#content_message{
	position: absolute;
	display: flex;
	right: 10px;
	bottom: 10px;
	width: 40%;
	height: 5%;
	align-items: center;	
	padding: 10px;
	border-radius: 10px;
	font-weight: bold;
	animation:  normal msg_appers  2s;

}

.msg_success{
	border: 3px solid #03C988;
	background-color: rgba(3, 201, 135, 0.4);
	color: #227C70;
}

.msg_error{
	border: 3px solid #FF0032;
	background-color: rgba(220, 0, 0, .4);
	color: #850000;
}

@keyframes msg_appers {
    0%{ width: 0%};
	100%{ width: 40%};
}

@keyframes msg_disappers {
    from{ opacity: 1;};

	to{opacity: 0;};
}

/* Fin Estilos propios */

/*FIRMA*/


canvas {
	border: 1px solid black;
	}

/* Responsive layout - makes a one column-layout instead of two-column layout */

@media (max-width: 1000px) {
	.contenedor_foro{
		flex-direction: column;

	}
	.flex-container form{
		text-align: left;
		width: 85%;
		left: 7.5%;
		height: auto;
	}

	.formulario_fechas form{
		text-align: left;
		width: 85%;
		left: 7.5%;
		height: auto;
	}

	.table{
		width: 100%;
	}


	.register-form {
		width: 100%;
	}
	.login_form{
		width: 100%;
	}
	.btn_bk_category{
		text-align: center;
		width: auto;
	}
	.add_tutorial_form{
		width: auto;
		margin: 0 auto;
	  }
	.foro_column_1{
		width: auto;
	}

	.foro_column_2 {
		padding: 10px;
		width: auto;
	}
	  
	.foro_column_3 {
		padding: 10px;
		width: auto;
	}

	.firmac{
		overflow-x: auto;
	}

	.sfechas{
		overflow-x: auto;
	}

}

