body{
    background-color: rgba(233, 162, 138, 0.685);
}

h1 {
    margin: 0;
    padding: 21px;
    background: #eb4d4b;
    color: #fff;
    font-family: 'Dancing Script', cursive;
    font-size: 19px;
    line-height: 33px;
    text-align: center;
  }
  .red{
    color: red;
  }
  h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 27px;
    line-height: 42px;
    margin-top: 21px;
    margin-bottom: 21px;
    text-align: center;
  }
  
.amount{
    color: brown;
}
.orderstyle{
font-size: medium;
font-family: cursive;
}

#order-list {
  display: flex;
  flex-direction: column;
  margin-right: 0;
}

.menu-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;

  font-size: medium;
  font-family: cursive;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item h4, .menu-item p {
  margin: 8px;
}

.menu-item .price {
  margin-left: auto;
}

.qty {
  margin-right: 8px;
  padding: 2px 4px;
  width: 40px;
}

.add-btn {
  padding: 6px 10px;
  background: #6ab04c;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

.del-btn {
    color: red !important;
  display: block;
  text-align: center;
}

.del-btn:hover {
  opacity: .75
}

.del-btn .fa {
  color: #eb4d4b;
}


.btnStyle {
  background-color: #C98474;
  display: inline-block;
  text-decoration: none;
  font-size: 18px;
  color: #fff;
  padding: 7px 10px;
  letter-spacing: .1em;
  border-radius: 3px;
  z-index: 1;
  cursor: pointer;
  transition: all .2s ease-in-out;
}

.btnStyle:hover {
  background-color: #874C62;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, .16), 0px 6px 10px rgba(0, 0, 0, .23);
  transform: scale(1.05, 1.05);
}

.btnStyle2 {
  background-color: #874C62;
}

.btnStyle2:hover {
  background-color: #C98474;
}

.btnStyle3 {
    
  background-color: #A7D2CB;
}

.btnStyle3:hover {
  background-color: #F2D388;
}


.orderName {
  padding: 13px 0px 8px 0px;
  font-size: medium;
  font-family: cursive;
}

.orderPrice {
  float: right;
  color: #6ab04c;
  font-family: cursive;
  font-size: medium;
}

hr {
  margin: 25px 0 5px 0;
  color: #874C62;
}

.delBtn {
  float: right;
  color:red;
  cursor: pointer;
}

.totalDialog {
  display: inline-block;
  float: right;
  color: red;
  font-size: medium;
  font-family: cursive;
}

#finishOrderDialog {
  padding: 30px;
  display: flex;
  justify-content: space-around;
}

#finalOrderList {
  width: 50%;
  font-size: medium;
  font-family: cursive;
}

#finalOrderList h3 {
  text-align: center;
}

#finalOrderList ol {
  margin: 10px 15px;
}

#buyerInfo {
  width: 60%;
  margin: 0 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

#buyerInfo input {
  margin: 5px 0;
  padding: 3px;
  width: 90%;
}

#buyerInfo .order {
  display: block;
  width: 50%;
  margin-top: 10px;
  text-align: center;
}

#buyerInfo input::-webkit-input-placeholder {
  text-align: center;
}

#thanksMessage {
  padding: 20px;
  font-size: medium;
  font-family: cursive;
}

/* Dialog Style */
.ui-dialog {
  z-index: 2;
  box-shadow: 2px 0 20px 5px rgba(0, 0, 0, 0.24);
  background-color: #fff;
  padding: 30px;
  font-size: medium;
  font-family: cursive;
}

.ui-draggable-handle {
  position: absolute;
  background-color: #A7D2CB;
  width: 100%;
  top: 0;
  left: 0;
  padding: 5px;
  box-sizing: border-box;
  text-align: center;
  z-index: 999;
}

.ui-button {
  background-color: #874C62;
  border: none;
  border-radius: 3px;
  padding: 3px 5px;
  float: right;
  cursor: pointer;
  transition: all .2s ease-in-out;
}

.ui-button:hover {
  background-color: #C98474;