@charset "utf-8";

@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,300);

.header {
  position: fixed;
  top: 0;
  z-index: 20;
  height: 100vh;
  width: 60px;
}

@media (width>800px) {
  .header {
    width: 100px;
  }
}

.header:target > menu-fixed {
  width: 120px;
  background: #111;
  transition: all 0.3s;
}

.header:target > menu-fixed > a .material-icons.back {
  display: none;
}

.header:target > menu-fixed > .menu li {
  text-align: center;
  width: 40%;
}

.header:target > menu-fixed > .menu li > p {
  display: none;
}

.menu-fixed {
  width: 100%;
  transition: all 0.3s;
  text-align: center;
  overflow: auto;

  z-index: 2;
  /* position: fixed; */
  height: 100vh;
  background: #044f91;
  box-shadow: 10px 0px 10px rgba(0, 0, 0, 0.19), 8px 0px 10px rgba(0, 0, 0, 0.23);
}

.menu-fixed .material-icons.back {
  width: 0;
  height: 0;
  border-right: 15px solid rgb(255, 255, 255);
  border-left: 15px solid rgba(0, 0, 0, 0);
  border-top: 15px solid rgba(0, 0, 0, 0);
  border-bottom: 15px solid rgba(0, 0, 0, 0);
  transform: rotateZ(0deg) translateX(10px);
  -webkit-transform: rotateZ(0deg) translateX(10px);
  display: none;
  color: #cbcbcb;
  position: absolute;
  left: 10px;
  top: 30px;
  font-size: 36px;
  cursor: pointer;
  transition: color 0.3s;
}

.menu-fixed .material-icons.back:hover {
  color: #ffffff;
  transition: color 0.3s;
}

.menu-fixed:target {
  width: 280px;
  background: #081365;
  transition: all 0.3s ease-out;
}

.menu-fixed:target > .notes {
  transition: all 0.2s;
  z-index: 0;
  opacity: 0;
}

.menu-fixed:target > a .material-icons.back {
  display: block;
}

.menu-fixed:target > a > .logo {
  width: 60%;
  height: 120px;
  margin: auto;
}

.menu-fixed:target > a > .logo > span {
  display: none;
}

.menu-fixed:target > a > .logo > p {
  display: block;
}

.menu-fixed:target > .menu li {
  text-align: left;
  width: 60%;
}

/* .menu-fixed:target>.menu li:hover::after {
  content: "";
  display: block;
  position: absolute;
  background: #3568631a;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 4px;
} */

.menu-fixed:target > .menu li:hover p {
  color: white;
}

.menu-fixed:target > .menu li p {
  display: inline-block;
}

.menu-fixed .logo {
  width: 100%;
  height: 90px;
  position: relative;
  cursor: pointer;
}

.menu-fixed .logo p {
  display: none;
  color: #e5e5e5;
  font-size: 23px;
  padding-bottom: 0;
  font-weight: 300;
  line-height: 1;
}

.menu-fixed .logo .mark {
  width: 10px;
  height: 10px;
  /* background: #0A0A0A; */
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 25px;
  transform: rotateZ(45deg);
  -webkit-transform: rotateZ(45deg);
  border: 8px solid white;
  border-radius: 5px;
  transition: all 0.2s;
}

.menu-fixed .logo .sect {
  font-size: 60%;
  /* text-align: left; */
  line-height: 1.5;
  display: block;
  /* padding: 10px 0 0; */
}

.menu-fixed .logo:hover ~ p {
  color: white;
  transition: all 0.3s;
}

.menu-fixed .logo:hover > span {
  width: 0;
  height: 0;
  border-left: 15px solid rgb(255, 255, 255);
  border-right: 15px solid rgba(0, 0, 0, 0);
  border-top: 15px solid rgba(0, 0, 0, 0);
  border-bottom: 15px solid rgba(0, 0, 0, 0);
  transition: all 0.2s;
  transform: rotateZ(0deg) translateX(10px);
  -webkit-transform: rotateZ(0deg) translateX(10px);
}

.menu-fixed .logo:hover > span {
  width: 0;
  height: 0;
  border-left: 15px solid rgb(255, 255, 255);
  border-right: 15px solid rgba(0, 0, 0, 0);
  border-top: 15px solid rgba(0, 0, 0, 0);
  border-bottom: 15px solid rgba(0, 0, 0, 0);
  transition: all 0.2s;
  transform: rotateZ(0deg) translateX(10px);
  -webkit-transform: rotateZ(0deg) translateX(10px);
}

.menu-fixed .logo:hover > span::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 8px solid #044f91;
  border-right: 8px solid rgba(0, 0, 0, 0);
  border-top: 8px solid rgba(0, 0, 0, 0);
  border-bottom: 8px solid rgba(0, 0, 0, 0);
  left: -15px;
  position: absolute;
  top: -8px;
}

.menu-fixed .pmenu {
  margin: 0;
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
}

.menu-fixed hr {
  width: 75%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-fixed .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.menu-fixed .menu li {
  padding: 15px;
  width: 40%;
  margin: auto;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
  /* cursor: pointer; */
  /* overflow: hidden; */
  /* position: relative; */
  transition: all 0.3s;

  a {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.menu-fixed .menu li:last-child {
  border: none;
}

.menu-fixed .menu li .material-icons {
  color: #d5d5d5;
}

.menu-fixed .menu li .material-icons img {
  width: 40px;
}

.menu-fixed .menu li:hover > .material-icons {
  transition: all 0.5s;
  color: white;
}

.menu-fixed .menu li p {
  display: none;
  margin: 0 auto;
  color: #ccc;
  font-size: 14px;
  /* font-weight: 300; */
  /* padding-left: 30px; */
  /* line-height: 30px; */
  transition: 0.5s;
}

.material-icons.info {
  color: #999;
  position: absolute;
  margin: 0;
  bottom: 20px;
  left: 0;
  right: 0;
}

a:link,
a:visited {
  text-decoration: none;
}

svg {
  width: 48px;
  height: 48px;
}

.cls-1,
.cls-2 {
  fill: none;
}

.cls-2 {
  stroke: #aaa;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4px;
  transition: 0.5s;
}

a:hover .cls-2 {
  stroke: #fff;
}
