﻿html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    color: #333;
}


.body {
    min-height: 100vh;
    margin: 0 auto;
}


hr {
    border-width: 1px;
    border-color: #999;
}

s {
    opacity: 0.7;
}

.m-h5 {
    font-weight: 700;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 10px;
}

.m-pointer {
    cursor: pointer;
}


.m-navbar {
    position: fixed;
    width: 100%;
    height: 60px;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #CCC;
    background-color: #FFF;
    z-index: 1000;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.2);
}

.m-title {
    /*height: 100%;*/
    font-weight: 700;
    color: #666;
    font-size: larger;
}

img.m-logo {
    height: 34px;
    border: none;
    /*max-width: 50vw;*/
}

.m-navbar-buttons {
    display: flex;
    height: 60px;
    padding: 0;
    margin: 0;
}

.m-navbar-button {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0;
    padding: 0;
    text-align: center;
    cursor: pointer;
}

    .m-navbar-button:hover {
        background-color: #EEE;
    }

.m-navbar-button-right {
    border-left: 1px solid #CCC;
}

.m-navbar-button-left {
    border-right: 1px solid #CCC;
}

.m-navbar-button-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    color: #999;
}

.m-cart-counter {
    position: absolute;
    top: 12%;
    right: 12%;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: red;
    color: white;
    font-size: smaller;
}



.m-body {
    padding-top: 60px;
    /*min-height: 92vh;*/
}

.m-menu-banner {
    position: relative;
    width: 100%;
    height: 250px;
    background-image: url('/img/menu-cover3.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.m-menu-banner-logo {
    height: 30vw;
    max-height: 120px;
    width: auto;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.75;
    margin-bottom: 10px;
}

.m-menu-banner-title {
    position: absolute;
    width: 99vw;
    left: 50%;
    top: 50%;
    color: white;
    font-weight: 700;
    font-size: calc(8px + 2.5vw);
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.89);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}


.m-menu-section {
    margin-top: 20px;
    margin-bottom: 40px;
}

.m-menu-section-title {
    font-weight: 700;
    font-size: large;
    color: #666;
    text-transform: uppercase;
}

.m-menu-section-description {
    font-size: small;
}

.m-menu-section-cover {
    width: 100%;
    height: 130px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.m-menu-items {
    /*margin-top: 20px;*/
}


.m-menu-item {
    /*border-top: 1px solid #CCC;*/
    border-bottom: 1px solid #CCC;
    cursor: pointer;
    min-height: 60px;
    padding-top: 2px;
    padding-bottom: 5px;
}

    .m-menu-item:first-of-type {
        border-top: 1px solid #CCC;
    }

    .m-menu-item:hover {
        background-color: #EEE;
    }

.m-menu-item-thumb {
    width: 50px;
    flex: 0 0 50px;
    height: 50px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.m-menu-item-title {
    font-weight: 700;
}

.m-menu-item-description {
    font-size: small;
}

.m-menu-item-price {
    padding-left: 10px;
    font-weight: 700;
    white-space: nowrap;
    text-align: right;
    max-width: 40%;
}

.m-menu-item-order {
    white-space: normal;
    opacity: 0.65;
    font-size:xx-small;
    text-align: right;
}

.m-menu-item-cant-order {
    min-width: 80px;
    white-space: normal;
    font-size: x-small;
    text-align: right;
    color: red;
}


.m-item-popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2000;
}

.m-item-popup-shader {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.2);
}

.m-item-popup-window {
    position: absolute;
    top: 80px;
    bottom: 20px;
    width: 50%;
    max-width: 450px;
    left: 50%;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #EEE;
    border: 1px solid #999;
    -webkit-box-shadow: 10px 10px 28px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 10px 10px 28px 0px rgba(0,0,0,0.15);
    box-shadow: 10px 10px 28px 0px rgba(0,0,0,0.15);
}

