@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}
.wc-restaurant-product-modal .block,
.wc-restaurant-menu-product .block {
  position: relative;
  color: transparent !important;
}
.wc-restaurant-product-modal .block:before,
.wc-restaurant-menu-product .block:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  margin-left: -12px;
  border-radius: 50%;
  border: 4px solid #888;
  border-top-color: #eee;
  animation: spinner 0.8s linear infinite;
}
.wc-restaurant-product-modal button,
.wc-restaurant-menu-product button {
  border: none;
  background-color: #000;
  color: #fff;
  border-radius: 2px;
  text-align: center;
  line-height: normal;
  margin: 0;
  min-height: 0;
  transition: background 0.2s;
  cursor: pointer;
  box-sizing: border-box;
  font-weight: normal;
  font-family: inherit;
  white-space: nowrap;
}
.wc-restaurant-product-modal button:hover,
.wc-restaurant-menu-product button:hover {
  background-color: #444;
  text-decoration: none;
  border: none;
}

.wc-restaurant-menu-product .icon.block:before {
  width: 18px;
  height: 18px;
  margin-top: -9px;
  margin-left: -9px;
  border-width: 3px;
}
.wc-restaurant-menu-product .price.block:before {
  left: auto;
  right: 0;
}

.wc-restaurant-menu-section {
  margin-top: 20px;
  margin-bottom: 45px;
}

.wc-restaurant-menu-section-title {
  margin-bottom: 0.5em;
}

.wc-restaurant-menu-section-description p {
  margin-bottom: 1.1em;
}

.wc-restaurant-menu-products {
  display: flex;
  flex-wrap: wrap;
  margin: -3px;
}

.wc-restaurant-menu-product {
  padding: 5px;
  flex: 1 1 100%;
}
@media screen and (min-width: 270px) {
  .wc-restaurant-menu-product {
    min-width: 250px;
  }
}
@media screen and (min-width: 320px) {
  .show-image > .wc-restaurant-menu-product {
    min-width: 300px;
  }
}
.columns-2 > .wc-restaurant-menu-product {
  flex-basis: 50%;
}
@media screen and (min-width: 768px) {
  .columns-2 > .wc-restaurant-menu-product {
    max-width: 50%;
  }
}
.columns-3 > .wc-restaurant-menu-product {
  flex-basis: 50%;
}
@media screen and (min-width: 768px) {
  .columns-3 > .wc-restaurant-menu-product {
    max-width: 50%;
  }
}
@media screen and (min-width: 996px) {
  .columns-3 > .wc-restaurant-menu-product {
    max-width: 33.33%;
    flex-basis: 33.33%;
  }
}
.wc-restaurant-menu-product .wc-restaurant-menu-product-inner {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  border: 1px solid #f0f0f0;
  border-radius: 3px;
  box-shadow: 0 0 1px rgba(50, 50, 50, 0.06), 0 1px 3px rgba(50, 50, 50, 0.06);
  transition: border 0.2s;
  box-sizing: border-box;
}
.clickable .wc-restaurant-menu-product .wc-restaurant-menu-product-inner {
  cursor: pointer;
}
.clickable .wc-restaurant-menu-product .wc-restaurant-menu-product-inner:hover {
  border-color: #666;
}
.wc-restaurant-menu-product .image {
  flex: 0 0 120px;
  min-height: 120px;
  border-radius: 3px 0 0 3px;
  margin-right: 4px;
  overflow: hidden;
  background-size: contain;
background-repeat: no-repeat;
}
.wc-restaurant-menu-product .image img {
  border-radius: 0;
  border: none;
  margin: 0;
  height: 100%;
  max-width: none;
}
.image-right > .wc-restaurant-menu-product .image {
  order: 1;
  border-radius: 0 3px 3px 0;
  margin-left: 4px;
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .wc-restaurant-menu-product .image {
    flex-basis: 140px;
    min-height: 140px;
  }
}
.wc-restaurant-menu-product .details {
  flex: 1 1;
  padding: 15px;
  padding-top: 11px;
  display: flex;
  flex-direction: column;
}
.wc-restaurant-menu-product .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -8px;
  z-index: auto;
}
.wc-restaurant-menu-product .header > div {
  flex: 1 1;
  margin-top: 4px;
  margin-bottom: 4px;
  margin-left: 8px;
  margin-right: 8px;
}
.wc-restaurant-menu-product .header .price {
  text-align: right;
}
.wc-restaurant-menu-product .header .price .amount {
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}
.wc-restaurant-menu-product .header .price del {
  opacity: 0.5;
  font-weight: 400;
}
.wc-restaurant-menu-product .header .price del + ins {
  margin-left: 0.25em;
  background-color: transparent;
}
.wc-restaurant-menu-product .header .buy-button {
  flex-grow: 0;
}
.wc-restaurant-menu-product .buy-button button {
  padding: 6px 20px;
  font-size: 1em;
}
.wc-restaurant-menu-product .buy-button button.icon {
  height: 25px;
  width: 25px;
  line-height: 25px;
  padding: 0;
  font-size: 18px !important;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .wc-restaurant-menu-product .buy-button button.icon {
    height: 28px;
    width: 28px;
    line-height: 28px;
    font-size: 20px !important;
  }
}
.wc-restaurant-menu-product .name, .wc-restaurant-menu-product .price {
  font-size: 0.95em;
  color: #333;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .wc-restaurant-menu-product .name, .wc-restaurant-menu-product .price {
    font-size: 1em;
  }
}
.wc-restaurant-menu-product .description {
  margin-top: 4px;
  font-size: 0.85em;
  color: #949494;
  line-height: 1.5;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .wc-restaurant-menu-product .description {
    font-size: 0.9em;
    margin-top: 6px;
  }
}

