body {margin-top: 59px;}

.navbar {
  height: 60px;
  width: 100%;
  border-bottom: .7px solid #bebebe;
  position: fixed;
  left: 0; top: 0;
  background: #f0f2f5;
  display: flex;
  align-items: center;
  justify-content: space-between;}

.cover {
  background: rgba(0,0,0,.3);
  height: 100%;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;}
.cover.show {
  opacity: 1;
  pointer-events: auto;}

.navlist {
  height: 100%;
  width: 70%;
  max-width: 300px;
  background: #fff;
  display: flex;
  align-items: center;
  color: #1b1b1b;}
.navlist {
  transform: translateX(-100%);
  transition: transform 0.3s ease;}
.navlist.open {transform: translateX(0);}

.list {width: 90%;}
.list a {
  display: block;
  width: 100%;
  color: #1b1b1b;
  padding: 12px 0;
  border-bottom: .5px solid #e0e0e0;
  text-decoration: none;}

.menu {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: .7px solid #bebebe;
  background: #f7f7f7;
  color: #1b1b1b;
  margin: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;}

.logo {
  margin: 10px;
  max-height: 40px;}