.lm {
}
.menubar {
display: flex;
flex-direction: row;
justify-content: space-between;
z-index: 1;
font-size: 0;
background-color: #dc2300;
margin: 0;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
.menubarpp {
position: fixed;
left: 0px;
top: 30px;
width: -webkit-calc(100% - 0px);
width: -moz-calc(100% - 0px);
width: -o-calc(100% - 0px);
width: calc(100% - 0px);
}
.menubar > div {
display: inline-block;
}
.menuitem {
display: inline-block;
font-size: 14px;
font-weight: bold;
padding: 1px 10px 1px 10px;
height: 26px;
line-height: 26px;
}
.menuitem:hover {
background-clip: padding-box;
}
.menubar > div > a {
color: #f0f0f0;
text-decoration: none;
}
.menuitem_bl {
border-left: 1px solid #dadada;
}
.menuitem_br {
border-right: 1px solid #dadada;
}
.menuitem > img {
border: 1px solid #ffffff;
}
img.menuflag {
padding: 0px;
position: relative;
top: 0px;
}
.menusmall {
display: inline-block;
}
@media(min-width: 768px) {
.menusmall {
display: none !important;
}
}
.sidenav {
display: none;
position: fixed;
z-index: 3;
top: 58px;
left: 0px;
height: -webkit-calc(100% - 58px);
height: -moz-calc(100% - 58px);
height: -o-calc(100% - 58px);
height: calc(100vh - 58px);
height: calc(100dvh - 58x);
box-sizing: border-box;
width: 220px;
background-color: #b00000;
overflow-x: hidden;
overflow-y: auto;
padding-top: 10px;
font-size: 14px;
font-weight: bold;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
.sidenav-sel {
background-color: #dc2300 !important;
}
.sidenav a {
display: block;
padding: 6px 8px 6px 16px;
text-decoration: none;
color: #d0d0d0;
background-color: inherit;
transition: 0.3s;
}
.sidenav a:hover {
color: #ffffff;
background-color: #dc2300;
}
.sidenav > hr {
border: none;
height: 1px;
color: #ffb000;
background-color: #ffb000;
}
.sidenav-show {
animation: animateshow 0.4s;
}
@keyframes animateshow {
from { left: -200px; opacity: 0; }
to { left: 0px; opacity: 1; }
}
@media screen and (min-width: 768px) {
.menubar {
}
.sidenav {
display: block !important;
}
.sidenav-show {
animation: animateshow 0s;
}
}
