


body {
  position: relative;
  overflow-x: hidden;
  justify-content: center;
  align-items: center;
  font-family: 'Spartan', sans-serif;
}

td { 
font-size: 12px !important;
}

th { 
font-size: 14px !important;
}

.highlight {
background-color: red !important;
}


body,
html { height: 100%;}
.nav .open > a, 
.nav .open > a:hover, 
.nav .open > a:focus {background-color: transparent;}

/*-------------------------------*/
/*           Wrappers            */
/*-------------------------------*/

#wrapper {
  padding-left: 0;
  margin: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#wrapper.toggled {
  padding-left: 250px;
}

#sidebar-wrapper {
  z-index: 1000;
  left: 0px;
  width: 0;
  height: 100%;
  margin-left: 0px;
  overflow-y: auto;
  overflow-x: hidden;
  /* sidebar-color */    
 
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#sidebar-wrapper::-webkit-scrollbar {
display: none;
}

#wrapper.toggled #sidebar-wrapper {
  width: 250px;
}

#page-content-wrapper {
  width: 100%;
  
  /*fondo debajo del titulo*/
  
  
}

#wrapper.toggled #page-content-wrapper {
  position: absolute;

}

/*-------------------------------*/
/*     Sidebar nav styles        */
/*-------------------------------*/
.navbar {
padding: 0;
}

.sidebar-nav {
  position: absolute;
  top: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-nav li {
  position: relative; 
  line-height: 20px;
  display: inline-block;
  width: 100%;
}

.sidebar-nav li:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 3px;
  background-color: #1c1c1c;
  -webkit-transition: width .2s ease-in;
    -moz-transition:  width .2s ease-in;
     -ms-transition:  width .2s ease-in;
          transition: width .2s ease-in;

}
.sidebar-nav li:hover{
/* sidebar-li-color */
background: #E5011C !important;
border-radius: 0px;
margin-left: 0px;
margin-right: 0px;
}
.sidebar-nav li:hover:before,
.sidebar-nav li.open:hover:before {
  width: 100%;
  -webkit-transition: width .2s ease-in;
    -moz-transition:  width .2s ease-in;
     -ms-transition:  width .2s ease-in;
          transition: width .2s ease-in;

}

.sidebar-nav li a {
  display: block;
  color: #ddd;
  text-decoration: none;
  padding: 10px 15px 10px 30px;    
}

.sidebar-nav li a:hover,
.sidebar-nav li a:active,
.sidebar-nav li a:focus,
.sidebar-nav li.open a:hover,
.sidebar-nav li.open a:active,
.sidebar-nav li.open a:focus{
  color: #fff;
  text-decoration: none;
  background-color: transparent;
}
.sidebar-header {
  text-align: center;
  font-size: 18px;
  position: relative;
  width: 100%;
  display: inline-block;
}
.sidebar-brand {
  height: 75px;
  position: relative;
  padding-top: .5em;
}
.sidebar-brand a {
  color: #ddd;
}
.sidebar-brand a:hover {
  color: #fff;
  text-decoration: none;
}
.dropdown-header {
  text-align: center;
  font-size: 1em;
  color: #ddd;
  background:#B80523;
  
}
.sidebar-nav .dropdown-menu {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  border-radius: 0;
  border: none;
  background-color: #222;
  box-shadow: none;
}
.dropdown-menu.show {
  top: 0;
}
/*Fontawesome icons*/
.nav.sidebar-nav li a::before {
  font-family: fontawesome;
  content: "";
  vertical-align: baseline;
  display: inline-block;
  padding-right: 5px;
}

/*-------------------------------*/
/*       Hamburger-Cross         */
/*-------------------------------*/

