.button, .button-purple, .button-yellow, .button-dark, .button-danger, .button-success {
  display: inline-block;
  font-size: 14px;
  height: 36px;
  padding-left: 28px;
  padding-right: 28px;
  outline: none;
  border-style: none;
  border-radius: 2px;
  background-color: var(--color-main);
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  vertical-align: middle;
  text-decoration: none;
  line-height: 36px;
  text-align: center;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.button:hover, .button-purple:hover, .button-yellow:hover, .button-dark:hover, .button-danger:hover, .button-success:hover {
  background-color: var(--color-main-sub);
  color: var(--color-main);
}

.button-success {
  background-color: #29b173;
}
.button-success:hover {
  background-color: #30b779;
}

.button-danger {
  background-color: #f44336;
}
.button-danger:hover {
  background-color: #cf3735;
}

.button-dark {
  background-color: #424242;
}
.button-dark:hover {
  background-color: #616161;
}

.button-yellow {
  background-color: #e3ab22;
}
.button-yellow:hover {
  background-color: #e4b43e;
}

.button-purple {
  background-color: #8209b7;
}
.button-purple:hover {
  background-color: #991cd0;
}

button:disabled {
  cursor: default;
  background-color: #cccccc;
}
button:disabled:hover {
  background-color: #cccccc;
}

.option-set-delete-button {
  cursor: pointer;
  position: relative;
  top: 4px;
  font-size: 24px;
  color: #999;
  transition: all 0.3s;
}
.option-set-delete-button:hover {
  color: #cf3735;
}

.btn {
  display: inline-block;
  width: auto;
  text-align: center;
  border-radius: 4px;
  height: auto;
  line-height: 1;
  padding: 10px;
  font-size: 14px;
  border: none;
  background-color: var(--color-main);
  color: #ffffff;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.btn:hover {
  background-color: var(--color-main-sub);
  color: var(--color-main);
  border-color: var(--color-main);
}
.btn--submit {
  background-color: var(--color-main);
  color: white;
}
.btn--cancel {
  background-color: #323434;
}
.btn--cancel:hover {
  background-color: #616161;
  color: #ffffff;
}
.btn--delete {
  background-color: #f44336;
}
.btn--delete:hover {
  background-color: #cf3735;
  color: #ffffff;
}
.btn--small {
  font-size: 12px;
}

button.btn {
  cursor: pointer;
}

.button-group {
  display: flex;
}
.button-group button {
  border-radius: 0;
  padding: 8px 20px;
  height: auto;
}
.button-group button:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.button-group button:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.button-group button:hover, .button-group button.ant-btn:hover {
  background-color: var(--color-main-sub) !important;
  border: 1px solid var(--color-main) !important;
  color: var(--color-main) !important;
}
.button-group__selected, .button-group__selected.ant-btn {
  border: 1px solid var(--color-main) !important;
  background-color: var(--color-main) !important;
  color: #fff !important;
}

.navbar-admin {
  position: absolute;
  top: 0px;
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #fff;
  height: 90px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}
.navbar-admin ul {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  font-size: 0px;
  padding-left: 100px;
}
.navbar-admin ul li {
  height: 100%;
  display: inline-block;
  font-size: 13px;
}
.navbar-admin ul li a {
  height: 100%;
  line-height: 90px;
  color: #424242;
  display: inline-block;
  padding-left: 10px;
  padding-right: 20px;
  cursor: pointer;
  text-decoration: none;
  outline: none;
}
.navbar-admin ul li a:hover {
  font-weight: bold;
}
@media (max-width: 1360px) {
  .navbar-admin #logo {
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .navbar-admin ul {
    transition: all 0.5s ease-in-out 0s;
    position: fixed;
    top: 0px;
    left: -230px;
    bottom: 0px;
    z-index: 7;
    padding: 0;
    background-color: #fff;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 15px 4px rgba(0, 0, 0, 0.2);
  }
  .navbar-admin ul li {
    display: block;
    height: auto;
  }
  .navbar-admin ul li a {
    display: block;
    text-indent: 10px;
    width: 200px;
    line-height: 70px;
  }
}

#navbar-admin-account {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  position: absolute;
  right: 20px;
}
@media (max-width: 1360px) {
  #navbar-admin-account {
    margin-left: auto;
  }
}
#navbar-admin-account i {
  font-size: 50px;
  color: #424242;
}
#navbar-admin-account i:hover {
  color: #616161;
}

.navbar {
  position: absolute;
  top: 0px;
  transition: all 0.5s ease-in-out 0s;
  display: flex;
  align-items: center;
  height: 90px;
  width: 100%;
  z-index: 9;
  background-color: #fff;
  box-shadow: 0 1px 9px 0 rgba(0, 0, 0, 0.16), 0 8px 9px 0 rgba(0, 0, 0, 0.12);
}
.navbar ul {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-right: auto;
  margin-left: auto;
  padding: 20px;
  font-size: 0px;
}
.navbar ul li {
  display: inline-block;
  height: 100%;
  font-size: 14px;
}
.navbar ul li a {
  color: #424242;
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  height: 100%;
  line-height: 90px;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  font-weight: bold;
}
.navbar ul li a:hover {
  color: #121212;
  border-top: 3px solid #121212;
  line-height: 83px;
  height: 90px;
}
.navbar.minimal-menu ul {
  transition: all 0.5s ease-in-out 0s;
  position: fixed;
  top: 0px;
  left: -190px;
  bottom: 0px;
  z-index: 5;
  padding: 0;
  background-color: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 15px 4px rgba(0, 0, 0, 0.2);
}
.navbar.minimal-menu ul li {
  display: block;
  height: auto;
}
.navbar.minimal-menu ul li a {
  display: block;
  text-indent: 10px;
  width: 170px;
  line-height: 50px;
}
.navbar.minimal-menu ul li a:hover {
  border-top: none;
  line-height: 50px;
}
.navbar.minimal-menu ul {
  padding-top: 88px;
  overflow: scroll;
  right: unset;
}
.navbar.minimal-menu ul li a:hover {
  border-left: 3px solid #121212;
  padding-left: 7px;
  height: unset;
}
.navbar.minimal-menu #logo {
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  top: unset;
}
@media (max-width: 1000px) {
  .navbar ul {
    transition: all 0.5s ease-in-out 0s;
    position: fixed;
    top: 0px;
    left: -190px;
    bottom: 0px;
    z-index: 5;
    padding: 0;
    background-color: #fff;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 15px 4px rgba(0, 0, 0, 0.2);
  }
  .navbar ul li {
    display: block;
    height: auto;
  }
  .navbar ul li a {
    display: block;
    text-indent: 10px;
    width: 170px;
    line-height: 50px;
  }
  .navbar ul li a:hover {
    border-top: none;
    line-height: 50px;
  }
  .navbar ul {
    padding-top: 88px;
    overflow: scroll;
    right: -200px;
    left: unset;
  }
  .navbar ul li a {
    padding-right: 20px;
    text-align: right;
  }
  .navbar ul li a:hover {
    padding-right: 17px;
    border-left: none;
    border-right: 3px solid #121212;
    height: unset;
  }
  .navbar .menus-header-content {
    justify-content: flex-end;
  }
  .navbar #cart {
    display: none;
  }
  .navbar #menu {
    right: 0px;
    padding-left: 0px;
  }
}

#sidebar-toggler {
  display: none;
}
#sidebar-toggler:checked ~ .navbar ul {
  right: 0px;
}
#sidebar-toggler:checked ~ .navbar #menu {
  display: block;
  position: fixed;
}
#sidebar-toggler:checked ~ .navbar #menu span {
  background: transparent;
}
#sidebar-toggler:checked ~ .navbar #menu span::before,
#sidebar-toggler:checked ~ .navbar #menu span::after {
  top: 0px;
}
#sidebar-toggler:checked ~ .navbar #menu span::before {
  transform: rotate(-225deg);
}
#sidebar-toggler:checked ~ .navbar #menu span::after {
  transform: rotate(225deg);
}
#sidebar-toggler:checked ~ .navbar.minimal-menu ul {
  left: 0px;
  right: unset;
}
#sidebar-toggler:checked ~ .navbar.minimal-menu.right-menu ul {
  right: 0px;
  left: unset;
}

#sidebar-toggler-admin {
  display: none;
}
#sidebar-toggler-admin:checked ~ .navbar-admin ul {
  left: 0px;
}
#sidebar-toggler-admin:checked ~ .navbar-admin #menu {
  display: none;
}

#menu {
  transition: all 0.5s ease-in-out 0s;
  padding-left: 20px;
  top: 0px;
  width: 45px;
  height: 90px;
  cursor: pointer;
  position: absolute;
  display: none;
  z-index: 9;
}
#menu span {
  position: fixed;
  top: 45px;
}
#menu span,
#menu span::before,
#menu span::after {
  position: absolute;
  content: "";
  width: 28px;
  height: 2.5px;
  background: #424242;
  border-radius: 20px;
  transition: 500ms cubic-bezier(0.77, 0, 0.175, 1);
}
#menu span::before {
  top: -9px;
}
#menu span::after {
  top: 9px;
}
#menu:hover span,
#menu:hover span::before,
#menu:hover span::after {
  background: #616161;
}
@media (max-width: 1000px) {
  #menu {
    display: block;
  }
}

.menus-header-content {
  width: 100%;
  height: 100%;
  user-select: none;
  margin-right: auto;
  margin-left: auto;
  padding: 0px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.menus-header-content .menus-header-content-container {
  display: block;
}

.minimal-menu .menus-header-content {
  justify-content: flex-start;
}
.minimal-menu #menu {
  display: block;
  right: unset;
  padding-left: 15px;
}
.minimal-menu #logo {
  max-width: 200px;
}
.minimal-menu #logo img {
  margin: auto;
  max-width: 150px;
}
.minimal-menu.right-menu ul {
  right: -200px;
  left: unset;
}
.minimal-menu.right-menu ul li a {
  padding-right: 20px;
  text-align: right;
}
.minimal-menu.right-menu ul li a:hover {
  padding-right: 17px;
  border-left: none;
  border-right: 3px solid #121212;
}
.minimal-menu.right-menu #menu {
  right: 0px;
  padding-left: 0px;
}
.minimal-menu.right-menu #cart {
  left: 10px;
  width: 50px;
}
.minimal-menu.right-menu .menus-header-content {
  justify-content: flex-end;
}
@media (max-width: 1000px) {
  .minimal-menu #logo {
    left: unset !important;
    right: 15px !important;
  }
  .minimal-menu ul li a {
    padding-right: unset;
    text-align: left;
  }
  .minimal-menu ul li a:hover {
    padding-left: 17px;
    border-left: 3px solid #121212;
    border-right: none;
    height: unset;
  }
  .minimal-menu.right-menu #logo {
    left: 15px !important;
    right: unset !important;
  }
}

#menu-admin {
  transition: all 0.5s ease-in-out 0s;
}
#menu-admin i {
  display: none;
  font-size: 43px;
  cursor: pointer;
  color: #424242;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#menu-admin i:hover {
  color: #616161;
}
@media (max-width: 1360px) {
  #menu-admin i {
    padding-left: 35px;
    display: block;
  }
}

#logo {
  position: absolute;
  left: 15px;
  max-width: 150px;
  max-height: 80px;
  display: flex;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#logo img {
  max-width: 150px;
  max-height: 80px;
  padding: 0px;
}
@media (max-width: 750px) {
  #logo img {
    margin: auto;
    height: auto;
    max-height: 80px;
    max-width: 150px;
  }
}
@media (max-width: 300px) {
  #logo {
    display: none;
  }
}

#cart {
  position: absolute;
  top: 20px;
  right: 10px;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#cart i {
  font-size: 43px;
  color: #424242;
}
#cart i:hover {
  color: #616161;
}

.table {
  width: 100%;
  margin: auto;
  box-shadow: 0 1px 9px 0 rgba(0, 0, 0, 0.16), 0 8px 9px 0 rgba(0, 0, 0, 0.12);
  border-style: solid;
  border-width: 1px;
  border-color: #e2e2e2;
  border-collapse: collapse;
}
.table thead tr th {
  border-style: solid;
  border-width: 1px;
  border-color: #e2e2e2;
  border-bottom-color: #c7c7ca;
  padding: 10px 0 10px 0;
  font-weight: normal;
  text-align: left;
  text-indent: 10px;
}
.table tbody tr td {
  border-style: solid;
  border-width: 1px;
  border-color: #e2e2e2;
  padding: 0;
  text-indent: 10px;
  color: #7b7b7b;
}

#table-drag-sorting tr.drop-over-downward td {
  border-bottom: 2px dashed #1890ff;
}

#table-drag-sorting tr.drop-over-upward td {
  border-top: 2px dashed #1890ff;
}

.card-admin-table,
.notification-admin-table,
.announcement-admin-table,
.delivery-areas-admin-table,
.dining-areas-admin-table {
  border-collapse: collapse;
}
.card-admin-table tbody tr td,
.notification-admin-table tbody tr td,
.announcement-admin-table tbody tr td,
.delivery-areas-admin-table tbody tr td,
.dining-areas-admin-table tbody tr td {
  border-style: solid;
  border-width: 0 0 1px 0;
  padding-bottom: 20px;
  padding-top: 20px;
  border-color: #c3c3c3;
  color: #656565;
}

.show-preview {
  margin-top: 20px;
}
.show-preview .preview-table {
  width: 100%;
  border-collapse: collapse;
}
.show-preview .preview-table th, .show-preview .preview-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}
.show-preview .preview-table th {
  background-color: #f2f2f2;
  text-align: center;
  font-weight: bold;
}
.show-preview .preview-table tr {
  background-color: #f9f9f9;
  transition: all 0.2s ease;
}
.show-preview .preview-table ul {
  margin: 0;
  padding-left: 20px;
}
.show-preview .preview-table tbody > tr:hover > td {
  background-color: #e6f7ff;
}
.show-preview .preview-table tr.drop-over-downward td {
  border-bottom: 2px dashed red;
}
.show-preview .preview-table tr.drop-over-upward td {
  border-top: 2px dashed red;
}

.splash {
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}

.container {
  margin: 0 auto;
  max-width: 1280px;
  width: 100%;
}

