@charset "utf-8";
/* CSS Document */

@keyframes color{
	0% {background-position: 0% 90%;}
	100% {background-position: 0% 00%;}
}

@keyframes width{
	0% {width: 240px;}
	100% {width: 23vw;}
}

#sidebar {
  height: 100%;
  width: 23vw;
  animation: color 2s ease, width 2s ease;
  background: linear-gradient(#00A29A, #1BAF76, #008080, #008080, #008080, #008080);/*#004E9E;*/
  background-size: 600% 600%;
  overflow-y: scroll;
}


aside#aside {
  position: relative;
}

aside#aside #sidebar {
}

aside#aside.cls #sidebar {
  overflow: hidden;
  width: 0px;
}

aside#aside #toggle-btn {
  display: block;
  color: white;
  text-align: center;
  cursor: pointer;
  text-indent: -2px;
  font-weight: bold;
  width: 29px;
  height: 32px;
  background-color: #008b8b;/*#003269;*/
  top: 14px;
  right: -29px;
  z-index: 222;
  position: absolute;
  /*border: solid 3px #003269;*/
  border: solid 3px #008b8b;
  border-left: none;
}

#sidebar img.logo {
  width: 100%;
  padding: 24px 5%;
  padding-right: 10%;
  /*background-color: rgba(0,0,0,0.2);*/
}

#sidebar ul {
  list-style: none;
  font-size: 1.2rem;
  padding: 24px 0px;
  padding-bottom: 0;
  margin-bottom: 0;
}

#sidebar ul li {
  color: #ddd;
}

#sidebar ul li.active a {
  background-color: rgba(0,0,0,0.2);
}

#sidebar ul li a {
  color: #fff;
  display: block;
  padding: 14px 18px;
  margin-left: 24px;
}

#sidebar ul li a:hover {
  color: #aaa;
  text-decoration: none;
}

#sidebar ul li svg {
  display: inline-block;
  width: 32px;
  padding-right: 12px;
}
