.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;
}
.MenuModClass .modclass-name {
  font-size: 15px;
  font-weight: 700;
}
.MenuModClass .modclass-desc {
  font-size: 13px;
  font-weight: 400;
  margin: 2px 0px 0px 2px;
}
.MenuModClassSectionHeader {
  padding: 5px 0px;
}
.MenuModClassSectionHeader .n-text{
  padding: 0px 0px 0px 20px;
  font-size: 13px;
  font-weight: 700;
}
.MenuModClassSectionHeader .required-text{
  padding: 0px 0px 0px 5px;
  font-size: 13px;
  font-weight: 700;
}
.MenuModClassSectionHeader .mod-error{
  padding: 10px 0px 0px 0px;
  font-size: 14px;
  color: red;
}
.MenuModClassSectionDesc {
  font-size: 12px;
}
.MenuMemo .MenuMemoName{
  padding: 5px 0px;
}
.MenuMemo .MenuMemoTitle{
  font-size: 15px;
  font-weight: 700;
}
.MenuMemo .MemoTextArea{
  width: 100%;
  height: 100px;
  padding: 5px 5px;
  border: 1px solid #cecece;
  border-radius: 3px;
  font-size: 15px;
  font-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;
  }
}