@media only screen and (min-width : 601px) {
  .container {
    width: 85%;
  }
}
.container .row {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.section {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.section.no-pad {
  padding: 0;
}
.section.no-pad-bot {
  padding-bottom: 0;
}
.section.no-pad-top {
  padding-top: 0;
}

.row {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}
.row .col {
  float: left;
  box-sizing: border-box;
  padding: 0 0.75rem;
  min-height: 1px;
}
.row .col[class*=push-], .row .col[class*=pull-] {
  position: relative;
}
.row .col.s1 {
  width: 8.3333333333%;
  margin-left: auto;
  left: auto;
  right: auto;
}
.row .col.s2 {
  width: 16.6666666667%;
  margin-left: auto;
  left: auto;
  right: auto;
}
.row .col.s3 {
  width: 25%;
  margin-left: auto;
  left: auto;
  right: auto;
}
.row .col.s4 {
  width: 33.3333333333%;
  margin-left: auto;
  left: auto;
  right: auto;
}
.row .col.s5 {
  width: 41.6666666667%;
  margin-left: auto;
  left: auto;
  right: auto;
}
.row .col.s6 {
  width: 50%;
  margin-left: auto;
  left: auto;
  right: auto;
}
.row .col.s7 {
  width: 58.3333333333%;
  margin-left: auto;
  left: auto;
  right: auto;
}
.row .col.s8 {
  width: 66.6666666667%;
  margin-left: auto;
  left: auto;
  right: auto;
}
.row .col.s9 {
  width: 75%;
  margin-left: auto;
  left: auto;
  right: auto;
}
.row .col.s10 {
  width: 83.3333333333%;
  margin-left: auto;
  left: auto;
  right: auto;
}
.row .col.s11 {
  width: 91.6666666667%;
  margin-left: auto;
  left: auto;
  right: auto;
}
.row .col.s12 {
  width: 100%;
  margin-left: auto;
  left: auto;
  right: auto;
}
.row .col.offset-s1 {
  margin-left: 8.3333333333%;
}
.row .col.pull-s1 {
  right: 8.3333333333%;
}
.row .col.push-s1 {
  left: 8.3333333333%;
}
.row .col.offset-s2 {
  margin-left: 16.6666666667%;
}
.row .col.pull-s2 {
  right: 16.6666666667%;
}
.row .col.push-s2 {
  left: 16.6666666667%;
}
.row .col.offset-s3 {
  margin-left: 25%;
}
.row .col.pull-s3 {
  right: 25%;
}
.row .col.push-s3 {
  left: 25%;
}
.row .col.offset-s4 {
  margin-left: 33.3333333333%;
}
.row .col.pull-s4 {
  right: 33.3333333333%;
}
.row .col.push-s4 {
  left: 33.3333333333%;
}
.row .col.offset-s5 {
  margin-left: 41.6666666667%;
}
.row .col.pull-s5 {
  right: 41.6666666667%;
}
.row .col.push-s5 {
  left: 41.6666666667%;
}
.row .col.offset-s6 {
  margin-left: 50%;
}
.row .col.pull-s6 {
  right: 50%;
}
.row .col.push-s6 {
  left: 50%;
}
.row .col.offset-s7 {
  margin-left: 58.3333333333%;
}
.row .col.pull-s7 {
  right: 58.3333333333%;
}
.row .col.push-s7 {
  left: 58.3333333333%;
}
.row .col.offset-s8 {
  margin-left: 66.6666666667%;
}
.row .col.pull-s8 {
  right: 66.6666666667%;
}
.row .col.push-s8 {
  left: 66.6666666667%;
}
.row .col.offset-s9 {
  margin-left: 75%;
}
.row .col.pull-s9 {
  right: 75%;
}
.row .col.push-s9 {
  left: 75%;
}
.row .col.offset-s10 {
  margin-left: 83.3333333333%;
}
.row .col.pull-s10 {
  right: 83.3333333333%;
}
.row .col.push-s10 {
  left: 83.3333333333%;
}
.row .col.offset-s11 {
  margin-left: 91.6666666667%;
}
.row .col.pull-s11 {
  right: 91.6666666667%;
}
.row .col.push-s11 {
  left: 91.6666666667%;
}
.row .col.offset-s12 {
  margin-left: 100%;
}
.row .col.pull-s12 {
  right: 100%;
}
.row .col.push-s12 {
  left: 100%;
}
@media only screen and (min-width : 601px) {
  .row .col.m1 {
    width: 8.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m2 {
    width: 16.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m3 {
    width: 25%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m4 {
    width: 33.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m5 {
    width: 41.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m6 {
    width: 50%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m7 {
    width: 58.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m8 {
    width: 66.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m9 {
    width: 75%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m10 {
    width: 83.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m11 {
    width: 91.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m12 {
    width: 100%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.offset-m1 {
    margin-left: 8.3333333333%;
  }
  .row .col.pull-m1 {
    right: 8.3333333333%;
  }
  .row .col.push-m1 {
    left: 8.3333333333%;
  }
  .row .col.offset-m2 {
    margin-left: 16.6666666667%;
  }
  .row .col.pull-m2 {
    right: 16.6666666667%;
  }
  .row .col.push-m2 {
    left: 16.6666666667%;
  }
  .row .col.offset-m3 {
    margin-left: 25%;
  }
  .row .col.pull-m3 {
    right: 25%;
  }
  .row .col.push-m3 {
    left: 25%;
  }
  .row .col.offset-m4 {
    margin-left: 33.3333333333%;
  }
  .row .col.pull-m4 {
    right: 33.3333333333%;
  }
  .row .col.push-m4 {
    left: 33.3333333333%;
  }
  .row .col.offset-m5 {
    margin-left: 41.6666666667%;
  }
  .row .col.pull-m5 {
    right: 41.6666666667%;
  }
  .row .col.push-m5 {
    left: 41.6666666667%;
  }
  .row .col.offset-m6 {
    margin-left: 50%;
  }
  .row .col.pull-m6 {
    right: 50%;
  }
  .row .col.push-m6 {
    left: 50%;
  }
  .row .col.offset-m7 {
    margin-left: 58.3333333333%;
  }
  .row .col.pull-m7 {
    right: 58.3333333333%;
  }
  .row .col.push-m7 {
    left: 58.3333333333%;
  }
  .row .col.offset-m8 {
    margin-left: 66.6666666667%;
  }
  .row .col.pull-m8 {
    right: 66.6666666667%;
  }
  .row .col.push-m8 {
    left: 66.6666666667%;
  }
  .row .col.offset-m9 {
    margin-left: 75%;
  }
  .row .col.pull-m9 {
    right: 75%;
  }
  .row .col.push-m9 {
    left: 75%;
  }
  .row .col.offset-m10 {
    margin-left: 83.3333333333%;
  }
  .row .col.pull-m10 {
    right: 83.3333333333%;
  }
  .row .col.push-m10 {
    left: 83.3333333333%;
  }
  .row .col.offset-m11 {
    margin-left: 91.6666666667%;
  }
  .row .col.pull-m11 {
    right: 91.6666666667%;
  }
  .row .col.push-m11 {
    left: 91.6666666667%;
  }
  .row .col.offset-m12 {
    margin-left: 100%;
  }
  .row .col.pull-m12 {
    right: 100%;
  }
  .row .col.push-m12 {
    left: 100%;
  }
}
@media only screen and (min-width : 993px) {
  .row .col.l1 {
    width: 8.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l2 {
    width: 16.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l3 {
    width: 25%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l4 {
    width: 33.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l5 {
    width: 41.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l6 {
    width: 50%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l7 {
    width: 58.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l8 {
    width: 66.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l9 {
    width: 75%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l10 {
    width: 83.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l11 {
    width: 91.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l12 {
    width: 100%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.offset-l1 {
    margin-left: 8.3333333333%;
  }
  .row .col.pull-l1 {
    right: 8.3333333333%;
  }
  .row .col.push-l1 {
    left: 8.3333333333%;
  }
  .row .col.offset-l2 {
    margin-left: 16.6666666667%;
  }
  .row .col.pull-l2 {
    right: 16.6666666667%;
  }
  .row .col.push-l2 {
    left: 16.6666666667%;
  }
  .row .col.offset-l3 {
    margin-left: 25%;
  }
  .row .col.pull-l3 {
    right: 25%;
  }
  .row .col.push-l3 {
    left: 25%;
  }
  .row .col.offset-l4 {
    margin-left: 33.3333333333%;
  }
  .row .col.pull-l4 {
    right: 33.3333333333%;
  }
  .row .col.push-l4 {
    left: 33.3333333333%;
  }
  .row .col.offset-l5 {
    margin-left: 41.6666666667%;
  }
  .row .col.pull-l5 {
    right: 41.6666666667%;
  }
  .row .col.push-l5 {
    left: 41.6666666667%;
  }
  .row .col.offset-l6 {
    margin-left: 50%;
  }
  .row .col.pull-l6 {
    right: 50%;
  }
  .row .col.push-l6 {
    left: 50%;
  }
  .row .col.offset-l7 {
    margin-left: 58.3333333333%;
  }
  .row .col.pull-l7 {
    right: 58.3333333333%;
  }
  .row .col.push-l7 {
    left: 58.3333333333%;
  }
  .row .col.offset-l8 {
    margin-left: 66.6666666667%;
  }
  .row .col.pull-l8 {
    right: 66.6666666667%;
  }
  .row .col.push-l8 {
    left: 66.6666666667%;
  }
  .row .col.offset-l9 {
    margin-left: 75%;
  }
  .row .col.pull-l9 {
    right: 75%;
  }
  .row .col.push-l9 {
    left: 75%;
  }
  .row .col.offset-l10 {
    margin-left: 83.3333333333%;
  }
  .row .col.pull-l10 {
    right: 83.3333333333%;
  }
  .row .col.push-l10 {
    left: 83.3333333333%;
  }
  .row .col.offset-l11 {
    margin-left: 91.6666666667%;
  }
  .row .col.pull-l11 {
    right: 91.6666666667%;
  }
  .row .col.push-l11 {
    left: 91.6666666667%;
  }
  .row .col.offset-l12 {
    margin-left: 100%;
  }
  .row .col.pull-l12 {
    right: 100%;
  }
  .row .col.push-l12 {
    left: 100%;
  }
}
@media only screen and (min-width : 1201px) {
  .row .col.xl1 {
    width: 8.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.xl2 {
    width: 16.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.xl3 {
    width: 25%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.xl4 {
    width: 33.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.xl5 {
    width: 41.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.xl6 {
    width: 50%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.xl7 {
    width: 58.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.xl8 {
    width: 66.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.xl9 {
    width: 75%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.xl10 {
    width: 83.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.xl11 {
    width: 91.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.xl12 {
    width: 100%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.offset-xl1 {
    margin-left: 8.3333333333%;
  }
  .row .col.pull-xl1 {
    right: 8.3333333333%;
  }
  .row .col.push-xl1 {
    left: 8.3333333333%;
  }
  .row .col.offset-xl2 {
    margin-left: 16.6666666667%;
  }
  .row .col.pull-xl2 {
    right: 16.6666666667%;
  }
  .row .col.push-xl2 {
    left: 16.6666666667%;
  }
  .row .col.offset-xl3 {
    margin-left: 25%;
  }
  .row .col.pull-xl3 {
    right: 25%;
  }
  .row .col.push-xl3 {
    left: 25%;
  }
  .row .col.offset-xl4 {
    margin-left: 33.3333333333%;
  }
  .row .col.pull-xl4 {
    right: 33.3333333333%;
  }
  .row .col.push-xl4 {
    left: 33.3333333333%;
  }
  .row .col.offset-xl5 {
    margin-left: 41.6666666667%;
  }
  .row .col.pull-xl5 {
    right: 41.6666666667%;
  }
  .row .col.push-xl5 {
    left: 41.6666666667%;
  }
  .row .col.offset-xl6 {
    margin-left: 50%;
  }
  .row .col.pull-xl6 {
    right: 50%;
  }
  .row .col.push-xl6 {
    left: 50%;
  }
  .row .col.offset-xl7 {
    margin-left: 58.3333333333%;
  }
  .row .col.pull-xl7 {
    right: 58.3333333333%;
  }
  .row .col.push-xl7 {
    left: 58.3333333333%;
  }
  .row .col.offset-xl8 {
    margin-left: 66.6666666667%;
  }
  .row .col.pull-xl8 {
    right: 66.6666666667%;
  }
  .row .col.push-xl8 {
    left: 66.6666666667%;
  }
  .row .col.offset-xl9 {
    margin-left: 75%;
  }
  .row .col.pull-xl9 {
    right: 75%;
  }
  .row .col.push-xl9 {
    left: 75%;
  }
  .row .col.offset-xl10 {
    margin-left: 83.3333333333%;
  }
  .row .col.pull-xl10 {
    right: 83.3333333333%;
  }
  .row .col.push-xl10 {
    left: 83.3333333333%;
  }
  .row .col.offset-xl11 {
    margin-left: 91.6666666667%;
  }
  .row .col.pull-xl11 {
    right: 91.6666666667%;
  }
  .row .col.push-xl11 {
    left: 91.6666666667%;
  }
  .row .col.offset-xl12 {
    margin-left: 100%;
  }
  .row .col.pull-xl12 {
    right: 100%;
  }
  .row .col.push-xl12 {
    left: 100%;
  }
}

.footer {
  justify-content: center;
  align-content: center;
  padding: 10px 0px;
  font-size: 13px;
  font-family: "Poppins", sans-serif !important;
  color: #9e9e9e;
  letter-spacing: 0.5px;
  z-index: 3;
  position: relative;
  top: 0;
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer a:hover {
  color: unset;
  text-decoration: none;
}
.footer div div div h3 {
  margin: 0.5em 0;
}
.footer div div div p {
  margin: 0;
}

.footer .center-align {
  margin: 0 auto;
}

.footer table, .footer th, .footer td {
  border: 0px;
  color: #fff;
}
.footer table a, .footer th a, .footer td a {
  color: #fff;
  text-decoration: none;
}
.footer table a:hover, .footer th a:hover, .footer td a:hover {
  text-decoration: none;
}
.footer table a:link, .footer th a:link, .footer td a:link {
  color: #fff;
}
.footer table a:visited, .footer th a:visited, .footer td a:visited {
  color: #fff;
}
.footer table h2, .footer table h3, .footer th h2, .footer th h3, .footer td h2, .footer td h3 {
  color: #e0e0e0 !important;
  font-weight: bold !important;
}
@media screen and (max-width: 700px) {
  .footer table {
    height: 100% !important;
  }
  .footer tr, .footer td {
    display: inline-block;
    width: 100% !important;
    text-align: center !important;
    margin: 10px 0;
  }
}

.footer-powered-info {
  text-align: center;
  margin-top: 15px;
  text-shadow: 1px 1px 0 #868686, 1px -1px 0 #868686, -1px 1px 0 #868686, -1px -1px 0 #868686, 1px 0px 0 #868686, 0px 1px 0 #868686, -1px 0px 0 #868686, 0px -1px 0 #868686;
  padding-bottom: 10px;
  color: #ffffff;
  font-size: 12px;
}
@media screen and (max-width: 700px), screen and (max-height: 650px) {
  .footer-powered-info {
    padding-bottom: 60px;
  }
}

.card {
  display: inline-block;
  width: 100%;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  margin: auto;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(204, 204, 204, 0.49);
  box-sizing: border-box;
}

.card-image {
  width: 100%;
  vertical-align: middle;
}

.card-content {
  padding: 24px;
}
.card-content h1, .card-content h2, .card-content h3, .card-content h4, .card-content h5, .card-content h6, .card-content p {
  margin: 0;
}
.card-content h1, .card-content h2, .card-content h3, .card-content h4, .card-content h5, .card-content h6 {
  margin-bottom: 8px;
  font-weight: 100;
  color: #424242;
}
.card-content p {
  color: #424242;
}

.admin-container {
  width: calc(100% - 210px);
  margin: 0 0 0 auto;
}
.admin-container .content-wrapper {
  margin-top: 15px;
}

.container {
  max-width: unset;
}

.admin-header {
  max-height: 60px;
  background-color: #fff;
  border-bottom: 1px solid #d8d8d8;
}
.admin-header .admin-header__left h1 {
  font-size: 18px;
  font-weight: 600;
  color: #323434;
  margin: 0;
}
.admin-header .admin-header__right-scanning {
  width: 30px;
  height: 30px;
}

#admin-panel {
  margin-left: 211px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 15px;
  justify-content: space-between;
  padding: 15px;
  width: calc(100% - 241px);
}
#admin-panel .card {
  flex: 0 0 calc(50% - 7.5px);
  display: flex;
  align-items: center;
  padding: 12px;
  margin: 0;
  gap: 10px;
  box-shadow: 0 0.25rem 1.25rem rgba(86, 118, 159, 0.12);
  border: none !important;
}
#admin-panel .card .card-content {
  padding: 0 !important;
}
#admin-panel .card .card-content h2 {
  margin-bottom: 0;
}
#admin-panel .card .card-content h2 a {
  text-decoration: none;
  color: var(--color-main);
  font-size: 0.8em;
  font-weight: bold;
}
#admin-panel .card a {
  text-decoration: none;
}

.admin-left-menu-icon {
  font-size: 14px;
  margin-right: 10px;
  vertical-align: middle;
}

.ant-menu-item:hover .admin-left-menu-link {
  color: #1890ff;
}

.admin-left-menu-link {
  color: #6c6c6c;
  display: inline-block !important;
}

.admin-panel-icon {
  display: block;
  text-align: center;
  cursor: pointer;
  color: #424242;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 30px;
}
.admin-panel-icon:hover {
  color: #616161;
}

#admin-login {
  margin-top: 110px;
  width: 100%;
}
#admin-login input[type=submit] {
  display: block;
  margin: auto;
}
#admin-login p {
  display: block;
  margin: auto;
  margin-bottom: 20px;
  width: 500px;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: #f44336;
}

#admin-allergen form {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#admin-allergen form .input-field {
  margin-top: 25px;
}
#admin-allergen form input[type=submit] {
  margin-left: auto;
  margin-right: auto;
}
#admin-allergen ul li {
  margin-bottom: 5px;
}
#admin-allergen ul li .collapsible-head {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#admin-allergen ul li .collapsible-head p {
  margin-right: auto;
}
#admin-allergen ul li .collapsible-head .button-dark {
  margin-left: auto;
}
#admin-allergen ul li .collapsible-head .button-danger {
  margin-left: 25px;
}
#admin-allergen ul li .collapsible-body form {
  margin-top: 20px;
  margin-bottom: 20px;
}

#company-card {
  width: 100%;
  margin-top: 50px;
}

#admin-upload-button i {
  font-size: 32px;
  color: #999;
  margin-top: 4px;
}

.admin-table-highlight-header thead tr th div {
  font-weight: bold;
  color: #595959;
}

.random-code-generator-button {
  cursor: pointer;
  position: absolute;
  right: 0px;
}
.random-code-generator-button:hover {
  color: #359ff5;
}

.ant-steps-dot .ant-steps-item-content {
  width: auto !important;
}

.-text-center {
  text-align: center;
}

.-text-right {
  text-align: right;
}

.ant-tabs-bar {
  border-bottom: 1px solid #d8d8d8;
  border: 1px solid #d8d8d8;
}

.-flex {
  display: flex !important;
  flex-wrap: wrap;
}

.-center-vertical {
  align-items: center;
}

.-space-between {
  justify-content: space-between;
}

.-space-around {
  justify-content: space-around;
}

.-justify-center {
  justify-content: center;
}

.-align-center {
  align-items: center;
}

.-opacity-50 {
  opacity: 0.5;
}

.-opacity-20 {
  opacity: 0.2;
}

.-disable-scroll {
  overflow: hidden;
}

.-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.-ptb-15 {
  padding: 15px 0;
}

.-mt-30 {
  margin-top: 30px !important;
}

.-mt-25 {
  margin-top: 25px !important;
}

.-mt-20 {
  margin-top: 20px !important;
}

.-mt-5 {
  margin-top: 5px !important;
}

.-mt-0 {
  margin-top: 0px !important;
}

.-mb-25 {
  margin-bottom: 25px !important;
}

.-mb-20 {
  margin-bottom: 20px !important;
}

.-mb-15 {
  margin-bottom: 15px !important;
}

.-mb-5 {
  margin-bottom: 5px !important;
}

.-mb-0 {
  margin-bottom: 0px !important;
}

.-m-auto {
  margin: 0 auto !important;
}

.-flex-49-1 {
  width: 49% !important;
  flex: 0 0 49% !important;
}

.-flex-48-1 {
  width: 48% !important;
  flex: 0 0 48% !important;
}

.-flex-32-1 {
  width: 32% !important;
  flex: 0 0 32% !important;
}

.-flex-30-1 {
  width: 30% !important;
  flex: 0 0 30% !important;
}

.-flex-100 {
  width: 100% !important;
  flex: 0 0 100% !important;
}

.-flex-1 {
  flex: 1;
}

.-gap-5 {
  gap: 5px !important;
}

.-gap-10 {
  gap: 10px !important;
}

.-gap-15 {
  gap: 15px !important;
}

.-gap-20 {
  gap: 20px !important;
}

.-width-60 {
  width: 60% !important;
}

.-font-size-14 {
  font-size: 14px !important;
}

.-font-weight-bold {
  font-weight: bold !important;
}

.-white-space-no-wrap {
  white-space: nowrap !important;
}

.-line-height-0 {
  line-height: 0 !important;
}

.-display-block {
  display: block !important;
}

.admin-container {
  padding: 0;
}

.admin__wrapper {
  margin-left: 200px;
  padding-top: 15px;
}
.admin__wrapper-content {
  width: 1440px;
  max-width: 100%;
  margin: auto;
  padding: 0 15px;
  height: 100%;
}
.admin__wrapper .page__title {
  font-size: 24px;
  margin-bottom: 15px;
}

.card,
table {
  background: #fff;
}

.admin__loader {
  display: none;
  position: fixed;
  width: 100%;
  margin: auto;
  left: 0px;
  right: 0px;
  top: 0;
  z-index: 1000;
  height: 100%;
  background: rgba(255, 255, 255, 0.7019607843);
}
.admin__loader.--show {
  display: block;
}
.admin__loader .spinner {
  width: 100px;
  height: 100px;
}

.-box {
  box-shadow: 0 0.25rem 1.25rem rgba(86, 118, 159, 0.1215686275);
}

.-lh-0 {
  line-height: 0;
}

.ptb-15 {
  padding: 15px 0;
}

.-block {
  display: block;
}

.system__alert {
  position: fixed;
  top: -100px;
  right: 10px;
  padding: 10px;
  border: 2px solid var(--color-main);
  font-size: 14px;
  border-radius: 4px;
  z-index: 9999;
  background: var(--color-main-sub);
  font-weight: 500;
  max-width: 300px;
  transition: all 0.3s ease;
}
.system__alert.--show {
  top: 30px;
}
.system__alert p {
  margin: 0;
}

.input-field {
  position: relative;
  margin-bottom: 35px;
}
.input-field label {
  transition: all 0.2s ease-in-out 0s;
  position: absolute;
  top: 0px;
  left: 0px;
  font-size: 14px;
  font-weight: 400;
  color: #9e9e9e;
  text-indent: 5px;
  cursor: text;
}
.input-field input[type=text], .input-field input[type=password] {
  transition: all 0.2s ease-in-out 0s;
  width: 100%;
  border-style: solid;
  border-color: rgb(158, 158, 158);
  border-width: 0 0 1px 0;
  font-family: "Poppins", sans-serif !important;
  font-size: 14px;
  text-indent: 5px;
  outline-style: none;
  color: #616161;
}
.input-field input[type=text]:focus, .input-field input[type=password]:focus {
  border-bottom: 1px solid #42a5f5;
  box-shadow: 0 1px 0 0 #42a5f5;
  transition: all 0.2s ease-in-out 0s;
}
.input-field input[type=text]:focus + label, .input-field input[type=password]:focus + label {
  transition: all 0.2s ease-in-out 0s;
  color: #2196f3;
  top: -20px;
  font-size: 14px;
}
.input-field input[type=text]:valid + label, .input-field input[type=password]:valid + label {
  transition: all 0.2s ease-in-out 0s;
  color: #2196f3;
  top: -20px;
  font-size: 14px;
}

.input-warning {
  top: 24px !important;
  color: #f44336 !important;
  font-size: 12px !important;
}

#contact-app label {
  color: white;
}

.dropdown.-active {
  opacity: 1;
  pointer-events: initial;
}

.dropdown-content {
  position: absolute;
  display: block;
  visibility: hidden;
  transition: all 0.25s linear;
  opacity: 0;
  background-color: #ffffff;
  min-width: 100%;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  display: block;
  visibility: visible;
}

.--has-dropdown {
  position: relative;
}

.dropdown {
  position: relative;
}
.dropdown-toggle {
  cursor: pointer;
  width: 35px;
  height: 35px;
}
.dropdown-option {
  position: absolute;
  z-index: 4;
  cursor: pointer;
  width: 230px;
  background: #ffffff;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.16);
  right: 0;
  top: 40px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.dropdown-option__item {
  padding: 12px;
  color: #323434;
  border-bottom: 1px solid #d8d8d8;
}
.dropdown-option__item:hover {
  color: var(--color-main);
  background: #f5f5f5;
}
.dropdown-option__item:last-child {
  border-bottom: none;
}
.dropdown-option.-active {
  opacity: 1;
  pointer-events: initial;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-ms-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.pagination {
  display: flex;
  flex-direction: row;
  list-style: none;
  width: 100%;
  justify-content: center;
  padding: 0px;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.pagination li {
  display: flex;
  padding: 10px 16px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}
.pagination li:not(.active):hover:not(.deactive):hover {
  background-color: #ddd;
}
.pagination .active {
  background-color: #2196f3;
}
.pagination .deactive {
  cursor: default;
}
.pagination .deactive i {
  display: inline;
  cursor: default;
}

.list {
  list-style-type: none;
  margin: auto;
  padding: 0;
  border-collapse: collapse;
}

.list-item {
  display: block;
  padding: 14px;
  border-collapse: collapse;
  border: 1px solid #e2e2e2;
  color: #616161;
}
.list-item.weekly-availabilities {
  margin-bottom: 25px;
  margin-right: 25px;
  padding: 24px;
  width: 200px;
  display: inline-block;
}

.collapsible-body {
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
  transition: max-height 0.8s ease-in-out 0s;
}

.collapsible-active {
  max-height: 10000px;
}

.collapsible-deactive {
  border-width: 0px;
}

.switch input {
  display: none;
}
.switch label {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 14px;
  background-color: #9e9e9e;
  border-radius: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.switch label::after {
  left: 0;
  top: -3px;
  width: 20px;
  height: 20px;
  background-color: #FAFAFA;
  border-radius: 50%;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.14), 0 2px 2px 0 rgba(0, 0, 0, 0.098), 0 1px 5px 0 rgba(0, 0, 0, 0.084);
  content: "";
  position: absolute;
  margin: 0;
  outline: 0;
  transition: all 0.3s ease;
}
.switch input[type=checkbox]:checked + label {
  background-color: #b2dcff;
}
.switch input[type=checkbox]:checked + label:after {
  background-color: #42a5f5;
  left: 18px;
}

.checkbox {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: inline-block;
}
.checkbox label {
  cursor: pointer;
}
.checkbox label i {
  vertical-align: middle;
}
.checkbox input[type=checkbox] {
  display: none;
}
.checkbox input[type=checkbox]:checked + label .checkbox-checked {
  color: #42a5f5;
}
.checkbox input[type=checkbox]:checked + label .checkbox-unchecked {
  display: none;
}
.checkbox input[type=checkbox]:not(:checked) + label .checkbox-checked {
  display: none;
}

.chip {
  background-color: #cfcfcf;
  border-radius: 4px;
  padding: 0 6px;
}

#time-limits .time-limit .form-group {
  padding: 10px;
}
#time-limits .time-limit .form-group .input-group {
  display: flex;
}
#time-limits .time-limit .form-group .input-group .input-group-item {
  flex: 1;
}
#time-limits .time-limit .form-group .input-group .input-group-item .label {
  margin-bottom: 5px;
}
#time-limits .time-limit .form-btn {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 2px solid #f3f3f3;
  border-top: 3px solid #2196f3;
  border-radius: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
#admin-product-category input[type=checkbox] {
  display: none;
}
#admin-product-category input[type=checkbox]:checked + p label i {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
#admin-product-category p {
  position: relative;
  color: #9e9e9e;
  font-size: 14px;
  border: 0px solid #9e9e9e;
  border-bottom-width: 1px;
  padding-bottom: 5px;
  text-indent: 5px;
}
#admin-product-category p label {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}
#admin-product-category p label i {
  font-size: 45px;
  position: absolute;
  top: -10px;
  transition: all 0.4s ease-in-out 0s;
}
#admin-product-category .input-warning {
  margin-left: 5px;
}
#admin-product-category .list {
  margin-top: 20px;
}
#admin-product-category .list p {
  border: none;
}
#admin-product-category .list li .checkbox i {
  margin-bottom: 4px;
  margin-right: 20px;
}

#admin-product-allergen input[type=checkbox] {
  display: none;
}
#admin-product-allergen input[type=checkbox]:checked + p label i {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
#admin-product-allergen p {
  position: relative;
  color: #9e9e9e;
  font-size: 14px;
  border: 0px solid #9e9e9e;
  border-bottom-width: 1px;
  padding-bottom: 5px;
  text-indent: 5px;
}
#admin-product-allergen p label {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}
#admin-product-allergen p label i {
  font-size: 45px;
  position: absolute;
  top: -10px;
  transition: all 0.4s ease-in-out 0s;
}
#admin-product-allergen .list {
  margin-top: 20px;
}
#admin-product-allergen .list p {
  border: none;
}
#admin-product-allergen .list li .checkbox i {
  margin-bottom: 4px;
  margin-right: 20px;
}

.option-values {
  margin-bottom: 25px;
  padding: 40px 20px 20px;
  border: 1px dashed #d9d9d9;
  position: relative;
}
.option-values .option-value-prices {
  height: 80px;
  margin-top: 45px;
}
.option-values .option-value-prices .option-value-takeaway-price {
  width: 45%;
  float: left;
}
.option-values .option-value-prices .option-value-dinein-price {
  width: 45%;
  float: left;
}
.option-values .option-value-prices .option-value-homedelivery-price {
  width: 45%;
  float: right;
}
.option-values .option-value-prices .option-value-digital-price {
  width: 45%;
  float: right;
}
.option-values .option-value-delete-button, .option-values .option-value-reset-button, .option-values .option-value-override-button {
  position: absolute !important;
  top: -15px;
  right: -15px;
}
.option-values .option-value-down-button {
  position: absolute !important;
  top: -15px;
  left: -15px;
}
.option-values .option-value-down-button.two-sides-moveable-value {
  left: 30px;
}
.option-values .option-value-up-button {
  position: absolute !important;
  top: -15px;
  left: -15px;
}

.preview-table--list p {
  margin-bottom: 0;
}
.preview-table--list .ant-table-thead {
  display: none;
}

.preview-table--customize td {
  background: white !important;
}

.preview__item {
  background-color: #e6f7ff;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid lightgrey;
}
.preview__item--disabled {
  opacity: 0.5;
}
.preview__item-header {
  position: relative;
}
.preview__item-toggle {
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}
.preview__item-toggle--custom {
  position: unset;
}
.preview__item-toggle .toggle-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}
.preview__item-toggle .toggle-icon.expanded {
  transform: rotate(180deg);
}
.preview__item-content {
  display: none;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.preview__item.expanded .preview__item-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  transition: max-height 0.5s ease-in;
}
.preview__item.expanded .preview__item-name {
  margin-bottom: 10px;
}
.preview__item-row {
  width: 49%;
  flex: 0 0 49%;
}
.preview__item-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.preview__item-item--type .preview__item-babel {
  background: #cff5ff;
  border: 1px solid #00b3e0;
  color: #424242 !important;
}
.preview__item-item--type .preview__item-babel::after {
  background: #424242 !important;
}
.preview__item-title {
  width: 180px;
  flex: 0 0 180px;
  font-weight: 600;
}
.preview__item-babel {
  padding: 3px 20px;
  font-size: 13px;
  background: #999999;
  color: white !important;
  border-radius: 25px;
  font-weight: 600;
  position: relative;
  padding-right: 25px;
}
.preview__item-babel::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  transform: translateY(-50%);
}
.preview__item-babel--active {
  background: #00CC00;
}
.preview__item-name {
  flex: 0 0 100%;
  width: 100%;
  font-weight: bold;
}
.preview__item-name p {
  display: inline-block;
  padding: 4px 10px;
  background-color: #00b3e0;
  border-radius: 6px;
  color: white;
}
.preview__item-name--has-action {
  display: flex;
  justify-content: space-between;
}
.preview__item-name-action {
  background: transparent !important;
  padding: 0 !important;
}
.preview__item-name-action button {
  margin-left: 10px;
}
.preview__item-name--customer p {
  background-color: #ff4d4f;
}
.preview__item-name--not-edit-price p {
  background-color: #424242;
}
.preview__item-price {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid lightgray;
  flex: 0 0 100%;
  width: 100%;
}
.preview__item-price-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 5px;
}
.preview__item-price-list--icon p {
  line-height: 0;
}
.preview__item-price-list--popular {
  border: 2px dashed lightgray;
  border-radius: 5px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.preview__item-price-list-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px;
}
.preview__item-price-list-options-item {
  background: #cccccc;
  color: #424242;
  padding: 5px 10px;
  border-radius: 25px;
}
.preview__item-price-col {
  flex: 0 0 18%;
  width: 18%;
}
.preview__item-price-col--name {
  flex: 0 0 28%;
  width: 28%;
  font-weight: 600;
}
.preview__item-price-popular {
  position: absolute;
  bottom: 0;
  transform: translateY(50%);
  font-size: 12px;
  left: 10px;
  padding: 4px;
  background: #e6f7ff;
  border-radius: 10px;
}
.preview__item-price-popular p {
  margin-left: 25px;
}
.preview__item-price-popular::before {
  content: "";
  background: url(/images/popular-icon.png);
  position: absolute;
  width: 20px;
  height: 15px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}
.preview__item--alert {
  animation: backgroundColorTransition 0.5s infinite alternate;
}
.preview__item--depend {
  margin-left: 15px;
  margin-top: 10px;
}

@keyframes backgroundColorTransition {
  0% {
    background-color: #e6f7ff;
  }
  100% {
    background-color: rgba(244, 67, 54, 0.6117647059);
  }
}
.option-values--customize .option-value__prices {
  display: flex;
  justify-content: space-between;
  height: auto;
  align-items: center;
  flex-wrap: wrap;
}
.option-values--customize .option-value__popular {
  width: 15%;
  flex: 0 0 15%;
  height: min-content;
}
.option-values--customize .option-value__textarea {
  width: 100%;
  flex: 0 0 100%;
  margin-top: 10px;
}
.option-values--customize .option-value__input {
  position: relative;
  width: 12%;
  flex: 0 0 12%;
  height: min-content;
}
.option-values--customize .option-value__input span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 9px;
  z-index: 1;
}
.option-values--customize .option-value__input input[type=text] {
  width: 100%;
  padding: 8px;
  border: none;
  background: #cff5ff;
  border-radius: 5px;
  outline: none !important;
  border: 2px solid #cff5ff;
}
.option-values--customize .option-value__input input[type=text]:focus {
  border-color: #00b3e0;
}
.option-values--customize .option-value__input--has-icon input[type=text] {
  padding-left: 40px;
}
.option-values--customize .option-value__input--name {
  width: 34%;
  flex: 0 0 34%;
}
.option-values--customize .option-value__discount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 15px 0 8px 0px;
  gap: 15px;
}
.option-values--customize .option-value__discount-type {
  flex: 1;
}
.option-values--customize .option-value__discount-value {
  flex: 1;
}
.option-values--customize .option-value__discount-value input {
  width: 100%;
  border: 1px solid #ccc;
  height: 32px;
  padding: 8px;
}

.tooltip-price-options .ant-tooltip-inner {
  background-color: #dba217 !important;
}

.product-dropdown-select {
  width: 100%;
  padding: 5px;
  background: #f3f4f7;
  position: relative;
}
.product-dropdown-select__search {
  padding: 5px;
  width: 100px;
  border: none;
  background: #f3f4f7;
  outline: none;
}
.product-dropdown-select__category-dropdown {
  position: absolute;
  top: 41px;
  left: 0;
  width: 100%;
  z-index: 3;
  background: white;
  border: 1px solid #f3f4f7;
  max-height: 200px;
  padding: 10px 15px 10px 10px;
  overflow-y: scroll;
}
.product-dropdown-select__remove-product {
  line-height: 0;
  position: absolute;
  right: 5px;
  background: white;
  padding: 4px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid var(--color-main);
  z-index: 2;
}

.admin-category-assign-group-container .button-container {
  display: flex;
  gap: 5px;
  justify-content: center;
  margin-bottom: 15px;
}
.admin-category-assign-group-container .button-container button {
  border: none;
  padding: 8px 10px;
  cursor: pointer;
}
.admin-category-assign-group-container .button-container button.-active {
  background-color: var(--color-main);
  color: #fff;
}

.voucher {
  padding: 15px 0;
  min-height: 100vh;
}
.voucher__action {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}
.voucher__action-filter {
  position: relative;
}
.voucher__action-filter-number {
  position: absolute;
  right: 0;
  top: 0;
  background-color: var(--color-main);
  color: #ffffff;
  border-radius: 9999px;
  font-size: 10px;
  width: 15px;
  line-height: 15px;
  text-align: center;
}
.voucher__filter-clear {
  text-align: right;
}
.voucher__filter-clear a {
  color: var(--color-main);
  font-size: 12px;
  cursor: pointer;
  display: inline-block;
}
.voucher__filter-item-label p {
  margin-bottom: 0;
  font-weight: 600;
}
.voucher__filter-item-input--date .ant-calendar-picker-input {
  padding: 8px;
  height: auto;
}
.voucher__filter-item-input--select .ant-select {
  min-width: 100px;
}
.voucher__filter-item-input--select .ant-select-selection--single {
  height: 39px;
}
.voucher__filter-item-input--select .ant-select-selection__rendered {
  line-height: 37px;
}
.voucher__filter-item-input--balance {
  flex: 0 0 calc(100% - 57px);
  width: calc(100% - 57px);
  display: flex;
  justify-content: space-between;
}
.voucher__filter-item-input--balance .ant-input-number {
  width: 48%;
  flex: 0 0 48%;
}
.voucher__filter-item-input--quantity {
  flex: 0 0 calc(100% - 80px);
  width: calc(100% - 80px);
}
.voucher__filter-item-search {
  flex: 0 0 calc(100% - 143px);
  width: calc(100% - 143px);
  position: relative;
}
.voucher__filter-item-search input {
  width: 100%;
  background-color: #d8d8d8;
  cursor: pointer;
  opacity: unset;
  z-index: 1;
  min-height: 24px;
  appearance: none;
  background-clip: padding-box;
  border: 0;
  border-radius: 9999px;
  box-shadow: inset 0 0 0 1px transparent;
  caret-color: var(--color-main);
  padding: 5px 20px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  line-height: 22px;
  font-size: 14px;
}
.voucher__filter-item-search input:hover {
  box-shadow: inset 0 0 0 1px #dbdbdb;
}
.voucher__filter-item-search input:focus-visible {
  box-shadow: inset 0 0 0 1px transparent, 0 0 0 2px var(--color-second), 0 0 0 4px var(--color-main);
  outline: 0;
}
.voucher__filter-item-search-clear {
  position: absolute;
  right: 12px;
  top: 55%;
  transform: translateY(-45%);
  cursor: pointer;
}
.voucher__filter-item-search-type {
  flex: 0 0 138px;
  width: 138px;
}
.voucher__filter-item-search-type .ant-select {
  width: 100%;
}
.voucher .dropdown {
  position: absolute;
  z-index: 4;
  width: 230px;
  padding: 12px;
  background: #ffffff;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.16);
  right: 0;
  top: 40px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.voucher .dropdown.-active {
  opacity: 1;
  pointer-events: initial;
}
.voucher .dropdown--notification {
  top: 50px;
  width: 270px;
}
.voucher .dropdown--filter {
  width: 350px;
}

.scanning--qr {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--color-main);
  gap: 5px;
  font-size: 16px;
  padding: 10px 10px;
  width: fit-content;
  margin: 30px auto;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.scanning--qr svg {
  width: 24px;
  height: 24px;
}
.scanning--qr:hover {
  background-color: var(--color-main-sub);
  color: var(--color-main);
  border-color: var(--color-main);
}
.scanning--qr-modal .ant-modal-content {
  background-color: unset;
  box-shadow: unset;
}
.scanning--qr-modal .ant-modal-content .ant-modal-body {
  padding: unset;
}
.scanning--qr-result {
  width: 450px;
  margin: 50px auto 0 auto;
  text-align: right;
}
.scanning--qr-result .btn--cancel-result {
  margin-right: 15px;
}
.scanning--qr-result .btn--submit-result {
  margin-top: 20px;
}
.scanning--qr-result .btn--submit-result.btn--disabled {
  background-color: #cccccc;
  color: #ffffff;
  border-color: #cccccc;
  cursor: not-allowed;
}
.scanning--qr-result .btn--submit-result.btn--disabled:hover {
  background-color: #cccccc;
}
.scanning--qr-result .btn--submit-result .btn--submit-loading {
  display: flex;
  align-items: center;
  gap: 10px;
}
.scanning--qr-result .btn--submit-result .btn--submit-loading .ant-spin .ant-spin-dot i {
  background-color: var(--color-main);
}
.scanning--qr-result .cart__voucher--data {
  margin-top: 15px;
}
.scanning--qr-result .cart__voucher--data .card__base {
  margin-top: 20px;
}
.scanning--qr-result .cart__voucher--data .card__base .voucher {
  padding: unset;
  min-height: unset;
}
.scanning--qr-result .cart__voucher--data .card__base .voucher .card {
  height: 200px;
  border-radius: 8px;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2);
  padding: 10px;
  position: relative;
  overflow: hidden;
}
.scanning--qr-result .cart__voucher--data .card__base .voucher .card--voucher {
  background: linear-gradient(to right, #009688, #616161);
}
.scanning--qr-result .cart__voucher--data .card__base .voucher .card--gift-card {
  background: linear-gradient(to right, #243b51, #616161);
}
.scanning--qr-result .cart__voucher--data .card__base .voucher .card__type {
  position: absolute;
  width: 150px;
  text-align: center;
  background: var(--color-main);
  color: white;
  padding: 4px 30px;
  top: 35px;
  right: -30px;
  transform: rotate(45deg);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.scanning--qr-result .cart__voucher--data .card__base .voucher .card .content {
  color: #ffffff;
  font-size: 13px;
  height: 100%;
}
.scanning--qr-result .cart__voucher--data .card__base .voucher .card .content-info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.scanning--qr-result .cart__voucher--data .card__base .voucher .card .content-info__logo {
  line-height: 0;
  text-align: left;
}
.scanning--qr-result .cart__voucher--data .card__base .voucher .card .content-info__logo img {
  height: 35px;
}
.scanning--qr-result .cart__voucher--data .card__base .voucher .card .content-info__top {
  text-align: center;
}
.scanning--qr-result .cart__voucher--data .card__base .voucher .card .content-info__top-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #ffffff;
}
.scanning--qr-result .cart__voucher--data .card__base .voucher .card .content-info__top-value {
  font-size: 30px;
  font-weight: bold;
  line-height: 24px;
}
.scanning--qr-result .cart__voucher--data .card__base .voucher .card .content-info__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.scanning--qr-result .cart__voucher--data .card__base .voucher .card .content-info__bottom p {
  margin: 0;
}
.scanning--qr-result .cart__voucher--data .card__base .voucher .card .content-info__bottom-date {
  font-size: 17px;
  font-weight: 500;
}
.scanning--qr-result .cart__voucher--data .card__base .voucher .card .content-info__bottom-value {
  flex: 1;
}
.scanning--qr-result .cart__voucher--data .card__base .voucher .card .content-info__bottom-value input {
  height: 30px;
  width: 30%;
  border-radius: 8px;
  outline: none;
  color: #000000;
  border: 1px solid #242424;
  font-size: 14px;
  padding-left: 10px;
}

.success-message {
  margin: 20px auto;
  max-width: 450px;
  animation: slideInFromTop 0.5s ease-out;
}
.success-message__content {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  padding: 12px 15px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
  border-left: 5px solid #2E7D32;
  position: relative;
  overflow: hidden;
}
.success-message__icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  flex-shrink: 0;
  stroke-width: 2.5;
}
.success-message__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

@keyframes slideInFromTop {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.order-form__header {
  padding: 30px;
  background: #f9f9f9;
  border-bottom: 1px solid #ebebeb;
}
.order-form__header-title-h1 {
  font-size: 19px;
  font-weight: 600;
  color: #265e7d;
  line-height: 1;
  margin-bottom: 0;
}
.order-form__header-title {
  text-align: center;
}
.order-form__header-title h1 {
  font-size: 24px;
  font-weight: 600;
  color: #265e7d;
  line-height: 32px;
  margin-bottom: 0;
}
.order-form__header-title-delivery {
  font-size: 18px;
  color: #323434;
}
.order-form__header-title-pickup {
  font-size: 16px;
}
.order-form__header-title-pickup img {
  height: 20px;
}
.order-form__navigation {
  padding: 15px 30px;
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 3;
  left: 0;
}
.order-form__navigation a {
  color: #323434;
  line-height: 0;
  display: block;
}
.order-form__navigation a:hover {
  color: #265e7d;
}
.order-form__content {
  padding: 30px;
  border-bottom: 1px solid #ebebeb;
}
.order-form__content-title h2 {
  font-size: 20px;
  font-weight: 600;
  color: #323434;
  line-height: 30px;
}
.order-form__timeline-wrapper {
  position: relative;
}
.order-form__timeline-wrapper::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #c0c0c0;
  position: absolute;
  left: 14px;
  z-index: 1;
}
.order-form__timeline-item {
  font-size: 16px;
  position: relative;
  z-index: 2;
}
.order-form__timeline-item--success svg {
  color: #29b173;
}
.order-form__timeline-item-text {
  color: #323434;
  font-weight: 500;
}
.order-form__timeline-item-image {
  background: white;
  padding: 3px;
  color: #323434;
}
.order-form__timeline-item-title {
  color: #323434;
}
.order-form__detail-item {
  color: #323434;
  font-size: 16px;
}
.order-form__detail-item-title, .order-form__detail-item-price {
  font-weight: 500;
}
.order-form__detail-item-title p, .order-form__detail-item-price p {
  margin-bottom: 0;
}
.order-form__detail-item-note {
  font-weight: 400;
  font-size: 14px;
  padding-left: 20px;
  opacity: 0.8;
}
.order-form__detail-item-vats p {
  margin-bottom: 0;
  flex: 0 0 24%;
  width: 24%;
  font-size: 16px;
  color: #323434;
}
.order-form__detail-item--email .order-form__detail-item-title {
  flex: 0 0 110px;
  width: 110px;
}
.order-form__detail-item--email .order-form__detail-item {
  flex: 0 0 calc(100% - 120px);
  width: calc(100% - 120px);
  text-align: right;
}
.order-form__detail-item--address .order-form__detail-item-title {
  flex: 0 0 60px;
  width: 60px;
}
.order-form__detail-item--address .order-form__detail-item {
  flex: 0 0 calc(100% - 70px);
  width: calc(100% - 70px);
  text-align: right;
}
.order-form__detail-item--note .order-form__detail-item-title {
  flex: 0 0 75px;
  width: 75px;
}
.order-form__detail-item--note .order-form__detail-item {
  flex: 0 0 calc(100% - 85px);
  width: calc(100% - 85px);
  text-align: right;
}
.order-form__detail-vats-title p {
  font-weight: 500;
  margin-bottom: 0;
  flex: 0 0 24%;
  width: 24%;
  font-size: 16px;
  color: #323434;
}
.order-form__detail-payment-icon {
  display: inline-block;
  border: 1px solid #ebebeb;
  background: white;
  line-height: 0;
  border-radius: 4px;
}
.order-form__detail-payment-icon img {
  height: 25px;
  border-radius: 4px;
}
.order-form__detail-payment-icon--applepay {
  border: none !important;
  border-radius: 0;
}
.order-form__detail-payment-icon--applepay img {
  border-radius: 0;
}
.order-form__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  position: sticky;
  bottom: 0;
  background: white;
  left: 0;
  width: 100%;
  gap: 10px;
  z-index: 2;
}
.order-form__action a {
  flex: 0 0 calc(24% - 10px);
  width: calc(24% - 10px);
}

.order-register {
  padding: 15px 0;
}
.order-register__action {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}
.order-register__action-filter {
  position: relative;
}
.order-register__action-filter-number {
  position: absolute;
  right: 0;
  top: 0;
  background-color: var(--color-main);
  color: #ffffff;
  border-radius: 9999px;
  font-size: 10px;
  width: 15px;
  line-height: 15px;
  text-align: center;
}
.order-register__filter-clear {
  text-align: right;
}
.order-register__filter-clear a {
  color: var(--color-main);
  font-size: 12px;
  cursor: pointer;
  display: inline-block;
}
.order-register__filter-item-label p {
  margin-bottom: 0;
  font-weight: 600;
}
.order-register__filter-item-input--date .ant-calendar-picker-input {
  padding: 7px 8px;
  height: auto;
}
.order-register__filter-item-input--date-action-mb {
  display: none !important;
}
.order-register__filter-item-input--date-action-pc a, .order-register__filter-item-input--date-action-mb a {
  color: #323434;
}
.order-register__filter-item-input--date-action-pc a:hover, .order-register__filter-item-input--date-action-mb a:hover {
  color: var(--color-main);
}
.order-register__filter-item-input--select .ant-select {
  min-width: 120px;
}
.order-register__filter-item-input--select .ant-select-selection--single {
  height: 39px;
}
.order-register__filter-item-input--select .ant-select-selection__rendered {
  line-height: 37px;
}
.order-register__filter-item-search {
  flex: 0 0 calc(100% - 143px);
  width: calc(100% - 143px);
  position: relative;
}
.order-register__filter-item-search input {
  width: 100%;
  background-color: #d8d8d8;
  cursor: pointer;
  opacity: unset;
  z-index: 1;
  min-height: 24px;
  appearance: none;
  background-clip: padding-box;
  border: 0;
  border-radius: 9999px;
  box-shadow: inset 0 0 0 1px transparent;
  caret-color: var(--color-main);
  padding: 5px 20px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  line-height: 22px;
  font-size: 14px;
}
.order-register__filter-item-search input:hover {
  box-shadow: inset 0 0 0 1px #dbdbdb;
}
.order-register__filter-item-search input:focus-visible {
  box-shadow: inset 0 0 0 1px transparent, 0 0 0 2px var(--color-second), 0 0 0 4px var(--color-main);
  outline: 0;
}
.order-register__filter-item-search-clear {
  position: absolute;
  right: 12px;
  top: 55%;
  transform: translateY(-45%);
  cursor: pointer;
}
.order-register__filter-item-search-type {
  flex: 0 0 138px;
  width: 138px;
}
.order-register__filter-item-search-type .ant-select {
  width: 100%;
}
.order-register__total-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 15px 0;
  justify-content: space-between;
}
.order-register__total-wrapper .order-register__total-item {
  flex: 0 0 24%;
  width: 24%;
  border-right: 1px solid #ebebeb;
}
.order-register__total-wrapper .order-register__total-item:last-child {
  border-right: none;
}
.order-register__total-wrapper .order-register__total-item p {
  margin-bottom: 0;
}
.order-register__total-item-number {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-main);
}
.order-register .dropdown {
  position: absolute;
  z-index: 25;
  width: 230px;
  padding: 12px;
  background: #ffffff;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.16);
  right: 0;
  top: 40px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.order-register .dropdown.-active {
  opacity: 1;
  pointer-events: initial;
}
.order-register .dropdown--notification {
  top: 50px;
  width: 270px;
}
.order-register .dropdown--filter {
  width: 350px;
}
.order-register .order-register__action--mobile {
  display: none;
}

.admin-table-customize .ant-table-column-title,
.admin-table-customize-mobile .ant-table-column-title {
  color: #6b6b6b;
  font-weight: 400 !important;
  font-size: 14px;
  line-height: 20px;
}
.admin-table-customize .ant-table,
.admin-table-customize-mobile .ant-table {
  color: #323434 !important;
}
.admin-table-customize .ant-table table,
.admin-table-customize-mobile .ant-table table {
  border-radius: 12px 12px 0 0;
  border: none !important;
}
.admin-table-customize .ant-table-thead > tr:first-child > th:first-child,
.admin-table-customize-mobile .ant-table-thead > tr:first-child > th:first-child {
  border-top-left-radius: 12px;
}
.admin-table-customize .ant-table-thead > tr:first-child > th:last-child,
.admin-table-customize-mobile .ant-table-thead > tr:first-child > th:last-child {
  border-top-right-radius: 12px;
}
.admin-table-customize .ant-table-tbody > tr:last-child > td:first-child,
.admin-table-customize-mobile .ant-table-tbody > tr:last-child > td:first-child {
  border-bottom-left-radius: 12px;
}
.admin-table-customize .ant-table-tbody > tr:last-child > td:last-child,
.admin-table-customize-mobile .ant-table-tbody > tr:last-child > td:last-child {
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 0 !important;
}
.admin-table-customize .ant-table-thead tr th,
.admin-table-customize-mobile .ant-table-thead tr th {
  background-color: #fff;
  border: none !important;
  border-top: 1px solid #ebebeb !important;
  border-bottom: 1px solid #ebebeb !important;
}
.admin-table-customize .ant-table-thead tr th:first-child,
.admin-table-customize-mobile .ant-table-thead tr th:first-child {
  border-left: 1px solid #ebebeb !important;
}
.admin-table-customize .ant-table-thead tr th:last-child,
.admin-table-customize-mobile .ant-table-thead tr th:last-child {
  border-right: 1px solid #ebebeb !important;
}
.admin-table-customize .ant-table-tbody tr td,
.admin-table-customize-mobile .ant-table-tbody tr td {
  border: none !important;
  border-bottom: 1px solid #ebebeb;
}
.admin-table-customize .ant-table-tbody tr td:first-child,
.admin-table-customize-mobile .ant-table-tbody tr td:first-child {
  border-left: 1px solid #ebebeb !important;
}
.admin-table-customize .ant-table-tbody tr td:last-child,
.admin-table-customize-mobile .ant-table-tbody tr td:last-child {
  border-right: 1px solid #ebebeb !important;
}
.admin-table-customize .ant-table-tbody tr:last-of-type td,
.admin-table-customize-mobile .ant-table-tbody tr:last-of-type td {
  border-bottom: 1px solid #ebebeb !important;
}
.admin-table-customize .ant-table-placeholder,
.admin-table-customize-mobile .ant-table-placeholder {
  border-radius: 0 0 12px 12px;
}
.admin-table-customize tbody tr td,
.admin-table-customize-mobile tbody tr td {
  padding: 10px;
}
.admin-table-customize .admin-table-col-order-number-text a,
.admin-table-customize-mobile .admin-table-col-order-number-text a {
  color: #265e7d;
  line-height: 24px;
  font-size: 16px;
  font-weight: 600;
}
.admin-table-customize .admin-table-col-order-number-text a:hover,
.admin-table-customize-mobile .admin-table-col-order-number-text a:hover {
  text-decoration: underline;
}
.admin-table-customize .admin-table-col-created-at,
.admin-table-customize-mobile .admin-table-col-created-at {
  text-align: left;
  font-size: 14px;
  color: #6b6b6b;
  line-height: 20px;
  font-weight: 400;
}
.admin-table-customize .admin-table-col-payment-icon,
.admin-table-customize-mobile .admin-table-col-payment-icon {
  display: inline-block;
  border: 1px solid #ebebeb;
  background: white;
  line-height: 0;
  border-radius: 4px;
}
.admin-table-customize .admin-table-col-payment-icon img,
.admin-table-customize-mobile .admin-table-col-payment-icon img {
  height: 25px;
  border-radius: 4px;
}
.admin-table-customize .admin-table-col-payment-icon--applepay,
.admin-table-customize-mobile .admin-table-col-payment-icon--applepay {
  border: none !important;
  border-radius: 0;
}
.admin-table-customize .admin-table-col-payment-icon--applepay img,
.admin-table-customize-mobile .admin-table-col-payment-icon--applepay img {
  border-radius: 0;
}

.admin-table-col-status {
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  line-height: 16px;
  padding: 2px 8px;
  color: #ffffff;
  text-transform: uppercase;
}
.admin-table-col-status--completed {
  background-color: #265e7d;
}
.admin-table-col-status--pending, .admin-table-col-status--preparing {
  background-color: #f1df67;
  color: #323434;
}
.admin-table-col-status--canceled {
  background-color: #f44336;
}
.admin-table-col-status--new {
  background-color: #6d6d6d;
}
.admin-table-col-status--ready {
  background-color: #00b3e0;
}
.admin-table-col-status--delivered {
  background-color: #29b173;
}

.admin-table-col-icon--delivery {
  width: 25px;
  height: 25px;
}
.admin-table-col-icon--delivery img {
  filter: grayscale(100%) !important;
}

.admin-table-customize-mobile {
  display: none;
  border-radius: 12px;
  border: 1px solid #ebebeb;
}
.admin-table-customize-mobile__col {
  border-bottom: 1px solid #ebebeb;
}
.admin-table-customize-mobile__col-item {
  padding: 12px;
}

.layout {
  background: linear-gradient(135deg, var(--color-main), var(--color-main-sub), var(--color-main));
  color: #fff;
  min-height: 100vh;
  padding: 20px;
  box-sizing: border-box;
}
.layout__wrapper {
  display: flex;
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  height: calc(100vh - 40px);
}
.layout__sidebar {
  flex: 0 0 300px;
  background: rgba(30, 30, 50, 0.7);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
  height: 100%;
  overflow-y: scroll;
}
.layout__main {
  flex: 1;
  background: rgba(30, 30, 50, 0.5);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}
.layout__map {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  position: relative;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  height: 100%;
}
.layout__map-tabs {
  width: calc(100% - 350px);
  flex: 0 0 calc(100% - 350px);
}
.layout__map-action {
  width: 340px;
  flex: 0 0 340px;
  color: #ffcc00;
  font-weight: 600;
}
.layout__map-action-notification {
  color: #ffcc00;
  cursor: pointer;
}
.layout__map-tab {
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 5px;
}
.layout__map-tab--active, .layout__map-tab:hover {
  color: #ffcc00;
  border-color: #ffcc00;
}
.layout__map-tab--has-new-order {
  color: #f44336 !important;
}
.layout__map-tab--has-new-order:hover {
  border-color: #f44336;
}
.layout__map-trash-bin {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff4757, #c44569);
  border-radius: 15px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
  border: 3px solid transparent;
  transition: all 0.3s ease;
  z-index: 9;
  cursor: pointer;
}
.layout__map-trash-bin--show {
  display: flex;
  animation: trashBinAppear 0.3s ease-out;
}
.layout__map-trash-bin--drag-over {
  transform: scale(1.1);
  border-color: #ffcc00;
  background: linear-gradient(135deg, #ff6b7a, #d63384);
  box-shadow: 0 12px 35px rgba(255, 71, 87, 0.6);
}
.layout__map-table {
  position: absolute;
  cursor: move;
  transition: transform 0.2s ease;
  z-index: 10;
  color: black;
  font-weight: bold;
  background: white;
  font-size: 12px;
  border-radius: 8px;
  text-align: center;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  padding: 4px;
}
.layout__map-table:hover {
  z-index: 11 !important;
}
.layout__map-table--round {
  border-radius: 50%;
}
.layout__map-table-name, .layout__map-table-title {
  width: 100%;
  flex: 0 0 100%;
}
.layout__map-table--seated {
  background: #29b173;
  color: white;
}
.layout__map-table--ordered {
  background: #cf3735;
  color: white;
}
.layout__map-table--served, .layout__map-table--paid {
  background: #ffcc00;
  color: #323434;
}
.layout__map-table-seated-icon {
  position: relative;
}
.layout__map-table-seated-icon-remove {
  color: red;
  position: absolute;
  top: -6px;
  right: -6px;
  z-index: 1;
}
.layout__map-table-ordered-icon {
  position: relative;
}
.layout__map-table-ordered-icon-text {
  position: absolute;
  top: -6px;
  right: -4px;
  z-index: 1;
  padding: 2px;
  display: block;
  line-height: 1;
  background: #ffcc00;
  color: #323434;
  border-radius: 2px;
  font-weight: 500;
}
.layout__map-table-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.layout__map-table-title--limit {
  width: 70%;
  flex: 0 0 70%;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}
.layout__map-table-title--limit-1 {
  width: 100%;
  flex: 0 0 100%;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}
.layout__map-table-content {
  width: 100%;
  flex: 0 0 100%;
}
.layout__map-table-order {
  width: 100%;
  flex: 0 0 100%;
}
.layout__map-table-order-popup {
  display: none;
  background: white;
  position: absolute;
  z-index: 12;
  border-radius: 5px;
  overflow: hidden;
  cursor: initial;
}
.layout__map-table-order-popup .order-form__header {
  padding: 10px;
}
.layout__map-table-order-item {
  position: relative;
  line-height: 1.3;
}
.layout__map-table-order-item a {
  color: #323434;
  background: #ffcc00;
  border-radius: 4px;
}
.layout__map-table-order-item a:hover {
  background: #323434;
  color: white;
}
.layout__map-table-order-item:hover .layout__map-table-order-popup {
  display: block;
}
.layout__map-table-order-total {
  width: 100%;
  flex: 0 0 100%;
}
.layout__map--not-editable .layout__map-table {
  cursor: pointer !important;
}

.tool-section {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 15px;
}
.tool-section__title {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: #ffcc00;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
}
.tool-section__controls {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.tool-section__control {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tool-section__control-label {
  font-size: 0.9rem;
  opacity: 0.9;
}
.tool-section__control-value {
  font-weight: 600;
  color: #ffcc00;
}
.tool-section__control-input {
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.shape-selector {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.shape-selector__item {
  aspect-ratio: 1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid transparent;
}
.shape-selector__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-color: #ffcc00;
}
.shape-selector__item--active {
  border-color: #ffcc00;
  background: rgba(255, 204, 0, 0.2);
}

.shape-preview {
  background: white;
  border-radius: 4px;
}
.shape-preview--round {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.shape-preview--square {
  width: 50px;
  height: 50px;
}
.shape-preview--rectangle {
  width: 60px;
  height: 40px;
}

.table-area__name {
  color: #ffcc00;
  display: block;
}
.table-area__location {
  padding: 7px;
  border: 1px dashed lightgray;
  border-radius: 5px;
  cursor: pointer;
  background: transparent;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.table-area__location-name {
  width: calc(100% - 34px);
  flex: 0 0 calc(100% - 34px);
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.table-area__location-add {
  width: 24px;
  flex: 0 0 24px;
}
.table-area__location:hover {
  border-color: white;
  border-style: solid;
  background: #ffcc00;
}

@keyframes trashBinAppear {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.gallery-image {
  max-width: 350px;
}
@media (max-width: 500px) {
  .gallery-image {
    max-width: 100%;
  }
}

#gallery-app {
  margin: auto;
  position: relative;
  z-index: 3;
}

#checkout {
  display: none;
  margin: 0 auto;
  width: 750px;
  padding: 24px;
  margin-top: 90px;
  background-color: #fff;
  border-radius: 12px;
}
@media (max-width: 750px) {
  #checkout {
    width: 100%;
  }
}

.swish-checkout-spinner {
  position: relative;
  z-index: 3;
}

.ant-popover-inner-content {
  margin-left: auto;
  max-width: 400px;
}

.checkout-delivery-specifications {
  margin-top: 20px;
  padding: 20px;
  box-shadow: 0 1px 9px 0 rgba(0, 0, 0, 0.16), 0 8px 9px 0 rgba(0, 0, 0, 0.12);
  border: solid #e0e0e0 1px;
}
.checkout-delivery-specifications .checkout-delivery-instruction {
  margin-top: 20px;
  margin-bottom: 0px;
  color: rgb(244, 67, 54);
}

.content-box {
  border-radius: 12px;
  padding: 8px;
  margin-top: 100px;
  z-index: 3;
  position: relative;
}
@media screen and (max-width: 700px) {
  .content-box {
    margin-top: 90px;
    margin-bottom: 0px;
    border-radius: 0px;
  }
}
.content-box h1, .content-box h2, .content-box h3, .content-box h4, .content-box h5, .content-box h6, .content-box p {
  color: white;
}
.content-box a {
  text-decoration: none;
  color: inherit;
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}

.lds-ellipsis div {
  position: absolute;
  top: 27px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #2196f3;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 6px;
  animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 6px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 26px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 45px;
  animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(19px, 0);
  }
}
.background-video {
  position: fixed;
  z-index: 1;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 700px) {
  .background-video {
    width: auto;
    height: 100%;
  }
}

.hidden {
  display: none !important;
}

@media screen and (max-width: 700px) {
  .mobile-hidden {
    display: none !important;
  }
}

.mobile-visible {
  display: none !important;
}
@media screen and (max-width: 700px) {
  .mobile-visible {
    display: block !important;
  }
}

.text-danger {
  color: #f44336;
}

.text-yellow {
  color: #e3ab22;
}

@media all and (max-width: 820px) {
  .mce-window {
    width: auto !important;
    top: 0px !important;
    left: 0px !important;
    right: 0px !important;
    bottom: 0px !important;
    background: none !important;
  }
  .mce-window-head, .mce-window-body {
    background: #FFFFFF !important;
  }
  .mce-foot > .mce-container-body {
    padding: 10px !important;
    width: 80% !important;
  }
  .mce-panel {
    max-width: 100% !important;
  }
  .mce-container {
    max-width: 100% !important;
    height: auto !important;
    overflow: auto;
  }
  .mce-container-body {
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    overflow: auto;
  }
  .mce-form {
    padding: 10px !important;
  }
  .mce-tabs {
    max-width: 100% !important;
  }
  .mce-formitem {
    margin: 10px 0 !important;
  }
  .mce-abs-layout-item {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    width: auto !important;
  }
  .mce-slider {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .mce-abs-layout-item.mce-label {
    display: block !important;
  }
  .mce-abs-layout-item.mce-textbox {
    -webkit-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    box-sizing: border-box !important;
    display: block !important;
    width: 100% !important;
  }
  .mce-abs-layout-item.mce-combobox {
    display: flex !important;
  }
  .mce-abs-layout-item.mce-combobox > .mce-textbox {
    -ms-flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
    height: 29px !important;
    width: 80% !important;
  }
  .mce-container-body.mce-window-body.mce-abs-layout iframe {
    height: 500px !important;
  }
  /*this only use with responsive file manager 9 */
  .mce-tinymce-inline {
    left: 0 !important;
    right: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .mce-tinymce-inline .mce-flow-layout {
    white-space: normal !important;
  }
  .mce-menu.mce-fixed {
    max-height: 90%;
    overflow: auto;
  }
  .mce-title {
    white-space: normal !important;
  }
  .mce-btn-group {
    overflow-y: hidden !important;
  }
}
@media print {
  * {
    -webkit-print-color-adjust: exact !important;
    color-adjust: exact !important;
    print-color-adjust: exact !important;
    background-color: white !important;
  }
  @page {
    size: 180mm 120mm;
    margin: 0;
    padding: 0;
  }
  body {
    overflow: auto !important;
  }
  body::-webkit-scrollbar {
    background-color: transparent;
    display: none;
  }
  body::-webkit-scrollbar-thumb {
    background-color: transparent;
  }
  body::-webkit-scrollbar-track {
    background-color: transparent;
  }
  #admin-left-menu,
  #admin-dining-areas-loader,
  .modal__print-qr-input,
  .ant-modal-close,
  .ant-modal-mask,
  .list-qr,
  .modal__print-qr-mode,
  hr,
  .admin-header,
  .ant-tabs-bar {
    display: none !important;
  }
  #admin-dining-areas-app,
  #admin-curbside-areas-app {
    padding: 0 !important;
  }
  .ant-tabs-content {
    margin-left: 0 !important;
    display: block !important;
  }
  .wrapper {
    padding: 0 !important;
    margin: 0 !important;
  }
  .admin-container {
    width: 100% !important;
  }
  .wrap-qr {
    margin: 0 !important;
    width: 100vw;
    border: 1px solid transparent;
  }
  div[id^=generated-qr-code] {
    line-height: 0 !important;
  }
  div[id^=generated-qr-code] canvas {
    width: 60mm;
  }
  .modal__print-qr-btn-print {
    display: none !important;
  }
  .modal__print-qr-qr {
    gap: 4mm !important;
  }
  .modal__print-qr-qr-wrapper {
    flex: 0 0 100vw;
    width: 100vw;
    align-items: center;
    height: 100vh;
    border: 1px solid transparent;
    background-color: white;
  }
  .modal__print-qr-qr > div {
    border-width: 4px !important;
    margin-bottom: 0 !important;
    background-color: white;
  }
  .modal__print-qr-qr-title-ud {
    margin-top: 0 !important;
    font-size: 5.2mm !important;
    background-color: white;
    font-weight: bold !important;
    color: black !important;
  }
  .modal__print-qr-qr-title {
    font-size: 8mm !important;
    margin-bottom: 4mm !important;
    background-color: white;
    font-weight: bold !important;
    color: black !important;
  }
  .modal__print-qr-qr-content-ud {
    font-size: 6.8mm !important;
    background-color: white;
    font-weight: bold !important;
    color: black !important;
  }
  .modal__print-qr--small .modal__print-qr-qr-title {
    font-size: 6mm !important;
    margin-bottom: -1mm !important;
    width: 80mm !important;
  }
  .modal__print-qr--small .modal__print-qr-qr-title-ud {
    font-size: 4.5mm !important;
    margin-top: -2mm !important;
  }
  .modal__print-qr--small div[id^=generated-qr-code] canvas {
    width: 80mm !important;
  }
  .modal__print-qr--square div[id^=generated-qr-code] {
    margin-top: -5mm !important;
  }
  .modal__print-qr--square div[id^=generated-qr-code] canvas {
    width: 70mm !important;
  }
  .modal__print-qr--square .modal__print-qr-qr-title-square {
    font-size: 6mm !important;
  }
  .modal__print-qr--square .modal__print-qr-qr-square-icon {
    margin-top: 6mm !important;
  }
  .modal__print-qr--square .modal__print-qr-qr-square-icon svg {
    width: 15mm !important;
    height: 15mm !important;
  }
  .modal__print-qr--square .modal__print-qr-qr-content-square {
    font-size: 5mm !important;
    max-height: 5.2mm !important;
    line-height: 1.15 !important;
    font-weight: 600 !important;
  }
  .modal__print-qr--square .modal__print-qr-qr-border {
    padding: 0 18mm !important;
    border-width: 1.5mm !important;
  }
  .modal__print-qr--square .modal__print-qr-qr-number-ud-number {
    font-size: 14mm !important;
  }
  .modal__print-qr--square .modal__print-qr-qr-number-ud {
    width: 30mm !important;
    margin-bottom: -6mm !important;
    font-weight: 600 !important;
  }
  .modal__print-qr--vertical-rectangle .modal__print-qr-qr-content {
    width: 80mm !important;
  }
  .modal__print-qr--vertical-rectangle .modal__print-qr-qr-content-ud {
    font-size: 4.5mm !important;
  }
  .modal__print-qr--vertical-rectangle .modal__print-qr-qr-title-ud {
    width: 75mm !important;
    padding: 0 2mm !important;
    font-size: 3.5mm !important;
    margin-top: -3mm !important;
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.printer {
  color: #323434;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.5px;
  font-weight: 400;
}
.printer--flex {
  display: flex !important;
  flex-wrap: wrap;
}
.printer--center-vertical {
  align-items: center;
}
.printer--space-between {
  justify-content: space-between;
}
.printer--gap-5 {
  gap: 5px;
}
.printer--mt-15 {
  margin-top: 15px !important;
}
.printer--pt-15 {
  padding-top: 15px !important;
}
.printer--text-right {
  text-align: right;
}
.printer--disabled {
  opacity: 0.5;
  pointer-events: none;
}
.printer__title {
  font-size: 24px;
  margin-bottom: 15px;
}
.printer__wrapper {
  width: 1440px;
  max-width: 100%;
  margin: auto;
  padding: 0 64px;
  height: 100%;
}
.printer__form-wrap {
  border: 1px dashed #d8d8d8;
  padding: 12px;
  border-radius: 4px;
  background: #fdf9f6;
  position: relative;
}
.printer__form-group {
  margin-bottom: 15px;
  width: 100%;
  flex: 0 0 100%;
}
.printer__form-group-group {
  display: flex;
  overflow: hidden;
  width: 100%;
  flex: 0 0 100%;
}
.printer__form-group-group-input {
  transition: all 0.3s ease;
  width: 100%;
  flex: 0 0 100%;
}
.printer__form-group-group-input input {
  width: calc((98% - 158px) / 2);
  flex: 0 0 calc((98% - 158px) / 2);
}
.printer__form-group--active .printer__form-remove {
  display: block;
}
.printer__form-group--active .printer__form-group-group-input {
  width: calc(100% - 43px);
  flex: 0 0 calc(100% - 43px);
}
.printer__form-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  border: 1px solid rgba(29, 25, 43, 0.2196078431);
  border-radius: 8px;
  box-sizing: border-box;
  display: block;
  font-size: 14px;
  font-weight: 300;
  line-height: 1em;
  padding: 12px 15px;
  position: relative;
  resize: none;
  transition: all 0.15s;
  z-index: 1;
  text-align: left;
  width: 100%;
  flex: 0 0 100%;
}
.printer__form-input:focus {
  border-color: var(--color-main);
  outline: none;
}
.printer__form-remove {
  line-height: 0;
  display: none;
  padding: 4px;
  background: var(--color-main-sub);
  border-radius: 2px;
  border: 1px solid var(--color-main);
  width: 28px;
  flex: 0 0 28px;
}
.printer__form-remove i {
  font-size: 18px;
  color: red;
}
.printer__form-switch {
  gap: 8px;
}
.printer__form-switch label {
  font-size: 14px;
}
.printer__form-switch .ant-switch-checked {
  background-color: var(--color-main);
}
.printer__form-switch--158 {
  width: 158px;
  flex: 0 0 158px;
}
.printer__form-switch--300 {
  width: 300px;
  flex: 0 0 300px;
  max-width: 100%;
}
.printer__form-switch--320 {
  width: 320px;
  flex: 0 0 320px;
  max-width: 100%;
}
.printer__alert-main {
  border: 2px solid red;
  font-size: 14px;
  border-radius: 4px;
  margin-bottom: 15px;
  background: #FFEBEE;
  font-weight: 500;
  width: 100%;
  padding: 10px;
}
.printer__alert-main p {
  margin: 0;
}
.printer__alert {
  position: fixed;
  top: -100px;
  right: 10px;
  padding: 10px;
  border: 2px solid red;
  font-size: 14px;
  border-radius: 4px;
  z-index: 9999;
  background: #FFEBEE;
  font-weight: 500;
  max-width: 300px;
  transition: all 0.3s ease;
}
.printer__alert.--show {
  top: 30px;
}
.printer__alert p {
  margin: 0;
}
.printer__spinner {
  border: 2px solid #f3f3f3;
  border-top: 2px solid var(--color-main);
  border-radius: 50%;
  display: block;
  width: 20px;
  height: 20px;
  margin: auto;
  animation: spinner 1s linear infinite;
  -moz-animation: spinner 1s linear infinite;
  -webkit-animation: spinner 1s linear infinite;
  -o-animation: spinner 1s linear infinite;
}
.printer__form-add {
  position: relative;
  line-height: 0;
  left: 50%;
  bottom: 0px;
  color: var(--color-main);
  display: inline-block;
  transform: translateX(-50%);
  margin: auto;
  padding: 5px;
  background: var(--color-main-sub);
  border-radius: 50%;
  margin-bottom: 15px;
}
.printer__btn {
  height: 48px;
  line-height: 48px;
  padding: 0 16px;
  display: inline-block;
  font-size: 14px;
  min-width: 150px;
  background-color: var(--color-main);
  color: white !important;
  border-radius: 8px;
  text-align: center;
  transition: all 0.2s ease;
}
.printer__btn:hover {
  transform: scale(1.02);
}
.printer--flex-49 {
  width: 49% !important;
  flex: 0 0 49% !important;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
.drawer__layer {
  position: fixed;
  z-index: 31;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5294117647);
  width: 100%;
}
.drawer__content {
  position: fixed;
  z-index: 1061;
  height: 100%;
  right: 0;
  top: 0;
  background-color: white;
  width: 50%;
  overflow-y: scroll;
  animation: slideIn 0.3s ease forwards;
}

.wrapper {
  padding: 12px;
}

.-border-right {
  border-right: 1px solid #d8d8d8;
}

#admin-category-app .menu-products {
  color: #323434;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.5px;
  font-weight: 400;
  font-family: "Poppins", sans-serif !important;
}
#admin-category-app .menu-products input,
#admin-category-app .menu-products textarea {
  font-family: "Poppins", sans-serif !important;
}
#admin-category-app .menu-products .menu-content .menu-tabs .menu-tabs-header {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
  overflow-x: scroll;
  white-space: nowrap;
  scroll-behavior: smooth;
  box-shadow: 0 0.25rem 1.25rem rgba(86, 118, 159, 0.12);
}
#admin-category-app .menu-products .menu-content .menu-tabs .menu-tabs-header::-webkit-scrollbar {
  background-color: transparent;
  display: none;
}
#admin-category-app .menu-products .menu-content .menu-tabs .menu-tabs-header::-webkit-scrollbar-thumb {
  background-color: transparent;
}
#admin-category-app .menu-products .menu-content .menu-tabs .menu-tabs-header::-webkit-scrollbar-track {
  background-color: transparent;
}
#admin-category-app .menu-products .menu-content .menu-tabs .tab {
  padding: 12px 20px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 16px;
  color: #323434;
  position: relative;
  text-decoration: none;
}
#admin-category-app .menu-products .menu-content .menu-tabs .tab.-active {
  color: var(--color-main);
  font-weight: 500;
}
#admin-category-app .menu-products .menu-content .menu-tabs .tab.-active:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-main);
}
#admin-category-app .menu-products .menu-content .menu-tabs .tab:hover {
  color: var(--color-main);
}
#admin-category-app .menu-products .category-list .category-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
  margin-bottom: 10px;
}
#admin-category-app .menu-products .category-list .search-container-mobile {
  display: none;
}
#admin-category-app .menu-products .category-list .product-search {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
#admin-category-app .menu-products .category-list .product-search-input {
  position: relative;
}
#admin-category-app .menu-products .category-list .product-search-input input {
  width: 100%;
  background-color: #d8d8d8;
  cursor: pointer;
  opacity: unset;
  z-index: 1;
  min-height: 24px;
  appearance: none;
  background-clip: padding-box;
  border: 0;
  border-radius: 9999px;
  box-shadow: inset 0 0 0 1px transparent;
  caret-color: var(--color-main);
  padding: 5px 20px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  line-height: 22px;
  font-size: 14px;
}
#admin-category-app .menu-products .category-list .product-search-input input:hover {
  box-shadow: inset 0 0 0 1px #dbdbdb;
}
#admin-category-app .menu-products .category-list .product-search-input input:focus-visible {
  box-shadow: inset 0 0 0 1px transparent, 0 0 0 2px var(--color-second), 0 0 0 4px var(--color-main);
  outline: 0;
}
#admin-category-app .menu-products .category-list .product-search-clear {
  position: absolute;
  right: 12px;
  top: 55%;
  transform: translateY(-45%);
  cursor: pointer;
}
#admin-category-app .menu-products .category-list .product-search-clear svg {
  fill: #323434;
  width: 20px;
  height: 20px;
}
#admin-category-app .menu-products .category-list .product-search-filter {
  width: 35px;
  height: 35px;
  cursor: pointer;
  position: relative;
}
#admin-category-app .menu-products .category-list .product-search-filter .dropdown {
  position: absolute;
  z-index: 4;
  cursor: pointer;
  width: 230px;
  padding: 12px;
  background: #ffffff;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.16);
  right: 0;
  top: 40px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#admin-category-app .menu-products .category-list .product-search-filter .dropdown.-active {
  opacity: 1;
  pointer-events: initial;
}
#admin-category-app .menu-products .category-list .category-search {
  position: relative;
}
#admin-category-app .menu-products .category-list .category-search input {
  width: 100%;
  background-color: #d8d8d8;
  cursor: pointer;
  opacity: unset;
  z-index: 1;
  min-height: 24px;
  appearance: none;
  background-clip: padding-box;
  border: 0;
  border-radius: 9999px;
  box-shadow: inset 0 0 0 1px transparent;
  caret-color: var(--color-main);
  padding: 5px 20px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  line-height: 22px;
  font-size: 14px;
}
#admin-category-app .menu-products .category-list .category-search input:hover {
  box-shadow: inset 0 0 0 1px #dbdbdb;
}
#admin-category-app .menu-products .category-list .category-search input:focus-visible {
  box-shadow: inset 0 0 0 1px transparent, 0 0 0 2px var(--color-second), 0 0 0 4px var(--color-main);
  outline: 0;
}
#admin-category-app .menu-products .category-list .category-search-clear {
  position: absolute;
  right: 12px;
  top: 55%;
  transform: translateY(-45%);
  cursor: pointer;
}
#admin-category-app .menu-products .category-list .category-search-clear svg {
  fill: #323434;
  width: 20px;
  height: 20px;
}
#admin-category-app .menu-products .category-list .category-search-mobile {
  display: none;
}
#admin-category-app .menu-products .category-list .scroll-button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: white;
  color: var(--color-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1607843137);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#admin-category-app .menu-products .category-list .scroll-button:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
