main {
  padding: 0 2rem;
  margin-left: 230px;
}

.navigation {
  overflow-y: auto;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 230px;
  box-sizing: initial;
  border-left: 5px solid #18253E;
  background: #18253E;
  transition: 0.5s;
}

.navigation ul {
  width: 100%;
  padding-left: 5px;
  padding-top: 40px;
}

.navigation li {
  padding-bottom: 0.5rem;
}

.navigation ul li div:first-child {
  position: relative;
  display: flex;
  list-style: none;
  width: 100%;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  margin-bottom: 0.7rem;
}

.navigation ul li div:not(:first-child) {
  margin-left: 4rem;
  padding: 0.3rem 0;
}

.navigation ul li div:first-child.active {
  background-color: white;
}

.navigation ul li div:first-child.active a {
  color: #18253E;
}

.navigation ul a .icon {
  position: relative;
  list-style-type: none;
  width: 30px;
}

/*
.navigation ul a .icon {
    background-color: white;
}
*/
.navigation ul a {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  width: 100%;
  font-weight: bold;
  color: white;
}

.navigation ul a .icon {
  position: relative;
  display: block;
  min-width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
}

.navigation ul a .icon .title {
  position: relative;
  display: block;
  padding-left: 10px;
  height: 60px;
  line-height: 60px;
  white-space: normal;
}

.navigation ul li b:nth-child(1) {
  position: absolute;
  top: -20px;
  height: 20px;
  width: 100%;
  background-color: white;
  display: none;
}

.navigation ul li b:nth-child(1)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom-right-radius: 20px;
  background-color: #18253E;
}

.navigation ul li b:nth-child(2) {
  position: absolute;
  top: 60px;
  height: 20px;
  width: 100%;
  background-color: white;
  display: none;
}

.navigation ul li b:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top-right-radius: 20px;
  background-color: #18253E;
}

.navigation ul li div:first-child.active b:nth-child(1),
.navigation ul li div:first-child.active b:nth-child(2) {
  display: block;
}

.toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: blue;
  border-radius: 10px;
  cursor: pointer;
}

.toggle.active {
  background: red;
}

.no-scrollbar {
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
}
.no-scrollbar::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.fs-xsm {
  font-size: x-small !important;
}/*# sourceMappingURL=styles.css.map */