.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}

.loader {
  color: #dedede;
  font-size: 0.2em;
  transition: all 0.3s;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  top: 0;
}

.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.loader:after {
  left: 3.5em;
}

@-webkit-keyframes load7 {
  0%, 80%, 100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load7 {
  0%, 80%, 100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
.loader_off {
  opacity: 0;
}

* {
  box-sizing: border-box;
  font-size: 2.5vmin;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
}

body {
  width: 100dvw;
  height: 100dvh;
}

.fundo {
  width: 100%;
  height: 100vh;
  padding: 0.5em;
  display: flex;
  background-color: rgb(8, 8, 8);
  justify-content: center;
  align-items: center;
  padding-top: 3em;
}

.folha {
  background-color: #181818;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  border-radius: 0.5em;
  box-shadow: black 1px 1px 10px 10px;
  position: relative;
  padding: 0.5em;
}

.login-logo {
  width: 100%;
}

.login-h2 {
  color: #c2ab6b;
  font-weight: 300;
  padding: 1em;
  font-size: 1.2em;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.container form {
  display: grid;
  grid-template-columns: 8fr;
  grid-template-rows: 1fr 1fr 1.5fr;
  grid-gap: 5px;
}
.container form input {
  background-color: #505050;
  border: none;
  outline: none;
  border-radius: 6px;
  padding: 5px;
  height: fit-content;
}
.container form #login {
  background-color: #828282;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.container form #login:hover {
  background-color: #bebebe;
}
.container span {
  font-size: 6em;
  color: #b3b3b3;
}

.vendedor {
  position: absolute;
  left: 1em;
  top: 1em;
  color: rgb(126, 110, 80);
}

.grade {
  gap: 0.5em;
  justify-items: center;
  align-items: center;
  align-content: baseline;
  width: 100%;
  height: 100%;
  padding: 4em;
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
  overflow: auto;
}
.grade a {
  background-color: #212121;
  box-shadow: rgba(0, 0, 0, 0.5215686275) 1px 1px 13px 0px;
  display: flex;
  padding: 1em;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: rgb(126, 110, 80);
  transition: all 0.2s ease-in-out;
  border-radius: 10px;
  cursor: pointer;
}
.grade a span {
  font-size: 3em;
}
.grade a h4 {
  font-size: 1em;
  font-weight: 200;
}
.grade a:hover {
  transform: scale(1.1);
  color: rgb(187, 167, 129);
}
.grade a:focus {
  color: rgb(187, 167, 129);
}

.toolbox {
  position: absolute;
  font-family: "Material Icons";
  left: 1em;
  top: 4em;
  color: wheat;
}
.toolbox i {
  font-style: normal;
  font-family: "Material Icons";
  font-size: 2em;
  background-color: #111111;
  border-radius: 50%;
  padding: 0.1em;
  border: solid wheat 2px;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s;
  box-shadow: black 2px 6px 10px 0px;
}
.toolbox i:hover {
  color: white;
  border-color: white;
}

.item,
.item a {
  text-align: center;
  font-size: 1em;
  width: 7em;
  height: 8em;
}

@media screen and (max-width: 767px) {
  .folha {
    overflow-y: auto;
  }
  .fundo {
    padding: 0.2em;
    border-radius: 0;
  }
  .grade .item {
    font-size: 2em;
  }
  .toolbox {
    top: 100%;
    margin-top: -4em;
  }
  .fundo {
    padding-top: 3em;
  }
  .tools i {
    font-size: 3em;
  }
}
.login_msg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 4em;
  color: white;
  z-index: 1000;
  background-color: rgba(80, 80, 80, 0.5098039216);
  width: 100%;
  text-align: center;
}/*# sourceMappingURL=menu.css.map */