#admin-category-app .menu-products .category-list .scroll-button svg {
  fill: currentColor;
  width: 20px;
  height: 20px;
}
#admin-category-app .menu-products .category-list .category-header {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
#admin-category-app .menu-products .category-list .category-header__items {
  overflow-x: scroll;
  white-space: nowrap;
  scroll-behavior: smooth;
  display: flex;
  gap: 10px;
  flex: 1;
}
#admin-category-app .menu-products .category-list .category-header__items::-webkit-scrollbar {
  background-color: transparent;
  display: none;
}
#admin-category-app .menu-products .category-list .category-header__items::-webkit-scrollbar-thumb {
  background-color: transparent;
}
#admin-category-app .menu-products .category-list .category-header__items::-webkit-scrollbar-track {
  background-color: transparent;
}
#admin-category-app .menu-products .category-list .category-header__items .item {
  color: #323434;
  padding: 10px 12px;
  border-radius: 5px;
  font-weight: 500;
  border: 2px dashed var(--color-main-sub);
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#admin-category-app .menu-products .category-list .category-header__items .item:hover, #admin-category-app .menu-products .category-list .category-header__items .item.-active {
  border-color: var(--color-main);
  border-style: solid;
}
#admin-category-app .menu-products .category-list .category-header__items .item.-inactive {
  opacity: 1;
  color: #f44336;
}
#admin-category-app .menu-products .category-list .category-header__items .item svg {
  width: 100%;
  height: 100%;
}
#admin-category-app .menu-products .category-list .category-header__items .item-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
#admin-category-app .menu-products .category-list .category-header__items .item .icon {
  width: 20px;
  height: 20px;
}
#admin-category-app .menu-products .category-list .subcategories-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
#admin-category-app .menu-products .category-list .subcategories-container .subcategories {
  overflow-x: scroll;
  white-space: nowrap;
  scroll-behavior: smooth;
  display: flex;
  gap: 10px;
  flex: 1;
}
#admin-category-app .menu-products .category-list .subcategories-container .subcategories::-webkit-scrollbar {
  background-color: transparent;
  display: none;
}
#admin-category-app .menu-products .category-list .subcategories-container .subcategories::-webkit-scrollbar-thumb {
  background-color: transparent;
}
#admin-category-app .menu-products .category-list .subcategories-container .subcategories::-webkit-scrollbar-track {
  background-color: transparent;
}
#admin-category-app .menu-products .category-list .subcategories-container .subcategories-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 5px;
  border: 2px dashed var(--color-main-sub);
  cursor: pointer;
}
#admin-category-app .menu-products .category-list .subcategories-container .subcategories-item.-active, #admin-category-app .menu-products .category-list .subcategories-container .subcategories-item:hover {
  border-color: var(--color-main);
  border-style: solid;
}
#admin-category-app .menu-products .category-list .subcategories-container .subcategories-item .icon {
  width: 20px;
  height: 20px;
}
#admin-category-app .menu-products .category-list .subcategories-container .subcategories-item .icon svg {
  width: 100%;
  height: 100%;
}
#admin-category-app .menu-products .category-list .category-content__products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
#admin-category-app .menu-products .category-list .category-content__products-item {
  border: 1px solid transparent;
  padding: 10px;
  border-radius: 12px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  box-shadow: 0 0.25rem 1.25rem rgba(86, 118, 159, 0.12);
  background-color: white;
  position: relative;
  display: flex;
  gap: 12px;
}
#admin-category-app .menu-products .category-list .category-content__products-item:hover {
  border-color: #6d6d6d;
}
#admin-category-app .menu-products .category-list .category-content__products-item--info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  width: calc(100% - 122px);
  flex: 0 0 calc(100% - 122px);
}
#admin-category-app .menu-products .category-list .category-content__products-item--info .name {
  line-height: 24px;
  font-size: 16px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: fit-content;
}
#admin-category-app .menu-products .category-list .category-content__products-item--info .prices {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
#admin-category-app .menu-products .category-list .category-content__products-item--info .prices .price-item {
  display: flex;
  align-items: center;
  gap: 2px;
  line-height: 1;
}
#admin-category-app .menu-products .category-list .category-content__products-item--info .prices .price-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
#admin-category-app .menu-products .category-list .category-content__products-item--info .prices .price-item__price {
  font-size: 18px;
  font-weight: 400;
  color: #323434;
  display: flex;
  align-items: center;
}
#admin-category-app .menu-products .category-list .category-content__products-item--info .prices .price-item__price--discount {
  color: #f44336;
  margin-left: 2px;
  font-size: 16px;
}
#admin-category-app .menu-products .category-list .category-content__products-item--info .description {
  color: #6d6d6d;
  font-size: 14px;
  line-height: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
