/* Sakhelosno BAR — bar menu (ported from the Laravel /bar-menu page) */
@font-face {
    font-display: swap;
    font-family: "widescratch";
    font-weight: normal;
    text-decoration: none;
    src: url("../fonts/Widescratch/Widescratch.woff2") format("woff2"),
    url("../fonts/Widescratch/Widescratch.otf") format("opentype"),
    url("../fonts/Widescratch/Widescratch.ttf") format("truetype");
}

body.bmenu-page{
    background: var(--bg, #0d1410);
    margin: 0;
    padding: 0;
}

.bmenu-wrapper{
    width: 360px;
    margin: 130px auto 70px;
    padding: 0;
    box-sizing: border-box;
    background: #211e1e;
    color: #fff;
    display: flow-root;
    border: 1px solid #f5eede14;
    border-radius: 18px;
    box-shadow: 0 24px 60px #0008;
}
.bmenu-wrapper *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: "widescratch", sans-serif;
}
.bmenu-wrapper a{
    color: inherit;
    text-decoration: none;
}

.bmenu-wrapper .section{
    width: 100%;
    float: left;
    margin: 40px 0 0 0;
    padding: 0 11px;
}
.bmenu-wrapper .section.mt30{
    margin-top: 30px;
}
.bmenu-wrapper .section.leftovers{
    padding-bottom: 50px;
}
.bmenu-wrapper .section.heading{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    text-align: right;
    margin-top: 30px;
}
.bmenu-wrapper .logo{
    flex: 0 0 111px;
}
.bmenu-wrapper .logo img{
    width: 100%;
    height: auto;
}
.bmenu-wrapper h1{
    flex: 1;
    font-weight: normal;
    font-size: 29px;
    color: #faa63b;
}
.bmenu-wrapper .list{
    width: 100%;
    float: left;
}
.bmenu-wrapper .list li{
    width: 100%;
    float: left;
    margin: 7px 0;
    font-size: 14px;
    position: relative;
}
.bmenu-wrapper .list li.dc{
    color: #e62246;
}
.bmenu-wrapper .section.leftovers .list li{
    color: #faa63b;
}
.bmenu-wrapper .list li:before{
    content: '';
    width: 98%;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 1%;
    right: 1%;
    top: 50%;
    opacity: 0.3;
}
.bmenu-wrapper .list li.dc:before{
    background: #e62246;
}
.bmenu-wrapper .section.leftovers .list li:before{
    background: #faa63b;
}
.bmenu-wrapper .list li .n{
    float: left;
    padding-right: 15px;
    position: relative;
    z-index: 1;
}
.bmenu-wrapper .list li .p{
    float: right;
    padding-left: 15px;
    position: relative;
    z-index: 1;
}
.bmenu-wrapper .list li .n,
.bmenu-wrapper .list li .p{
    background: #211e1e;
}
.bmenu-wrapper .list li a{
    font-size: 17px;
    border: 1px solid #a1a1a1;
    text-align: center;
    display: block;
    padding: 10px;
}
.bmenu-wrapper .slash{
    display: inline-block;
    margin: 0 3px;
}

.bmenu-wrapper .sect-title{
    color: #faa63b;
    font-weight: normal;
    font-size: 29px;
    margin: 0 0 15px 0;
}

@media(max-width: 390px){
    .bmenu-wrapper{
        width: calc(100% - 20px);
    }
}
