.drawer-component {
  -webkit-transition: max-width 1s;
  -moz-transition: max-width 1s;
  -ms-transition: max-width 1s;
  -o-transition: max-width 1s;
  transition: max-width 1s;
}
@media (max-width: 767px) {
  .drawer-component {
    z-index: 3;
    background-color: #646464;
    position: absolute;
    overflow: hidden;
    top: 40px;
    left: 0;
    height: 100vh;
    width: 200px;
    max-width: 0;
  }
  .drawer-component > * {
    flex-direction: column !important;
    gap: 5px !important;
  }
  .drawer-component.open {
    max-width: 200px;
  }
}

.drawer-button-component {
  display: none;
  padding: 4px;
}
.drawer-button-component img {
  width: 22px;
  height: 22px;
  filter: invert(36%) sepia(71%) saturate(1572%) hue-rotate(146deg) brightness(99%) contrast(101%);
}
@media (max-width: 767px) {
  .drawer-button-component {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/*# sourceMappingURL=drawer-component.css.map */
