
@import '/css/fonts.css?v=2';

* { font-family: puma; }

body {
    margin: 0px;
    background: white;
    width: 100%;
}

.botones {
    height: 50px;
    width: 95%;
    margin: auto;
}

.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 #242b2f;
    background-color: #242b2f;
    color: white;
}

.alertBotones:disabled {
    background-color: #bbb;
    color: #eee;
}

.error {
    width: 85%;
    margin: auto;
    margin-top: 10px;
    text-align: center;
    font-size: large;
    border: none;
}

.error .input {
    border: 1px solid black;
    font-weight: bold;
    letter-spacing: 2px;
    background: #303030;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    transition: 1s;
}

.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;
}

#DPSinfoDebug {
  font-size: x-small;
}

#DPSinfoDebug fieldset {
  background-color: wheat;
}

#DPSinfoDebug span {
  font-weight: bold;
}

#DPSinfoDebug legend {
  font-weight: bold;
  border: 1px black solid;
  background-color: white;
}

#DPSinfoDebug td {
  vertical-align: top;
}



#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; }

/*subpantallas de carga grupal*/
/*
#contenido { max-height:300px; overflow-y: hidden; overflow:auto;}
#contenido button { cursor: pointer; }
#contenido table { background: white; border: 1px solid black; font-size:small; }
#contenido table th {
  background: steelblue;
  margin:auto;
  padding: 0px;
  color: white;
  font-size: medium;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2px;
}
#contenido input { margin-right:3px; }
.tr0 { background-color: #CCC; }
.tr1 { background-color: #DDD; }
#cantidad { text-align: right; }
#add { cursor: pointer; }
*/

/** inicio switch **/
.switch {
  position        : relative;
  display         : inline-block;
  vertical-align  : middle;
  width           : 56px;
  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: -webkit-linear-gradient(top, #eeeeee, white 25px);
  background-image: -moz-linear-gradient(top, #eeeeee, white 25px);
  background-image: -o-linear-gradient(top, #eeeeee, white 25px);
  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: #242b2f;
  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 **/


.dynarch-horiz-menu .item:last-child {
  position: fixed;
  right: 0;
}

.dynarch-horiz-menu .item:last-child:hover {
  background-color: inherit;
  border-color: inherit;
}

.dynarch-horiz-menu .item:last-child .label {
  font-weight: bold;
  font-size: 1.2em;
}

.atencion{
  display: inline;
  padding: 5px;
  text-align: left;
  background: rgb(190, 190, 190);
  font-size: x-small;
}

.atencion_dos{
  background: rgb(100, 100, 100);
  color: white;
  font-size: small;
}

.contenedor_video{
  display: block;
  padding-top: 70px;
  height: 100%;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.titulo_video{
  margin-bottom: 10px;
  background: black;
  width: 65%;
  margin-left: 17.5%;
  color: white;
  font-family: pumaBold;
  font-size: x-large;
  text-align: left;
  padding: 5px;
  box-sizing: border-box;
}

/*globito de notificaciones superior derecho*/
.globito{
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  z-index: 1000;
  height: 300;
  width: 300;
}

.monster{
  position: absolute;
  top: 200;
  right: 20;
  transition: 2s;
  z-index: 1001;
}

.moverlo{
  transform: translate(-400px, 50px);
}

.burbuja{
  position: absolute;
  top: 10;
  right: 20;  
}

.burbuja_texto{
  position: absolute;
  top: 50;
  right: 65;
  color: #333333;
  width: 200px;
  font-size: 15pt;
  font-family: calibri;
  text-align: center;
}

.globito:hover{
  cursor: pointer;
}

.novedad{
  position: absolute;
  top: 2%;
  right: 20%;
  width: 60%;
  display: none;
  cursor: no-drop;
  z-index: 1000;
}

.cobertor_novedad{
  display: none;
  position: absolute;
  background: rgba(0,0,0,0.4);
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
}



/* JS: alert( txt, btnOK ) ###  ###  ###  ###  ###  ###  ###  ###  ###  ###  ###  ### */
#alert_content {
  text-align: center;
}

#alert_content .mac_os_x_message {
  font-size: 1rem;
  padding: 1vh 1vw;
  font-weight: bold;
}

#alert_content .mac_os_x_buttons {
  padding: 1vh 0;
}

#alert_content .mac_os_x_buttons [type=button] {
  font-weight: bold;
  min-width: 100px;
  padding: 3px 20px;
}
/* ###  ###  ###  ###  ###  ###  ###  ###  ###  ###  ###  ### */

#tab .titulos{
  background: #242b2f;
  color: white;
}

.del{
  cursor: pointer;
  border: none;
  color: white;
  background: #242b2f;
  padding: 5px 15px;
  transition: 0.24s;
}

.portadaGrande{
  position: absolute;
  top: 0;
  left: 0;
  height: 150% !important;
  max-width: inherit !important;
  aspect-ratio: auto;
  z-index: 300;
  cursor: zoom-out !important;
}