@media screen and (min-width: 640px) {
  .column-after-row {
    flex-direction: row;
  }
  .row-after-column {
    flex-direction: column;
  }
}
#loadbar {
  height: 0;
  width: 100%;
  background: #ddd;
  position: relative;
  overflow: hidden;
}

#loadbar.active {
  height: 6px;
}

#loadbar::before {
  width: 6px;
  height: 6px;
  content: "";
  left: 0;
  top: 0;
  position: absolute;
  z-index: 9999;
  -webkit-animation: loadbar 0.6s ease-out infinite both;
  animation: loadbar 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite both;
}

@keyframes loadbar {
  0% {
    width: 0;
    background: rgba(140, 80, 0, 0.9333333333);
  }
  50% {
    left: 50%;
    width: 50%;
    background: #8c5000;
  }
  100% {
    left: 100%;
    width: 0;
    background: transparent;
  }
}

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