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