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

cat-template-mobile .template-content aside {
  position: absolute;
  height: 100vh;
  width: 70vw;
  left: -70vw;
  max-width: 70vw;
  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;
  border-right: 1px solid var(--primary-color-alpha);
  background-color: var(--bg-body);
  z-index: 99999;
}

cat-template-mobile .template-content aside.show::after {
  content: "";
  position: absolute;
  top: 0;
  left: 70vw;
  width: 30vw;
  height: 100%;
}

cat-template-mobile .template-content aside.show {
  left: 0;
}

cat-template-mobile .template-content aside:not(.show) {
  padding: 15px 0 0;
}

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

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

cat-template-mobile .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-mobile .template-content section#cat-content-app {
  width: 100%;
  height: calc(100vh - 60px);
  overflow: auto;
  overflow-x: hidden;
  box-sizing: border-box;
  position: relative;
}

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

cat-template-mobile .btn-menu-collapse {
  position: absolute;
  top: 20px;
  left: 15px;
  background-color: transparent;
  border: none;
  width: 30px;
  height: 30px;
  font-size: 1rem;
  border-radius: 50%;
  transition: ease-in-out 0.2s;
  padding: 0;
  color: var(--c-menu);
  z-index: 1;
}

cat-template-mobile .btn-menu-collapse:hover {
  color: var(--c-menu-hover);
}

cat-template-mobile .toolbar-content {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 10px 0 10px 5px;
  width: 100%;
  height: 60px;
  left: 0;
  bottom: 0;
  border-top: 1px solid var(--shadow-color);
  background-color: var(--bg-body);
  z-index: 1003;
}

cat-template-mobile .toolbar-content button {
  background-color: transparent;
  color: var(--font-color);
  border: none;
  margin: 0 10px;
  font-size: 1.25rem;
}
