.nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #262626;
  text-align: left;
  height: 43px;
  line-height: 43px;
}
.menu {
  margin: 0;
  padding: 0;
  font-size: 95%;
}
.nav-logo{
  font-size: 155%;
  color: white;
  line-height: 40px;
  text-align: center;
  margin-left: 5px;
  margin-right: 25px;
  margin-bottom: 7px;
  transition: all ease-in-out 250ms;
}

.nav-logo:hover{
  font-size: 165%;
  cursor: default;
  color: #04d107;
  transition: all ease-in-out 280ms;
}
/* .nav-logo img{
  float: left;
  height: 40px;
  min-width: 114px;
  max-width: 116px;
  padding: 3px 25px 5px 5px;
} */

.menu a {
  font-family: 'Rubik', sans-serif;
  text-decoration: none;
  color: white;
  margin: 0 4px;
  line-height: 43px;
  clear: right;
}

.menu a:hover {
  color: #04d107;
  transition: all ease-in-out 250ms;
}

.nav label {
  font-size: 28px;
  color: white;
  display: none;
  width: 26px;
  position: relative;
  float: right;
  margin-right: 1%;
}

.nav label:hover {
  color: #04d107;
  transition: all ease-in-out 250ms;
}
#toggle {
  display: none;
  float: right;
  transition: all ease-in-out 250ms;
}


#login-content {
  display: none;
  position: absolute;
  background-color: #262626;
  padding-top: 8px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 0px 0px 12px 12px;
  left: 910px;
  width: 275px;
  top: 43px;
  height: 180px;
}

#submenu-content {
  text-decoration: none;
  display: none;
  position: absolute;
  top: 43px;
  background-color: #262626;
  border-radius: 0px 0px 12px 12px;
  left: 1035px;
  width: 230px;
  height: auto;
  list-style-type: none;
}

#submenu-content ul li{
  list-style-type: none;
  margin: 0;
  width: 100%;
  height: 45px;
  position:relative;
}

#submenu-content a:hover {
  color: #04d107;
  transition: all ease-in-out 250ms;
}

#inputs input {
  background: #f1f1f1;
  width: 238px;
  height: 40px;
  border-radius: 3px;
  margin: 0;
  padding-left: 5px;
  border: none;
  margin-bottom: 2px;
}

#submit {
  background-color: #12ef04;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 5px;
  height: 40px;
  width: 235px;
  cursor: pointer;
  color: white;
  transition: all ease-in-out 350ms;
  border: none;
  font-weight: bolder;
  line-height: 40px;
  margin-top: 15px;
}

#submit:hover,
#submit:focus {
  background-color: #0fc603;
  color: #262626;
}
#form-message{
  padding: 0;
  margin: 0;
}
/* São adicionadas através de jquery caso ocorra um erro no login */
.form-message-error{
  color: #e00404;
}

.form-message-success{
  color: #00ff00;
}

.login-error{
  box-shadow: 0 0 5px #e00404;
  transition: all ease-in-out 250ms;
}

@media only screen and (max-width: 1275px){
  .nav label {
    display: block;
    cursor: pointer;
    float: right;
    right: 0;

  }
  .menu {
    background-color: #262626;
    text-align: left;
    width: 100%;
    min-width: 100%;
    display: none;
    position: relative;
    top: 0px;
    bottom: -100px;
  }

  .menu a {
    color: white;
    display: block;
    margin-left: 2px;
    text-align: left;
  }

  .menu a:hover {
    color: #04d107;
    background-color: #222222;
    transition: all ease-in-out 340ms;
  }
  #toggle:checked + .menu{
    display: block;
    transition: all ease-in-out 250ms;
  }

  #login-content {
    display: none;
    position: absolute;
    background-color: #262626;
    border-radius: 0;
    right: 0;
    width: 100%;
    height: 260px;
    left: 0px;
    top: 44px;
  }

  #submenu-content {
    background-color: #262626;
    width: 100%;
    height: auto;
    /* ALTURA DO MENU DE USER (MOVEL)*/
    height: 250px;
    color: white;
    display: none;
    margin: 0;
    padding-top: 5px;
    top: 46px;
    left: 0px;
  }

  #submenu-content ul li{
    width: 100%;
    float: left;
    position:relative;
    padding-bottom: 5px;
  }

  #submenu-content ul{
    list-style-type: none;
    padding:0;
    margin: 2px;
    text-align: center;
  }

  /*--------------------*/

  #inputs input {
    background: #f1f1f1;
    height: 40px;
    margin: 0 0 5px 0;
    border-radius: 3px;
    border: none;
    float: center;
    padding-left: 20px;
  }

  /*--------------------*/

  #actions {
      margin: 0px 0 0 0;
    }

   #submit {
      background-color: #12ef04;
      -moz-border-radius: 0px;
      -webkit-border-radius: 0px;
      border-radius: 5px;
      height: 35px;
      line-height: 35px;
      padding: 0;
      width: 125px;
      float: center;
      cursor: pointer;
      color: white;
      transition: all ease-in-out 350ms;
      border: none;
      font-weight: bolder;
    }

  #submit:hover,
  #submit:focus {
      background-color: #0fc603;
      color: #262626;
    }
  /* São adicionadas através de jquery caso ocorra um erro no login */
  .form-message-error{
    color: #e00404;
  }

  .form-message-success{
    color: #00ff00;
  }

  .login-error{
    box-shadow: 0 0 5px #e00404;
    transition: all ease-in-out 250ms;
  }
  /* São adicionadas... end*/
}

.nav_icons{
  font-size: 100%;
  margin-right: 5px;
}

/* @media only screen and (max-width: 1055px){
  .nav label {
    margin-left: 75%;
  }
}

@media only screen and (max-width: 755px){
  .nav label {
    margin-left: 70%;
  }
} */