#admin-category-app .menu-products .category-list .category-content__products-item--info .action-icon {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
#admin-category-app .menu-products .category-list .category-content__products-item--info .action-icon span {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#admin-category-app .menu-products .category-list .category-content__products-item--info .action-icon .active-icon.-active svg,
#admin-category-app .menu-products .category-list .category-content__products-item--info .action-icon .buyable-icon.-active svg,
#admin-category-app .menu-products .category-list .category-content__products-item--info .action-icon .print-icon.-active svg {
  fill: #29b173;
}
#admin-category-app .menu-products .category-list .category-content__products-item--info .action-icon .from-price-icon.-active svg,
#admin-category-app .menu-products .category-list .category-content__products-item--info .action-icon .preparation-icon.-active svg,
#admin-category-app .menu-products .category-list .category-content__products-item--info .action-icon .allergy-icon.-active svg,
#admin-category-app .menu-products .category-list .category-content__products-item--info .action-icon .popular-icon.-active svg {
  fill: var(--color-main);
}
#admin-category-app .menu-products .category-list .category-content__products-item--image {
  width: 112px;
  flex: 0 0 112px;
  height: 112px;
  line-height: 0;
  position: relative;
}
#admin-category-app .menu-products .category-list .category-content__products-item--image img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 8px;
}
#admin-category-app .menu-products .category-list .category-content__products-item--image--icon {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6392156863);
  border-radius: 0 0 8px 8px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 5px;
}
#admin-category-app .menu-products .language-switcher {
  display: flex;
  gap: 5px;
  font-size: 14px;
  margin-bottom: 15px;
}
#admin-category-app .menu-products .language-switcher span {
  cursor: pointer;
}
#admin-category-app .menu-products .language-switcher span img {
  width: 30px;
  height: 20px;
  object-fit: cover;
}
#admin-category-app .menu-products .product-form .sort-order-group__title {
  font-size: 15px;
  font-weight: bold;
}
#admin-category-app .menu-products .product-form .sort-order-group__items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
#admin-category-app .menu-products .product-form .sort-order-group__item {
  font-size: 14px;
  font-weight: 600;
  padding: 5px 10px;
  background-color: var(--color-main);
  border-radius: 5px;
  cursor: grab;
  color: #ffffff;
  user-select: none;
  transition: background-color 0.2s ease;
}
#admin-category-app .menu-products .product-form .sort-option-group__title {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 0;
}
#admin-category-app .menu-products .product-form .sort-option-group__items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
#admin-category-app .menu-products .product-form .sort-option-group__item-container {
  font-size: 14px;
  font-weight: 600;
  padding: 5px 10px;
  background-color: var(--color-main);
  border-radius: 5px;
  cursor: grab;
  color: #ffffff;
  user-select: none;
  transition: background-color 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#admin-category-app .menu-products .product-form .sort-option-group__item-container.--not-required {
  background-color: #79747e;
}
#admin-category-app .menu-products .product-form .sort-option-group__item-container.--duplicate {
  background-color: #f44336;
}
#admin-category-app .menu-products .product-form .sort-option-group__item-title {
  font-size: 12px;
  font-weight: 400;
  text-transform: capitalize;
}
#admin-category-app .menu-products .product-form .drop-over-leftward {
  border-left: 2px dashed red;
}
#admin-category-app .menu-products .product-form .drop-over-rightward {
  border-right: 2px dashed red;
}
#admin-category-app .menu-products .product-form .product-image-group {
  margin-top: 49px;
}
#admin-category-app .menu-products .product-form .product-image-group .product-image-card {
  width: 100%;
  margin: 0 auto;
}
#admin-category-app .menu-products .product-form .ant-upload.ant-upload-drag .ant-upload {
  padding: 10px 12px 0px 12px;
}
#admin-category-app .menu-products .product-form .ant-upload.ant-upload-drag p.ant-upload-drag-icon {
  margin-bottom: 10px;
}
#admin-category-app .menu-products .product-form .ant-upload.ant-upload-drag p.ant-upload-text {
  font-size: 14px;
}
#admin-category-app .menu-products .allergen-list .allergen-actions {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
#admin-category-app .menu-products .allergen-list-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
#admin-category-app .menu-products .allergen-list-item {
  padding: 10px;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
}
#admin-category-app .menu-products .allergen-list-item:hover {
  background-color: var(--color-main-sub);
}

