* {
  font-family: puma, arial;
}

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

/* PERSONALIZACION ESPECIAL PARA FIREFOX  */
@-moz-document url-prefix() {
  OPTION {
    font-size: .9em;
  }
}


.checks{
  float: right;
  display: inline-block;  
}

.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;
}

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

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

#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:120px;
  width: 60%;
  border: 1px groove silver;
  background: #E5E5E5;
}
.aviso > DIV {
  padding: 20px;
  text-align: center;
}

/** 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: 1001;
    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(243, 239, 239);
  font-size: x-small;
}

.atencion2{
  display: inline;
  padding: 5px;
  text-align: left;
  background: darkred;
  font-size: small;
  color: white;
}

/* 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;
}
/* ###  ###  ###  ###  ###  ###  ###  ###  ###  ###  ###  ### */
/* JS: confirm( txt, btnOK ) ###  ###  ###  ###  ###  ###  ###  ###  ###  ###  ###  ### */
#confirm_content {
  text-align: center;
}

#confirm_content .mac_os_x_message {
  font-size: 1rem;
  padding: 1vh 1vw;
  font-weight: bold;
}

#confirm_content .mac_os_x_buttons {
  padding: 1vh 0;
}

#confirm_content .mac_os_x_buttons [type=button] {
  font-weight: bold;
  min-width: 100px;
  padding: 3px 20px;
}
/* ###  ###  ###  ###  ###  ###  ###  ###  ###  ###  ###  ### */

.boton_grilla:hover{
  background: #57C66F !important;
  cursor: pointer;
}

.boton_habilitar_pedido{
  margin-right: 10px;
  float: right;
  padding: 4px;
  font-size: medium;
  cursor: pointer;
}

.boton_habilitar_pedido.si{
  background: mediumseagreen;
}

.boton_habilitar_pedido.si:hover{
  background: #999999;
}

.boton_habilitar_pedido.no{
  background: crimson;
}

.boton_habilitar_pedido.no:hover{
  background: #999999;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
/*
input[type=number] {
  -moz-appearance: textfield;
}
*/

.cartelFin{
  color: mediumseagreen;
  font-size: 15pt;
}

.subrenglon_grilla_grande{
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.rojo{
  background: crimson;
  color: white;
}

/* formato de mails */
.mail_normal{
  font-size:12pt; 
}

.mail_resaltar_uno{
  font-size:15pt; 
  font-weight:bold;
}

.mail_resaltar_uno{
  font-size:15pt; 
  font-weight:bold;
}

.mail_resaltar_grave{
  font-weight:bold; 
  color:crimson; 
  font-size:20pt;
}

.mensajePie{
  margin-top:40px;
  margin-left:40px;
}