@charset "UTF-8";
/* Common */
body, div, ul, li, h1, h2, h3, p, span, a, i, img {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  overflow: hidden;
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  color: #bbaab8;
}
ul {
  list-style: none;
}
a {
  color: #bbaab8;
  text-decoration: none;
}
img {
  border: none;
}
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 280px;
  height: 100%;
  background: #292643;
  z-index: 100;
  transition: all .5s ease 0s;
}
.sidebar.close {
  width: 78px;
}
/* logo */
.sidebar__logo {
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  background: #292643;
}
.sidebar__logo i {
  min-width: 78px;
  height: 50px;
  line-height: 50px;
  font-size: 32px;
  color: #bbaab8;
  text-align: center;
}
.sidebar__logo .sidebar__logo-name {
  font-size: 30px;
  color: #bbaab8;
  font-weight: 600;
  transition: all .3s ease 0s;
  transition-delay: .1s;
}
.sidebar.close .sidebar__logo-name {
  opacity: 0;
  pointer-events: none;
  transition-delay: 0s;
}

/* nav */
.sidebar__nav {
  overflow: auto;
  height: 100%;
  padding: 10px 0 130px 0;
}
.sidebar.close .sidebar__nav {
  overflow: visible;
}
.sidebar__nav::-webkit-scrollbar {
  display: none;
}
.sidebar__nav li {
  position: relative;
  transition: all .4s ease 0s;
}
.sidebar__nav li.openMenu,
.sidebar__nav li:hover {
  background: #44426e;
}
.sidebar__nav li a {
  display: flex;
  align-items: center;
}
.sidebar__nav .sidebar__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar.close .sidebar__nav .sidebar__wrap {
  display: block;
}
.sidebar__nav li i {
  min-width: 78px;
  height: 50px;
  line-height: 50px;
  font-size: 20px;
  color: #bbaab8;
  text-align: center;
  cursor: pointer;
  transition: all .3s ease 0s;
}
.sidebar__nav li.openMenu i.arrow {
  transform: rotate(-180deg);
}
.sidebar.close .sidebar__nav i.arrow {
  display: none;
}
.sidebar__nav .sidebar__link {
  font-size: 18px;
  font-weight: 500;
}
.sidebar.close .sidebar__nav .sidebar__link {
  opacity: 0;
  pointer-events: none;
}

/* sub */
.sidebar__sub {
  display: none;
  padding: 1px 0 10px 77px;
  background: #44426e;
  font-size: 15px;
  font-weight: 500;
}
.sidebar__sub li {
  margin-bottom: 7px;
}
.sidebar__sub li:last-child {
  margin-bottom: 0;
}
.sidebar__sub .sidebar__link {
  display: none;
}

/* sidebar__sub */
.sidebar .sidebar__sub a {
  opacity: 0.5;
  white-space: nowrap;
  transition: all .3s ease 0s;
}
.sidebar .sidebar__sub a:hover {
  opacity: 1;
}
.sidebar.close .sidebar__sub {
  display: block;
  opacity: 0;
  position: absolute;
  left: 100%;
  top: -10px;
  padding: 15px 20px;
  border-radius: 0 5px 5px 0;
  transition: all .4s ease 0s;
  pointer-events: none;
}
.sidebar .sidebar__sub.blank {
  opacity: 0;
  pointer-events: none;
}
.sidebar.close .sidebar__sub .sidebar__link {
  display: block;
  opacity: 1;
}
.sidebar.close .sidebar__nav > li:hover .sidebar__sub {
  opacity: 1;
  top: 0;
  pointer-events: auto;
}
.sidebar .sidebar__nav > li.openMenu .sidebar__sub {
  display: block;
}

/* profile */
.profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  bottom: 0;
  width: 280px;
  padding: 5px 0;
  background: #44426e;
  transition: all .5s ease 0s;
}
.sidebar.close .profile {
  width: 78px;
  background: none;
}
.profile__content {
  display: flex;
  align-content: center;
}
.profile__content img {
  width: 50px;
  height: 50px;
  margin: 0 14px 0 9px;
  border-radius: 50%;
  object-fit: cover;
  transition: all .5s ease 0s;
}
.sidebar.close .profile__content img {
  margin: 0 14px 0 14px;
  border: 10px solid #44426e;
}
.profile__info .profile__name,
.profile__info .profile__job {
  font-size: 18px;
  color: #bbaab8;
  font-weight: 600;
  white-space: nowrap;
}
.sidebar.close .profile i,
.sidebar.close .profile__info .profile__name,
.sidebar.close .profile__info .profile__job {
  display: none;
}
.profile__info .profile__job {
  font-size: 12px;
}

/* hamberger */
.hamberger {
  position: relative;
  background: #f0e1ed;
  left: 280px;
  width: calc(100% -280px);
  height: 100vh;
  transition: all .5s ease 0s;
}
.sidebar.close ~ .hamberger {
  left: 78px;
  width: calc(100% -78px);
}
.hamberger__content {
  display: flex;
  align-items: center;
  height: 60px;
}
.hamberger__content .bx-menu,
.hamberger__content .hamberger__txt {
  color: #292643;
  font-size: 35px;
}
.hamberger__content .bx-menu {
  margin: 0 15px;
  cursor: pointer;
}
.hamberger__content .hamberger__txt {
  font-size: 25px;
  font-weight: 600;
}