.drawer-form__header {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
}
.drawer-form__header-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.drawer-form__header-actions {
  display: flex;
  gap: 5px;
}
.drawer-form__header-actions button {
  font-size: 12px;
}

.form-section {
  margin-bottom: 20px;
}
.form-section__title {
  font-size: 17px;
  font-weight: 600;
}
.form-section .form-group-container {
  display: flex;
  gap: 10px;
}
.form-section .form-group-container .form-group {
  flex: 1;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
}

.toggle-button {
  border: none;
  border-radius: 5px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 90px;
}
.toggle-button:not(.-active) {
  background-color: #f44336;
  color: #ffffff;
}
.toggle-button.-active {
  background-color: #29b173;
  color: #ffffff;
}
.toggle-button:hover {
  opacity: 0.9;
}

.switch-group,
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.switch-group label,
.checkbox-group label {
  cursor: pointer;
}
.switch-group .checkbox,
.checkbox-group .checkbox {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.switch-group .checkbox input[type=checkbox],
.checkbox-group .checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.switch-group .checkbox__box,
.checkbox-group .checkbox__box {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: white;
  border: 2px solid rgba(29, 25, 43, 0.2196078431);
  border-radius: 4px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.switch-group .checkbox__box:after,
.checkbox-group .checkbox__box:after {
  content: "";
  position: absolute;
  display: none;
  left: 8px;
  top: 2px;
  width: 6px;
  height: 13px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.switch-group .checkbox input:checked ~ .checkbox__box,
.checkbox-group .checkbox input:checked ~ .checkbox__box {
  background-color: var(--color-main);
  border-color: var(--color-main);
}
.switch-group .checkbox input:checked ~ .checkbox__box:after,
.checkbox-group .checkbox input:checked ~ .checkbox__box:after {
  display: block;
}
.switch-group .checkbox:hover input ~ .checkbox__box,
.checkbox-group .checkbox:hover input ~ .checkbox__box {
  border-color: var(--color-main);
}

.switch-group .ant-switch-checked {
  background-color: var(--color-main);
}

.form-group {
  margin-bottom: 15px;
}
.form-group__error {
  color: #f44336;
  font-size: 12px;
  margin-top: 4px;
}
.form-group__input {
  position: relative;
}
.form-group__input .form-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  border: 1px solid rgba(29, 25, 43, 0.2196078431);
  border-radius: 8px;
  box-sizing: border-box;
  display: block;
  font-size: 14px;
  font-weight: 300;
  line-height: 1em;
  padding: 12px 15px;
  position: relative;
  resize: none;
  transition: all 0.15s;
  z-index: 1;
  text-align: left;
  width: 100%;
}
.form-group__input .form-input[aria-invalid=true] {
  border-color: #f44336;
}
.form-group__input .form-input select:focus {
  border-color: var(--color-main);
  outline: none;
  box-shadow: 0 0 0 2px rgba(var(--color-main), 0.1);
}
.form-group__input .form-input select:hover {
  border-color: var(--color-main);
}
.form-group__input .form-input select option {
  padding: 12px;
  font-size: 14px;
}
.form-group__input .form-input select option:checked {
  background-color: #cff5ff;
  color: var(--color-main);
}
.form-group__input .form-input:focus {
  outline: none;
}
.form-group__input .form-input:hover {
  border-color: var(--color-main);
}
.form-group__input .form-input:focus + label,
.form-group__input .form-input:not(:placeholder-shown) + label {
  top: 0;
  font-size: 12px;
}
.form-group__input textarea.form-input + label {
  top: 12px;
  transform: none;
}
.form-group__input textarea.form-input:focus + label,
.form-group__input textarea.form-input:not(:placeholder-shown) + label {
  top: -9px;
}
.form-group__input .form-input::placeholder {
  color: transparent;
}
.form-group__input label {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  padding: 0 5px;
  font-size: 14px;
  color: #666;
  transition: all 0.2s ease-in-out;
  pointer-events: none;
  z-index: 2;
}
.form-group .form-select .ant-select-selection:hover {
  border-color: var(--color-main);
}
.form-group .form-select .ant-select-selection--single {
  height: 47px;
}
.form-group .form-select .ant-select-selection--single .ant-select-selection__rendered {
  line-height: 47px;
}
.form-group .form-select label {
  top: 0;
  font-size: 12px;
}
.form-group .form-select .react-select-container .react-select__control .react-select__value-container {
  padding: 5px;
}
.form-group .form-select .react-select-container .react-select__menu {
  z-index: 4;
}

.modal-product-image-croppie .ant-modal-content,
.modal-product-image-croppie .ant-modal-body {
  height: 100%;
}

.modal-product-image-croppie .ant-modal-body {
  padding: 0;
}

.submit-croppie,
.rotate-croppie {
  width: 44px;
  display: inline-block;
  background: #dedede;
  border-radius: 5px;
  padding: 4px 10px;
  color: black;
  flex: 0 0 44px;
  line-height: 0;
}

.wrap-submit-croppie {
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 100%;
  background: white;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
}

.modal-product-image-croppie .ant-modal-close {
  color: black;
  opacity: 1;
  border-radius: 50%;
  top: -10px;
  right: -10px;
  background: white;
}

.modal-product-image-croppie .ant-modal-close span {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.ant-upload-list-item-uploading {
  display: none;
}

.slider-croppie input {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 1;
}

.slider-croppie input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 23px;
  height: 24px;
  border-radius: 50%;
  background: black;
  cursor: pointer;
}

.slider-croppie input::-moz-range-thumb {
  width: 23px;
  height: 24px;
  border: 0;
  border-radius: 50%;
  background: black;
  cursor: pointer;
}

.slider-croppie {
  flex: 0 0 calc(100% - 108px);
  width: calc(100% - 108px);
}

main {
  position: relative;
  z-index: 5;
}

.sidebar__toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  cursor: pointer;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 22;
}

button.adyen-checkout__applepay__button {
  -webkit-appearance: -apple-pay-button !important;
}

.menu {
  color: #fff;
  text-align: center;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 700px), screen and (max-height: 650px) {
  .menu {
    width: 100%;
  }
}
.menu a {
  color: #606060;
  text-decoration: none;
}
.menu .menu-category-list {
  position: fixed;
  left: 10px;
  width: 22%;
  z-index: 2;
}
.menu .menu-category-list .allergen-filter-title {
  color: rgb(255, 255, 255);
  cursor: pointer;
}
.menu .menu-category-list h3 {
  font-size: 14px;
}
.menu .menu-category-list .allergen-filters {
  min-width: 100px;
  margin-right: 10px;
  margin-bottom: 10px;
}
.menu .menu-category-list .allergen-filters.ant-switch {
  background-color: rgba(108, 119, 125, 0.69);
}
.menu .menu-category-list .allergen-filters.ant-switch.ant-switch-checked {
  background-color: #1890ff;
}
.menu .menu-category-list .floating-menu {
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 12px;
  margin-bottom: 10px;
  padding: 10px;
}
.menu .menu-category-list .floating-menu i {
  position: absolute;
  font-size: 20px;
  top: 8px;
  right: 0px;
}
.menu .menu-category-list div h2 {
  color: #fff;
  cursor: pointer;
  height: 40px;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 0px;
  position: relative;
}
.menu .menu-category-list div h2:hover {
  font-weight: bold;
}
@media screen and (max-width: 700px), screen and (max-height: 650px) {
  .menu .menu-category-list {
    position: sticky;
    left: 0px;
    width: 100%;
    top: 0px;
  }
  .menu .menu-category-list .floating-menu {
    border-radius: 0px;
    background-color: #282828;
  }
  .menu .menu-category-list .floating-menu#categories-list-container {
    display: none;
  }
  .menu .menu-category-list .floating-menu .allergen-filter-list {
    max-height: 250px;
    overflow: scroll;
  }
}

