
/**Estilos del componente_Buscador**/    

  /*  Componente Buscador Segunda opción  */
    #cajaBuscadorHeader {
      margin: 10px 50px;
      display: inline-block;
      position: relative;
      height: 60px;
      float: right;
      padding: 0;
      position: relative;
    }

    #buscadorHeader input[type="text"] {
      height: 60px;
      font-size: 50px;
      display: inline-block;
      font-family: "Lato";
      font-weight: 100;
      border: none;
      outline: none;
      color: #d4a017;
      padding: 3px;
      padding-right: 60px;
      width: 0px;
      position: absolute;
      top: 0;
      right: 0;
      background: none;
      z-index: 3;
      transition: width .4s cubic-bezier(0.000, 0.795, 0.000, 1.000);
      cursor: pointer;
    }

    #buscadorHeader input[type="text"]:focus:hover {
      border-bottom: 1px solid #f90;
    }

    #buscadorHeader input[type="text"]:focus {
      width: 700px;
      z-index: 1;
      border-bottom: 1px solid #BBB;
      cursor: text;
    }
    #buscadorHeader input[type="submit"] {
      height: 67px;
      width: 63px;
      display: inline-block;
      color:red;
      float: center;
      background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAMAAABg3Am1AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADNQTFRFU1NT9fX1lJSUXl5e1dXVfn5+c3Nz6urqv7+/tLS0iYmJqampn5+fysrK39/faWlp////Vi4ZywAAABF0Uk5T/////////////////////wAlrZliAAABLklEQVR42rSWWRbDIAhFHeOUtN3/ags1zaA4cHrKZ8JFRHwoXkwTvwGP1Qo0bYObAPwiLmbNAHBWFBZlD9j0JxflDViIObNHG/Do8PRHTJk0TezAhv7qloK0JJEBh+F8+U/hopIELOWfiZUCDOZD1RADOQKA75oq4cvVkcT+OdHnqqpQCITWAjnWVgGQUWz12lJuGwGoaWgBKzRVBcCypgUkOAoWgBX/L0CmxN40u6xwcIJ1cOzWYDffp3axsQOyvdkXiH9FKRFwPRHYZUaXMgPLeiW7QhbDRciyLXJaKheCuLbiVoqx1DVRyH26yb0hsuoOFEPsoz+BVE0MRlZNjGZcRQyHYkmMp2hBTIzdkzCTc/pLqOnBrk7/yZdAOq/q5NPBH1f7x7fGP4C3AAMAQrhzX9zhcGsAAAAASUVORK5CYII=) center center no-repeat;
      text-indent: -10000px;
      border: none;
      position: absolute;
      top: 0;
      right: 0;
      z-index: 2;
      cursor: pointer;
      opacity: 0.4;
      cursor: pointer;
      transition: opacity .4s ease;
    }

    #buscadorHeader input[type="submit"]:hover {
      opacity: 0.8;
    }
