
* {
  font-family: Verdana;
  box-sizing: border-box;
}

body {
  margin: 0px;
  background: white;
  width: 100%;
}

.botones {
    width: 100%;
    padding: 10px 20px;
}

.botones span {
    margin-right: 5px;
}

.botones span button, .alertBotones  {
    cursor: pointer;
    border: 2px solid silver;
    color: #00395a;
    font-size: 14px;
    padding: 5px 15px;
    transition: 0.24s;
}

.botones span button:hover, .alertBotones:hover {
    border: 2px solid #00395a;
    background-color: #00395a;
    color: white;
}

.alertBotones:disabled {
    background-color: #bbb;
    color: #eee;
}

.error {
    width: 85%;
    margin: auto;
    margin-top: 10px;
    text-align: center;
    font-size: medium;
    border: 2px solid #696969;
    background-color: #c6e2ff;
    border-radius: 16px;
}

.error .input {
    border: 1px solid black;
    font-weight: bold;
    letter-spacing: 2px;
    background: #303030;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
}

.error .input:hover {
    background: #E2E2E2;
    color: black;
}

/* ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** */


#backup {
  border: 5px ridge darkred;
  padding: 15px;
  width:50%;
  margin: auto;
  margin-top: 20px;
  font-size: normal;
  font-weight: bold;
  background-color: rgb(255,255,204);
}

#errores {
  border: 5px ridge darkred;
  padding: 15px;
  width:50%;
  margin: auto;
  margin-top: 20px;
  font-size: normal;
  font-weight: bold;
  background-color: rgb(255,255,204);
}

#backup_path {
  font-size: small;
  text-align: center;
}


#infoTimeOut_content { font-size: 12pt;
                       text-align: center;
                       padding-top: 10px;
                       color: white;
                       background-color: black; }

/**** bloque agregado por el autocompletar *****/
div.autocomplete {
  position:absolute;
  width:250px;
  border:1px solid #888;
  margin:0px;
  padding:0px;
  z-index: 5;
  background-color: #ffc; /* marco */
}


div.autocomplete ul {
  list-style-type:none;
  margin:0px;
  padding:0px;
}
div.autocomplete ul li.selected {
  border: 1px solid black; /* marco */
  background-color: #7E7E7E; /* marco */
  color: white; /* marco */
}
div.autocomplete ul li {
  list-style-type:none;
  display:block;
  margin:0;
  padding: 0px 2px 0px 2px; /* marco: 2px */
  /*height:32px;*/
  cursor:pointer;
  font-size: small;
  /* font-weight: bold; */
  border: 1px solid transparent; /* marco */
  border-bottom: 1px solid silver; /* marco */
}

div.autocomplete ul li span.informal {
  display: block;
  padding-left: 5px;
  font-style: oblique;
}

tr.marcado td{
  background-color: lime;
}

.aviso { margin: auto;
        margin-top: 20px;
         width: 60%;
         border: 1px groove silver;
         background: #E5E5E5; }


/** inicio switch **/
.switch {
  position        : relative;
  display         : inline-block;
  vertical-align  : middle;
  width           : 70px;
  height          : 20px;
  padding         : 3px;
  background-color: white;
  border-radius   : 18px;
  box-shadow      : inset 0 -1px white, inset 0 1px 1px rgba(0, 0, 0, 0.05);
  cursor          : pointer;
  background-image: linear-gradient(to bottom, #eeeeee, white 25px);
}

.switch-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.switch-label {
  position           : relative;
  display            : block;
  height             : inherit;
  font-size          : 10px;
  text-transform     : uppercase;
  background         : #eceeef;
  border-radius      : inherit;
  box-shadow         : inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
  transition         : 0.15s ease-out;
  transition-property: opacity background;
}
.switch-label:before, .switch-label:after {
  position: absolute;
  top: 50%;
  margin-top: -.5em;
  line-height: 1;
  -webkit-transition: inherit;
  -moz-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}
.switch-label:before {
  content: attr(data-off);
  right: 11px;
  color: black;
  text-shadow: 0 1px rgba(255, 255, 255, 0.5);
}
.switch-label:after {
  content: attr(data-on);
  left: 11px;
  color: white;
  text-shadow: 0 1px rgba(0, 0, 0, 0.2);
  opacity: 0;
}
.switch-input:checked ~ .switch-label {
  background: #47a8d8;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
}
.switch-input:checked ~ .switch-label:before {
  opacity: 0;
}
.switch-input:checked ~ .switch-label:after {
  opacity: 1;
}

.switch-handle {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 10px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  background-image: -webkit-linear-gradient(top, white 40%, #f0f0f0);
  background-image: -moz-linear-gradient(top, white 40%, #f0f0f0);
  background-image: -o-linear-gradient(top, white 40%, #f0f0f0);
  background-image: linear-gradient(to bottom, white 40%, #f0f0f0);
  -webkit-transition: left 0.15s ease-out;
  -moz-transition: left 0.15s ease-out;
  -o-transition: left 0.15s ease-out;
  transition: left 0.15s ease-out;
}
.switch-handle:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -6px 0 0 -6px;
  width: 12px;
  height: 12px;
  background: #f9f9f9;
  border-radius: 6px;
  box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
  background-image: -webkit-linear-gradient(top, #eeeeee, white);
  background-image: -moz-linear-gradient(top, #eeeeee, white);
  background-image: -o-linear-gradient(top, #eeeeee, white);
  background-image: linear-gradient(to bottom, #eeeeee, white);
}
.switch-input:checked ~ .switch-handle {
  left: calc(100% - 22px); /*40px; hack Marco*/
  box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}

.switch-green > .switch-input:checked ~ .switch-label {
  background: #4fb845;
}
/** fin switch **/



/** Inicio SystemWorking **/
div#systemWorking {
    background-color: rgba(255,255,255,.9);
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 5;
    display: flex;
    align-items: center;
}

.sk-circle {
  margin: auto;
  width: 200px;
  height: 200px;
  position: relative;
}
.sk-circle .sk-child {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.sk-circle .sk-child:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #333;
  border-radius: 100%;
  -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
          animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}
.sk-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg); }
.sk-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
      -ms-transform: rotate(60deg);
          transform: rotate(60deg); }
.sk-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg); }
.sk-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
      -ms-transform: rotate(120deg);
          transform: rotate(120deg); }
.sk-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
      -ms-transform: rotate(150deg);
          transform: rotate(150deg); }
.sk-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg); }
.sk-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
      -ms-transform: rotate(210deg);
          transform: rotate(210deg); }
