nav {
  pointer-events: none;
  top: 60px;
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  -webkit-transition: opacity 0.3s ease-in,-webkit-transform 0.3s ease-in;
  transition: opacity 0.3s ease-in,-webkit-transform 0.3s ease-in;
  transition: opacity 0.3s ease-in,transform 0.3s ease-in;
  transition: opacity 0.3s ease-in,transform 0.3s ease-in,-webkit-transform 0.3s ease-in;
  text-align: left;
  position: absolute;
  z-index: 111;
  background-color: #575454;
  min-height: 100vh;
  width: 100vw;
}

nav .collection {
  background-color: blanchedalmond;
}

nav .collection .coll {
  margin: 0 2em;
  padding: 0.5em;
  border-bottom: 1px solid rgba(87, 84, 84, 0.3);
}

nav .collection .coll a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: auto;
  font-size: 20px;
  color: black;
  padding-left: 0.2em;
  text-align: left;
}

nav .collection .coll .arrow {
  float: right;
}

nav .userdetails {
  margin: 2em 0;
}

nav .userdetails .coll {
  margin: 0 2em;
  padding: 0.5em;
}

nav .userdetails .coll a {
  width: auto;
  font-size: 16px;
  color: white;
  padding-left: 0.2em;
  text-align: left;
}

nav.active {
  opacity: 1;
  pointer-events: all;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.incoll {
  top: 60px;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  -webkit-transition: opacity 0.3s ease-in,-webkit-transform 0.3s ease-in;
  transition: opacity 0.3s ease-in,-webkit-transform 0.3s ease-in;
  transition: opacity 0.3s ease-in,transform 0.3s ease-in;
  transition: opacity 0.3s ease-in,transform 0.3s ease-in,-webkit-transform 0.3s ease-in;
  text-align: left;
  position: absolute;
  width: 100vw;
}

.incoll .collection {
  background-color: blanchedalmond;
  height: 100vh;
  padding: 1em 0;
}

.incoll .collection .coll {
  margin: 0 2em;
  padding: 0.5em;
  border-bottom: 1px solid rgba(87, 84, 84, 0.3);
}

.incoll .collection .coll a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: auto;
  font-size: 20px;
  color: black;
  padding-left: 0.2em;
  text-align: left;
}

.incoll.active {
  opacity: 1;
  pointer-events: all;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.backarrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.back-arrow-text {
  color: black;
  font-size: 35px;
  padding-right: 30px;
}

#closeBurgerMenu {
  display: none;
}

.burger-menu {
  display: none;
}

@media only screen and (max-width: 900px) {
  .burger-menu {
    display: block;
  }
}
/*# sourceMappingURL=burgerMenu.css.map */