.restaurantmenu_main_container {
    display: flex;
    flex-wrap: wrap;
}

.restaurantmenu_category_container {
    margin-top: 15px;
    flex: 1 auto;
}

.restaurantmenu_category_title {
    flex: 1;
}

.restaurantmenu_category_container.category_accordion .restaurantmenu_category {
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 0 15px;
}
.restaurantmenu_category_container.category_accordion .restaurantmenu_category_title {
    cursor: pointer;
}
.restaurantmenu_category_container.category_accordion ul {
    height: 0 !important;
    overflow: hidden;
    transition: all 1s ease-out;
}
.restaurantmenu_category_container.category_accordion.open ul {
    height: auto !important;
}

/** category image - above (and "default") **/
.restaurantmenu_category .show_category_images_as_above img.img-responsive,
.restaurantmenu_category .show_category_images_as_square_left img.img-responsive,
.restaurantmenu_category .show_category_images_as_square_right img.img-responsive,
.restaurantmenu_category .show_category_images_as_round_left img.img-responsive,
.restaurantmenu_category .show_category_images_as_round_right img.img-responsive
{
    max-height: 10em;
    object-fit: cover;
    width: 100%;
    border-radius: 3px;
}
.restaurantmenu_category .show_category_images_as_square_left img.img-responsive,
.restaurantmenu_category .show_category_images_as_square_right img.img-responsive,
.restaurantmenu_category .show_category_images_as_round_left img.img-responsive,
.restaurantmenu_category .show_category_images_as_round_right img.img-responsive
{
    height: 7em;
    width: 7em;
    display: block;
}
.restaurantmenu_category .show_category_images_as_round_left img.img-responsive,
.restaurantmenu_category .show_category_images_as_round_right img.img-responsive
{
    border-radius: 50%;
}

.restaurantmenu_category_container.category_accordion .show_category_images_as_above img.img-responsive {
    margin-top: 15px;
    cursor: pointer;
}

/** category image - background **/
.restaurantmenu_category .show_category_images_as_background {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.restaurantmenu_category .show_category_images_as_background img.img-responsive {
    max-height: 8em;
    object-fit: cover;
    width: 100%;
    border-radius: 3px;
    position: relative;
}
.restaurantmenu_category .show_category_images_as_background:after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 3px;
}
.restaurantmenu_category_container.category_accordion .show_category_images_as_background:after {
    top: 10px;
}
.restaurantmenu_category_container.category_accordion .show_category_images_as_background img.img-responsive,
.restaurantmenu_category_container.category_accordion .show_category_images_as_square_left img.img-responsive,
.restaurantmenu_category_container.category_accordion .show_category_images_as_square_right img.img-responsive,
.restaurantmenu_category_container.category_accordion .show_category_images_as_round_right img.img-responsive,
.restaurantmenu_category_container.category_accordion .show_category_images_as_round_left img.img-responsive
{
    margin-top: 10px;
    cursor: pointer;
}
.restaurantmenu_category .show_category_images_as_background .restaurantmenu_category_title {
    position: absolute;
    text-align: center;
    color: #fff;
    z-index: 9999;
    font-size: 2.5em;
}
@media (max-width: 768px) {
    .restaurantmenu_category .show_category_images_as_background .restaurantmenu_category_title {
        font-size: 2em;
    }

}

/** category image - left/right - mobile **/
@media (max-width: 768px) {
    .restaurantmenu_category .show_category_images_as_round_left,
    .restaurantmenu_category .show_category_images_as_round_right,
    .restaurantmenu_category .show_category_images_as_square_left,
    .restaurantmenu_category .show_category_images_as_square_right
    {
        text-align: center;
    }
    .restaurantmenu_category .show_category_images_as_round_left img.img-responsive,
    .restaurantmenu_category .show_category_images_as_round_right img.img-responsive,
    .restaurantmenu_category .show_category_images_as_square_left img.img-responsive,
    .restaurantmenu_category .show_category_images_as_square_right img.img-responsive
    {
        margin: auto;
        width: 10em;
        height: 10em;
    }
}
/** category image - left/right - desktop **/
@media (min-width: 768px) {
    .restaurantmenu_category .show_category_images_as_square_left,
    .restaurantmenu_category .show_category_images_as_square_right,
    .restaurantmenu_category .show_category_images_as_round_left,
    .restaurantmenu_category .show_category_images_as_round_right
    {
        display: flex;
        align-items: center;
    }

    .restaurantmenu_category .show_category_images_as_square_right,
    .restaurantmenu_category .show_category_images_as_round_right
    {
        flex-direction: row-reverse;
    }

    .restaurantmenu_category .show_category_images_as_square_left img.img-responsive,
    .restaurantmenu_category .show_category_images_as_square_right img.img-responsive,
    .restaurantmenu_category .show_category_images_as_round_left img.img-responsive,
    .restaurantmenu_category .show_category_images_as_round_right img.img-responsive
    {
        margin: 0 15px;
    }
}

.restaurantmenu_category_container ul {
    padding: 0 !important;
}

.restaurantmenu_item_li {
    display: flex;
    padding: 5px 10px 5px 0;
    list-style: none;
    align-items: center;
    margin-top: 15px;
}
.restaurantmenu_item_li.dashed {
    border-bottom: 1px dashed #555;
}

.restaurantmenu_item_li .restaurantmenu_item_name {
    max-width: 75%;
}
.restaurantmenu_item_li .restaurantmenu_item_name img.item_image {
    width: 30px;
    height: 30px;
    margin: -2px 5px 0 5px;
    border-radius: 2px;
}
.restaurantmenu_item_li .restaurantmenu_item_name .restaurantmenu_item_name_icons {
    align-self: center;
    margin-left: 5px;
}

/** mobile **/
@media (max-width: 768px) {
    .restaurantmenu_main_container {
        margin-left: -15px;
        margin-right: -15px;
    }

    .restaurantmenu_item_li .restaurantmenu_item_name {
        max-width: 60%;
        flex-wrap: wrap;
    }

    .restaurantmenu_item_li .restaurantmenu_item_name .restaurantmenu_item_name_span {
        min-width: 100%;
    }

    .restaurantmenu_item_li .restaurantmenu_item_name img.item_image {
        display: block;
        margin: 0;
        margin-bottom: 5px;
    }
    .restaurantmenu_item_li .restaurantmenu_item_name .restaurantmenu_item_name_icons {
        display: block;
        flex: 1;
        min-width: 100%;
        margin-left: 0;
    }
}

.restaurantmenu_item_li .restaurantmenu_item_dots {
    flex: 1;
    margin: 0px 5px;
}