
/* basically all styling from now on */

/* basically all styling from now on */
.content {
    z-index: 2;
    position: relative;
}
.menu_items {
    position: fixed;
    display: flex;
    flex-flow: column;
    justify-content: center;
    z-index: 1;
    transform: rotate(90deg);
    width: 100vw;
    height: 100vh;
    list-style-type: none;
    margin: 0;
    padding: 0;
    transform-origin: top right;
    transition: transform 0.7s cubic-bezier(1, 0.005, 0.24, 1);
}

.menu_items li {
	line-height: 80px;
    /* padding-left: 3rem; */
    display: block;
    text-align: center;
    width: 100%;
    transition: transform 0.7s cubic-bezier(1, 0.005, 0.24, 1);
}
.menu_items li.menu-item-has-children {
    position: relative;
    height: fit-content;
	max-height: 80px;
    overflow: hidden;
    background: var(--prim)ff;
    transition: max-height 0.7s cubic-bezier(1, 0.005, 0.24, 1), background 0.7s cubic-bezier(1, 0.005, 0.24, 1);
}
.menu_items li.menu-item-has-children a::before {
    background-color: transparent;
}
.menu_items li.menu-item-has-children:hover{
    max-height: 100%;
    background: var(--prim)00;
}
.menu_items li.menu-item-has-children ul.sub-menu{
    padding: 0;
}
.menu_items li.menu-item-has-children ul.sub-menu li{
	line-height: 40px;
}
.menu_items li > a::before {
    position: absolute;
    z-index: -1;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    content: '';
    height: 80px;
    width: 0%;
    background-color: var(--prim);
    transition: width 0.7s cubic-bezier(1, 0.005, 0.24, 1);
}
.menu_items li > a:hover::before {
    width: 100%;
    left: 0;
    right: auto;
}
.menu_items a {
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.2s;
}
.menu_items a:hover {
}
.shazam .menu_items{
    transform: rotate(0deg);
}
.shazam .menu_items li {
    transform: rotate(0deg);
}
.shazam .content {
    transform: rotate(-90deg);
}
body.loaded.admin-bar .menu_toggle {
    top: 46px;
}
