/** * Computes a CSS calc function that betweens a value from * A to B over viewport-width A to viewport-width B. * Requires a media query to cap the value at B. */
.container {
    max-width: 980px;
    margin: auto;
}

body {
    font-family: 'Arial', sans-serif;
    background: #d7ecd4;
    text-decoration: none;
}

.restaurant-menu {
    background: #d7ecd4;
    margin-top: 50px;
    padding: 15px;
    /* padding-top: 30px; */
    overflow: hidden;
}

@media (max-width: 767px) {
    .restaurant-menu {
        padding-top: calc(-29.689119171px + 7.7720207254vw);
    }
}

@media (max-width: 575px) {
    .restaurant-menu {
        /* padding-top: 15px; */
    }
}

.restaurant-menu__header {
    text-align: center;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .restaurant-menu__header {
        margin-bottom: calc(-118.9637305699px + 25.9067357513vw);
    }
}

@media (max-width: 575px) {
    .restaurant-menu__header {
        margin-bottom: 10px;
    }
}

.restaurant-menu__title {
    font-size: 25px;
    margin: 0;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    margin-top: 50px;
}

.restaurant-menu__title:after {
    content: "";
    position: absolute;
    bottom: 0px;
    width: 120%;
    left: 50%;
    transform: translateX(-50%);

    /* border-bottom: 2px solid black; */
}

@media (max-width: 575px) {
    .restaurant-menu__title {
        font-size: 25px;
    }
}

.restaurant-menu__item {
    display: flex;
    padding-left: 15px;
    padding-right: 15px;

}

@media (max-width: 767px) {
    .restaurant-menu__item {
        padding-left: calc(-44.921875px + 7.8125vw);
        padding-right: calc(-44.921875px + 7.8125vw);
    }
}

@media (max-width: 575px) {
    .restaurant-menu__item {
        padding-left: 0;
        padding-right: 0;
    }
}

.restaurant-menu__item-media {
    margin-right: 15px;
}

@media (max-width: 575px) {
    .restaurant-menu__item-media {
        display: none;
    }
}

.restaurant-menu__item-info {
    flex: auto;
}

.restaurant-menu__item-title {
    position: relative;
    margin: 0;
    font-size: 22px;
}

.restaurant-menu__item-name {
    z-index: 1;
    position: relative;
    /* font-weight: 300; */
    font-size: 13px;
}

/* .restaurant-menu__item-dots {
    height: 3px;
    display: block;
    position: absolute;
    width: 100%;
    bottom: 5px;
    background-image: radial-gradient(circle closest-side, #ccc 80%, #fff 10%);
    background-position: bottom;
    background-position-x: center;
    background-position-y: bottom;
    background-size: 4px 2px;
    background-repeat: repeat-x;
} */

.restaurant-menu__item-price {
    position: absolute;
    right: 0;
    bottom: 0;
    /* font-weight: 300; */
    font-size: 13px;

}

.restaurant-menu__item-description {
    font-size: 10px;
    color: rgba(0, 0, 0, 0.63);
    margin-top: 0px;
}

.restaurant-menu__items{
    padding-left: 50px;
    padding-right: 50px;
}