.hamburger {
position: fixed;
top: 20px;  
z-index: 999;
display: block;
width: 32px;
height: 32px;
margin-left: 15px;
background: transparent;
border: none;
}
.hamburger:hover,
.hamburger:focus,
.hamburger:active {
outline: none;
}
.hamburger.is-closed:before {
content: '';
display: block;
width: 100px;
font-size: 12px;
color: #fff;
line-height: 32px;
text-align: center;
opacity: 0;
transform: translate3d(0,0,0);
transition: all .35s ease-in-out;
-webkit-transform: translate3d(0,0,0);
-webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed:hover:before {
opacity: 1;
display: block;

transform: translate3d(-100px,0,0);
-webkit-transform: translate3d(-100px,0,0);

transition: all .35s ease-in-out;
-webkit-transition: all .35s ease-in-out;
}

.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom,
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
position: absolute;
left: 0;
height: 4px;
width: 100%;
}
.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom {
background-color: #fcfcfc;
}
.hamburger.is-closed .hamb-top { 
top: 5px; 
-webkit-transition: all .35s ease-in-out;
transition: all .35s ease-in-out;
}
.hamburger.is-closed .hamb-middle {
top: 50%;
margin-top: -2px;
}
.hamburger.is-closed .hamb-bottom {
bottom: 5px;  
-webkit-transition: all .35s ease-in-out;
transition: all .35s ease-in-out;
}

.hamburger.is-closed:hover .hamb-top {
top: 0;
-webkit-transition: all .35s ease-in-out;
transition: all .35s ease-in-out;
}
.hamburger.is-closed:hover .hamb-bottom {
bottom: 0;
-webkit-transition: all .35s ease-in-out;
transition: all .35s ease-in-out;
}
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
background-color: #fcfcfc;
}
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-bottom {
top: 50%;
margin-top: -2px;  
}
.hamburger.is-open .hamb-top { 

  transform: rotate(45deg);
-webkit-transform: rotate(45deg);
transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
-webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}
.hamburger.is-open .hamb-middle { display: none; }
.hamburger.is-open .hamb-bottom {
-webkit-transform: rotate(-45deg);
-webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);

transform: rotate(-45deg);
transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}
.hamburger.is-open:before {
content: '';
display: block;
width: 100px;
font-size: 12px;
color: #fff;
line-height: 32px;
text-align: center;
opacity: 0;
transform: translate3d(0,0,0);
transition: all .35s ease-in-out;
-webkit-transform: translate3d(0,0,0);
-webkit-transition: all .35s ease-in-out;
}
.hamburger.is-open:hover:before {
opacity: 1;
display: block;

transform: translate3d(-100px,0,0);
-webkit-transform: translate3d(-100px,0,0);

transition: all .35s ease-in-out;
-webkit-transition: all .35s ease-in-out;
}

/*-------------------------------*/
/*            Overlay            */
/*-------------------------------*/


.btn { 
  border: 0; 
  border-radius: 5rem;
  font-weight: 400;
  min-width: 10rem;
  
}
/*fondos botones contenido*/

.boton-light{
background-color: #E5011C;  
color: var(--text-light-color);
}

.boton-light:hover,  .boton-light:active{ 
background-color: white;
color: #cc6d13;
border: 1px solid #f0edee;
}


/*fondo*/


#sidebar-container { min-height: 100vh; }


#sidebar-container .menu { 
  width: 14rem; 
  padding: 0;
}

/*fondos contenido*/
#content {
  overflow-y: auto;
  height: 100vh;
  padding-bottom: 5rem;
  background-color: var(--bg-color);
}

/*fondo borde no se*/
.btn-outline-dark {
  border: 1px solid black;
}
/*fondo de caja y borde de los input*/
.form {
  
  height: 80px;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 20px 10px;
  
}
.form input {
width: 100%;
height: 100%;
background: none;
color: var(--bg-color);  
border: none;
border-bottom: 2px solid #E5011C;
border-radius: 0px;

}
input:active{
background: none !important;
}


