@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap');

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
}
.container{
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding-bottom: 150px;
}
.home {
  align-items: center;
}
.col{
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  width: 100%;
  max-width: 750px;
  padding: 5px;
}
.center {
  align-items: center;
}
.logo-home{
  max-width: 250px;
  margin-bottom: 20px;
}
.input-group{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.input-group label {
  padding: 10px 15px;
  background-color: #233865;
  color: #FFFFFF;
  font-weight: 700;
  border-radius: 0;
  width: 90%;
}
.input-group input, .input-group select, #search{
  padding: 9px;
  border-radius: 0;
  border: solid 1px #233865;
  outline: none;
  max-width: 250px;
  width: 100%;
}
.input-group input:focus{
  border: solid 2px #233865;
}
.input-group span {
  font-size: 16px;
  padding: 5px;
}


.input--group{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}
.input--group label {
  padding: 10px 15px;
  background-color: #233865;
  color: #FFFFFF;
  font-weight: 700;
  border-radius: 0;
  width: 100%;
}
.input--group input, .input--group select, .input--group textarea{
  padding: 9px;
  border-radius: 0;
  border: solid 1px #233865;
  outline: none;
  width: 100%;
}
.input--group input:focus{
  border: solid 2px #233865;
}
.input--group span {
  font-size: 16px;
  padding: 5px;
}

.btn {
  width: 100%;
  padding: 10px 15px;
  background-color: #233865;
  color: #FFFFFF;
  font-weight: 700;
  border-radius: 0;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: all ease .2s;
  text-align: center;
  margin: 5px;
}
.btn-white {
  width: 100%;
  padding: 10px 15px;
  background-color: #FFFFFF;
  color: #233865;
  font-weight: 700;
  border-radius: 0;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: all ease .2s;
  text-align: center;
}
.btn:hover {
  background-color: #5B88A5;
}
header {
  width: 100%;
  display: flex;
  background-color: #233865;
  padding: 10px;
  gap: 10px;
  align-items: center;
  justify-content: space-around;
  color: #FFFFFF;
  margin-bottom: 30px;
}
.menu{
  width: 100%;
  display: flex;
  background-color: #233865;
  padding: 10px;
  gap: 10px;
  align-items: center;
  justify-content: space-around;
  position: fixed;
  bottom: 0;
}
.group-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.group-menu img {
  max-width: 40px;
}
.group-menu:last-child img {
  max-width: 30px;
}
.group-menu a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
}
.nomeUser {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 5px;
}
.nomeUser:nth-child(odd) {
  background-color: #ECECEC;
}
.nomeUser a {
  padding: 5px;
  text-decoration: none;
  text-align: center;
  color: #000000;
  width: 100%;
  font-weight: 700;
}
.btn-group{
  display: flex;
  align-items: flex-end;
  justify-content: end;
  max-width: 150px;
}
.btn-group a {
  padding: 5px;
  text-decoration: none;
  font-weight: 700;
  color: #FFFFFF;
}
.btn-group a:first-child{
  background-color: #233865;
}
.btn-group a:last-child{
  background-color: #5B88A5;
}
.resultados{
  display: flex;
  width: 100%;
  gap: 5px;
  background-color: #233865;
  padding: 5px;
}
.resultadosImg{
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 5px;
  background-color: #233865;
  padding: 5px;
}
.resultadosImg img{
  width: 100px;
}
.link{
  color: #5B88A5;
  text-decoration: none;
  font-weight: 700;
}
table {
  max-width: 100vw;
  overflow-x: scroll;
  display: block;
}
thead tr th, tbody tr td{
  padding: 10px;
  text-align: center;
}
thead tr th:nth-child(odd), tbody tr td:nth-child(odd){
  background-color: #ECECEC;
}
thead tr th:first-child, tbody tr td:first-child{
  position: sticky;
  left: 0;
  top: 0;
}

.container-addTag {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #cccccc;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99;
  padding: 20px;
}

.left {
  align-items: flex-start;
}

.esconder{
  display: none;
}
.aparecer{
  display: flex;
}