.wc-restaurant-ordering-notice {
  background-color: green;
  color: #fff;
  padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999999;
  text-align: center;
}
.wc-restaurant-ordering-notice.error-notice {
  background-color: red;
}
.wc-restaurant-ordering-notice .notice-text {
  margin: 0 0 2px;
}
.wc-restaurant-ordering-notice .view-cart {
  color: inherit;
  margin-left: 10px;
  transition: opacity 0.2s;
  white-space: nowrap;
  text-decoration: none;
  border: none;
}
.wc-restaurant-ordering-notice .view-cart:hover {
  opacity: 0.8;
}
.wc-restaurant-ordering-notice .view-cart-text {
  text-decoration: underline;
}
#wpadminbar ~ .wc-restaurant-ordering-notice {
  top: 32px;
}

.wc-restaurant-menu-error {
  font-weight: bold;
}

.wc-restaurant-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 360px;
  background: #000;
  opacity: 0.7;
  z-index: 99900;
}

.wc-restaurant-modal-active {
  overflow: hidden !important;
  position: relative !important;
}

.wc-restaurant-modal {
  position: fixed;
  background: #fff;
  z-index: 100005;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  touch-action: manipulation;
}
.wc-restaurant-modal * {
  box-sizing: border-box;
}
.wc-restaurant-modal a.modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 12px;
  left: 12px;
  width: 44px;
  height: 44px;
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .wc-restaurant-modal {
    width: auto;
    height: auto;
    min-width: 560px;
    max-width: 700px;
    max-height: 95vh;
    left: 50%;
    top: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 3px rgba(50, 50, 50, 0.3);
  }
}

.wc-backbone-modal-content:focus {
  outline: none;
}