.card-body {
  
  width: 100%;
  background-color: var(--cardbody-dark-color);
  border-radius: 20px;  

}
.card-body img {
  max-width: 100%;
  
}
.divider {    
  
  margin: 0 10px 0;  
  border-right: 1px solid red;
}

.ion-icon {
font-size: 16px;
}
.img_htta {

border: 1px solid red;
position: relative;
left: 0;
height: 160px;
padding: 15px;


width: fit-content;
height: max-content;
border-radius: 10px;

}

.upload-btn-wrapper {
position: relative;
overflow: hidden;
display: inline-block;
}

.btn {
border: 2px solid gray;
padding: 8px 20px;
border-radius: 8px;
font-size: 20px;
font-weight: bold;
}

.upload-btn-wrapper input[type=file] {
font-size: 100px;
position: absolute;
left: 0;
top: 0;
opacity: 0;
}



.alert-title-class {
color: white!important;
}

.fondo{ 
background-color: #292b2c;
}




.buttonCertificacion {
border-radius: 4px;
background-color: white; 
color: black; 
border: 2px solid #008CBA;
transition-duration: 0.4s;
}

.buttonCertificacion:hover {
background-color: #008CBA;
color: white;
}








.center {
margin: 0 auto;
text-align: center;
}

.spacer {
margin-top: 6rem;
}

/* barcode container */
.anim-box {
position: relative;
width: 220px;
height: 220px;
padding: 25px 30px;

transition: transform .6s ease-out;

}

/* adds the 4 corners */
.anim-box:before, .anim-box:after, .anim-box>:first-child:before, .anim-box>:first-child:after {
position: absolute;
width: 10%; height: 15%;
border-color: white; 
border-style: solid;
content: ' ';
}

/* top left corner */
.anim-box:before {
top: 0; left: 0;
border-width: 2px 0 0 2px;
}

/* top right corner */
.anim-box:after {
top: 0; right: 0;
border-width: 2px 2px 0 0;
}

/* bottom right corner */
.anim-box>:first-child:before {
bottom: 0; right: 0;
border-width: 0 2px 2px 0;
}

/* bottom left corner */
.anim-box>:first-child:after {
bottom: 0; left: 0;
border-width: 0 0 2px 2px;
}

/* barcode bars */

/* grow on hover */



/* animated laser beam */
.scannertool {
width: 100%;
height: 3px;
background-color: red;
opacity: 0.7;
position:relative;
box-shadow: 0px 0px 8px 10px rgba(170, 11, 23, 0.49);
top:50%;
animation-name: scantool;
animation-play-state: running;
animation-duration: 3s;
animation-timing-function: linear;
animation-iteration-count: infinite;

}

@keyframes scantool {
0% {
  box-shadow: 0px 0px 8px 10px rgba(170, 11, 23, 0.49);
  top: 50%;
}  
25% {
  box-shadow: 0px 6px 8px 10px rgba(170, 11, 23, 0.49);
  top: 5px;
}
75% {
  box-shadow: 0px -6px 8px 10px rgba(170, 11, 23, 0.49);
  top: 98%;
}
}

.scanneruser {
width: 100%;
height: 3px;
background-color: rgb(255, 255, 255);
opacity: 0.7;
position:relative;
box-shadow: 0px 0px 8px 10px rgba(13, 217, 231, 0.49);
top:50%;
animation-name: scanuser;
animation-play-state: running;
animation-duration: 3s;
animation-timing-function: linear;
animation-iteration-count: infinite;

}

@keyframes scanuser {
0% {
  box-shadow: 0px 0px 8px 10px rgba(13, 217, 231, 0.49);
  top: 50%;
}  
25% {
  box-shadow: 0px 6px 8px 10px rgba(13, 217, 231, 0.49);
  top: 5px;
}
75% {
  box-shadow: 0px -6px 8px 10px rgba(13, 217, 231, 0.49);
  top: 98%;
}
}

.centrate {
display: flex;
align-items: center;
justify-content: center;
}
.centrate__hijo {

position: absolute;

}
