/* ONNI KOREAN TEMPLATE */
.bodyContainer {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contentContainerMobile {
  height: calc(100% - 70px);
  overflow: auto;
  padding-bottom: 50px;
}

.contentContainer {
  height: calc(100vh - 250px);
  overflow: auto;
  padding-bottom: 50px;
}

.imageMenuWrapper {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--borderColor);
  background-color: var(--backgroundColor);
}

.headerOverlayContainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 20px;
  height: 80px;
  background-color: var(--primaryColor);
  position: relative;
}

.infoMenuContainer {
  padding: 70px 20px 10px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.menuNameLabel {
  font-size: 1.5rem;
  font-weight: bold;
}

.menuDescriptionLabel {
  font-size: 0.9rem;
  color: var(--descriptionColor);
  font-weight: 300;
  word-break: break-word;
  text-align: center;
}

.menuCodeLabel {
  color: var(--menuCodeLabelColor);
}

.additionsContainer {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.additionName {
  color: var(--textGreyColor3) !important;
  font-size: 0.8rem;
  font-weight: 600;
}

.additionNameDarkTheme {
  color: #b3b3b3 !important;
  font-size: 0.8rem;
  font-weight: 600;
}

.additionPrice {
  color: var(--textGreyColor) !important;
  font-size: 0.8rem;
  font-weight: 600;
}

.optionContainer {
  padding: 15px;
  border-top: 1px solid var(--borderOptionItemColor);
}

.optionName {
  font-size: 0.95rem;
  font-weight: bold;
  padding-right: 15px;
}

.backBtn {
  width: 40px;
  height: 40px;
  background-color: #f7f6f4;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 10px;
  cursor: pointer;
}

.separatorWrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 15px 0px;
}

.separator {
  width: 80%;
  height: 3px;
  display: block;
  background-color: var(--primaryColor);
  mask-image: url("/images/separator_secondary.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url("/images/separator_secondary.svg");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.quantityInputWrapper {
  background-color: var(--backgroundColor);
  border-radius: 20px;
  border: 1px solid var(--primaryColor);
  display: flex;
  flex-direction: row;
  align-items: center;
}

.quantityWrapper {
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quantity {
  color: var(--textDarkColor);
  padding: 0px 5px;
  font-weight: bold;
  font-size: 0.9rem;
}

.noteTopping {
  color: var(--textWhiteDeactivated);
  font-size: 0.8rem;
}