.sk-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
      -ms-transform: rotate(240deg);
          transform: rotate(240deg); }
.sk-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg); }
.sk-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
      -ms-transform: rotate(300deg);
          transform: rotate(300deg); }
.sk-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
      -ms-transform: rotate(330deg);
          transform: rotate(330deg); }
.sk-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s; }
.sk-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
          animation-delay: -1s; }
.sk-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s; }
.sk-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s; }
.sk-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s; }
.sk-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s; }
.sk-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s; }
.sk-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s; }
.sk-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s; }
.sk-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s; }
.sk-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
          animation-delay: -0.1s; }

@-webkit-keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  } 40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  } 40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/** Fin SystemWorking **/


.kint-rich.kint-folder {
  z-index: 1 !important;
}

/*totalizador Grilla dps*/
.celda_total{
  display: inline-block;
}

.fila_total{
  padding: 12px;
}

.con_datos{
  text-align: right;
  font-size: 25pt;
  font-weight: bold;
  color: darkred;
  border: 1px solid grey;
  box-sizing: border-box;
}

@media only print {

  #cssmenu {
    display: none !important;    
    background-color: transparent;
  }
  .modal__container {
    width: 100% !important;
    height: 100% !important;
    overflow: visible;
    page-break-after:always !important; 
  }

  .modal__overlay{
    background-color:  #fff !important;
  }

  .modal__header, .modal__footer, .modal__close {
    display: none !important;
  }

  #cssmenu, .formy_ultimafila {
    display: none !important;
  }

  /*hide arrow number input */
  /* Chrome, Safari, Edge, Opera */
  input::-webkit-outer-spin-button,
  input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  /* Firefox */
  input[type=number] {
    -moz-appearance: textfield;
  }
   
  /* boton X de fechas */
  input[type="date"]::-webkit-inner-spin-button,    
  input[type="date"]::-webkit-clear-button { display: none; }


  ::-webkit-scrollbar {
      display: none !important;
  }
}

.select2-selection__choice {
  font-size:  17px !important;
  background-color: #b3d1d5 !important;
}

.cerrarSesion{
  right: 17px;
  position: absolute;
  top: 9px;
  text-decoration: none;  
  color: crimson;
  /*font-weight: bold;*/
  border: 2px solid crimson;
  border-radius: 9px;
  padding: 5px;
}

.cerrarSesion:hover{
  background: crimson;
  color: white;  
}

#alertaFlotante {
  position: absolute;
  font-weight: bold;
  right: 0px;
  border-radius: 3px;
  text-align: right;
  width: 30px;
  background: white;
  font-size: small;
  cursor: pointer;
  border: 3px solid #f90;
  color: #00395a;
  display: flex;  
  justify-content: center;
  height: 30px;
  padding: 5px;
  overflow: clip;
  animation:  animacion 0.9s linear infinite;
  top: -1px;
  z-index: 9;
}

@keyframes animacion {  
  from {background-color: orange;color: white;};
  to {background-color: white;color: #00395a;}

}

#alertaFlotante div{
  display: none;
  color: #00395a;
}

#alertaFlotante:hover{
  position: absolute;
  border: 3px solid silver;
  color: #00395a;
  background-color: white;
  text-align: right;
  width: fit-content;
  animation:none 0s;
}

#alertaFlotante:hover > div{
  display: block;
  color: #00395a;
  margin-right: 10px;

}
.semistransparente{
  border: 2px solid #fff1 !important;
  color: #fff1 !important;
  animation: none !important;
  background-color: #FFFFFF0A !important;

}
.semistransparente:hover div{
  color: #fff1 !important;
  animation: none !important; 
}