.MenuDetailView {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.MenuDetailView .IngredientsPicker {
  padding: 2px 20px;
  width: 100%;
  text-align: left;
  justify-content: left;
}
.MenuModClass, .MenuMemo, .MenuAmount {
  padding: 5px 24px;
}
/* The modifier class title is typeset as a product name and its description as
   a product description (2026-08-07), both whole. The title's own 15px/700 is
   already the product-name defaults, so nothing moves there; the description
   goes from its 13px to the description setting's 12px, matching the product
   description right above it on the same screen. */
.MenuModClass .modclass-name {
  font-family: var(--tmo-online-font-name-family, inherit);
  font-size: var(--tmo-online-font-name-size, 15px);
  font-weight: var(--tmo-online-font-name-weight, 700);
  letter-spacing: var(--tmo-online-font-name-spacing, inherit);
}
.MenuModClass .modclass-desc {
  font-family: var(--tmo-online-font-desc-family, inherit);
  font-size: var(--tmo-online-font-desc-size, 12px);
  font-weight: var(--tmo-online-font-desc-weight, 400);
  letter-spacing: var(--tmo-online-font-desc-spacing, inherit);
  margin: 2px 0px 0px 2px;
}
.MenuModClassSectionHeader {
  padding: 5px 0px;
}
.MenuModClassSectionHeader .n-text{
  padding: 0px 0px 0px 20px;
  font-size: 13px;
  font-family: var(--tmo-online-font-system-small-family, inherit);
  font-weight: var(--tmo-online-font-system-small-weight, 700);
}
.MenuModClassSectionHeader .required-text{
  padding: 0px 0px 0px 5px;
  font-size: 13px;
  font-family: var(--tmo-online-font-system-small-family, inherit);
  font-weight: var(--tmo-online-font-system-small-weight, 700);
}
.MenuModClassSectionHeader .mod-error{
  padding: 10px 0px 0px 0px;
  font-family: var(--tmo-online-font-system-small-family, inherit);
  font-weight: var(--tmo-online-font-system-small-weight, inherit);
  font-size: 14px;
  color: red;
}
.MenuModClassSectionDesc {
  font-family: var(--tmo-online-font-system-small-family, inherit);
  font-weight: var(--tmo-online-font-system-small-weight, inherit);
  font-size: 12px;
}
.MenuMemo .MenuMemoName{
  padding: 5px 0px;
}
.MenuMemo .MenuMemoTitle{
  font-size: 15px;
  font-family: var(--tmo-online-font-system-heading-family, inherit);
  font-weight: var(--tmo-online-font-system-heading-weight, 700);
}
.MenuMemo .MemoTextArea{
  width: 100%;
  height: 100px;
  padding: 5px 5px;
  border: 1px solid #cecece;
  border-radius: 3px;
  font-size: 15px;
  font-weight: var(--tmo-online-font-system-body-weight, 400);
  /* box-shadow: 0px 1px 2px 0px rgb(0 0 0 / 15%); */
  color: #212121;
  resize: none;
}
.MenuMemo .MemoTextArea::placeholder{
    color: #e0e0e0;
}
.MenuAmount .MenuAmountName{
  padding: 5px 0px;
}
.MenuAmount .MenuAmountBody{
    position: relative;
    margin-bottom: 30px;
}
.MenuAmount .MenuAmountInput{
    width: 100%;
    height: 60px;
    padding: 10px;
    border: 1px solid #cecece;
    border-radius: 3px;
    background-clip: padding-box;
    background-color: #ffffff;
    color: #212121;
    font-size: 18px!important;
    margin-bottom: 0!important;
}
.MenuAmount .MenuAmountButtonSet{
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    height: 52px;
}
.MenuAmount .MenuAmountButton{
    display: block;
    height: 52px;
    width: 60px;
    margin: 4px 4px 4px 0;
    padding: 13px 18px;
    float: left;
    border: 0;
    border-radius: 2px;
    background-color: #656565;
    color: #fff;
    text-align: center;
    cursor: pointer;
    -webkit-transition: background-color .3s ease-out;
    transition: background-color .3s ease-out;
}
.MenuAmount .MenuAmountButton img{
    width: 20px;
    height: 20px;
    fill: #fff;
}
.ModifierNumberWrapper {
  display: flex;
}
.ModifierNumber {
  width: 24px;
  height: 24px;
  border: 1px solid #c4c4c4;
  margin: 0px 9px;
  text-align: center;
}


/* Mobile Portrait and Landscape */
@media (max-width: 996px) {
  .MenuDetailView {
    padding-bottom: 64px;
  }
}
