cat-template-desktop .template-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100vw;
}

cat-template-desktop .template-content aside {
  position: relative;
  height: 100vh;
  width: 70px;
  max-width: 300px;
  padding: 40px 0 0;
  transition: ease-in-out 0.2s;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  box-sizing: border-box;
}

cat-template-desktop .template-content aside.show {
  width: 300px;
}

cat-template-desktop .template-content aside:not(.show) .logotype {
  width: 40px;
}

cat-template-desktop .template-content aside .space {
  flex: 1 0 0;
}

cat-template-desktop .template-content aside .btn-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  border-radius: 0;
}

cat-template-desktop .template-content section#cat-content-app {
  width: 100%;
  height: 100vh;
  overflow: auto;
  overflow-x: hidden;
  box-sizing: border-box;
  position: relative;
  background-color: var(--bg-menu-active);
  padding: 1.875rem;
  border-radius: 1.875rem 0 0 1.875rem;
}

cat-template-desktop .logotype {
  width: 80px;
  transition: ease-in-out 0.2s;
}

cat-template-desktop .btn-menu-collapse {
  position: absolute;
  top: 100px;
  right: -10px;
  background-color: var(--bg-body);
  border: 1px solid var(--primary-color-alpha);
  width: 20px;
  height: 20px;
  font-size: 0.625rem;
  border-radius: 50%;
  transition: ease-in-out 0.2s;
  padding: 0;
  color: var(--c-menu);
  z-index: 1;
}

cat-template-desktop .btn-menu-collapse:hover {
  background-color: var(--btn-icon-bg-primary);
  color: var(--c-menu-hover);
}
