.header-mobile-wrap {
  z-index: 30;
  position: relative;
}

.header-mobile {
  font-family: Krona;
  width: 100vw;
  height: 50px;

  background-color: var(--highlightbig);
  display: flex;
  align-items: center;
  justify-content: space-between;

  position: sticky;
  top: 0;
  /* z-index: 10; */

  -webkit-user-select: none;
  user-select: none;

  position: relative;

  -webkit-box-shadow: 0px 6px 20px -8px rgba(0,0,0,0.43);
  -moz-box-shadow: 0px 6px 20px -8px rgba(0,0,0,0.43);
  box-shadow: 0px 6px 20px -8px rgba(0,0,0,0.43);
}

.mobile-home-link {
  text-decoration: none;
  color: black;
}

.menu-wrap-mobile {
  display: flex;
  flex-direction: column;
  width: 100vw;
  justify-content: space-between;
  padding-left: 20px;

  z-index: -1;

  padding-top: 10px;
  padding-bottom: 10px;
  background-color: lavender;

  transition: transform 0.5s ease;
  transform: translateY(-100%);

  position: absolute;
  top: 0;
}

.menu-mobile-visible {
  transform: translateY(calc(0% + 50px));
}


.hannsjana-mobile-header {
  font-family: League;
  margin: 0;
  font-size: 50px;
  padding-top: 5px;
  padding-left: 20px;
  position: sticky;
  /* top: 50px; */
  z-index: 10;
  font-weight: 600;
}








.wrapper{
  max-width:800px;
  width:100%;
  margin:0 auto;
  text-align:center;
}

.button-menu {
  width:45px;
  background:transparent;
  border:none;
  height:35px;
  padding:0px;
  overflow:hidden;

  margin-right: 20px;

  cursor: pointer;
}

button:focus{
  outline:none;
}

.mobile-menu-transition span{
  display:inline-block;
  width:80%;
  height:3px;
  background:#000;
  position:relative;
  transition:all .2s;
}

.mobile-menu-transition span:before,
.mobile-menu-transition span:after{
  content:'';
  position:absolute;
  width:100%;
  background:#000;
  height:3px;
  left:0px;
  transition:all .3s;
}

.mobile-menu-transition span:before{
  top:10px;
}

.mobile-menu-transition span:after{
  bottom:10px;
}

button.mobile-menu-transition span.active{
  background: none;
}

button.mobile-menu-transition span.active:after,
button.mobile-menu-transition span.active:before{
  top: 0px;
  left: 0px;
}

button.mobile-menu-transition span.active:after{
  transform:rotate(-45deg);
  -webkit-transform:rotate(-45deg);
  -moz-transform:rotate(-45deg);
  -ms-transform:rotate(-45deg);
}

button.mobile-menu-transition span.active:before{
  transform:rotate(45deg);
  -webkit-transform:rotate(45deg);
  -moz-transform:rotate(45deg);
  -ms-transform:rotate(45deg);
}
