.panel-container{
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0px 0px 8px 0px rgb(0 0 0 / 10%);
    -webkit-box-shadow: 0px 0px 8px 0px rgb(0 0 0 / 10%);
    -moz-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.10);
}
.panel-options {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #ffffff;
}

.dish-container .dropify-wrapper{
    height: 50px !important;
}

/* Menu styles  */

.main-container-home, .main-container-category{
    min-height: calc(100vh - 100px);
}

.menu-container{
    padding-top: 100px;
}

.menu-container > header{
    height: 100px;
    padding: 50px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0px;
    width: 100vw;
    z-index: 999;
}

    .menu-container header img{
        max-height: 70px;
        max-width: 150px;
        display: flex;
    }

    .menu-container header #menu-button {
        margin-left: -15px;
    }

    .menu-container > header > .menu{
        position: absolute;
        right: 15px;
        top: 68px;
        z-index: 99;
        padding: 20px;
        border-radius: 25px 0px 25px 25px;
        box-shadow: 0px 0px 7px 1px #3a3a3a;
        overflow: hidden;
        display: none;
        min-width: 250px;
        font-weight: bold;
    }

        .menu-container > header > .menu ul {
            list-style: none;
            padding-left: 15px;
            max-resolution: 15px;
        }

        .menu-container > header > .menu > ul > li > a {
            position: relative;
            padding-right: 30px;
            margin: 10px 0px;
            width: 100%;
            display: block;
        }

        .menu-container > header > .menu > ul > li > a:after {
            display: inline-block;
            position: absolute;
            font: normal normal normal 14px/1 FontAwesome;
            content: "\f04b";
            top: 4px;
            right: 10px;

            transition-duration: 0.5s;
        }

        .menu-container > header > .menu > ul > li > a.is-active:after {
            transform: rotate(90deg);
        }

        .menu-container > header > .menu > ul > li > ul {
            display: none;
        }

        .menu-container > header > .menu > ul > li,
        .menu-container > header > .menu > ul > li > ul > li > a {
            cursor: pointer;
        }

        .menu-container > header > .menu > ul > li > ul > li > a {
            display: block;
            width: 100%;
            border-radius: 10px;
            padding: 5px 15px;
            margin: 5px 0px;
            transition-duration: 0.5s;
        }

        .menu-container > header > .menu > ul > li > ul > li > a.is-active {
            box-shadow: 0px 0px 5px 3px #999;
            transform: scale3d(1.1, 1.1, 1.1);
            margin: 8px 0px;
        }

.header-image-container{
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Category List */

.menu-category-content header{
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 10px;
    padding: 10px 15px;
}

.category-list-container{
    padding-bottom: 60px;
}

.category-list-footer{
    height: 60px;
    position: absolute;
    bottom: 0px;
    background-position: center;
    background-repeat: no-repeat;
}

.dish-container{
    background-position: center;
    background-size: cover;
    height: calc((100vw / 3 ) - 30px);
    border-radius: 20px;
    box-shadow: 0px 0px 5px 3px #dfdfdf;
    margin: 5px;
    position: relative;
    overflow: hidden;
}

.dish-container h3 {
    position: absolute;
    bottom: 0px;
    height: 37%;
    width: 100%;
    background: rgba(0,0,0,.3);
    color: #fff;
    padding: 5px;
    font-size: 11px;
}

/* Dish List */

.header-image-container > .header-title-container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.category-dish-content > a,
.category-dish-content > .category-dish-content-actionable
{
    display: flex;
}

.category-dish-content .dish-container{
    min-width: calc((100vw / 3 ) - 30px);
    z-index: 2;
}

.category-dish-content .dish-description {
    display: flex;
    flex-wrap: nowrap;
    align-self: center;
    justify-items: left;
    align-items: flex-start;
    border-radius: 15px;
    padding: 3px 5px 3px 40px;
    margin-left: -30px;
    z-index: 1;
    height: calc((100vw / 3 ) - 35px);
    width: 100%;
    flex-direction: column;
    align-content: flex-start;
    justify-content: center;
}

    .category-dish-content .dish-description p {
        max-height: 34px;
        line-height: 17px;
        font-size: 14px;
        overflow: hidden;
        white-space: break-spaces;
        word-break: break-word;
        margin: 5px 0px;
    }

    span.dish-price {
        font-size: 12px;
    }

    .no-product-pictures .category-dish-content .dish-container {
        display: none;
    }
    .no-product-pictures .category-dish-content .dish-description{
        margin-left: 0px;
        padding: 5px 10px;
        margin-bottom: 15px;
        height: auto!important;
    }
    .no-product-pictures .category-dish-content .dish-description p{
        margin: 0px;
    }

/* Dish */
.dish-main {
    margin-top: 15px;
}
    .dish-main .dish-image {
        width: 80vw;
        height: 80vw;
        margin: auto;    
        border-radius: 20px;
        box-shadow: 0px 0px 5px 3px #ababab;
        background-size: cover;
        background-position: center;
    }

    .dish-main h3 {
        margin-bottom: 10px;
    }

    .dish-main .dish-description {
        margin-top: 15px;
        display: flex;
        flex-direction: column;
    }

    .dish-main .dish-description p {
        text-align: justify;
    }

    .dish-main .dish-description span.dish-price {
        align-self: end;
    }

#dishModal .dish-image {
    width: calc(100% + 82px);
    margin: -32px -38px 15px -41px;
    box-shadow: none;
    border-radius: 5px 5px 0 0;
}

#dishModal button.btn-close {
    z-index: 9;
    border-radius: 100%;
    background-color: #fff;
    right: 0px;
    position: absolute;
}




/* Desktop Styles */
@media (min-width: 768px) {

    .header-image-container{
        height: 400px;
        background-size: cover;
        background-position: center;
    }

        .header-image-container img{
            display: none;
        }

    .dish-container{
        height: calc((100vw / 5 ) - 75px);
    }

    .category-dish-content .dish-container{
        min-width: calc((100vw / 5 ) - 75px);
    }

    .dish-description {
        height: calc((100vw / 5 ) - 80px)!important;
        min-height: 140px;
    }
    
    .no-product-pictures .dish-description {
        height: auto!important;
        min-height: 140px;
    }

    .dish-main .dish-image {
        width: calc(90vw / 4);
        height: calc(90vw / 4);
    }
    

    .dish-container h3 {
        position: absolute;
        bottom: 0px;
        height: 74px;
        width: 100%;
        background: rgba(0,0,0,.3);
        color: #fff;
        padding: 10px;
        font-size: 1.2rem;
    }

}

@media (min-width: 1200px){

}

.help-block {
    color: #f36;
    padding: 5px;
}

.btn-logout {
    border: none;
    width: 100%;
}