.fsmfe-wrapper input[type="checkbox"] {
  display: none;
}
.fsmfe-wrapper .icon-bars {
  display: block;
  width: 30px;
  height: 30px;
  position: fixed;
  right:0;
  z-index: 1999;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-right: 20px;
}
.fsmfe-wrapper .icon-bar {
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  background-color: #000;
  backface-visibility: hidden;
  transition: all 0.3s ease;
}
.fsmfe-wrapper .icon-bar.bar-top {
  margin-top: -30px;
  transform: rotate(0);
}
.fsmfe-wrapper .icon-bar.bar-middle {
  opacity: 1;
}
.fsmfe-wrapper .icon-bar.bar-bottom {
  margin-top: 30px;
  transform: rotate(0);
}
.fsmfe-wrapper .menu-toggle:checked + .icon-bars .icon-bar {
  transition: all 0.3s ease;
}
.fsmfe-wrapper .menu-toggle:checked + .icon-bars .bar-top {
  margin-top: 0 !important;
  transform: rotate(45deg);
}
.fsmfe-wrapper .menu-toggle:checked + .icon-bars .bar-middle {
  opacity: 0;
}
.fsmfe-wrapper .menu-toggle:checked + .icon-bars .bar-bottom {
  margin-top: 0 !important;
  transform: rotate(-45deg);
}
.fsmfe-wrapper .menu-overlay {
    border: 7px solid salmon;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 40%;
  height: 80%;
  position: fixed;
  top: 0;
  left: 60%;
  z-index: 400;
  visibility: hidden;
  opacity: 0;
  overflow-y: scroll;
  transition: all 0.3s ease-in-out;
}
.fsmfe-wrapper .menu-toggle:checked + .icon-bars + .menu-overlay {
  z-index: 1900;
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.fsmfe-wrapper .menu-overlay .menu-content {
  width: 100%;
  margin: auto;
}
.fsmfe-wrapper .content-type-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fsmfe-wrapper .content-type-menu a {
  display: block;
  font-size: 50px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 2em;
  letter-spacing: 3px;
}