.menu-categories {
  margin-top: 90px;
  list-style-type: none;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10px 20px;
  border-radius: 12px;
}
@media screen and (max-width: 700px), screen and (max-height: 650px) {
  .menu-categories {
    margin-top: 100px;
    border-radius: 0 0 12px 12px;
  }
}

.menu-category {
  margin: 20px 0px;
  text-align: center;
}
.menu-category:first-child {
  margin: 0px 0px;
}
.menu-category h2.menu-category-title {
  color: #fff;
  margin-bottom: 15px;
  min-height: 39px;
  position: relative;
  text-transform: capitalize;
}
.menu-category h2.menu-category-title:hover {
  font-weight: bold;
  cursor: pointer;
}
.menu-category h2.menu-category-title i.category-collapsing-indicator {
  position: absolute;
  font-size: 20px;
  top: 8px;
  right: 10px;
}
.menu-category h2.menu-category-title p.category-availabilities, .menu-category h2.menu-category-title p.category-description {
  margin-bottom: 10px;
  font-size: 0.83rem;
  color: #29b172;
}
.menu-category h2.menu-category-title.border-bottom {
  border-bottom: 1px solid #fff;
}
.menu-category ul {
  list-style-type: none;
  text-align: left;
  padding: 0px;
}

.responsive-button span.button-icon {
  display: none;
}
@media screen and (max-width: 700px), screen and (max-height: 650px) {
  .responsive-button span.button-icon {
    display: block;
  }
  .responsive-button span.button-caption {
    display: none;
  }
}

.menu-product {
  color: #fff;
  clear: both;
  margin-bottom: 25px;
  padding: 5px;
}
.menu-product .menu-product-info {
  margin-bottom: 10px;
}
.menu-product .menu-product-info .product-info-container {
  position: relative;
  font-size: 16px;
}
.menu-product .menu-product-info .product-info-container .product-info-name {
  font-weight: bold;
  line-height: 36px;
  width: 85%;
  margin-bottom: 5px;
}
@media screen and (max-width: 700px), screen and (max-height: 650px) {
  .menu-product .menu-product-info .product-info-container .product-info-name {
    width: 70%;
  }
}
.menu-product .menu-product-info .product-info-container .product-info-description {
  color: #c5c5c5;
}
.menu-product .menu-product-info .product-info-container .product-info-price {
  font-weight: bold;
  line-height: 36px;
  position: absolute;
  top: 0px;
  right: 0px;
}
.menu-product .menu-product-divider {
  width: 70%;
  margin: auto;
  height: 1px;
  bottom: 0px;
  margin-top: 20px;
  border-bottom: 1px solid #8a8a8a;
}
.menu-product .menu-product-collapsible {
  margin-top: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}
.menu-product .menu-product-collapsible .product-information {
  color: #c5c5c5;
}
.menu-product .active {
  max-height: 400px;
  overflow-y: auto;
}
.menu-product .add-to-cart-button {
  float: right;
}
.menu-product .add-to-cart-button:disabled {
  color: #fff;
}

.cart-container {
  z-index: 1;
}
.cart-container .cart-mobile {
  display: none;
  z-index: 2;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}
.cart-container .cart-mobile .scroll-up-button {
  display: none;
}
@media screen and (max-width: 700px), screen and (max-height: 650px) {
  .cart-container .cart-mobile {
    display: block;
    position: fixed;
    left: 0px;
    bottom: 0px;
    width: 100%;
    background-color: #29b173;
  }
  .cart-container .cart-mobile .scroll-up-button {
    display: block;
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 75px;
    left: 45%;
    z-index: 100;
    font-size: 14px;
  }
  .cart-container .cart-mobile i {
    vertical-align: middle;
  }
}
.cart-container .cart-mobile .cart-mobile-quantity {
  float: left;
  margin-left: 22px;
  text-align: left;
  width: 20%;
}
.cart-container .cart-mobile .cart-mobile-sum {
  float: right;
  margin-right: 22px;
  text-align: right;
  width: 25%;
}
.cart-container .cart {
  display: block;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 12px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  border-color: #e3e3e3;
  width: 22%;
  overflow: auto;
  position: fixed;
  right: 10px;
  text-align: center;
  z-index: 2;
  top: 135px;
}
.cart-container .cart p {
  color: #fff !important;
}
@media screen and (max-width: 700px), screen and (max-height: 650px) {
  .cart-container .cart {
    background-color: rgb(0, 0, 0);
    display: none;
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 60px;
    top: 0px;
    width: 100%;
    border-radius: 0px;
  }
}
.cart-container .cart .cart-top {
  font-weight: bold;
  text-align: left;
  font-size: 20px;
  padding: 5px 20px 5px;
}
.cart-container .cart .cart-top p {
  font-size: 0.83rem;
  margin-top: 5px;
  margin-bottom: 5px;
}
.cart-container .cart .cart-content {
  text-align: left;
  font-size: 0.83rem;
  min-height: 75px;
}
.cart-container .cart .cart-content .cart-item-list {
  margin: 0px;
  padding: 0px 10px;
  list-style: none;
  clear: both;
  overflow-y: scroll;
  max-height: 250px;
}
.cart-container .cart .cart-content .cart-item-list::-webkit-scrollbar {
  -webkit-appearance: none;
  background-color: #c1c1c1;
  border-radius: 11px;
}
.cart-container .cart .cart-content .cart-item-list::-webkit-scrollbar:vertical {
  width: 5px;
}
.cart-container .cart .cart-content .cart-item-list::-webkit-scrollbar-thumb {
  border-radius: 11px;
  background-color: rgba(0, 0, 0, 0.3);
}
.cart-container .cart .cart-content .cart-item-list li {
  margin-bottom: 1rem;
}
.cart-container .cart .cart-content .cart-item-list .cart-item-container {
  cursor: pointer;
  padding-bottom: 3px;
  margin: 0px 4px 0px;
  border-radius: 4px;
  position: relative;
}
.cart-container .cart .cart-content .cart-item-list .cart-item-container:hover {
  background-color: rgba(121, 121, 121, 0.3);
}
.cart-container .cart .cart-content .cart-item-list .cart-item-container .cart-item-info {
  margin-left: 70px;
  font-size: 14px;
  display: flex;
}
.cart-container .cart .cart-content .cart-item-list .cart-item-container .cart-item-info .cart-item-name {
  word-break: break-word;
  flex: 0 1 75%;
  font-weight: bold;
}
.cart-container .cart .cart-content .cart-item-list .cart-item-container .cart-item-info .cart-item-name .editable-cart-item-icon {
  font-size: 12px;
  margin-left: 5px;
}
.cart-container .cart .cart-content .cart-item-list .cart-item-container .cart-item-info .cart-item-name .cart-item-note {
  font-weight: normal;
  font-size: 12px;
}
.cart-container .cart .cart-content .cart-item-list .cart-item-container .cart-item-info .cart-item-sum {
  font-weight: bold;
  text-align: right;
  flex: 1 0;
  white-space: nowrap;
  padding-right: 2px;
}
.cart-container .cart .cart-content .cart-item-list .cart-item-container .cart-item-quantity {
  display: block;
  vertical-align: middle;
  position: absolute;
  width: 65px;
  text-align: center;
}
.cart-container .cart .cart-content .cart-item-list .cart-item-container .cart-item-quantity .increase-button {
  position: absolute;
  right: 0px;
}
.cart-container .cart .cart-content .cart-item-list .cart-item-container .cart-item-quantity .decrease-button {
  position: absolute;
  left: 0px;
}
.cart-container .cart .cart-content .cart-item-list .cart-item-container .cart-item-quantity .item-quantity-info {
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding-top: 1px;
}
.cart-container .cart .cart-content .cart-item-list .cart-item-container .cart-item-quantity i {
  color: #29b173;
  vertical-align: middle;
  font-size: 20px;
  cursor: pointer;
}
.cart-container .cart .cart-content .cart-item-list .cart-item-container .cart-item-quantity i:hover {
  color: #00802b;
}
.cart-container .cart .cart-bottom {
  position: relative;
  margin: 0px 20px 5px;
  text-align: left;
}
.cart-container .cart .cart-bottom .button, .cart-container .cart .cart-bottom .button-success, .cart-container .cart .cart-bottom .button-danger, .cart-container .cart .cart-bottom .button-dark, .cart-container .cart .cart-bottom .button-yellow, .cart-container .cart .cart-bottom .button-purple {
  width: 100%;
}
.cart-container .cart .cart-bottom .button:not(:disabled), .cart-container .cart .cart-bottom .button-success:not(:disabled), .cart-container .cart .cart-bottom .button-danger:not(:disabled), .cart-container .cart .cart-bottom .button-dark:not(:disabled), .cart-container .cart .cart-bottom .button-yellow:not(:disabled), .cart-container .cart .cart-bottom .button-purple:not(:disabled) {
  background-color: #29b173;
}
.cart-container .cart .cart-bottom .total-heading {
  font-weight: bold;
}
.cart-container .cart .cart-bottom .total-sum {
  font-weight: bold;
  float: right;
}

