/* table */
table
{
  position: relative;
  display: table;
  /* display: block; comentamos esto para que tome todo el ancho automaticamente */ 
  width: 100%; 
  border-collapse: inherit;
  border-spacing: 0;
  /*table-layout: fixed;*/
  width:100%;
  max-width:100%;


}

table.datatable,
table.sombreada
{

  box-shadow: 0 0 40px #ccc;
  -webkit-box-shadow: 0 0 40px #ccc;
  -moz-box-shadow: 0 0 40px #ccc;
}

table > thead > tr
{
  /* box-shadow: 0 0 10px #ccc; */
  background-color: #555;

}


.dialogo table > thead > tr
{
  /*
  box-shadow: 0 0 10px #ccc;
  */
  background-color: #616161;
}

table > thead > tr > th
{
  text-align: left;
  padding: 10px;
  font-size: 13px;
  color: #e0e0e0;
  text-transform: uppercase;
  font-weight: normal;
}

.dialogo table > thead > tr > th {
  text-align: left;
  font-size: 13px;
  color: #e0e0e0;
  text-transform: uppercase;
  font-weight: normal;
  padding: 5px;
}

.dialogo table > tbody > tr:nth-child(2n)
{
  background-color: #fff;
}

/*
.dialogo table > tbody > tr:nth-child(2n+1)
{
background-color: #f2f2f2 !important;
}
*/

.dialogo table tbody tr
{
  border-left: none;
}

table > thead > tr > th > .fas
{
  font-size: 16px;
}

table > thead > tr > th > a
{
  position: relative;
  display: block;
  padding: 8px;
  background-color: #cc3333;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: normal;

  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}

table > thead > tr > th > a:hover
{
  opacity: 0.8;

  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}

table > thead > tr > th > a.disabled
{
  pointer-events: none !important;
  color: #fff !important;
  opacity: 0.8 !important;
  border-color: #ddd !important;
  cursor: not-allowed !important;
}

table > thead > tr > th:first-child  {
  border-top-left-radius: 3px;

}

table > thead > tr > th:last-child
{
  border-top-right-radius: 3px;
}

table tr:last-child td:last-child {
  border-bottom-right-radius: 3px;
}

table > tbody > tr
{
  display: table-row;
  /* border-bottom: 1px dotted #ccc; */
 /* border-left: 3px solid transparent;*/

  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;

  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;

}

table > tbody > tr:hover 
{
  background-color: rgba(0,0,0,0.2) !important;   

  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}

table > tbody > tr.renglon-seleccionado
{
 border-left: 5px solid #444;
  background-color: #ccc !important;
}

table > tbody > tr:hover > td input[type=checkbox] + label:before
{
  border: 0.1em solid #616161;
}

table > tbody > tr.expirada td:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 0;
  border-bottom: 2px solid #616161;
  width: 100%;
}

table > tbody > tr.expirada td
{
  color: #616161 !important;

  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

table > tbody > tr.expirada td input[type=checkbox] + label
{
  display: none;
}

table > tbody > tr:nth-child(2n)
{
  background-color: #f9f9f9;
}

table > tbody > tr:nth-child(2n+1)
{
  background-color: #f2f2f2;
}


table > tbody > tr.no-capturada
{
  /* background-color: #ccc; */
  background-color: rgba(0,0,0,0.2);  

  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;

}

table > tbody > tr.no-capturada > td:nth-of-type(1)
{
  border-left: 5px solid #757575 !important;

  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

table > tbody > tr > td
{
  position: relative;
  /*   overflow: hidden; */
  word-wrap: break-word;
  color: #000;
  padding: 10px;
  text-align: left;
  font-size: 13px;
  border-spacing: 0;
  text-transform: uppercase;

  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

table > tbody > tr > td.no-folio-negro,
table > tbody > tr > td.no-folio-rojo
{
  font-size: 18px;
  font-weight: normal !important;
}

table > tbody > tr > td.no-folio-rojo
{
  color: #cc3333;
}

table > tbody > tr > td.no-folio-rojo,
table > tbody > tr > td input[type=text].no-folio-rojo 
{
  font-size: 18px !important;
  font-weight: normal !important;
}

table > tbody > tr > td > a
{
  color: #cc3333;
  font-weight: 600;
}

table > tbody > tr > td > .fas
{
  font-size: 18px !important;
}

.dialogo table > tbody > tr > td
{
  position: relative;
  word-wrap: break-word;
  color: #000;
  padding: 5px;
  text-align: left;
  font-size: 13px;
  border-spacing: 0;
}

table > tbody > tr > td > div
{
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

table > tbody > tr > td > input[type=text]
{
  position: relative;
  display: block;
  border: none;
  padding: 5px 0px;
  border-radius: 5px;
  font-size: 13px;
  outline: none;
  background: transparent;
  width: 100%;

  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-sizing: border-box;


  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}

table > tbody > tr > td > input[type=text].alinear-derecha
{
  text-align: right !important;    
}


table > tbody > tr > td > input[type=text].alinear-centro
{
  text-align: center !important;    
}

table > tbody > tr > td > a > i
{
  font-family: "FontAwesome";
  font-size: 18px;
}

/*
table > tbody > tr > td > input[type=text]:hover
{
border: 1px solid #444;

transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
}
*/

table > tfoot > tr 
{
  border-top-color: #ccc;
  border-top-style: double;
  border-bottom: 1px solid #ccc;
  background-color: #fff;
}

table > tfoot > tr > td 
{

  padding: 5px;
  font-size: 15px;
  font-weight: 500;
}

a.menu-contextual
{
  color: #212121;
  font-size: 22px;
  font-weight: normal;
}

/* mensajes de notificacion */
#mensaje-notificador
{
  position: fixed;
  display: block;
  opacity: 1;
  font-size: 15px;
  font-weight: 400;
  color: #212121;
  background-color: #fff;
  padding: 13px;
  top: 50px;
  right: -120%;
  border-radius: 5px;
  z-index: 2147483647 !important;

  box-shadow: 0 16px 22px -10px rgba(0,0,0,.15), 0 13px 66px 12px rgba(0,0,0,.07);
  /*  
  box-shadow: 0 0.5rem 0.875rem rgba(0,0,0,.1);
  -webkit-box-shadow: 0 0.5rem 0.875rem rgba(0,0,0,.1);
  -moz-box-shadow: 0 0.5rem 0.875rem rgba(0,0,0,.1);
  */

}

#mensaje-notificador .fas
{
  font-size: 18px;
  margin-right: 10px;
  border-radius: 50%;

}

#mensaje-notificador.mensaje-error
{
  border-left: 5px solid #f72222;
  /* color: #f72222; */

}

#mensaje-notificador.mensaje-error .fas
{
  border: 3px solid #f72222;
  background-color: #f72222;
  color: #fff;
  border-radius: 50%;
  padding: 2px 5px;

}

#mensaje-notificador.mensaje-exito
{
  border-left: 5px solid #338c34;
  color: #212121;

}

#mensaje-notificador.mensaje-exito .fas
{
  background-color: #338c34;
  border: 3px solid #338c34;
  border-radius: 50%;
  color: #fff; 
  padding: 5px;
}


#mensaje-error
{
  position: fixed;
  display: block;
  width: auto;
  color: #fff;
  background-color: #f00;
  padding: 20px;
  top: 20px;
  right: 20px;
  cursor: default;
  z-index: 2000 !important;

  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);

}

.cargando
{
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255,255,255,0.5);
  z-index: 2001;
}

#mensaje-cargando
{
  position: fixed;
  display: none;
  width: auto;
  color: #fff;
  background-color: #616161;
  padding: 20px;
  top: 20px;
  right: 20px;
  cursor: default;
  z-index: 2000 !important;

  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);

}

#transparencia {
  position: fixed;
  display: none;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2147483644;
  text-indent: -9999px;

}


