*, *:after, *:before {
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
}

@mixin clearfix() {
  &:after, &:before {
    display: table;
    content: " ";
    line-height: 0;
    font-size: 0;
    clear: both;
  }
}

.menu {
  @include clearfix;
  max-width: 1080px;
  width: 100%;
  margin: 1em auto;
  border: 1px solid #ddd;
  padding: .3em .6em;
}

.menu p {
    font-size: .9em;
    color: #777;
    margin-bottom: 1.5em;
    font-style: italic;
}

.menu ul {
    list-style-type: none;
    font-size: .9em;
    color: #777;
    margin-bottom: 1.5em;
    font-style: italic;
}

.price {
  float: right;
  padding-right: 1em;
  color: orange;
}

.options-orange li {
  color: orange;
}

h3 {
  @include clearfix;
  position: relative;
  color: orange;
  font-weight: 700;
  margin: .7em 0 1em 0;
  span {
    float: left;
    width: 10%;
    text-align: center;
    display: block;
    &:first-child {
      width: 40%;
      text-align: left;
    }
  }
}

.menu-container {
  background-color: white;
}

.menu-panel {
  text-align: center;
}