.menu-category-list {
  margin: 0;
}

.cart-line {
  font-weight: bold;
  margin-bottom: 5px;
}

.cart-line-value {
  float: right;
}

.cart-line-divider {
  border-top: solid 1px #fff;
  padding-top: 5px;
}

.cart-line-highlighted {
  font-size: 16px;
}

.cart-delivery-options {
  padding: 10px 20px 0px 20px;
}
.cart-delivery-options .cart-delivery-options-label {
  font-weight: bold;
  text-align: left;
  font-size: 20px;
  margin-bottom: 5px;
}

.pac-item {
  font-size: 14px;
}

.pac-item-selected, .pac-item:hover {
  background-color: #42a5f5;
  color: #fff;
  cursor: pointer;
}

.pac-icon {
  display: none;
}

.pac-container {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.pac-item-query {
  color: #2d2d2d;
  font-size: 15px;
}

.collapsed-list {
  display: none;
}

.categories-list {
  padding-top: 0px;
  max-height: 415px;
  overflow-y: scroll;
}
.categories-list::-webkit-scrollbar {
  -webkit-appearance: none;
  background-color: #c1c1c1;
  border-radius: 11px;
}
.categories-list::-webkit-scrollbar:vertical {
  width: 5px;
}
.categories-list::-webkit-scrollbar-thumb {
  border-radius: 11px;
  background-color: rgba(0, 0, 0, 0.3);
}
.categories-list h3 {
  color: #fff;
  cursor: pointer;
}
.categories-list h3:hover {
  font-weight: bold;
}

.allergen-filter-list button span:hover {
  font-weight: bold;
}

.extra-product-info {
  margin-bottom: 30px;
}
.extra-product-info label {
  width: 100%;
}
.extra-product-info label:hover {
  font-weight: bold;
}
.extra-product-info label > span:not(.ant-radio):not(.ant-checkbox) {
  display: inline-flex;
  width: 90%;
}
.extra-product-info label > span:not(.ant-radio):not(.ant-checkbox) .extra-product-details {
  width: 75%;
  white-space: break-spaces;
}
.extra-product-info .extra-product-price {
  position: absolute;
  right: 10px;
  top: 0px;
}

.quantity-adjustment-section {
  display: flex;
  margin-top: 5px;
  float: left;
  vertical-align: middle;
  font-size: 18px;
  line-height: 28px;
}
.quantity-adjustment-section span {
  width: 30px;
  text-align: center;
  font-weight: bold;
}
.quantity-adjustment-section .quantity-adjustment-button {
  cursor: pointer;
  font-size: 28px;
}
.quantity-adjustment-section #decrement-quantity-button {
  color: #5e5c5c;
}
.quantity-adjustment-section #increment-quantity-button {
  color: #2196f3;
}

.product-options-group {
  width: 100%;
}

.product-option {
  margin-right: 0px;
  margin-bottom: 30px;
}
.product-option label {
  width: 100%;
}
.product-option label:hover {
  font-weight: bold;
}
.product-option label:hover span span.ant-radio-inner {
  border-color: #1890ff;
}
.product-option label span .product-option-price {
  position: absolute;
  right: 10px;
  top: 0px;
}
.product-option label > span:not(.ant-radio):not(.ant-checkbox) {
  display: inline-flex;
  width: 90%;
}
.product-option label > span:not(.ant-radio):not(.ant-checkbox) .product-option-details {
  width: 75%;
  white-space: break-spaces;
}

.product-option-header {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.product-option-title {
  margin-bottom: 15px;
}

.email-option-input {
  width: 179px !important;
}

.missing-option-warning, .invalid-value-warning {
  color: #f44336;
}

.custom-free-option {
  width: 90% !important;
}

.ant-divider-horizontal {
  margin: 14px 0 !important;
}

label.cart-delivery-option.ant-radio-button-wrapper.ant-radio-button-wrapper-checked {
  background-color: #29b172 !important;
  border-color: #29b172 !important;
  -webkit-box-shadow: -1px 0 0 0 #29b172 !important;
  box-shadow: -1px 0 0 0 #29b172 !important;
}

label.cart-delivery-option.ant-radio-button-wrapper {
  background: transparent;
  color: #fff;
}
label.cart-delivery-option.ant-radio-button-wrapper:hover {
  color: #29b172 !important;
  background: rgba(121, 121, 121, 0.3);
  border-color: #29b172;
}
label.cart-delivery-option.ant-radio-button-wrapper.ant-radio-button-wrapper-checked {
  color: white !important;
}

.delivery-address-selection-button, .discount-input-button {
  margin-top: 10px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
  background: transparent;
  border: 1px solid white;
  cursor: pointer;
  line-height: 1.499;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  white-space: nowrap;
  padding: 0 15px;
  font-size: 14px;
  border-radius: 4px;
  height: 32px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  position: relative;
}
.delivery-address-selection-button:hover, .discount-input-button:hover {
  background-color: rgba(121, 121, 121, 0.3);
  border-color: #29b172;
  color: #29b172;
}

.option-quantity-control-section {
  display: inline-flex;
  width: 80px;
  position: absolute;
  right: 10px;
  top: -4px;
  margin: 0px;
  font-size: 16px;
  border: 1px solid #dad8d8;
  border-radius: 5px;
}
.option-quantity-control-section .quantity-details {
  font-size: 14px;
  line-height: 28px;
  width: 30px;
  text-align: center;
  font-weight: bold;
}
.option-quantity-control-section i.quantity-buttons {
  line-height: 28px;
  font-size: 23px;
  vertical-align: middle;
}
.option-quantity-control-section i.quantity-buttons:hover {
  background: #eaeaea;
}
.option-quantity-control-section i.quantity-buttons.decrease-quantity-button {
  border-right: 1px solid #dad8d8;
  border-radius: 4px 0px 0px 4px;
}
.option-quantity-control-section i.quantity-buttons.increase-quantity-button {
  border-left: 1px solid #dad8d8;
  border-radius: 0px 4px 4px 0px;
  color: #2196f3;
}

.customizable-quantity-option {
  margin-bottom: 30px;
}
.customizable-quantity-option.costly-quantity-option {
  margin-bottom: 45px;
}

.costly-quantity-option label span span.option-quantity-control-section {
  top: 20px;
}

.option-quantity-price-info {
  display: inline-flex;
  position: absolute;
  right: 10px;
  top: -5px;
  margin: 0px;
}

.allergi-headline-modal {
  color: #262626;
}

.allergi-warning-modal {
  color: #f44336;
  margin-left: 5px;
}

.show-all-variants-btn {
  font-size: 16px;
  cursor: pointer;
  color: #2196f3;
  text-align: center;
}
.show-all-variants-btn i {
  margin-left: 10px;
  font-size: 14px;
}

.product-info-button, .add-to-cart-button {
  background: #fff;
  color: #393939;
  font-weight: bold;
}
.product-info-button:hover, .add-to-cart-button:hover {
  background-color: #2196f3;
  color: #fff;
}

.checkout-btn {
  margin-top: 5px;
  font-weight: bold;
}

.checkout-error-modal .ant-modal-body i {
  color: rgb(245, 34, 45);
  font-size: 22px;
  margin-right: 16px;
  float: left;
}
.checkout-error-modal .ant-modal-body .checkout-error-modal-message {
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  display: block;
  overflow: hidden;
}
.checkout-error-modal .ant-modal-body .checkout-error-modal-description {
  margin-left: 38px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
  margin-top: 8px;
}

#num-cart-items-icon {
  position: absolute;
  left: 11px;
  top: 0px;
  width: 22px;
  height: 22px;
  font-size: 13px;
  text-align: center;
  background: #fff;
  border-radius: 50%;
  color: #424242;
  font-weight: bold;
  line-height: 20px;
  border: 1px solid #424242;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: none;
}
#num-cart-items-icon.visible-num-cart-items {
  display: block;
}

#menu-loader {
  display: none;
  position: absolute;
  width: 200px;
  margin: auto;
  left: 0;
  right: 0;
  top: 250px;
  z-index: 3;
}
#menu-loader .spinner {
  width: 100px;
  height: 100px;
}

.item-note-remaining-character {
  text-align: right;
  margin-top: 5px;
  margin-bottom: 5px;
}

