* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

.top-bar {
  display: flex;
  justify-content: start;
  align-items: center;
  top: 0;
  width: 100%;
  height: 70px;
  background-color: #5600CF;
  position: fixed;
  z-index: 1;
  border-bottom: 1px solid #e6e6e6; }

.top-bar h3 {
  color: #ffffff;
  font-size: 1.5rem; }

.top-bar span {
  color: #17c717; }

.navbar .salute {
  font-size: 0.8rem;
  position: absolute;
  left: 0;
  top: 45px; }

.salute {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 0 10px 0;
  gap: 10px;
  color: #fff; }

.logout {
  position: absolute;
  right: 20px; }

.logout a i {
  color: #17c717;
  font-size: 1.2rem; }

.side-bar {
  background: #5600CF;
  backdrop-filter: blur(15px);
  width: 250px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: -250px;
  overflow-y: auto;
  transition: 0.6s ease;
  transition-property: left;
  z-index: 2; }

.side-bar::-webkit-scrollbar {
  width: 0px; }

.side-bar.active {
  left: 0; }

.side-bar header h1 {
  text-align: center;
  font-weight: 500;
  font-size: 25px;
  padding-bottom: 13px;
  font-family: sans-serif;
  letter-spacing: 2px;
  color: #ffffff; }

.side-bar .menu {
  width: 100%; }

.side-bar .menu .item {
  position: relative;
  cursor: pointer; }

.side-bar .menu .item a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  display: block;
  padding: 5px 20px;
  line-height: 50px; }

.side-bar .menu .item a:hover {
  background-color: #d5d5e1;
  color: #5600CF;
  transition: 0.3s ease; }

.side-bar .menu .item i {
  margin-right: 15px; }

.side-bar .menu .item a .dropdown {
  position: absolute;
  right: 0;
  margin: 20px;
  transition: 0.3s ease; }

.side-bar .menu .item .sub-menu {
  background: #262627;
  display: none; }

.side-bar .menu .item .sub-menu a {
  padding-left: 80px; }

.rotate {
  transform: rotate(90deg); }

.tipo-usuario {
  color: white;
  text-transform: capitalize; }

.close-btn {
  position: absolute;
  color: #ffffff;
  font-size: 23px;
  right: 0px;
  margin: 15px;
  cursor: pointer; }

.menu-btn {
  font-size: 20px;
  margin: 25px;
  cursor: pointer;
  color: #ffffff; }

img.img-user {
  width: 70px;
  margin: 15px;
  border-radius: 50%;
  margin-left: 90px;
  background-color: #d5d5e1; }

header {
  background-color: #5600CF;
  border-bottom: 1px solid #ffffff; }

.nome-estabelecimento {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px; }

.nome-estabelecimento p {
  color: white;
  margin-bottom: 10px; }

@media screen and (max-width: 468px) {
  .top-bar h3 {
    color: #ffffff;
    font-size: 1rem;
    margin-left: -10px; }

  .navbar .salute {
    font-size: 0.6rem;
    position: absolute;
    left: -50px;
    top: 47px; } }
.floating-search-btn {
  position: fixed;
  bottom: 22px;
  right: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: #5600CF;
  color: #fff;
  font-size: 10px;
  border-radius: 30px;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
  animation: aparecerZoom 0.4s ease; }

.floating-search-btn i {
  font-size: 12px; }

.floating-search-btn:hover {
  transform: scale(1.07);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); }

@keyframes aparecerZoom {
  from {
    opacity: 0;
    transform: scale(0.7); }
  to {
    opacity: 1;
    transform: scale(1); } }

/*# sourceMappingURL=navbarAdmin.css.map */
