.main-app {
  width: 100%;
  position: relative;
  z-index: 1;
  min-height: 100vh;
  position: relative;
  top: 0;
}
.side-bar {
  background-color: var(--color-white);
  border-right: 1px solid var(--color-border);
  height: 100vh;
  width: 300px;
  padding: 20px;
  border-radius: 0px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
  position: fixed;
  transition: all 0.3s linear;
  overflow-x: scroll;
}

.bar-header {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo img {
  transition: none;
}
.side-bar .logo img {
  width: 175px;

}
.lisks-side-bar {
  display: flex;
  gap: 10px;
  margin: 45px 0 0 0;
}
.lisks-side-bar ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 90%;
  align-items: center;
}
.lisks-side-bar ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  width: auto;
  width: 100%;
  transition: all 0.3s linear;
}
.lisks-side-bar ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
  font-size: 19px;
  width: 100%;
  height: 55px;
  padding: 13px 25px;
  border-radius: 15px;
  transition: all 0.3s linear;
  background-color: var(--color-white);
}
.lisks-side-bar ul li a:hover,
.lisks-side-bar ul li a.active {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.lisks-side-bar ul li a img {
  width: 29px;
  height: 29px;
  transition: all 0.3s linear;
}
.lisks-side-bar ul li a:hover img,
.lisks-side-bar ul li a.active img {
  transform: scale(1.1);
  filter: brightness(0) saturate(100%) invert(100%);
  transition: all 0.3s linear;
}


.lisks-side-bar ul li a:hover svg path,
 .lisks-side-bar ul li a.active svg path{
  fill: #fff;
  fill-opacity: 1;
 }
.nav-toggle-dots,
.nav-toggle {
  position: absolute;
  left: 15px;
  top: 40px;
  cursor: pointer;
  transform: scale(-1);
}

.nav-toggle-dots.minimize,
.nav-toggle.minimize {
  position: relative;
  top: unset;
  transform: scale(1);
}
.nav-toggle-dots ul,
.nav-toggle ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle-dots ul li,
.nav-toggle ul li {
  width: 30px;
  height: 3px;
  background-color: var(--color-primary);
  display: block;
  border-radius: 25px;
  transition: all 0.3s linear;
}

.nav-toggle ul li:nth-child(1),
.nav-toggle ul li:nth-child(3) {
  width: 10px;
}
.nav-toggle ul li:nth-child(2) {
  width: 30px;
}

.nav-toggle:hover ul li {
  width: 30px;
}

.nav-toggle-dots ul li {
  width: 5px;
  height: 5px;
}

.top-bar.top-minimize .nav-toggle-dots ul li,
.top-bar.top-minimize .nav-toggle ul li {
  background-color: #fff;
}


.change-profile {
    display: flex
;
    align-items: center;
    cursor: pointer;
    gap: 10px;
    position: relative;
}



.change-profile img {
    width: 40px;
    height: 40px;
    margin-top: 5px;
    display: block;
    border-radius: 50%;
}

.change-profile i {
  font-size: 14px;
}

.change-profile p {
  font-size: 20px;
}

.change-profile-menu {
  position: absolute;
  left: 70%;
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 5px;
  top: 55px;
  color: var(--primary1);
  box-shadow: 0 0 10px #1c48c14a;
  width: 120px;
  overflow: hidden;
  transition: 0.4s;
  height: 0;
  z-index: 10;
}

.change-profile-menu.show {
    height: fit-content;
    border: 1px solid #005E7A40;
}

.change-profile-menu a {
  padding: 10px 0;
  display: block;
  text-align: center;
  font-size: 16px;
  color: var(--primary1);
  transition: 0.4s;
}

.change-profile-menu a:hover {
  background-color: #1c48c126;
}

.change-profile-menu a:not(:last-child) {
  border-bottom: 1px solid #5c3fcf42;
}
