.menuContent {
  overflow: hidden;
  transition: height 0.3s ease;
}

.span {
  color: var(--color-text-gray-light);
  cursor: pointer;
  width: 100%;
  word-break: break-word;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 0.875rem;
}

.span.active {
  color: #090a0a;
}

.linkOption {
  display: block;
  text-decoration: none;
  font-size: var(--font-size-base);
  padding: 5px 10px;
  padding-left: 10px;
  text-align: left;
  margin: 0 30px;
}

.sideBarLeft {
  width: 280px;
  max-width: 280px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  height: 100%;
  transition: 0.3s;
  margin-left: -100%;
}

.sideBarLeft.menu {
  margin-left: 0;
}

@media (min-width: 1024px) {
  .sideBarLeft {
    position: static;
    width: 100%;
    margin-left: 0;
  }
}

.boxSideBar {
  width: 100%;
  height: 100%;
  background: red;
  padding: 0.8em 0;
  overflow: auto;
}

.menuLeft {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border: none;
  outline: 0;
  position: relative;
  font-family: PFont-Regular;
  border-bottom: 1px solid #52525242;
  padding: 0;
  background: transparent !important;
  transition: 0.4s ease;
  overflow: hidden;
}

.menuLeft.active {
  border-bottom: none;
}

.row {
  align-items: center;
  background-color: transparent;
  display: flex;
  flex-direction: row;
  height: 30px;
  padding: 8px 0px;
  position: relative;
  width: 100%;
  z-index: 10;
}

.optionMenu {
  width: 100%;
  display: block;
  overflow: hidden;
  padding: 0;
}

.optionMenu.active {
  border-bottom: none;
}

.boxTitleNavBar {
  padding: 5px 0 50px;
  text-align: center;
  width: 100%;
  background: blue;
}

.containerBurger {
  width: max-content;
}

.burgerMenuContainer {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.burgerMenuContainer div {
  background-color: transparent;
  transition: all 0.3s ease-out;
}

.burgerMenuContainer .open:nth-child(1) {
  transform: rotate(-180deg);
}