.novo_usuario {
  position: absolute;
  width: 35px;
  height: 35px;
  background: #fff;
  cursor: pointer;
  border: 2px solid #095776;
  top: 50%;
  left: 50%;
}

.novo_usuario:after {
  content: '';
  position: absolute;
  transform: translate(-50%, -50%);
  height: 4px;
  width: 50%;
  background: #095776;
  top: 50%;
  left: 50%;
}

.novo_usuario:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #095776;
  height: 50%;
  width: 4px;
}

.novo_usuario:hover:before,
.novo_usuario:hover:after {
  background: #fff;
  transition: 0.2s;
}

.novo_usuario:hover {
  background-color: #095776;
  transition: 0.2s;
}

.content-container, .header-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 90%;
    max-width: 90%;
}

.header-menu-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 90%;
    max-width: 90%;
}

.header-user-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    width: 90%;
    max-width: 90%;
}

.apagar, .editar, .salvar {
    border: 0px;
        background: transparent;
}

.icon {
    height: 13px;
    width: 13px;
}

.salvar {
    display: none;
}