@import url(https://fonts.googleapis.com/css?family=Roboto:300);
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/* RESET */
h1,
h2,
h3,
h4,
h5,
h6{
    padding: 0px;
    margin: 0px;
}
a, a img, a:hover, a:active{
    text-decoration: none;
}
ul{
    list-style: none;
}

/* Body */
body{
    font-size: 16px;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    background: #f1f1f1;
}


/* ========== LOGIN =============== */
/* Box Login */
.box-login{
    width: 360px;
    padding: 5px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -180px;
    margin-top: -200px;
}
.box-login-logo{
    width: 300px;
    margin: 0 auto;
    text-align: center;
}
.login-logo-pluri{
    max-width: 130px;
    margin: 0px 0px 15px;
}
.box-login-form h1{
    font-size: 20px;
    color: #2ba288;
    margin: 10px 0px 15px;
}
.box-login-form{
    position: relative;
    z-index: 1;
    background: #FFFFFF;
    max-width: 360px;
    margin: 0px auto 0px;
    padding: 20px 45px 45px 45px;
    text-align: center;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
    border-top: 3px solid #2ba288
}

/* ========== FORMULARIO =============== */
/* Inputs */
.form-input{
    outline: 0;
    background: #f2f2f2;
    width: 100%;
    border: 0;
    margin: 0 0 15px;
    padding: 15px;
    box-sizing: border-box;
    font-size: 14px;
}

.form-input-button{
    text-transform: uppercase;
    outline: 0;
    background: #2ba288;
    width: 100%;
    border: 0;
    padding: 15px;
    color: #FFFFFF;
    font-size: 14px;
    -webkit-transition: all 0.3 ease;
    transition: all 0.3 ease;
    cursor: pointer;
}
.form-input-button:hover{
    background: #23836d;
    transition: all linear 0.2s;
}
/* ========== CONTEÚDO =============== */
.box-listagem-notas{
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
}
.box-header{
    width: 100%;
    margin: 10px 0px;
    text-align: center;
}
.box-back-button{
    float: right;
}

.link-button svg{
    display: inline-block;
    vertical-align: middle;
}
.link-button span{
    margin-right: 10px;
}

.box-pesquisar-para{
    width: max-content;
    padding: 10px;
    border-radius: 3px;
    background: rgb(241, 241, 241); 
    border: 1px dashed #cccbcb;
    margin-bottom: 10px;
}

.error-login{
    color: red;
    padding: 5px;
    display: block;
}
/* TABELA */
.tabela-nfe{
    width: 100%;
    margin-bottom: 40px;
}
.tabela-nfe th{
    background-color: #222d32;
}
.table-nfe-shadow{
    -webkit-box-shadow: 0px 19px 21px -16px rgba(0,0,0,0.28);
    -moz-box-shadow: 0px 19px 21px -16px rgba(0,0,0,0.28);
    box-shadow: 0px 19px 21px -16px rgba(0,0,0,0.28)
}
.tabela-nfe th, .tabela-nfe td{
    vertical-align: middle;
  }
  
  .tabela-nfe th{
    background-color: #2ba288;
    padding: 6px 20px 5px;
    color: #fff;
    font-size: 18px;
    font-weight: normal;
  }
  
  .tabela-nfe td{
    background: #fff;
    padding: 15px 20px 15px;
    font-size: 15px;
    font-weight: normal;
    text-align: center;
  }
  .tabela-nfe > tbody > tr{
    border-bottom: 1px solid #2ba288;
  }
  
  .tabela-nfe > tbody > tr:last-child{
    border-bottom: 1px solid transparent;
  }
  
  .tabela-nfe-borda > tbody > tr{
    border: 1px solid #d1d1d1 !important;
  }
  
  /** BORDA ARREDONDADA */
  .tabela-nfe th:first-child{
    border-top-left-radius: 5px;
  }
  
  .tabela-nfe th:last-child{
    border-top-right-radius: 5px;
  }
  
  .tabela-nfe td:first-child{
    border-bottom-left-radius: 5px;
  }
  .tabela-nfe td:last-child{
    border-bottom-right-radius: 5px;
  }
  
  /* ZEBRA */
  .tabela-nfe tr:nth-child(even) td, .tabela-nfe tr:nth-child(even) th{
    background: #f9f9f9;
  }
@media screen and (min-width: 500px) {
    .box-login, .box-login-form{
        width: 500px;
        max-width: 500px;
    }
    .box-login{
        left: 50%;
        top: 50%;
        margin-left: -250px;
        margin-top: -215px;
    }
}