.m-item-popup-close {
    position: absolute;
    top: -13px;
    right: -13px;
    width: 30px;
    height: 30px;
    background-color: white;
    border: 1px solid #999;
    border-radius: 50%;
    text-align: center;
    padding-top: 1px;
    cursor: pointer;
}

.m-item-popup-body {
    width: 100%;
    height: 100%;
}

.m-item-popup-content {
    overflow-y: auto;
}

.m-item-popup-name {
    font-weight: 700;
    font-size: large;
}

.m-item-popup-description {
}

.m-item-popup-photo {
    width: 100%;
    padding-bottom: 50%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top:3px;
}

.m-item-popup-photo-custom {
    display: none!important;
}

.m-item-popup-photo-custom img {
    width: 100%;
    height: auto;
}

.m-item-popup-attribute-name {
    font-weight: 700;
}

.m-item-popup .form-group label {
    font-weight: 700;
}

#we-qty {
    background-color: white;
}

.m-item-popup-footer {
    z-index: 2000;
    -webkit-box-shadow: 0px -4px 4px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px -4px 4px 0px rgba(0,0,0,0.2);
    box-shadow: 0px -4px 4px 0px rgba(0,0,0,0.2);
}

@media (max-width: 767px) {
    .m-item-popup-window {
        width: 100%;
        max-width: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        -webkit-transform: none;
        transform: none;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        border: none;
    }

    .m-item-popup-body {
        padding-top: 60px;
    }
}



.m-cart-item-name {
    line-height: 1.2em;
    width: 100%;
}

.m-cart-item-addon {
    font-size: small;
    margin-left: 10px;
}

.m-cart-item-comment {
    display: block;
    font-size: smaller;
    font-style: italic;
    line-height: 1.1em;
}

.m-cart-remove {
    cursor: pointer;
    width: 20px;
}


.m-footer {
    width: 100%;
    /*min-height: 100px;*/
    background-color: #EEE;
    font-size: small;
    text-align: center;
}



.m-cart-shake {
    animation: shake 0.5s;
    animation-iteration-count: 2;
}

