@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@300&display=swap');
html, body{
	margin:0;
	background-color: #E8E8E8;	
	font-size: 14px;
	font-family: 'Mukta', sans-serif;
	background: url(../images/back.png) no-repeat fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover
}
header{
	height:40px;
	padding: 5px;
	background-color: #3F3F3F;
	text-align: center;
	font-size: 30px;
	color: #D6D6D6;
	position: fixed;
	width: 100%;
	top:0;
	z-index: 999;
}
header busi{
	font-size: 14px;
	float:right;
	margin-right: 20px;
	color: #ED7D00;
}
#btnmenu{
	height: 30px;
	font-size: 24px;
	position: fixed;
	left: 20px;
	top: 10px;
	transition: 0.5s left;
	z-index: 999999;
}

main{
	min-height:  100vh;
	height: auto;
	
	padding: 70px 20px;
	padding-bottom:  80px;
	display: block;
}
.noa{
	text-decoration: none;
	color: #00002F;
	cursor: pointer;
}
.noa:hover{
	color: #8A0001;
}
#btns{
	display:block;
	text-align: right;
	position: fixed;
	right: 20px;
	top:50px;
}
.btnsc{
	display: block;
	text-align:center;
	margin: 10px;
}
.titulo{
	background-color: rgba(255,255,255,0.75);
	padding: 8px;
	text-align: center;
	margin: 10px;
	border-radius: 5px;
	font-size: 18px;
}
.content{
	background-color: rgba(255,255,255,0.75);
	padding: 5px;
	border-radius: 5px;
}
.content label{
	width:120px;display: inline-block;	
	margin-top: 5px;
}
.content .tablesb td{
	  border:collapse;
}
.content input,select{
	height: 30px;
	margin-top: 5px;
}
.formulario{
	background-color: rgba(255,255,255,0.49);
	min-width: 300px;
	width: 50%;
	height: 400px;
	margin:0px 10px;
	border-radius: 30px;
	overflow: hidden;
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
	text-align: center;
}
.formulario input{
	height: 40px;
	width: 80%;
	margin: 5px 10%;
}
#tabla{
	background-color: rgba(255,255,255,0.75);
	width: 80%;
	margin-left: 10%;
	font-size: 11px;
	border-collapse: collapse;
}
#tabla th, td {
  border: 1px solid #606060;
  padding: 5px;
}
#tabla thead {
	font-size: 12px;
	text-transform: uppercase;
	font-weight: bold;
}
#tabla i{
	font-size:16px;
	cursor: pointer;
}
#tabla tbody tr:hover{
	color:#700000;
	background-color: #FFFCE8;
}
#tabla i:hover{
	color: #00A832;
}
.swa{
	width:95%;
}
.swa input, .swa select{
	height: 30px;
	width: 100%;
	display: block;
}
#capa{
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.75);
	position: fixed;
	left:0;
	top:0;
	z-index: -9999;
	opacity: 0;
	transition: 0.5s all;
}
.btn{
	padding: 8px;
	border-radius: 5px;
	border: none;
	margin: 10px;
	margin: 5px 10px;
	text-decoration: none;
	cursor: pointer;
}
.btn i{
	margin:5px;
}
.der{
	text-align:right;
}
.verde{
	background-color: #106600;
	color:#C8FFD1;
}
.verde:hover{
	background-color: #093D00;
	color:#A3A7A3;
}
.amarillo{
	background-color: #EB7400;
	color:#FFE1C5;
}
.amarillo:hover{
	background-color: #B05700;
	color:#FBA556;
}
.rojo{
	background-color: #D10000;
	color:#C8FFD1;
}
.rojo:hover{
	background-color: #900000;
	color:#FF7474;
}
/* Estilos de checkbox */
.check {
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.check input {
  position: absolute;
  opacity: 1;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: rgba(238,238,238,0.50);
}

/* On mouse-over, add a grey background color */
.check:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.check input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.check input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.check .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* FIN Estilos de checkbox */
footer{
	background-color: #3F3F3F;
	position:fixed;
	bottom: 0px;
	height: 20px;
	padding: 5px;
	width: 100%;
	text-align: center;
	color:#DFDFDF;
}
footer a{
	color:#CC0003;
	text-decoration: none;
}

.input {  
  background-repeat: no-repeat;  
  display: flex;
  width: 85%;  
  margin: 15px 8% 0;
  height: 40px;
  border: 1px solid rgba(9, 113, 163, 1);
  border-radius: 3px;
	background-color: #FFF;
}
.input i{
	margin:5px;
}
.input input {
  width: 100%;
  font-size: 0.9em;
  border: none;
}

.input input:focus {
  outline: none;
}
.labelogo{
	width: 150px;
	height: 180px;
	margin:20px;
	overflow: hidden;
	background-color: #FFFFFF;
	border-radius: 5px;
	display: inline-table;
	text-align: center;
}
.labelogo .logo{
	width: 100%;
}