/* Menu3 */

.or-menu-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background-color: #fafafa;
    box-shadow: -3px 9px 11px 0px #00000082;
    z-index: 100000;
    overflow: auto;
}

.or-menu-logo {
    padding: 20px;
    text-align: center;
}

.or-menu-panel ul.main-menu {
    padding: 30px 20px 10px;
    list-style: none;
    text-align: center;
}

.or-menu-panel ul.main-menu ul {
    list-style: none;
    padding-left: 0;
}

.or-menu-panel ul.main-menu>li {
    font-size: 1.2em;
    padding: 10px 5px;
}

.or-menu-panel ul.main-menu>li:not(:last-child) {
    border-bottom: 1px solid #ccc;
}

.or-menu-panel ul.main-menu>li.aktiv {
    border-left: 5px solid var(--primary-color);
}

.or-menu-panel ul.main-menu>li.aktiv>a {
    font-weight: bold;
}

.or-menu-panel ul.main-menu ul li {
    font-size: 0.8em;
}

.or-menu-panel li a {
    color: #333;
}

.or-menu-panel li a.aktiv,
.or-menu-panel li a:hover {
    text-decoration: none;
    color: var(--primary-color);
}

.or-menu-panel li i {
    font-size: 0.9em;
    margin-right: 5px;
}

.or-menu-languages {
    list-style-type: none;
    text-align: center;
    padding-left: 0;
    margin-bottom: 25px;
}

.or-menu-languages li {
    display: inline;
    padding: 2px;
}

.or-menu-languages li img {
    width: 20px;
    height: auto;
}

.or-menu-homepage {
    text-align: center;
}

.or-menu-address {
    text-align: center;
    border: 1px solid #CCC;
    margin: 40px 20px 50px;
    padding: 10px 10px 5px;
    font-size: 0.9em;
}

.or-menu-address a,
.or-menu-address a:hover,
.or-menu-address a:visited {
    color: inherit;
    text-decoration: none;
}

.or-menu-legals {
    position: fixed;
    bottom: 0;
    text-align: center;
    background-color: #ccc;
    width: 280px;
    padding: 5px 10px;
}

.or-menu-legals a,
.or-menu-legals a:hover,
.or-menu-legals a:visited{
    color: #000;
    text-decoration: none;
}

.or-menu-legals a:hover {
    opacity: 0.7;
}

.or-menu-button {
    position: fixed;
    font-size: 2em;
    cursor: pointer;
    padding: 2px 10px;
}

body:not(.reservation) .or-menu-button {
    margin: 10px;
    background-color: #fafafa;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-shadow: 5px 5px 10px -4px #00000082;
}

.reservation .or-menu-button {
    top: 0px
}

.or-menu-panel-close {
    text-align: right;
    padding: 5px 10px;
    margin-bottom: 10px;
    font-size: 1.5em;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}

@media (max-width: 1479px) {
    .or-menu-panel {
        display: none;
    }
    .or-menu-button {
        display: inline-block;
    }
    .reservation .tmpl-header {
        background: #fff;
        height: 45px;
        width: 100%;
        position: fixed;
    }
    .reservation .gui.steps.withMenu {
        margin-top: 45px;
    }
}