/*pure-g*/
body{
  font-size:14px; 
}

a {
    text-decoration: none;
    color: rgb(61, 146, 201);
}
a:hover,
a:focus {
    text-decoration: underline;
}

.pure-g > div {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.m-box {
    padding: 0.3em;
}
.l-box {
    padding: 0.9em;
}

.button-black,
.button-success,
.button-error,
.button-warning,
.button-warningv2,
.button-secondary {
    color: white;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.button-black {
    background: rgba(0, 0, 0, 1); /* this is a green */
}

.button-success {
    background: rgb(28, 184, 65); /* this is a green */
}

.button-error {
    background: rgb(202, 60, 60); /* this is a maroon */
}

.button-warning {
    background: rgba(255, 242, 0, 1);
}
.button-warningv2 {
    background: rgba(222, 155, 20, 1); /*this is an orange */
}
.button-secondary {
    background: rgb(66, 184, 221); /* this is a light blue */
}

.email-count {
    color: rgb(75, 113, 151);
}

.label-success-purple,
.label-purple,
.label-black,
.label-success,
.label-error,
.label-warning,
.label-warningv2,
.label-gray {
    color: #fff;
    padding: 2px;
    min-width: 15px;
    min-height: 15px;
    display: inline-block;
    margin-right: 0.5em;
    border-radius: 3px;
}
.label-black {
    background: rgb(0, 0, 1);
}
.label-success {
    background: rgb(28, 184, 65);
}
.label-error {
    background: rgb(202, 60, 60);
}
.label-warning {
    background: rgb(255, 242, 0, 1);
}
.label-warningv2 {
    background: rgb(222, 155, 20, 1);
}
.label-gray {
    background: rgba(213, 213, 213, 1);
}
.label-purple {
    background: rgba(128,0,128, 1);
}

.label-success-purple {
    background: linear-gradient(
        90deg,
        rgb(28, 184, 65) 0%,
        rgb(128, 0, 128) 100%
    );
    color: #fff;
}

.black {
    color: rgb(0, 0, 1);
}
.success {
    color: rgb(28, 184, 65);
}
.error {
    color: rgb(202, 60, 60);
}
.warning {
    color: rgb(223, 117, 20);
}
.gray {
    color: rgba(213, 213, 213, 1);
}


/*pedido*/
.hide { display: none; }
div.form-group { border: #efefef solid 1px; }
div.form-group:last-child { border-top: #ffffff solid 1px; }
input.form-control { width: 80%; }

/*autocompleate*/
.xdescuento { width:40%!important; }
.subtotal, .descuentos, .total { text-align: right; }

/*modal*/
.modal-window {
  position: fixed;
  background-color: rgba(200, 200, 200, 0.75);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.modal-window:target {
  opacity: 1;
  pointer-events: auto;
}

.modal-window>div {
  width: 95%;
  position: relative;
  margin: 5% auto;
  padding: 10px;
  background: #fff;
  color: #444;
  overflow: auto;
}

.modal-window header {
  font-weight: bold;
}

.modal-close {
  color: #aaa;
  line-height: 50px;
  font-size: 80%;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 70px;
  text-decoration: none;
}

.modal-close:hover {
  color: #000;
}

.modal-window h1 {
  font-size: 150%;
  margin: 0 0 15px;
}

@media only screen and (min-width: 768px) {
  .modal-window>div {
    width: 80%;
  }
}

/*listados*/
.xdescuento_contenedor_syngenta {display: none; }

.listado { border-bottom: #ccc solid 1px; }

.listado:hover{ background:#eff0f1;}

.elboton { font-size:11px; margin-top:2px;  }

.requerido {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.encabezado { color:#fff!important; }

.amayusculas { text-transform: uppercase; }