@keyframes shake {
    0% {
        -moz-transform: translate(1px, 1px) rotate(0deg);
        -ms-transform: translate(1px, 1px) rotate(0deg);
        -o-transform: translate(1px, 1px) rotate(0deg);
        -webkit-transform: translate(1px, 1px) rotate(0deg);
        transform: translate(1px, 1px) rotate(0deg);
    }

    10% {
        -moz-transform: translate(-1px, -2px) rotate(-1deg);
        -ms-transform: translate(-1px, -2px) rotate(-1deg);
        -o-transform: translate(-1px, -2px) rotate(-1deg);
        -webkit-transform: translate(-1px, -2px) rotate(-1deg);
        transform: translate(-1px, -2px) rotate(-1deg);
    }

    20% {
        -moz-transform: translate(-3px, 0px) rotate(1deg);
        -ms-transform: translate(-3px, 0px) rotate(1deg);
        -o-transform: translate(-3px, 0px) rotate(1deg);
        -webkit-transform: translate(-3px, 0px) rotate(1deg);
        transform: translate(-3px, 0px) rotate(1deg);
    }

    30% {
        -moz-transform: translate(3px, 2px) rotate(0deg);
        -ms-transform: translate(3px, 2px) rotate(0deg);
        -o-transform: translate(3px, 2px) rotate(0deg);
        -webkit-transform: translate(3px, 2px) rotate(0deg);
        transform: translate(3px, 2px) rotate(0deg);
    }

    40% {
        -moz-transform: translate(1px, -1px) rotate(1deg);
        -ms-transform: translate(1px, -1px) rotate(1deg);
        -o-transform: translate(1px, -1px) rotate(1deg);
        -webkit-transform: translate(1px, -1px) rotate(1deg);
        transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        -moz-transform: translate(-1px, 2px) rotate(-1deg);
        -ms-transform: translate(-1px, 2px) rotate(-1deg);
        -o-transform: translate(-1px, 2px) rotate(-1deg);
        -webkit-transform: translate(-1px, 2px) rotate(-1deg);
        transform: translate(-1px, 2px) rotate(-1deg);
    }

    60% {
        -moz-transform: translate(-3px, 1px) rotate(0deg);
        -ms-transform: translate(-3px, 1px) rotate(0deg);
        -o-transform: translate(-3px, 1px) rotate(0deg);
        -webkit-transform: translate(-3px, 1px) rotate(0deg);
        transform: translate(-3px, 1px) rotate(0deg);
    }

    70% {
        -moz-transform: translate(3px, 1px) rotate(-1deg);
        -ms-transform: translate(3px, 1px) rotate(-1deg);
        -o-transform: translate(3px, 1px) rotate(-1deg);
        -webkit-transform: translate(3px, 1px) rotate(-1deg);
        transform: translate(3px, 1px) rotate(-1deg);
    }

    80% {
        -moz-transform: translate(-1px, -1px) rotate(1deg);
        -ms-transform: translate(-1px, -1px) rotate(1deg);
        -o-transform: translate(-1px, -1px) rotate(1deg);
        -webkit-transform: translate(-1px, -1px) rotate(1deg);
        transform: translate(-1px, -1px) rotate(1deg);
    }

    90% {
        -moz-transform: translate(1px, 2px) rotate(0deg);
        -ms-transform: translate(1px, 2px) rotate(0deg);
        -o-transform: translate(1px, 2px) rotate(0deg);
        -webkit-transform: translate(1px, 2px) rotate(0deg);
        transform: translate(1px, 2px) rotate(0deg);
    }

    100% {
        -moz-transform: translate(1px, -2px) rotate(-1deg);
        -ms-transform: translate(1px, -2px) rotate(-1deg);
        -o-transform: translate(1px, -2px) rotate(-1deg);
        -webkit-transform: translate(1px, -2px) rotate(-1deg);
        transform: translate(1px, -2px) rotate(-1deg);
    }
}




.bs-callout {
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #eee;
    border-left-width: 5px;
    border-radius: 3px;
}
.bs-callout h4 {
    margin-top: 0;
    margin-bottom: 5px;
}
.bs-callout p:last-child {
    margin-bottom: 0;
}
.bs-callout code {
    border-radius: 3px;
}
.bs-callout+.bs-callout {
    margin-top: -5px;
}
.bs-callout-default {
    border-left-color: #777;
}
.bs-callout-default h4 {
    color: #777;
}
.bs-callout-primary {
    border-left-color: #428bca;
}
.bs-callout-primary h4 {
    color: #428bca;
}
.bs-callout-success {
    border-left-color: #5cb85c;
}
.bs-callout-success h4 {
    color: #5cb85c;
}
.bs-callout-danger {
    border-left-color: #d9534f;
}
.bs-callout-danger h4 {
    color: #d9534f;
}
.bs-callout-warning {
    border-left-color: #f0ad4e;
}
.bs-callout-warning h4 {
    color: #f0ad4e;
}
.bs-callout-info {
    border-left-color: #5bc0de;
}
.bs-callout-info h4 {
    color: #5bc0de;
}


/*html {
  --scrollbarBG: #CFD8DC;
  --thumbBG: #90A4AE;
}
body::-webkit-scrollbar {
  width: 11px;
}
body {
  scrollbar-width: thin;
  scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}
body::-webkit-scrollbar-track {
  background: var(--scrollbarBG);
}
body::-webkit-scrollbar-thumb {
  background-color: var(--thumbBG) ;
  border-radius: 6px;
  border: 3px solid var(--scrollbarBG);
}*/


img.flag  {
    display: inline-block;
    position: relative;
    height: 24px;
    bottom: 2px;
}

a[name] {
    position: absolute;
    margin-top: -64px;
}