/*=============================================
SCROLL SUAVE
=============================================*/

html {
  scroll-behavior: smooth;
}



/*=============================================
ESTILOS CIRCULOS
=============================================*/
span.circulo-c {
   border-radius: 0.8em;
  -moz-border-radius: 0.8em;
  -webkit-border-radius: 0.8em;
  display: inline-block;
  font-weight: bold;
  line-height: 1.6em;
  margin-right: 15px;
  text-align: center;
  width: 1.6em; 
  background-color: #009688;
  color:white;
}

span.circulo-t {
   border-radius: 0.8em;
  -moz-border-radius: 0.8em;
  -webkit-border-radius: 0.8em;
  display: inline-block;
  font-weight: bold;
  line-height: 1.6em;
  margin-right: 15px;
  text-align: center;
  width: 1.6em; 
  background-color: green;
  color:white;
}

span.circulo-r {
   border-radius: 0.8em;
  -moz-border-radius: 0.8em;
  -webkit-border-radius: 0.8em;
  display: inline-block;
  font-weight: bold;
  line-height: 1.6em;
  margin-right: 15px;
  text-align: center;
  width: 1.6em; 
  background-color: orange;
  color:white;
}

span.circulo-s {
   border-radius: 0.8em;
  -moz-border-radius: 0.8em;
  -webkit-border-radius: 0.8em;
  display: inline-block;
  font-weight: bold;
  line-height: 1.6em;
  margin-right: 15px;
  text-align: center;
  width: 1.6em; 
  background-color: gray;
  color:#efefef;
}


span.circulo {
   border-radius: 0.8em;
  -moz-border-radius: 0.8em;
  -webkit-border-radius: 0.8em;
  display: inline-block;
  font-weight: bold;
  line-height: 1.6em;
  margin-right: 15px;
  text-align: center;
  width: 1.6em; 
}



/*=============================================
BARRAS NAVEGACION
=============================================*/
/*.nav-link {
  color: white !important;
} */


.top-navegacion {
      background-color: #009688 !important;
}


.lateral-navegacion {
     background-color: #009688 !important; 
}


/*=============================================
MATERIAL SWITCH
=============================================*/
.material-switch > input[type="checkbox"] {
    display: none;   
}

.material-switch > label {
    cursor: pointer;
    height: 0px;
    position: relative; 
    width: 40px;  
}

.material-switch > label::before {
    background: rgb(0, 0, 0);
    box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    content: '';
    height: 16px;
    margin-top: -8px;
    position:absolute;
    opacity: 0.3;
    transition: all 0.4s ease-in-out;
    width: 40px;
}
.material-switch > label::after {
    background: rgb(255, 255, 255);
    border-radius: 16px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    content: '';
    height: 24px;
    left: -4px;
    margin-top: -8px;
    position: absolute;
    top: -4px;
    transition: all 0.3s ease-in-out;
    width: 24px;
}
.material-switch > input[type="checkbox"]:checked + label::before {
    background: inherit;
    opacity: 0.5;
}
.material-switch > input[type="checkbox"]:checked + label::after {
    background: inherit;
    left: 20px;
    background: #009688;  /* color de boton */
}
/* --- fin material-switch */



/*=============================================
COLORES PARA LA PAGINACION
=============================================*/
.page-item.active {
    color: #fff;
    background-color: #009688;
    border-color: #acb4bb;
    cursor: default;
}

.page-link {
    color: #080808;
    background-color: #fff;
    border: 1px solid #bfbfbf;
    cursor: pointer;
}



/*=============================================
TEXTO MARCADO - ROTULADOR
=============================================*/
.txtmarcado {
  background-color: yellow;
  color: #333;
  paddin: 0px 4px;
}


 /*=============================================
BOTONES LOGIN
=============================================*/
.btn-login, .btn-login:active, .btn-login:hover {
    color: #fff;
    background-color:  #009688 !important;
    border-color:  #009688;
}


.text-login, a.text-login {
 color:  #009688 !important; 
}



/*=============================================
COLORES ESCRITORIO
=============================================*/
.dropdown-menu-right {
    right:0;
    left:auto;
}


/*.note-popover .popover-content, .panel-heading.note-toolbar {
    background: teal;
}
*/

/*=============================================
PUNTERIO DEL MOUSE CON LA MANO
=============================================*/
.seleccionarTanda, .editarRiego, .lineaToken, .cursorClick, .ordenarColumna {

  cursor:pointer;

}


/*=============================================
IMPRIMIR TICKET
=============================================*/
.printme {
  display: none;
}
@media print {
  .no-printme  {
    display: none;
  }
  .printme  {
    display: block;
  }
}


/*=============================================
PARA LA BOTONERA DE HORAS Y MINUTOS EN LAS TANDAS
=============================================*/
.btnClick {
  cursor: pointer;
}


/*=============================================
Ajustar tabla a su contenido bt4
=============================================*/
.table td.fit, 
.table th.fit { 
 white-space: nowrap; 
 width: 1%; 
} 