.wc-restaurant-product-modal .cart {
  margin: 0;
  padding: 0;
}
.wc-restaurant-product-modal .cart, .wc-restaurant-product-modal .wc-restaurant-product {
  height: 100%;
}
.wc-restaurant-product-modal .details,
.wc-restaurant-product-modal .order {
  padding-left: 25px;
  padding-right: 25px;
}
.wc-restaurant-product-modal .image {
  width: 100%;
  height: 320px;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .wc-restaurant-product-modal .image {
    height: 400px;
  }
}
.wc-restaurant-product-modal .details {
  padding-top: 25px;
  padding-bottom: 25px;
}
.wc-restaurant-product-modal .details:first-child {
  padding-top: 60px;
}
.wc-restaurant-product-modal .details p {
  margin: 0 0 1em;
  padding: 0;
}
.wc-restaurant-product-modal .gallery {
  margin: 1.5em 0;
}
.wc-restaurant-product-modal .name {
  margin: 0 0 0.6em;
  padding: 0;
}
.wc-restaurant-product-modal .description {
  margin-bottom: 1.5em;
}
.wc-restaurant-product-modal .options {
  margin-top: 1.5em;
}
.wc-restaurant-product-modal .variations {
  margin-bottom: 1.5em;
  overflow: hidden;
}
.wc-restaurant-product-modal .variations select {
  margin-right: 6px;
  width: auto;
}
.wc-restaurant-product-modal .order-error {
  position: absolute;
  bottom: 97px;
  left: 50%;
  text-align: center;
  width: 300px;
  margin: 0 0 0 -150px;
  background: #f4caca;
  color: #d50e0e;
  font-weight: 600;
  border-radius: 3px;
  padding: 5px;
  display: none;
}
.wc-restaurant-product-modal .product-content {
  overflow: auto;
  overflow-x: hidden;
  max-height: 85%;
  max-height: calc(100% - 181px);
}
@media screen and (min-width: 500px) {
  .wc-restaurant-product-modal .product-content {
    max-height: calc(100% - 95px);
  }
}
@media screen and (min-width: 768px) {
  .wc-restaurant-product-modal .product-content {
    max-height: calc(95vh - 95px);
  }
}
.wc-restaurant-product-modal .wc-restaurant-product {
  position: relative;
}
@media screen and (min-width: 768px) {
  .wc-restaurant-product-modal .wc-restaurant-product {
    padding-bottom: 92px;
  }
}
.wc-restaurant-product-modal .order {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-content: center;
  box-sizing: border-box;
  padding-top: 15px;
  padding-bottom: 15px;
  background: #fcfcfc;
  box-shadow: 0 -1px 4px 0 rgba(0, 0, 0, 0.08);
  min-height: 80px;
}
.wc-restaurant-product-modal .order.purchasable {
  height: 178px;
  align-content: flex-start;
}
@media screen and (min-width: 500px) {
  .wc-restaurant-product-modal .order {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .wc-restaurant-product-modal .order.purchasable {
    height: 92px;
  }
}
.wc-restaurant-product-modal .order button {
  font-weight: 600;
}
.wc-restaurant-product-modal .order button.disabled {
  opacity: 0.5 !important;
  cursor: not-allowed;
}
.wc-restaurant-product-modal .order.not-purchasable {
  background-color: #f4caca;
  color: #d50e0e;
}
.wc-restaurant-product-modal .order.not-purchasable p {
  margin: 0;
  padding: 0;
  flex-grow: 1;
  text-align: center;
  font-weight: 600;
  font-size: 1.1em;
}
.wc-restaurant-product-modal .quantity {
  flex-shrink: 0;
  border: none;
}
.wc-restaurant-product-modal .quantity > * {
  display: inline-block;
}
.wc-restaurant-product-modal .quantity button {
  border-radius: 50%;
  font-size: 24px;
  width: 48px;
  height: 48px;
  line-height: 48px;
  padding: 0;
}
.wc-restaurant-product-modal .quantity .remove {
  margin-right: 5px;
}
.wc-restaurant-product-modal .quantity .add {
  margin-left: 3px;
}
.wc-restaurant-product-modal .quantity .qty {
  border: none !important;
  box-shadow: none;
  background-color: transparent;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  width: 44px;
  padding: 0;
  font-size: 20px !important;
  font-family: inherit !important;
  margin: 0;
  color: inherit;
  text-align: center;
}
.wc-restaurant-product-modal .quantity .qty::-webkit-outer-spin-button, .wc-restaurant-product-modal .quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.wc-restaurant-product-modal .quantity .qty.disabled {
  opacity: 0.5;
}
.wc-restaurant-product-modal .buy {
  font-size: 1em !important;
  letter-spacing: 0;
  min-width: 45%;
  border-radius: 4px;
  padding: 12px 25px;
  text-transform: none;
}
@media screen and (min-width: 768px) {
  .wc-restaurant-product-modal .buy {
    font-size: 1.1em !important;
  }
}
.wc-restaurant-product-modal .buy span {
  color: inherit;
}
@media screen and (max-width: 499px) {
  .wc-restaurant-product-modal .quantity {
    width: 100%;
    text-align: center;
  }
  .wc-restaurant-product-modal .quantity button {
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
  .wc-restaurant-product-modal .buy {
    width: 100%;
    margin-top: 15px;
  }
  .wc-restaurant-product-modal .order-error {
    bottom: 183px;
  }
}
.wc-restaurant-product-modal .wc-pao-addon {
  margin-bottom: 1.2em;
}
.wc-restaurant-product-modal .wc-pao-addon > p {
  margin-bottom: 3px !important;
}
.wc-restaurant-product-modal .wc-pao-addon .form-row > label {
  margin: 0;
  font-weight: normal;
}
.wc-restaurant-product-modal .wc-pao-addon select, .wc-restaurant-product-modal .wc-pao-addon input, .wc-restaurant-product-modal .wc-pao-addon textarea {
  margin-bottom: 0;
}
.wc-restaurant-product-modal .wc-pao-addon input[type=checkbox], .wc-restaurant-product-modal .wc-pao-addon input[type=radio] {
  margin: 0 6px 0 0;
  width: auto;
}
.wc-restaurant-product-modal .wc-pao-addon-name {
  display: block;
  font-size: 1.1em;
  line-height: normal;
  font-family: inherit;
  font-weight: 700;
  margin: 0 0 7px;
  padding: 0;
  text-decoration: none;
  color: #333;
}
.wc-restaurant-product-modal .wc-pao-addon-description p {
  margin-bottom: 10px;
}
.wc-restaurant-product-modal .wc-pao-addon-select {
  width: auto;
}
.wc-restaurant-product-modal #product-addons-total {
  display: none;
}

.theme-shopkeeper .wc-restaurant-menu-product ins {
  background-color: transparent;
}
.theme-shopkeeper .wc-restaurant-product-modal .order .add, .theme-shopkeeper .wc-restaurant-product-modal .order .remove {
  font-size: 24px !important;
}

.theme-enfold .wc-restaurant-menu-product .price, .theme-enfold .wc-restaurant-menu-product .price span, .theme-enfold .wc-restaurant-menu-product .price del, .theme-enfold .wc-restaurant-menu-product .price ins, #top .wc-restaurant-menu-product .price, #top .wc-restaurant-menu-product .price span, #top .wc-restaurant-menu-product .price del, #top .wc-restaurant-menu-product .price ins {
  font-weight: normal !important;
  font-size: 0.95em;
  color: #333;
}
.theme-enfold .wc-restaurant-product-modal .quantity .qty, #top .wc-restaurant-product-modal .quantity .qty {
  color: inherit !important;
  height: auto !important;
  line-height: normal !important;
}
.theme-enfold .wc-restaurant-product-modal .cart, #top .wc-restaurant-product-modal .cart {
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
}
.theme-enfold .wc-restaurant-product-modal p, #top .wc-restaurant-product-modal p {
  padding: 0 !important;
}
.theme-enfold .wc-restaurant-product-modal input[type=checkbox], .theme-enfold .wc-restaurant-product-modal input[type=radio], #top .wc-restaurant-product-modal input[type=checkbox], #top .wc-restaurant-product-modal input[type=radio] {
  position: relative;
  top: -1px;
}

.wc-restaurant-modal .options div.clear {
  display: none;
}
.wc-restaurant-modal .options .amount, .wc-restaurant-modal .options .amount span {
  color: inherit !important;
}