.base-coupon {
  height: 210px;
  position: relative;
  background: radial-gradient(circle at right top, transparent 10px, #616161 0%, #243b51 100%) top left/80% 51% no-repeat, radial-gradient(circle at right bottom, transparent 10px, #616161 0%, #243b51 100%) bottom left/80% 51% no-repeat, radial-gradient(circle at left top, transparent 10px, #616161 0%, #243b51 300%) top right/20% 51% no-repeat, radial-gradient(circle at left bottom, transparent 10px, #616161 0%, #243b51 300%) bottom right/20% 51% no-repeat;
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.3));
  border-radius: 10px;
  color: #f0f0f0;
}
.base-coupon:before {
  content: "";
  height: 180px;
  border: 1px dashed #ababab;
  position: absolute;
  left: 80%;
  top: 0;
  bottom: 0;
  margin: auto;
}
.base-coupon .coupon-information {
  width: 80%;
  float: left;
  padding: 10px 15px;
  max-height: 210px;
  overflow: hidden;
}
.base-coupon .coupon-information .coupon-name {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
  max-height: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.base-coupon .coupon-amount {
  width: 20%;
  height: 210px;
  float: left;
  margin: auto;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
}
.base-coupon .coupon-delete {
  position: absolute;
  top: -15px;
  left: -15px;
}
.base-coupon .coupon-code {
  position: absolute;
  bottom: 0px;
  left: -1px;
  padding: 5px 15px;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  border-radius: 0px 10px;
  background-color: #f4f4f4;
  color: #555555;
}
.base-coupon .coupon-inapplicable-marker {
  position: absolute;
  background: rgba(245, 245, 245, 0.77);
  top: 0px;
  right: 0px;
  font-size: 15px;
  padding: 5px;
  border-radius: 0px 9px;
  color: #c3242b;
  font-weight: bold;
}
@media screen and (max-width: 700px), screen and (max-height: 650px) {
  .base-coupon {
    height: 230px;
  }
  .base-coupon:before {
    height: 200px;
  }
  .base-coupon .coupon-information {
    max-height: 230px;
  }
  .base-coupon .coupon-amount {
    height: 230px;
  }
}

.base-voucher {
  height: 210px;
  position: relative;
  background: radial-gradient(circle at right top, transparent 10px, #616161 0%, #243b51 100%) top left/80% 51% no-repeat, radial-gradient(circle at right bottom, transparent 10px, #616161 0%, #243b51 100%) bottom left/80% 51% no-repeat, radial-gradient(circle at left top, transparent 10px, #616161 0%, #243b51 300%) top right/20% 51% no-repeat, radial-gradient(circle at left bottom, transparent 10px, #616161 0%, #243b51 300%) bottom right/20% 51% no-repeat;
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.3));
  border-radius: 10px;
  color: #f0f0f0;
  margin-bottom: 25px;
}
.base-voucher:before {
  content: "";
  height: 180px;
  border: 1px dashed #ababab;
  position: absolute;
  left: 80%;
  top: 0;
  bottom: 0;
  margin: auto;
}
.base-voucher .voucher-left {
  background-image: url(https://static.uviawebb.se/gift-card-image.png);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: 50% 50%;
  height: 210px;
  width: 80%;
  float: left;
}
.base-voucher .voucher-left .voucher-information {
  padding: 10px 15px;
  max-height: 210px;
  overflow: hidden;
}
.base-voucher .voucher-left .voucher-information .voucher-available-balance {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
  max-height: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.base-voucher .voucher-amount {
  width: 20%;
  height: 210px;
  float: left;
  margin: auto;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  padding: 5px;
}
.base-voucher .voucher-amount p {
  font-size: 15px;
  font-weight: bold;
}
.base-voucher .voucher-delete {
  position: absolute;
  top: -15px;
  left: -15px;
}
.base-voucher .voucher-code {
  position: absolute;
  bottom: 0px;
  left: -1px;
  padding: 5px 15px;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  border-radius: 0px 10px;
  background-color: #f4f4f4;
  color: #555555;
}
@media screen and (max-width: 700px), screen and (max-height: 650px) {
  .base-voucher {
    height: 230px;
    background: radial-gradient(circle at right top, transparent 10px, #616161 0%, #243b51 100%) top left/60% 51% no-repeat, radial-gradient(circle at right bottom, transparent 10px, #616161 0%, #243b51 100%) bottom left/60% 51% no-repeat, radial-gradient(circle at left top, transparent 10px, #616161 0%, #243b51 300%) top right/40% 51% no-repeat, radial-gradient(circle at left bottom, transparent 10px, #616161 0%, #243b51 300%) bottom right/40% 51% no-repeat;
  }
  .base-voucher:before {
    height: 200px;
    left: 60%;
  }
  .base-voucher .voucher-left {
    width: 60%;
  }
  .base-voucher .voucher-left .voucher-information {
    max-height: 230px;
  }
  .base-voucher .voucher-amount {
    height: 230px;
    width: 40%;
  }
}

.table.checkout-items-table thead tr th {
  font-weight: bold;
}

.ant-calendar-input-wrap {
  display: none;
}

.tip-selection-container {
  text-align: center;
  margin-bottom: 10px;
}
.tip-selection-container .tip-headline {
  margin-bottom: 10px;
}
.tip-selection-container button {
  margin-right: 5px;
  font-weight: bold;
}
.tip-selection-container .tip-buttons {
  background-color: transparent;
  color: #fff;
}
.tip-selection-container .tip-buttons:hover, .tip-selection-container .tip-buttons:focus {
  background-color: transparent;
  color: #29b173;
  border-color: #29b173;
}
.tip-selection-container .tip-button-selected {
  background-color: #29b173;
  color: #fff;
  border-color: #29b173;
}
.tip-selection-container .tip-button-selected:hover, .tip-selection-container .tip-button-selected:focus {
  background-color: #29b173;
  color: #fff;
  border-color: #29b173;
}
.tip-selection-container .tip-fixed-amount-input {
  margin-top: 10px;
  width: 50%;
}
.tip-selection-container .tip-fixed-amount-input input:hover, .tip-selection-container .tip-fixed-amount-input input:focus {
  border-color: #29b173 !important;
}

.subcategories-slider .ant-tabs-tab {
  font-size: 17px;
  color: #fff;
}
.subcategories-slider .ant-tabs-tab-prev, .subcategories-slider .ant-tabs-tab-next {
  color: #fff;
}
.subcategories-slider .ant-tabs-tab-btn-disabled {
  color: #9a9898;
}
.subcategories-slider .ant-tabs-tab-prev:hover, .subcategories-slider .ant-tabs-tab-next:hover {
  color: #29b173;
}
.subcategories-slider .ant-tabs-nav .ant-tabs-tab:hover {
  color: #29b173;
}
.subcategories-slider .ant-tabs-nav .ant-tabs-tab-active {
  font-weight: bold;
  color: #29b173;
}
.subcategories-slider .ant-tabs-ink-bar {
  background-color: #29b173;
}
.subcategories-slider .ant-tabs-tab-prev-icon-target, .subcategories-slider .ant-tabs-tab-next-icon-target {
  font-size: 28px !important;
}

.admin-sidebar-menu .ant-menu {
  padding: 15px !important;
}
.admin-sidebar-menu .ant-menu .ant-menu-item {
  padding: 0 5px !important;
  width: 100% !important;
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-sidebar-menu .ant-menu .ant-menu-item .admin-left-menu-icon {
  margin-right: 0 !important;
}

.logo-container {
  text-align: center;
  height: auto !important;
}
.logo-container a {
  position: relative !important;
  left: 0 !important;
  top: 0 !important;
  display: inline-block !important;
}

.sidebar {
  position: fixed;
  width: 210px;
  height: 100%;
  overflow-y: auto;
  background-color: white;
  border-right: 1px solid #d8d8d8;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sidebar__logo {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
}
.sidebar__logo a img {
  height: 60px;
}
.sidebar__menu {
  padding: 20px 0;
}
.sidebar__menu .menu-section {
  margin-bottom: 10px;
}
.sidebar__menu .menu-section__title {
  padding: 0 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgb(163, 163, 163);
  margin-bottom: 10px;
}
.sidebar__menu .menu-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar__menu .menu-section ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: #323434;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.sidebar__menu .menu-section ul li a .icon {
  width: 20px;
  height: 20px;
}
.sidebar__menu .menu-section ul li a:hover {
  background-color: var(--color-main-sub);
}
.sidebar__menu .menu-section ul li.active a {
  background-color: var(--color-main-sub);
  color: #ffffff;
  font-weight: 600;
}
.sidebar__menu-anchor {
  color: #323434;
}
.sidebar__menu .active .sidebar__menu-anchor {
  color: var(--color-main);
  font-weight: 500;
}
.sidebar__toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  cursor: pointer;
  position: fixed;
  top: 10px;
  right: 10px;
}
.sidebar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #323434;
  position: relative;
  transition: all 0.3s ease;
}
.sidebar__toggle span:before, .sidebar__toggle span:after {
  content: "";
  right: 0;
  position: absolute;
  width: 24px;
  height: 2px;
  background: #323434;
  transition: all 0.3s ease;
}
.sidebar__toggle span:before {
  top: -6px;
}
.sidebar__toggle span:after {
  bottom: -6px;
}
.sidebar__toggle.active span {
  background: transparent;
}
.sidebar__toggle.active span:before {
  top: 0;
  transform: rotate(45deg);
}
.sidebar__toggle.active span:after {
  bottom: 0;
  transform: rotate(-45deg);
}

@media only screen and (max-width: 1263px) {
  #admin-category-app .menu-products .menu-content .menu-tabs .menu-tabs-header {
    justify-content: center;
    gap: 10px;
  }
  #admin-category-app .menu-products .category-list .category-content__products {
    grid-template-columns: repeat(2, 1fr);
  }
  #admin-category-app .drawer__content {
    width: 65%;
  }
}
@media only screen and (max-width: 959px) {
  .-width-full-959 {
    width: 100% !important;
    flex: 0 0 100% !important;
  }
  .-flex-48-1-959 {
    width: 48% !important;
    flex: 0 0 48% !important;
  }
  .admin-category-assign-group-modal {
    width: 750px !important;
  }
  #admin-category-app .menu-products .drawer__content .product-form .drawer-form__body .product-image-group,
  #admin-category-app .menu-products .drawer__content .category-form .drawer-form__body .product-image-group {
    margin-top: 0px;
  }
  #admin-category-app .menu-products .category-list .product-search-is-not-mobile,
  #admin-category-app .menu-products .category-list .category-search-is-not-mobile {
    display: none;
  }
  #admin-category-app .menu-products .category-list .search-container-mobile {
    display: flex;
    gap: 10px;
    justify-content: end;
    align-items: center;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .admin-container {
    width: 100%;
  }
  .admin-container .admin-header {
    padding-left: 60px;
    position: fixed;
    z-index: 21;
    width: 100%;
    box-sizing: border-box;
  }
  .admin-container .content-wrapper {
    padding-top: 75px;
    margin-top: 0;
  }
  #admin-left-menu .sidebar {
    top: 0;
    left: 0;
    z-index: 999;
    transform: translateX(-100%);
  }
  #admin-left-menu .sidebar__logo a img {
    height: 50px;
  }
  #admin-left-menu .sidebar.mobile-open {
    transform: translateX(0);
  }
  #admin-left-menu .sidebar__toggle {
    display: flex;
  }
  #admin-left-menu .sidebar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #323434;
    position: relative;
    transition: all 0.3s ease;
  }
  #admin-left-menu .sidebar__toggle span:before, #admin-left-menu .sidebar__toggle span:after {
    content: "";
    right: 0;
    position: absolute;
    width: 24px;
    height: 2px;
    background: #323434;
    transition: all 0.3s ease;
  }
  #admin-left-menu .sidebar__toggle span:before {
    top: -6px;
  }
  #admin-left-menu .sidebar__toggle span:after {
    bottom: -6px;
  }
  #admin-left-menu .sidebar__toggle.-active span {
    background: transparent;
  }
  #admin-left-menu .sidebar__toggle.-active span:before {
    top: 0;
    transform: rotate(45deg);
  }
  #admin-left-menu .sidebar__toggle.-active span:after {
    bottom: 0;
    transform: rotate(-45deg);
  }
  #admin-panel {
    margin-left: 0;
    padding-top: 60px;
    width: calc(100% - 30px);
  }
  #admin-allergen {
    padding-top: 60px;
  }
  .admin-category-assign-group-modal {
    width: 650px !important;
  }
  #admin-category-app {
    margin: 0;
    padding: 0;
    max-width: unset;
    width: 100%;
  }
  #admin-category-app .menu-products {
    margin: 0;
    padding-top: 60px;
  }
  #admin-category-app .menu-products .drawer__content .product-form .drawer-form__header-actions,
  #admin-category-app .menu-products .drawer__content .category-form .drawer-form__header-actions,
  #admin-category-app .menu-products .drawer__content .subcategory-form .drawer-form__header-actions {
    flex-wrap: wrap;
    justify-content: end;
  }
  #admin-category-app .menu-products .drawer__content .product-form .drawer-form__header-actions .btn,
  #admin-category-app .menu-products .drawer__content .category-form .drawer-form__header-actions .btn,
  #admin-category-app .menu-products .drawer__content .subcategory-form .drawer-form__header-actions .btn {
    width: 48%;
    flex: 0 0 48%;
  }
  #admin-category-app .menu-products .drawer__content .product-form .drawer-form__body .form-section__title,
  #admin-category-app .menu-products .drawer__content .category-form .drawer-form__body .form-section__title,
  #admin-category-app .menu-products .drawer__content .subcategory-form .drawer-form__body .form-section__title {
    font-size: 15px;
  }
  #admin-category-app .menu-products .drawer__content .product-form .drawer-form__body .category-delivery-options,
  #admin-category-app .menu-products .drawer__content .category-form .drawer-form__body .category-delivery-options,
  #admin-category-app .menu-products .drawer__content .subcategory-form .drawer-form__body .category-delivery-options {
    flex-wrap: wrap;
    justify-content: end;
  }
  #admin-category-app .menu-products .drawer__content .product-form .drawer-form__body .category-delivery-options .checkbox-group,
  #admin-category-app .menu-products .drawer__content .category-form .drawer-form__body .category-delivery-options .checkbox-group,
  #admin-category-app .menu-products .drawer__content .subcategory-form .drawer-form__body .category-delivery-options .checkbox-group {
    width: 48%;
    flex: 0 0 48%;
  }
  #admin-category-app .menu-products .drawer__content .product-form .drawer-form__body .required-preparation-group,
  #admin-category-app .menu-products .drawer__content .category-form .drawer-form__body .required-preparation-group,
  #admin-category-app .menu-products .drawer__content .subcategory-form .drawer-form__body .required-preparation-group {
    gap: 20px;
  }
  #admin-category-app .menu-products .drawer__content .product-form .drawer-form__body .product-price-group,
  #admin-category-app .menu-products .drawer__content .category-form .drawer-form__body .product-price-group,
  #admin-category-app .menu-products .drawer__content .subcategory-form .drawer-form__body .product-price-group {
    flex-wrap: wrap;
  }
  #admin-category-app .menu-products .drawer__content .product-form .drawer-form__body .product-price-group .form-group,
  #admin-category-app .menu-products .drawer__content .category-form .drawer-form__body .product-price-group .form-group,
  #admin-category-app .menu-products .drawer__content .subcategory-form .drawer-form__body .product-price-group .form-group {
    width: 48%;
    flex: 0 0 48%;
  }
  #admin-category-app .menu-products .drawer__content .product-form .drawer-form__body .product-image-group,
  #admin-category-app .menu-products .drawer__content .category-form .drawer-form__body .product-image-group,
  #admin-category-app .menu-products .drawer__content .subcategory-form .drawer-form__body .product-image-group {
    margin-top: 0px;
  }
  #admin-category-app .menu-products .menu-content .menu-tabs .menu-tabs-header {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #fff;
  }
  #admin-category-app .menu-products .category-list .scroll-button {
    display: none;
  }
  .admin-table-customize {
    display: none;
  }
  .admin-table-customize-mobile {
    display: block !important;
  }
  .order-register__action--mobile {
    display: flex !important;
    flex: 0 0 62% !important;
    width: 62%;
    margin-bottom: 0;
  }
  .order-register__action--desktop {
    display: none !important;
  }
  .order-register__filter {
    flex: 0 0 100%;
    width: 100%;
  }
  .order-register__filter-item {
    flex: 0 0 100%;
    width: 100%;
  }
  .order-register__filter-item--40 {
    flex: 0 0 33%;
    width: 33%;
  }
  .order-register__total-item {
    border: none !important;
  }
  .drawer__content {
    width: 85%;
  }
  .order-register__filter-item-input--date-action-pc {
    display: none !important;
  }
  .order-register__filter-item-input--date-action-mb {
    display: flex !important;
  }
  .order-register__filter-item-input--date {
    flex: 0 0 calc(100% - 55px);
    width: calc(100% - 55px);
  }
  .order-register__filter-item-input--date .ant-calendar-picker {
    flex: 0 0 calc(100% - 60px);
    width: calc(100% - 60px) !important;
  }
}
@media only screen and (max-width: 550px) {
  .-flex-48-1-550 {
    flex: 0 0 48% !important;
    width: 48% !important;
  }
  .-flex-49-1-550 {
    flex: 0 0 49% !important;
    width: 49% !important;
  }
  #admin-category-app .menu-products .drawer__content {
    width: 100%;
  }
  #admin-category-app .menu-products .drawer__content .product-form .drawer-form__header-actions,
  #admin-category-app .menu-products .drawer__content .category-form .drawer-form__header-actions,
  #admin-category-app .menu-products .drawer__content .subcategory-form .drawer-form__header-actions {
    flex-wrap: wrap;
    justify-content: end;
  }
  #admin-category-app .menu-products .drawer__content .product-form .drawer-form__header-actions .btn,
  #admin-category-app .menu-products .drawer__content .category-form .drawer-form__header-actions .btn,
  #admin-category-app .menu-products .drawer__content .subcategory-form .drawer-form__header-actions .btn {
    width: 48%;
    flex: 0 0 48%;
  }
  #admin-category-app .menu-products .drawer__content .product-form .drawer-form__body .form-section__title,
  #admin-category-app .menu-products .drawer__content .category-form .drawer-form__body .form-section__title,
  #admin-category-app .menu-products .drawer__content .subcategory-form .drawer-form__body .form-section__title {
    font-size: 15px;
  }
  #admin-category-app .menu-products .drawer__content .product-form .drawer-form__body .category-delivery-options,
  #admin-category-app .menu-products .drawer__content .category-form .drawer-form__body .category-delivery-options,
  #admin-category-app .menu-products .drawer__content .subcategory-form .drawer-form__body .category-delivery-options {
    flex-wrap: wrap;
    justify-content: end;
  }
  #admin-category-app .menu-products .drawer__content .product-form .drawer-form__body .category-delivery-options .checkbox-group,
  #admin-category-app .menu-products .drawer__content .category-form .drawer-form__body .category-delivery-options .checkbox-group,
  #admin-category-app .menu-products .drawer__content .subcategory-form .drawer-form__body .category-delivery-options .checkbox-group {
    width: 48%;
    flex: 0 0 48%;
  }
  #admin-category-app .menu-products .drawer__content .product-form .drawer-form__body .required-preparation-group,
  #admin-category-app .menu-products .drawer__content .category-form .drawer-form__body .required-preparation-group,
  #admin-category-app .menu-products .drawer__content .subcategory-form .drawer-form__body .required-preparation-group {
    gap: 20px;
  }
  #admin-category-app .menu-products .drawer__content .product-form .drawer-form__body .product-price-group,
  #admin-category-app .menu-products .drawer__content .category-form .drawer-form__body .product-price-group,
  #admin-category-app .menu-products .drawer__content .subcategory-form .drawer-form__body .product-price-group {
    flex-wrap: wrap;
  }
  #admin-category-app .menu-products .drawer__content .product-form .drawer-form__body .product-price-group .form-group,
  #admin-category-app .menu-products .drawer__content .category-form .drawer-form__body .product-price-group .form-group,
  #admin-category-app .menu-products .drawer__content .subcategory-form .drawer-form__body .product-price-group .form-group {
    width: 48%;
    flex: 0 0 48%;
  }
  #admin-category-app .menu-products .drawer__content .product-form .drawer-form__body .product-image-group,
  #admin-category-app .menu-products .drawer__content .category-form .drawer-form__body .product-image-group,
  #admin-category-app .menu-products .drawer__content .subcategory-form .drawer-form__body .product-image-group {
    margin-top: 0px;
  }
  #admin-category-app .menu-products .menu-content .menu-tabs .menu-tabs-header {
    justify-content: unset;
    gap: unset;
  }
  #admin-category-app .menu-products .category-list .category-actions {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #admin-category-app .menu-products .category-list .category-actions .btn {
    width: 48%;
    flex: 0 0 48%;
    font-size: 11px;
  }
  #admin-category-app .menu-products .category-list .category-content__products {
    grid-template-columns: repeat(1, 1fr);
  }
  #admin-category-app .menu-products .allergen-list-items {
    grid-template-columns: repeat(4, 1fr);
  }
  .order-register__filter {
    gap: 15px !important;
  }
  .order-register__action {
    flex: 1;
  }
  .order-register__total-wrapper {
    gap: 5px;
  }
  .order-register .dropdown--filter {
    right: -120px;
  }
  .drawer__content {
    width: 100%;
  }
  .order-form__content, .order-form__header {
    padding: 15px;
  }
  .order-form__content-wrapper, .order-form__header-wrapper {
    flex-direction: column-reverse;
  }
  .order-form__content-action, .order-form__header-action {
    flex: 0 0 100%;
    margin-bottom: 15px;
  }
  .order-form__timeline-item {
    font-size: 14px;
  }
  .order-form__timeline-item-title:nth-of-type(2) {
    flex: 0 0 121px;
    width: 121px;
  }
  .order-form__timeline-item-title:nth-of-type(1) {
    flex: 0 0 calc(100% - 121px);
    width: calc(100% - 121px);
  }
  .order-form__timeline-item-image {
    flex: 0 0 30px;
    width: 30px;
  }
  .order-form__timeline-item-text {
    flex: 0 0 calc(100% - 35px);
    width: calc(100% - 35px);
  }
  .order-form__detail-item {
    font-size: 14px;
  }
  .order-form__detail-item-vats p {
    font-size: 14px;
  }
  .order-form__detail-vats-title p {
    font-size: 14px;
  }
  .order-form__action {
    flex-wrap: wrap;
  }
  .order-form__action a {
    flex: 0 0 calc(49% - 5px);
    width: calc(49% - 5px);
  }
  .ant-calendar-range,
  .ant-calendar-range-part {
    width: 100% !important;
  }
  #admin-panel {
    padding: 60px 0px 15px 0px !important;
    width: 100%;
  }
  #admin-panel .card {
    flex: 0 0 calc(100% - 30px);
    width: calc(100% - 30px);
    margin: 0 15px;
  }
  .-hide-mb {
    display: none !important;
  }
  .order-register__filter-item-input--date {
    flex: 0 0 100%;
    width: 100%;
  }
  .printer--flex-49 {
    width: 100% !important;
    flex: 0 0 100% !important;
  }
  .scanning--qr {
    font-size: 14px;
  }
  .scanning--qr-result {
    width: 95%;
  }
  .success-message {
    margin: 20px 15px;
  }
  .success-message__content {
    padding: 14px 16px;
  }
  .success-message__text {
    font-size: 14px;
  }
}
@media only screen and (max-width: 475px) {
  .scanning--qr-result .cart__voucher--data .card__base .voucher .card .content-info__bottom-date {
    font-size: 15px;
  }
  .scanning--qr-result .cart__voucher--data .card__base .voucher .card .content-info__bottom-value input {
    width: 45%;
  }
}
@media only screen and (max-width: 380px) {
  .scanning--qr-result .cart__voucher--data .card__base .voucher .card .content-info__bottom-value input {
    width: 55%;
  }
}
html {
  height: 100%;
}

body {
  margin: 0px;
  font-family: "Poppins", sans-serif !important;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
}
body input,
body textarea {
  font-family: "Poppins", sans-serif !important;
}

main {
  display: block;
  min-height: 100%;
}

p {
  word-wrap: break-word;
}

.home-cards {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
.home-cards div {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: inline-block;
  vertical-align: top;
  margin: 0 10px;
  border-radius: 12px;
  padding: 6px 6px 6px 6px;
  width: 240px;
}
@media (max-width: 1040px) {
  .home-cards div {
    width: 25%;
  }
}
@media (max-width: 770px) {
  .home-cards div {
    width: 90%;
    margin-bottom: 10px;
  }
}
.home-cards div img {
  height: 150px;
  border-radius: 12px;
}
@media (max-width: 770px) {
  .home-cards div img {
    height: auto;
  }
}
.home-cards div h2 {
  text-align: center;
  margin-top: 6px;
  margin-bottom: 0;
  color: #fff;
  font-size: 20px;
}
.home-cards div p {
  text-align: center;
  padding: 0 24px;
  margin-top: 0;
  margin-bottom: 0;
  color: #fff;
  font-size: 15px;
}
.home-cards div a button {
  margin-top: 8px;
  margin-bottom: 18px;
}

.floatLeft {
  float: left;
}

#table-app iframe {
  display: block;
  margin: auto;
  width: 640px;
  height: 640px;
}
@media (max-width: 770px) {
  #table-app iframe {
    width: auto;
  }
}

#allergen-guide-app tr, #allergen-guide-app .ant-table-thead tr th {
  font-size: 14px;
  font-weight: bold;
}

.ant-btn-primary {
  background-color: var(--color-main) !important;
  border-color: var(--color-main) !important;
}

.ant-switch-checked,
.switch input[type=checkbox]:checked + label:after,
.ant-tabs-ink-bar,
.ant-calendar-range .ant-calendar-selected-start-date .ant-calendar-date,
.ant-calendar-range .ant-calendar-selected-end-date .ant-calendar-date {
  background-color: var(--color-main) !important;
}

.ant-table-thead > tr.ant-table-row-hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td,
.ant-table-tbody > tr.ant-table-row-hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td,
.ant-table-thead > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td,
.ant-table-tbody > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td,
.ant-menu:not(.ant-menu-horizontal) .ant-menu-item-selected,
.ant-select-dropdown-menu-item:hover:not(.ant-select-dropdown-menu-item-disabled),
.switch input[type=checkbox]:checked + label,
.ant-btn-primary:hover,
.ant-calendar-range .ant-calendar-in-range-cell::before {
  background: var(--color-main-sub) !important;
}

.ant-menu-item-selected > a,
.ant-menu-item-selected > a:hover,
.ant-menu-item-selected,
.ant-menu-item:hover,
.ant-menu-item-active,
.ant-menu:not(.ant-menu-inline) .ant-menu-submenu-open,
.ant-menu-submenu-active,
.ant-menu-submenu-title:hover,
.ant-menu-item:hover .admin-left-menu-link,
.input-field input[type=text]:valid + label,
.input-field input[type=password]:valid + label,
.switch span,
.ant-upload.ant-upload-drag p.ant-upload-drag-icon .anticon,
.ant-select-dropdown-menu-item:hover:not(.ant-select-dropdown-menu-item-disabled),
.ant-btn-primary:hover,
.ant-pagination-item-active a,
.ant-pagination-item a:hover,
.ant-divider-inner-text,
.ant-tabs-nav .ant-tabs-tab-active {
  color: var(--color-main) !important;
}

.ant-menu-vertical .ant-menu-item::after,
.ant-menu-vertical-left .ant-menu-item::after,
.ant-menu-vertical-right .ant-menu-item::after,
.ant-menu-inline .ant-menu-item::after {
  border-right-color: var(--color-main) !important;
}

.switch,
.ant-upload.ant-upload-drag:not(.ant-upload-disabled):hover,
.react-select__control--is-focused,
.ant-select-open .ant-select-selection,
.ant-pagination-item-active,
.ant-input:hover,
.ant-select-focused .ant-select-selection,
.ant-select-selection:focus,
.ant-select-selection:active,
.ant-select-selection:hover,
.ant-calendar-today .ant-calendar-date {
  border-color: var(--color-main) !important;
}

.spinner {
  border-top: 3px solid var(--color-main) !important;
}

.react-select__control--is-focused,
.ant-select-open .ant-select-selection,
.ant-select-focused .ant-select-selection,
.ant-select-selection:focus,
.ant-select-selection:active {
  box-shadow: var(--color-main-sub) 0px 0px 0px 1px !important;
}

.ant-upload .ant-card-cover img {
  object-fit: contain;
}

.input-field input[type=text]:focus,
.input-field input[type=password]:focus {
  border-bottom: 1px solid var(--color-main) !important;
}

.ant-tag-blue {
  background: var(--color-main-sub) !important;
  color: #323434 !important;
  cursor: pointer !important;
  border-color: var(--color-main) !important;
}

/*# sourceMappingURL=styles.min.css.map */
