body img {
  image-rendering: auto;
}

.sidebar {
  width: 260px;
  height: 100vh;
  box-sizing: border-box;
  padding: 18px 15px 15px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .sidebar {
    display: none;
    height: 100%;
    width: 75vw;
    z-index: 1000;
  }
}
.sidebar__logo {
  display: flex;
  width: fit-content;
  align-items: center;
}
.sidebar__logo-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sidebar__logo-first {
  width: 85%;
  height: 75px;
}
.sidebar__logo-first img {
  width: 100%;
  height: 100%;
}
.sidebar__logo-cancel {
  filter: brightness(0.8);
  image-rendering: auto;
  margin-right: 5px;
}
.sidebar__button {
  border-radius: 5px;
  height: 42px;
  width: 100%;
  display: flex;
  align-items: center;
  column-gap: 15px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #5e5873;
  border: none;
  padding-left: 20px;
  transition: background-color ease 0.2s;
  background-color: initial;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .sidebar__button {
    column-gap: initial;
  }
}
.sidebar__button[data-active=true] {
  background: rgb(244, 131, 34);
  color: #ffffff;
}
.sidebar__button[data-active=true] span img {
  filter: brightness(3.5);
}
.sidebar__button:hover {
  background: rgb(244, 131, 34);
  color: #ffffff;
}
.sidebar__button:hover span img {
  filter: brightness(3.5);
}
.sidebar__button span img {
  filter: brightness(0.3);
}
@media only screen and (max-width: 767px) {
  .sidebar__button span {
    margin-right: 15px;
  }
}
.sidebar__button-wrapper {
  margin-top: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  overflow-y: hidden;
  padding-right: 5px;
}
.sidebar__button-wrapper a {
  text-decoration: none !important;
}
.sidebar__button-wrapper:hover {
  overflow-y: auto;
}
.sidebar__button-wrapper:hover::-webkit-scrollbar {
  height: 1rem;
  width: 0.4rem;
}
.sidebar__button-wrapper:hover::-webkit-scrollbar-thumb {
  background-color: #a3a6b7;
  border-color: #a3a6b7;
  border-radius: 9999px;
  border-width: 1px;
  border: 4px solid transparent;
}
.sidebar__button-wrapper:hover::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 9999px;
}
@media only screen and (max-width: 767px) {
  .sidebar__button-wrapper {
    height: 84%;
    overflow-y: auto;
    gap: initial;
  }
  .sidebar__button-wrapper div:has(button.sidebar__button) {
    margin-bottom: 20px;
  }
}
.sidebar__button-arrow {
  position: absolute;
  right: 8px;
  top: 9px;
}
.sidebar__dropdown-wrapper {
  width: 100%;
  background: #f8f9fb;
  border-radius: 5px;
  padding: 10px;
  margin-top: 10px;
  list-style: none;
}
.sidebar__dropdown-button {
  display: flex;
  align-items: center;
  height: 41px;
  width: 100%;
  font-weight: 400;
  font-size: 13px;
  color: #5e5873;
  background-color: initial;
  padding-left: 28px;
  column-gap: 15px;
  border: none;
  border-radius: 5px;
}
.sidebar__dropdown-button[data-active=true] {
  background: #e8eaf1;
}
.sidebar__dropdown-button:hover {
  background: #e8eaf1;
}
.sidebar__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background-color: rgba(30, 30, 30, 0.5);
}

.sidebar.open {
  display: block !important;
}

@media only screen and (max-width: 767px) {
  .development {
    display: none;
  }
}