#transparencia.transparencia-negra
{
  background-color: rgba(0, 0, 0,0.05);
}

#transparencia.transparencia-blanca
{
  background-color: rgba(255, 255, 255,0);
}

#mensaje-exito
{
  position: fixed;
  display: none;
  left: 0;
  right: 0;
  top: 0;
  background-color: #fff;
  color: #212121;
  z-index: 232323;
  padding: 0 50px;

  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;

  box-shadow: 0 0 10px #212121;
  -webkit-box-shadow: 0 0 10px #212121;
  -moz-box-shadow: 0 0 10px #212121;

}

#mensaje-exito > span,
#mensaje-exito > p
{
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

#mensaje-exito > p
{
  font-size: 30px;
  font-weight: 300;
}

#mensaje-exito > span
{
  font-size: 60px;
  margin-right: 20px;
  color: #0c6d41;
}

#mensaje-error > span
{
  font-size: 60px;
  margin-right: 20px;
  color: #f00;
}



/* paginacion */
.paginacion a, .pagination a
{
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.42857143;
  text-decoration: none;
  color: #d35400;
  background-color: #fff;
  border: 1px solid #ddd;
  margin-left: -1px;
  cursor: pointer;
  font-size: 13px;
}

.paginacion a:hover, .pagination a:hover,
.pagination>.active>a, .pagination>.active>span, .pagination>.active>a:hover, .pagination>.active>span:hover, .pagination>.active>a:focus, .pagination>.active>span:focus
{
  background-color: #cc3333;
  color: #fff;
}

.pagination
{
  position: relative;
  display: block;
  padding: 0;
}

.pagination>li
{
  position: relative;
  display: inline-block;
  vertical-align: top;

}

.pagination>li:first-child>a, .pagination>li:first-child>span
{
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;

}

.pagination>.disabled>span, .pagination>.disabled>span:hover, .pagination>.disabled>span:focus, .pagination>.disabled>a, 
.pagination>.disabled>a:hover, .pagination>.disabled>a:focus
{
  color: #999;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed;
}

.pagination>li:last-child>a, .pagination>li:last-child>span
{
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;

}

/* placeholder */

::-webkit-input-placeholder { color:#616161; }
::-moz-placeholder { color:#616161; } /* firefox 19+ */
:-ms-input-placeholder { color:#616161; } /* ie */
input:-moz-placeholder { color:#616161; }


/* Datatable */
.dataTables_filter,
.dt-buttons,
.dt-buttons btn-group
{
  position: relative;
  display: inline-block !important;
  vertical-align: middle;
  padding: 10px 0;
}

.dt-buttons
{
  float: left;
  margin-top: 10px;

}

/*
.dt-buttons .fa
{
font-size: 28px !important;
}
*/

.dataTables_filter
{
  float: right;
  text-align: right;
}

.dt-buttons a,
.dt-buttons btn-group a
{
  font-family: "Font Awesome 5 Free";
  margin-right: 0px;
  padding: 8px 10px;
  font-size: 18px !important;
  background-color: #f3f3f3;
  color: #616161;
  text-decoration: none;

}

.dt-buttons a:first-of-type
{
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;

}

.dt-buttons a:last-of-type
{
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;

}


/* dialogo */
.dialogo
{
  position: fixed;
  display: none;
  left: 50%;
  top: 50%;
  z-index: 2147483645 !important;
  background-color: #fff;
  border-radius: 10px;
  padding: 0;
  
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);


  -moz-box-shadow: 0 0 8px #ccc;
  -webkit-box-shadow: 0 0 8px #ccc;
  box-shadow: 0 0 8px #ccc;

  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;

}


.dialogo div.contenido-titulo
{
  position: relative;
  display: block;
  padding: 10px 15px;
}

.dialogo .contenido-titulo .titulo
{
  position: relative;
  display: block;
  color: #212121 !important;
  font-weight: normal;
  font-size: 28px !important;
  margin-bottom: 0;
}

.dialogo .contenido-titulo .subtitulo
{
  position: relative;
  display: block;
  font-weight: 300;
  font-size: 24px;
  color: #212121;
}

.dialogo div.contenido
{
  position: relative;
  display: block;
  padding: 20px 15px 0;

}

.dialogo  div.contenido > div
{
  position: relative;
  display: block;
  margin-bottom: 10px;
}


.dialogo div.alinear-derecha
{
  position: relative;
  display: block;
  text-align: right;
  clear: both;
  width: 100%;
  margin-bottom: 0 !important;
}

.dialogo div.alinear-derecha a.boton-cancelar
{    
  position: relative;
  text-decoration: none;
  color: #444;
  font-weight: normal;
  font-size: 14px;
  padding: 8px;
  text-transform: capitalize; 
  outline: none;
  line-height: 20px;

  box-sizing: border-box;
  -webkit-box-sizing: border-box; 
  -moz-box-sizing: border-box;

  box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
  -webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
  -moz-box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);

}

.dialogo div.alinear-derecha input[type=submit],
.dialogo div.botones-formulario input[type=submit],
form input[type=submit],
button.boton
{   
  position: relative;
  display: inline-block;
  width: content-box;
  height: content-box;
  border: 2px solid #cc3333;
  background-color: #cc3333;
  padding: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
  text-decoration: none;
  float: right;
  cursor: pointer;
  margin-left: 5px;
  border-radius: 5px;
  /* background-color: transparent; */
  outline: none;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;


  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;

  /*
  position: relative;
  color: #fff;
  border-radius: 3px;
  padding: 8px;
  font-weight: normal;
  background-color: #cc3333;
  border: 0;
  font-size: 14px;
  cursor: pointer;
  text-transform: capitalize; 
  outline: none;
  float: right; 
  margin-left: 5px;
  font-weight: 600;
  line-height: 20px;
  */

  box-sizing: border-box;
  -webkit-box-sizing: border-box; 
  -moz-box-sizing: border-box;

  box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
  -webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
  -moz-box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);

  /*
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  */

  /* box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08); */

  /*
  box-shadow: 2px 2px 5px #616161;
  -webkit-box-shadow: 2px 2px 5px #616161;
  -moz-box-shadow: 2px 2px 5px #616161;
  */

}


.boton-cargando
{
  position: relative;
  display: inline-block;
  width: content-box;
  height: content-box;
  border: 2px solid #cc3333;
  background-color: #cc3333;
  padding: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
  text-decoration: none;
  float: right;
  border-radius: 5px;
  /* background-color: transparent; */
  outline: none;

  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;

}

.procesando
{
  border-radius: 50% !important;
  background-color: transparent !important;
  font-size: 0 !important;
  width: 35px !important;
  height: 35px !important;
  border-left-color: transparent !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;

  animation: rotar 1.4s ease 0.5s infinite;
}

@keyframes rotar
{
  0% {
    transform: rotate(360deg);
  }
}

.boton-secundario{
         background-color: #fff !important;
        border: 1px solid #cc333360 !important;
        color: #cc3333 !important;
        font-weight: 600;
     
}

.margen-derecho
{
   margin-right: 20px;
}

.success
{
  position: relative;
  background-color: #ccc;
  border: none;
  animation: bounce .3s ease-in;
}

@keyframes bounce
{
  0% {
    transform: scale(0.9);
  }
}

.success:before
{
  content: "";
  position: absolute;
  background: url("/imagenes/check-solid.svg") no-repeat; 
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 31px;
  height: 31px;
  line-height: 31px;
  top: 8px;
}


/*
.dialogo div.alinear-derecha input[type=submit]:hover
{
color: #fff;
}
*/
/*
form input[type=submit]:hover,
button.boton:hover
{
opacity: 0.8;

transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
}
*/

.disabled
{
  color: #999;
  pointer-events: none !important;
  background-color: #fff;
  cursor: not-allowed;
  box-shadow: none !important;
  font-weight: normal;
}

input[type=text].disabled,
select.disabled {
  color: #999;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed;
  pointer-events: none;
}

/* controles en formulario */
form span.titulo
{
  position: relative;
  display: block;
  font-size: 18px !important;
  color: #212121 !important;
  padding: 0 !important;
  margin-bottom: 20px;
}


div.input
{
  position: relative;
  display: block;
  margin-bottom: 20px;    
  overflow: inherit;
}

div.input > label,
form label
{
  position: relative;
  display: block;
  font-weight: normal;
  font-size: 14px;
  color: #000;
  /*  margin-bottom: 2px !important;
  text-align: left;
  */
}

div.input > span.nota,
form label > span.nota
{
  color: #444;
  font-weight: 500;
  font-size: 12px;
}

input[type=search]
{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  padding-left: 35px !important;
  border-radius: 5px !important;
  background-color: #fff !important;
  border: 1px solid #ccc;
  outline: none;
  background: url("/imagenes/icono-busqueda.png") no-repeat;
  background-position: left center;
  font-size: 13px;

  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;

  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
}


input[type=checkbox].slide
{
position: relative;
display: inline-block;
vertical-align: middle;
width: 30px;
height: 15px;
background-color: #c6c6c6;
outline: none;
border-radius: 20px;
-webkit-appearance: none;
box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
border-radius: 20px;
left: 0;
top: 0;
background-color: #c6c6c6;
transform: scale(1.1);
box-shadow: 0 2px 5px rgba(0,0,0,0.2);

}

input[type=checkbox].slide + label
{
  display: none;
}

input:checked[type=checkbox].slide
{
background-color: #cc3333;
}


input[type=checkbox].slide:before
{
content: '';
position: absolute;
width: 15px;
height: 15px;
border-radius: 20px;
top: 0;
left: 0;
background-color: #fff;
transform: scale(1.1);
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
transition: 0.5s;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
}

input:checked[type=checkbox].slide:before
{
left: 15px;
}


/*
table tbody tr td input[type=checkbox] 
{
display: none;
}

table tbody tr td input[type=checkbox] + label
{
display: block;
margin: 0.2em;
cursor: pointer;
}

table tbody tr td input[type=checkbox] + label:before
{
content: '\2714';
border: 0.1em solid #c6c6c6;
border-radius: 0.2em;
width: 1em;
display: inline-block;
height: 1em;
padding-left: 0.2em;
padding-bottom: 0.3em;
margin-right: 0.2em;
vertical-align: bottom;
color: transparent;

transition: .2s;
-webkit-transition: .2s;
-moz-transition: .2s;
}


table tbody tr td input[type=checkbox]:checked + label:before
{
background-color: #cc3333;
color: #fff;
border-color: #cc3333;
}

table tbody tr td input[type=checkbox] + label:active:before
{
transform: scale(0);
-webkit-transform: scale(0);
-moz-transform: scale(0);

transition: .2s;
-webkit-transition: .2s;
-moz-transition: .2s;

}

table tbody tr td input[type=checkbox]:disabled + label:before
{
content: '';
pointer-events: none;
border-color: #c6c6c6;
color: #ccc;

}
*/


input[type=checkbox] 
{
  display: none;
}

input[type=checkbox] + label
{
  display: block;
  margin: 0.2em;
  cursor: pointer;
}

input[type=checkbox] + label:before
{
  content: '\2714';
  border: 0.1em solid #c6c6c6;
  border-radius: 0.2em;
  width: 1em;
  display: inline-block;
  height: 1em;
  padding-left: 0.2em;
  padding-bottom: 0.3em;
  margin-right: 0.2em;
  vertical-align: bottom;
  color: transparent;

  transition: .2s;
  -webkit-transition: .2s;
  -moz-transition: .2s;
}

table thead th input[type=checkbox] + label:before
{

  color: #ccc;

}


input[type=checkbox]:checked + label:before
{
  background-color: #cc3333;
  color: #fff;
  border-color: #cc3333;
}

input[type=checkbox] + label:active:before
{
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);

  transition: .2s;
  -webkit-transition: .2s;
  -moz-transition: .2s;

}

input[type=checkbox]:disabled + label:before
{
  content: '';
  pointer-events: none;
  border-color: #c6c6c6;
  color: #ccc;

}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
  margin-right: 10px;
}

[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #fff;
}

[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
  content: '';
  width: 12px;
  height: 12px;
  background: #cc3333;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

[type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

[type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.chosen-container
{
  width: 100% !important;  
}

.chosen-container-single .chosen-drop
{
  position: absolute !important;
}

.select2-container
{
  z-index: 2313222224 !important;
}

.select2-container--default,
.select2-selection--single
{
  background-color: #eee !important;
  border: none !important;
  font-size: 13px;

}


div.input > .select2-container
{
  position: relative;
  width: 100% !important;
  z-index: 2313222224 !important;

}


div.input > input[type=text],
div.input > input[type=password],
div.input > select,
div.input > input[type=number],
div.input > input[type=email],
div.input > textarea,
div.input > input[type=checkbox],
input[type=text].input
{
  position: relative;
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 0;
  border-radius: 5px !important;
  background-color: #eee;
  border: none;
  outline: none;
  font-size: 13px;
  text-transform: uppercase;

  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;

  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;

}

div.input > input[type=text]:focus,
div.input > input[type=password]:focus,
div.input > input[type=number]:focus,
div.input > input[type=email]:focus,
div.input > select:focus,
div.input > textarea:focus,
div.input > input[type=checkbox]:focus,
div.input > textarea:focus,
input[type=text].input:focus
{
  background-color: #ccc;
}

div.input > textarea
{
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  resize: none;
  height: 90px;
  padding: 10px;
}

textarea.texto-normal
{
  text-transform: none !important;
}

textarea.textarea-chico
{
  height: 90px !important;
}

textarea.textarea-mediano
{
  height: 120px !important;
}

textarea.textarea-grande
{
  height: 150px !important;
}

.select2,
.select2-hidden-accessible
{
  padding: 0 !important;
}


div.columnas > div
{
  position: relative;
  display: inline-block !important;
  vertical-align: top;
  margin-right: 10px;
}

div.columnas-2 > div
{
  position: relative;
  display: inline-block !important;
  vertical-align: top;
  margin-right: 20px;
}

select {
  position: relative;
  padding: 5px;
  border-radius: 5px;
  border: none;
  background-color: #eee;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

}

/*
div.seccion
{
position: relative;
display: block;
margin-bottom: 20px;
}

div.seccion > span.titulo
{
position: relative;
display: block;
font-size: 20px;
font-weight: normal;
color: #212121;
padding: 0;
margin-bottom: 15px;
}

div.seccion div.input
{
position: relative;
display: block;
margin-bottom: 20px;
width: 100%;
}

div.seccion div.input > label
{
position: relative;
display: block;
font-weight: normal;

}

div.seccion div.input > input[type=text],
div.seccion div.input > input[type=password],
div.seccion div.input > select,
div.seccion div.input > textarea
{
position: relative;
display: block;
width: 100%;
padding: 10px;
margin-bottom: 0;
border-radius: 3px !important;
background-color: #fff;
border: 1px solid #ccc;
outline: none;

box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;

transition: all 1s ease;
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;

}

div.seccion div.input > input[type=text]:focus,
div.seccion div.input > input[type=password]:focus,
div.seccion div.input > select:focus,
div.seccion div.input > textarea:focus
{
border: 1px solid #757575;

transition: all 1s ease;
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
}

div.seccion div.input > span

{
position: relative;
display: inline-block;
vertical-align: middle;
color: #757575;
}
*/

/*
.loader{
position: fixed;
display: none;
top: 50%;
left: 50%;

margin: 0 0 2em;
height: 100px;
width: 20%;
text-align: center;
padding: 1em;
margin: 0 auto 1em;
vertical-align: top;

transform: translate(-50%,-50%);
-webkit-transform: translate(-50%,-50%);
-moz-transform: translate(-50%,-50%);

}




/*
Set the color of the icon

svg path,
svg rect{
fill: #fff;
}
*/

.loader{
  position: fixed;
  display: block;
  top: 50%;
  left: 50%;

  margin: 0 0 2em;
  height: 100px;
  width: 20%;
  text-align: center;
  padding: 1em;
  margin: 0 auto 1em;
  vertical-align: top;

  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);


}


div.loader-ajax
{
  position: absolute;
  display: block;
  top: -5px;
  right: 10px;
  z-index: 1;
}

/* control de  pestañas */
.dialogo-pestanias
{
  position: fixed;
  display: none;
  left: 50%;
  top: 50%;
  z-index: 1501 !important;
  background-color: #fff;
  border-radius: 5px;

  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);

  -moz-box-shadow: 0 0 10px #616161;
  -webkit-box-shadow: 0 0 10px #616161;
  box-shadow: 0 0 10px #616161;

  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
}

div.pestanias {
  position: relative;
  display: block;
  padding: 0 !important;

  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;

}

div.pestanias > div.opciones {
  position: relative;
  display: block;
  margin: 10px 0;

}

div.pestanias > div.opciones > a
{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: #444;
  font-size: 15px;
  text-decoration: none;
  padding: 5px;
  border-bottom: 1px solid #444;

}

.dialogo div.pestanias > div.opciones > a
{
  border-bottom: 1px solid #fff;

}

div.pestanias > div.opciones > a.seleccionado
{
  position: relative;
  display: inline-block;
  background-color: #fff;
  color: #cc3333;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid #cc3333;
}

div.dialogo div.pestanias > div.opciones > a.seleccionado
{
  font-weight: normal;
}

div.pestanias > div.contenido
{
  position: relative;
  display: block;
  padding-top: 20px;

  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;

}


div.pestanias > div.contenido > div {
  position: relative;
  display: none;
}
/*
.dialogo div.pestanias > div.contenido > div{
    max-height: 450px;
  
}
*/

div.pestanias > div.contenido > div.seleccionado
{
  display: block;
}

div.seccion
{
  position: relative;
  display: inline-block;
  vertical-align: top;
}



.boton,
.boton-cancelar
{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  background-color: #cc3333;
  color: #fff;
  padding: 8px;
  border-radius: 5px;
  text-decoration: none;
  line-height: 20px;
  border: 0;
  text-align: center;
  cursor: pointer;

  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;

}

.boton-cancelar
{
  background-color: #fff;
  color: #212121 !important;
  border: 1px solid #ccc;
  font-weight: 500 !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  
}

.alinear-izquierda
{
  text-align: left;
}

.alinear-centro
{
  text-align: center !important;
}

.alinear-derecha
{
  text-align: right;
}

.flotar-derecha
{
  float: right;
  margin-right: 0 !important;
}

.flotar-izquierda
{
  float: left;
  margin-left: 0 !important;
}


div.alinear-derecha
{
  position: relative;
  display: block;
  text-align: right;
  clear: both;
  width: 100%;
  margin-bottom: 0 !important;
  overflow: visible;
  height: 40px;
}

/*
div.alinear-derecha .boton-cancelar
{    
position: relative;
color: #444;
border-radius: 3px;
padding: 8px;
font-weight: bold;
background-color: #eee;
border: 0;
font-size: 13px;
cursor: pointer;
text-transform: capitalize;
box-shadow: 0 0 5px #211221;
outline: none;
float: right;
text-decoration: none;

box-shadow: 2px 2px 5px #616161;
-webkit-box-shadow: 2px 2px 5px #616161;
-moz-box-shadow: 2px 2px 5px #616161;

transition: all 0.5s ease-out;
-webkit-transition: all 0.5s ease-out;
-moz-transition: all 0.5s ease-out;
}

div.alinear-derecha .boton,
div.alinear-derecha input[type=submit]
{   
position: relative;
color: #fff;
border-radius: 3px;
padding: 8px 10px;
font-weight: normal;
background-color: #cc3333;
border: 0;
font-size: 13px;
cursor: pointer;
text-transform: capitalize;
box-shadow: 0 0 5px #211221;
outline: none;
float: right;    
text-decoration: none;
line-height: 20px;

box-shadow: 2px 2px 5px #616161;
-webkit-box-shadow: 2px 2px 5px #616161;
-moz-box-shadow: 2px 2px 5px #616161;

transition: all 0.5s ease-out;
-webkit-transition: all 0.5s ease-out;
-moz-transition: all 0.5s ease-out;
}

div.alinear-derecha input[type=submit],
div.alinear-derecha a.boton-cancelar,
div.alinear-derecha a.boton
{
margin-left: 5px;
}

div.alinear-derecha .boton.disabled,
div.alinear-derecha a.disabled,
div.alinear-derecha a.boton-cancelar.disabled,
input[type=submit].disabled
{
color: #999 !important;
background-color: #fff !important;
border: 1px solid #ddd !important;
cursor: not-allowed !important;
box-shadow: none !important;
font-weight: normal !important;
pointer-events: none;
}
*/


.control-tabs
{
  position: relative;
  display: block;
  width: 100%;

}

div.control-tabs .tabs
{
  position: relative;
  display: block;
}

div.control-tabs .tabs > a
{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: #444;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  margin: 0;
  margin-right: -5px;
  text-decoration: none;
}

div.control-tabs .tabs > a.seleccionada
{
  border-top: 3px solid #444;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;


}

div.control-tabs .contenido
{
  position: relative;
  display: block;
  padding: 10px;
  box-shadow: 0 0 10px #ccc;
  -webkit-box-shadow: 0 0 10px #ccc;
  -moz-box-shadow: 0 0 10px #ccc;

  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;


}

div.control-tabs .contenido > div
{
  display: none;    
}

div.control-tabs .contenido > div:first-of-type
{
  display: block;    
}

div.control-tabs .tabs > a > span
{
  position: relative;
  display: block;
  margin-bottom: 10px;
}

div.control-tabs .botones-accion
{
  position: absolute;
  display: block;
  bottom: 10px;
  right: 10px;
}

.dialogo div.col-2
{
  position: relative;
  display: table !important;
  width: 100%;
  margin-bottom: 20px;
  -webkit-print-color-adjust: exact;
}

.dialogo div.col-2 > div
{
  position: relative;
  display: table-cell !important;
  vertical-align: top;

  -webkit-print-color-adjust: exact;

  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.dialogo div.col-2 > div:first-of-type
{ 
  width: 50%;
  padding-right: 5px;
}

.dialogo div.col-2 > div:last-of-type
{
  width: 50%;
  padding-left: 5px;

}

div.col-2
{
  position: relative;
  display: table !important;
  width: 100%;
  margin-bottom: 20px;
  overflow: auto;

  -webkit-print-color-adjust: exact;
}

div.col-2 > div
{
  position: relative;
  display: table-cell !important;
  vertical-align: top;

  -webkit-print-color-adjust: exact;

  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

div.col-2 > div:first-of-type
{ 
  width: 50%;
  padding-right: 40px;
}

div.col-2 > div:last-of-type
{
  width: 50%;
  padding-left: 5px;

}

div.col-3
{
  position: relative;
  display: table;
  width: 100%;
  margin-bottom: 20px;
  overflow: auto;

  -webkit-print-color-adjust: exact;
}

div.col-3 > div
{
  position: relative;
  display: table-cell;
  vertical-align: top;
  width: 33.33%;

  -webkit-print-color-adjust: exact;


  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

div.col-3 > div:first-of-type
{ 
  padding-right: 5px;
}

div.col-3 > div:last-of-type
{
  padding-left: 5px;
  padding-right: 5px;
}

div.col-3 > div:last-of-type
{
  padding-left: 5px;
}

div.col-4
{
  position: relative;
  display: table;
  width: 100%;
  margin-bottom: 20px;
  overflow: auto;

  -webkit-print-color-adjust: exact;
}

div.col-4 > div
{
  position: relative;
  display: table-cell;
  vertical-align: top;
  width: 25%;

  -webkit-print-color-adjust: exact;


  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}


.padding-izquierdo
{
  position: relative;
  padding-left: 30px !important;
}

.pestanias-vertical
{
  position: relative;
  display: block;
}

.pestanias-vertical > div
{
  position: relative;
  display: block;
  margin-bottom: 20px;
  padding: 10px;
  background-color: #fff;
  border-radius: 5px;

  box-shadow: 0 0 10px #ccc;
  -webkit-box-shadow: 0 0 10px #ccc;
  -moz-box-shadow: 0 0 10px #ccc;

  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;

}

.pestanias-vertical > div > div.contenido
{
  display: none;
}

.pestanias-vertical > div > a
{
  text-decoration: none;
}

.pestanias-vertical > div > span.titulo,
.pestanias-vertical > div > a > span.titulo
{
  position: relative;
  display: block;
  font-size: 20px;
  font-weight: normal;
  text-transform: capitalize;
}


.cerrar-cuadro
{
  position: absolute;
  display: block;
  top: 10px;
  right: 50px;
  color: #757575;
  z-index: 1;
}

.cerrar-cuadro:hover
{
  opacity: 0.8;
}

/* menu de acordion */
.navs {
  position: fixed;
  right: 30px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
  color: #fff;
  cursor: pointer;
}

.navs>li,
.navs:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: #cc3333;

  box-shadow: 0 0 10px #212121;
  -webkit-box-shadow: 0 0 10px #212121;
  -moz-box-shadow: 0 0 10px #212121;

}

.navs > li {
  transition: all .6s;
  -webkit-transition: all .6s;
  -moz-transition: .6s;
}

.navs:after {
  content: attr(data-close);
  content: '\f065';
  font-family: FontAwesome;
  z-index: 1;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: #212121;
}

.navs.active:after { 
  font-family: FontAwesome;
  content: attr(data-open); 
  content: '\f066';
}

.navs a {
  position: relative;
  display: block;
  /* font-family: "Font Awesome 5 Free"; */
  font-family: 'FontAwesome'; 
  padding-top: 3px;
  width: 50px;
  height: 50px;
  display: inline-block;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  text-decoration: none;
  color: #fff;
  font-size: 0.8em;
}

.navs a > .fas,
.navs a > i
{
  font-size: 23px;
}

.navs li div.tooltip
{
  position: absolute;
  display: block;
  top: 5px;
  left: -50%;
  background-color: #ccc;
  color: #fff;

  box-shadow: 0 0 10px #ccc;
  -webkit-box-shadow: 0 0 10px #ccc;
  -moz-box-shadow: 0 0 10px #ccc;

}

.campo-requerido
{
  background-color: #ba4141 !important;
}


.spinner {
  width: 30px;
  height: 30px;
  background: #eee;
  border-radius: 50%;
  position: absolute;

  display: inline-block;

  top: 4px;
  right: 20px;

  /*
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  */

}
.spinner:after, .spinner:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.spinner-1:after {
  position: absolute;
  top: -2px;
  left: -2px;
  border: 2px solid transparent;
  border-top-color: #212121;
  border-bottom-color: #212121;
  -webkit-animation: spinny 1s linear infinite;
  animation: spinny 1s linear infinite;
}

@-webkit-keyframes spinny {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  50% {
    -webkit-transform: rotate(45deg) scale(1.2);
    transform: rotate(45deg) scale(1.2);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
    transform: rotate(360deg) scale(1);
  }
}

@keyframes spinny {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  50% {
    -webkit-transform: rotate(45deg) scale(1.2);
    transform: rotate(45deg) scale(1.2);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
    transform: rotate(360deg) scale(1);
  }
}


.spinner-2 {
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
.spinner-2:before, .spinner-2:after {
  height: 15px;
  width: 15px;
  background: #cc3333;
  position: absolute;
  top: -10px;
  left: 50%;
  margin-left: -10px;
  -webkit-animation: bouncy 1s ease-in infinite;
  animation: bouncy 1s ease-in infinite;
}
.spinner-2:after {
  top: auto;
  bottom: -10px;
  -webkit-animation: bouncy 0.5s ease-in infinite;
  animation: bouncy 0.5s ease-in infinite;
}

@-webkit-keyframes bouncy {
  0%, 100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
}

@keyframes bouncy {
  0%, 100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.spinner-3 {
  background: none;
  border: 4px solid #eee;
}
.spinner-3:after {
  width: 4px;
  height: 15px;
  background: #212121;
  border-radius: 0px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -2px;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

.spinner-4:before, .spinner-4:after {
  position: absolute;
  top: 0;
  left: 0;
  /*
 margin-top: -50px;
  margin-left: -50px;
  */
  background: #cc3333;
  -webkit-animation: pulse 3s linear infinite;
  animation: pulse 3s linear infinite;
  opacity: 0;
}
.spinner-4:after {
  -webkit-animation: pulse 2s linear 2.3s infinite;
  animation: pulse 2s linear 2.3s infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.spinner-5 {
  height: 0px;
  width: 0px;
}
.spinner-5 span {
  display: block;
  height: 20px;
  width: 20px;
  background: #cc3333;
  border-radius: 50%;
  position: absolute;
  top: 0px;
}
.spinner-5 span:nth-child(1) {
  left: -40px;
  -webkit-animation: bounce 1s ease-in-out infinite;
  animation: bounce 1s ease-in-out infinite;
}
.spinner-5 span:nth-child(2) {
  -webkit-animation: bounce 1s ease-in-out 0.33s infinite;
  animation: bounce 1s ease-in-out 0.33s infinite;
}
.spinner-5 span:nth-child(3) {
  left: 40px;
  -webkit-animation: bounce 1s ease-in-out 0.66s infinite;
  animation: bounce 1s ease-in-out 0.66s infinite;
}

@-webkit-keyframes bounce {
  0%, 75%, 100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  25% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

@keyframes bounce {
  0%, 75%, 100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  25% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
.track {
  width: 300px;
  height: 0px;
  border-top: 8px dotted #eee;
  display: inline-block;
}

.kurt {
  -webkit-animation: moveChomp 3s linear infinite;
  animation: moveChomp 3s linear infinite;
  background: pink;
  width: 0px;
  height: 0px;
  position: relative;
  top: -15px;
}

/*
.loader {
background: none;
display: inline-block;
position: relative;
}
.loader:before, .loader:after {
content: "";
display: block;
height: 0px;
width: 0px;
border: 30px solid orangered;
border-radius: 50%;
border-right-color: transparent;
border-bottom-color: transparent;
position: absolute;
top: 50%;
margin-top: -34px;
animation: topchomp 1s ease-in-out infinite reverse;
}
.loader:after {
border-color: orangered;
border-top-color: transparent;
border-right-color: transparent;
-webkit-animation: bottomchomp 1s ease-in-out infinite;
animation: bottomchomp 1s ease-in-out infinite;
}

*/

/*
.barra-loading {
height: 4px;
width: 100%;
position: absolute;
top: 0;
overflow: hidden;
background-color: #fff;
}
*/

.barra-loading:before{
  display: block;
  position: absolute;
  content: "";
  left: 0px;
  width: 200px;
  height: 4px;
  background-color: #cc3333;
  animation: loading 2s linear infinite;
}

@keyframes loading {
  from {left: 0px; width: 15%;}
  50% {width: 30%;}
  70% {width: 50%;}
  80% { left: 70%;}
  95% {left: 80%;}
  to {right: 100%;}
}

/*
.circulo-loading {
background-color: #fff !important;
content: '' !important;
height: 32px !important;
width: 32px !important;

border: 3px solid #f9f9f9 !important;
border-right-color: #cc3333 !important;
border-radius: 50%  !important;
box-shadow: none !important;
animation: rotate 0.8s infinite linear;
}

@keyframes rotate {
from {
transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}
/*
* 
* 
* 
*  0%    { transform: rotate(0deg); }
100%  { transform: rotate(360deg); }
*/

.ripple {
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}
.ripple:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform .5s, opacity 1s;
}
.ripple:active:after {
  transform: scale(0, 0);
  opacity: .3;
  transition: 0s;
}


.circle-chart
{
  width: 60px;
  height: 60px;
}

table .circle-chart
{
  width: 60px !important;
  height: 60px !important;
}


/* VENTANA */
/*
.ventana
{
position: fixed;
top: 50%;
left: 50%;
border-radius: 3px;
width: 750px;
height: 550px;
z-index: 2313222222;
background-color: #fff;

transform: translate(-50%,-50%);
-webkit-transform: translate(-50%,-50%);
-moz-transform: translate(-50%,-50%);

box-shadow: 0 0 10px #ccc;
-webkit-box-shadow: 0 0 10px #ccc;
-moz-box-shadow: 0 0 10px #ccc;

}

.ventana .encabezado,
.ventana .contenido,
.ventana .pie
{
position: relative;
display: block;
padding: 5px 8px;
}

.ventana .encabezado
{
margin-bottom: 15px;

}

.ventana .contenido,
.ventana .pie
{
margin-bottom: 10px;

}

.ventana .encabezado .encabezado-titulo .titulo
{
position: relative;
display: block;
font-size: 20px;
}

.ventana .encabezado .encabezado-titulo .subtitulo
{
position: relative;
display: block;
font-size: 16px;
}

*/

.dialogo .encabezado-opciones
{
  position: absolute;
  display: block;
  top: 5px;
  right: 8px;
  padding-right: 8px;
  z-index: 1;
}

.dialogo .encabezado-opciones a,
.dialogo .encabezado-opciones input
{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  color: #616161;
  font-size: 16px;
  font-weight: 300;
  margin-left: 7px;
}


.dialogo .encabezado-opciones .slider {
  -webkit-appearance: none;
  width: 70px;
  height: 4px;
  border-radius: 5px;  
  background: #ccc;

  /* d3d3d3 */
  outline: none;
  opacity: 1;
  -webkit-transition: .2s;
  transition: opacity .2s;
}


.dialogo .encabezado-opciones .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%; 
  background: #616161;
  cursor: pointer;

  /*
  box-shadow: 0 0 10px #ccc;
  -webkit-box-shadow: 0 0 10px #ccc;
  -moz-box-shadow: 0 0 10px #ccc;
  */

}

.dialogo .encabezado-opciones .slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #616161;
  cursor: pointer;

  /*
  box-shadow: 0 0 10px #ccc;
  -webkit-box-shadow: 0 0 10px #ccc;
  -moz-box-shadow: 0 0 10px #ccc;
  */
}


.dialogo .encabezado-opciones a.disabled
{
  color: #999 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;    
  border: 0 !important;
}

.dialogo .encabezado-opciones a:last-of-type
{
  font-size: 22px;


  /*
  color: #212121;
  color: #212121;
  border-left: 1px dotted #ccc;
  padding-left: 5px;
  margin-left: 5px;

  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  */


}

.dialogo .encabezado-opciones .loader-dialogo{ 
  position: relative;
  display: none;
  text-align: center;
  vertical-align: middle;

}

/*
Set the color of the icon
*/
.dialogo .encabezado-opciones svg path,
.dialogo .encabezado-opciones svg rect{
  fill: #212121;
}

.dialogo.dialogo-activo
{
  z-index: 2147483646 !important;
}




/*
* Opciones de la pagina
* */
.pagina-opciones-1
{
  position: fixed;
  display: none;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100px;
  background-color: transparent;
  text-align: center;
}

.pagina-opciones-1 #disparador
{
  position: absolute;
  display: block;
  bottom: 20px;
  left: 50%;
  background-color: #212121;
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding-top: 15px;
  font-size:18px;
  width: 50px;
  height: 50px;
  border-radius: 50%;   
  z-index: 1;

  box-shadow: 0 0 10px #212121;
  -webkit-box-shadow: 0 0 10px #212121;
  -moz-box-shadow: 0 0 10px #212121;

  transform: translatex(-50%);
  -webkit-transform: translatex(-50%);
  -moz-transform: translatex(-50%);


  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;  

}

.pagina-opciones-1 #disparador:before{
  content: "\f325";
  font-family: "Font Awesome 5 Free";
  display: inline-block;


}

.pagina-opciones-1 #disparador.mostrandose:before{
  /* content: "\f322"; */
  content: "\f00d"; 
  font-family: "Font Awesome 5 Free";
  display: inline-block;


}

.pagina-opciones-1 #opciones a
{
  position: absolute;
  display: block;
  opacity: 0;
  bottom: 20px;
  left: 50%;
  background-color: #cc3333;
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding-top: 15px;
  font-size: 18px;
  width: 50px;
  height: 50px;
  border-radius: 50%;

  box-shadow: 0 0 5px #616161;
  -webkit-box-shadow: 0 0 5px #616161;
  -moz-box-shadow: 0 0 5px #616161;


  transform: translatex(-50%);
  -webkit-transform: translatex(-50%);
  -moz-transform: translatex(-50%);

  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;

  transition: background-color 0.5s ease;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
}

.pagina-opciones-1 #opciones a:hover
{
  opacity: 0.8;

  transition: background-color color 0.5s ease;
  -webkit-transition: background-color color 0.5s ease;
  -moz-transition: background-color color 0.5s ease;

}

.pagina-opciones-1 #opciones a span
{
  position: absolute;
  display: block;
  opacity: 0;
  top: 15px;
  right: 60px;
  background-color: #212121;
  color: #fff;
  font-size: 12px;
  padding: 2px 5px;
  border-radius: 5px; 

  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}

.pagina-opciones-1 #opciones a:hover span
{
  opacity: 1;

  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}


.subrayado
{
  text-decoration: underline;
}


.negrita
{
  font-weight: bold;
}

