#dishes {
  margin: 0;
  display: none;
  flex-direction: column;
  width: 100%;
  gap: 20px;
  overflow: visible;
  font-size: var(--font-size-3);
}
#dishes.open {
  display: flex;
}
#dishes .categorized-container,
#dishes .uncategorized-container,
#dishes .create-form {
  display: none;
  /* position: relative; */
  /* overflow: hidden; */
}
#dishes .categorized-container.show,
#dishes .uncategorized-container.show,
#dishes .create-form.show {
  display: block;
}
#dishes .categorized-container header,
.categorized-container header .header-buttons,
.categorized-container header .info-card,
.categorized-container header .info-card > div p,
.categorized-container header .uncategorized-dishes p,
.categorized-container header .create-button,
#delivery .delivery-header .info-card,
#delivery .delivery-header .info-card > div p,
#discount header .header-buttons {
  display: flex;
  align-items: center;
}
#dishes .categorized-container header {
  justify-content: space-between;
  width: 100%;
  /* position: fixed; */
  background-color: var(--white);
  padding-bottom: 15px;
  box-sizing: border-box;
}
.categorized-container header .select-dropdown,
.categorized-container header .uncategorized-dishes,
.categorized-container header .create-button {
  display: none;
}
.categorized-container header .select-dropdown.show,
.categorized-container header .uncategorized-dishes.show,
.categorized-container header .create-button.show {
  display: flex;
}
#dishes header .swap-button {
  width: 294px;
}
#dishes header .swap-button::before,
#dishes header .swap-button::after {
  width: 100px;
}
#dishes header .swap-button::before {
  content: "Menu";
}
#dishes header .swap-button::after {
  content: "Dishes";
  transform: translateX(110%);
}
#dishes header .swap-button.right-clicked::before {
  content: "Dishes";
  transform: translateX(110%);
}
#dishes header .swap-button.right-clicked::after {
  content: "Menu";
  transform: translateX(0);
}
#dishes header .swap-button.left-clicked::before {
  content: "Menu";
  transform: translateX(0);
}
#dishes header .swap-button.left-clicked::after {
  content: "Dishes";
  transform: translateX(110%);
}
@keyframes bounce-to-right {
  0% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(110%);
  }
  60% {
    transform: translateX(115%);
  }
  80% {
    transform: translateX(109%);
  }
  100% {
    transform: translateX(110%);
  }
}
@keyframes bounce-to-left {
  0% {
    transform: translateX(110%);
  }
  40% {
    transform: translateX(0%);
  }
  60% {
    transform: translateX(-5%);
  }
  80% {
    transform: translateX(1%);
  }
  100% {
    transform: translateX(0%);
  }
}
.categorized-container header .info-card,
#delivery .delivery-header .info-card {
  align-items: center;
}
.categorized-container header .info-card,
.categorized-container header .uncategorized-dishes,
#delivery .delivery-header .info-card {
  gap: 20px;
  border: 1px solid var(--gray-2);
  padding: 10px 20px;
  border-radius: 15px;
}
.categorized-container header .info-card > div,
#delivery .delivery-header .info-card > div {
  width: 120px;
}
.categorized-container header .info-card > div p,
#delivery .delivery-header > div p {
  width: 100%;
  justify-content: space-between;
  margin-bottom: 3px;
}
.categorized-container header .info-card > div p span:nth-child(2),
.categorized-container header .uncategorized-dishes span:nth-child(2),
#delivery .delivery-header > div p span:nth-child(2) {
  font-size: var(--font-size-8);
  color: var(--black);
  line-height: 1.2rem;
}
.categorized-container header .uncategorized-dishes {
  gap: 15px;
  font-size: var(--font-size-3);
  align-items: center;
  padding-block: 20px;
}
.categorized-container header .uncategorized-dishes p {
  gap: 10px;
}
.categorized-container header .select-dropdown {
  margin: 0;
}
.categorized-container header .create-button {
  gap: 15px;
  background-color: var(--red-1);
  padding: 15px 20px;
  border-radius: 15px;
  align-items: center;
}
.categorized-container header .create-button .plus-icon {
  display: none;
}
.categorized-container header .create-button p {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 120px;
}
.categorized-container header .create-button p span:nth-child(1) {
  font-size: var(--font-size-3);
  color: var(--black);
}
.categorized-container header .create-button p span:nth-child(2) {
  font-size: var(--font-size-2);
  color: var(--gray-7);
}
#dishes .categorized-container .categorized-content .menu,
#dishes .categorized-container .categorized-content .dishes,
#dishes .categorized-container .categorized-content .empty {
  display: none;
}
#dishes .categorized-container .categorized-content .menu.show,
#dishes .categorized-container .categorized-content .dishes.show,
#dishes .categorized-container .categorized-content .empty.show {
  display: block;
}
.categorized-container .categorized-content table,
#delivery table {
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 5px;
  overflow-x: scroll;
}
.categorized-container .categorized-content table thead,
#delivery table thead {
  background-color: var(--red-1);
  border-radius: 15px;
  min-width: fit-content;
  width: 100%;
  display: block;
}
.categorized-container .categorized-content tr,
#delivery table tr {
  display: flex;
  padding: 15px 20px;
  min-width: fit-content;
  width: 100%;
}
.categorized-container .categorized-content th,
.categorized-container .categorized-content td,
#delivery table th,
#delivery table td {
  flex: 1;
  text-align: left;
  align-items: center;
  display: flex;
}
.categorized-container .categorized-content table th,
#delivery table th {
  font-weight: 500;
  text-align: left;
  font-size: var(--font-size-3);
}
.categorized-container
  .categorized-content
  table
  th
  .static-dropdown
  button
  span,
#delivery table th .static-dropdown button span {
  color: var(--gray-7);
}
.categorized-container .categorized-content table tbody,
#delivery table tbody {
  background-color: var(--gray-1);
  border-radius: 15px;
  display: block;
  margin-top: 10px;
  min-width: fit-content;
  width: 100%;
  height: calc(100vh - 263px);
  overflow: scroll;
}
.categorized-container
  .categorized-content
  thead
  + .categorized-container
  .categorized-content
  tbody,
#delivery table thead + #delivery table tbody {
  margin-top: 5px;
}
.categorized-container .categorized-content table tbody tr,
#delivery table tbody tr {
  border-bottom: 1px solid #e6e6e6;
}
.categorized-container .categorized-content table tr th:first-child,
.categorized-container .categorized-content table tr td:first-child,
#delivery table tr th:first-child,
#delivery table tr td:first-child {
  overflow: hidden;
  flex: none;
}
.categorized-container .categorized-content table tr th:first-child > label,
.categorized-container .categorized-content table tr td:first-child > label,
#delivery table tr th:first-child > label,
#delivery table tr td:first-child > label,
#settings .settings-body .header > label {
  display: flex;
  position: relative;
  cursor: pointer;
}

.categorized-container
  .categorized-content
  table
  tr
  th:first-child
  > label
  > input,
.categorized-container
  .categorized-content
  table
  tr
  td:first-child
  > label
  > input,
.availability-section .available-day > label > input,
#delivery table tr td:first-child > label > input,
#delivery table tr th:first-child > label > input,
#settings .settings-body .header > label > input {
  opacity: 0;
  position: absolute;
}
.categorized-container
  .categorized-content
  table
  tr
  th:first-child
  > label
  > svg,
.categorized-container
  .categorized-content
  table
  tr
  td:first-child
  > label
  > svg,
.availability-section .available-day > label > svg,
#delivery table tr td:first-child > label > svg,
#delivery table tr th:first-child > label > svg,
#settings .settings-body .header > label > svg {
  scale: 0.7;
  position: relative;
  z-index: 1;
}
.categorized-container
  .categorized-content
  table
  tr
  th:first-child
  > label
  > input
  + svg
  path,
.categorized-container
  .categorized-content
  table
  tr
  td:first-child
  > label
  > input
  + svg
  path,
.availability-section .available-day > label > input + svg,
#delivery table tr th:first-child > label > input + svg path,
#delivery table tr td:first-child > label > input + svg path,
#settings .settings-body .header > label > input + svg path {
  fill: var(--gray-5);
}
.availability-section .available-day > label > input + svg path,
#settings .settings-body .header > label > input + svg path {
  fill: var(--gray-5);
}
.categorized-container
  .categorized-content
  table
  tr
  th:first-child
  > label
  > input:checked
  + svg
  path,
.categorized-container
  .categorized-content
  table
  tr
  td:first-child
  > label
  > input:checked
  + svg
  path,
.availability-section .available-day > label > input:checked + svg path,
#delivery table tr th:first-child > label > input:checked + svg path,
#delivery table tr td:first-child > label > input:checked + svg path,
#settings .settings-body .header > label > input:checked + svg path {
  fill: var(--blue-2);
}
.categorized-container .categorized-content table tr td,
#delivery table tr td {
  color: var(--black);
  font-size: 12px;
}
.categorized-container .categorized-content table tr th:nth-child(2),
.categorized-container .categorized-content table tr td:nth-child(2) {
  overflow: hidden;
  flex: none;
  width: 35px;
  margin-left: 5px;
  padding: 0 8px;
}
.categorized-container .categorized-content table tr th:nth-child(3),
.categorized-container .categorized-content table tr td:nth-child(3) {
  text-transform: capitalize;
  overflow: hidden;
  flex: none;
  width: 210px;
  padding: 0 8px;
}
.categorized-container .categorized-content table tr td:nth-child(3) {
  cursor: pointer;
}
.categorized-container .categorized-content table tr td:nth-child(4) {
  gap: 10px;
  align-items: center;
  color: var(--gray-7);
}
.categorized-container .categorized-content table tr th:nth-child(4),
.categorized-container .categorized-content table tr td:nth-child(4),
.categorized-container .categorized-content table tr th:nth-child(5),
.categorized-container .categorized-content table tr td:nth-child(5),
.categorized-container .categorized-content table tr th:nth-child(6),
.categorized-container .categorized-content table tr td:nth-child(6),
.categorized-container .categorized-content table tr th:nth-child(7),
.categorized-container .categorized-content table tr td:nth-child(7) {
  min-width: 140px;
}
.categorized-container .categorized-content table tr th:nth-child(3)::before {
  content: "";
  display: block;
  background-color: var(--gray-5);
  height: 10px;
  width: 1px;
  margin-right: 15px;
  margin-bottom: 2px;
}
.categorized-container
  .categorized-content
  table
  tr
  th:nth-child(3)
  .select-dropdown {
  display: none;
}
.categorized-container .categorized-content table tr td:nth-child(3)::before,
#delivery table tr th:nth-child(3)::before,
#delivery table tr td:nth-child(3)::before {
  content: "";
  display: block;
  background-color: transparent;
  height: 10px;
  width: 1px;
  margin-right: 15px;
  margin-bottom: 2px;
}
.categorized-container .categorized-content table tr th:nth-child(7),
.categorized-container .categorized-content table tr td:nth-child(7) {
  gap: 10px;
}
.categorized-container .categorized-content table tr th:last-child,
.categorized-container .categorized-content table tr td:last-child,
#delivery table tr th:last-child,
#delivery table tr td:last-child {
  /* overflow: hidden; */
  flex: none;
  width: 20px;
  justify-content: center;
}
.categorized-container .categorized-content table .enabled-cell button,
#dishes .toggle-button,
#settings .toggle-container,
#settings .cuisine-container button {
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  text-transform: capitalize;
}
.categorized-container .categorized-content table .enabled-cell .enabled,
#dishes .toggle-button.enabled,
#settings .cuisine-container button.enabled {
  background-color: var(--green-2);
}
.categorized-container .categorized-content table .enabled-cell .disabled,
#dishes .toggle-button.disabled,
#settings .cuisine-container button.disabled {
  background-color: var(--gray-2);
}
.categorized-content .dishes {
  height: calc(100vh - 193px);
  overflow: scroll;
}
.categorized-content .dishes .dishes-section {
  padding-bottom: 20px;
}
.categorized-content .dishes .dishes-header {
  margin-top: 15px;
  margin-bottom: 30px;
}
.uncategorized-container .dishes-header {
  margin-bottom: 15px;
}
.categorized-content .dishes .dishes-header,
.create-form-container .customization-container .category-header,
.create-form-container .customization-container .category-header .header-info,
.categorized-content .dishes .dishes-header > div,
.create-form-container .customization-container .category-header > div,
.uncategorized-container .dishes-header,
.uncategorized-container .dishes-header > p,
#delivery .delivery-header,
#delivery .delivery-header > div {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.categorized-content .dishes .dishes-header > div,
.create-form-container .customization-container .category-header > div,
#delivery .delivery-header > div {
  width: fit-content;
}
.categorized-content .dishes .dishes-header > div,
.create-form-container .customization-container .category-header > div,
.create-form-container .customization-container .category-header .header-info,
.uncategorized-container .dishes-header > p,
#delivery .delivery-header > div {
  justify-content: flex-start;
  gap: 15px;
}
.create-form-container .customization-container .category-header .header-info {
  gap: 15px;
  text-transform: capitalize;
}
.categorized-content .dishes .dishes-header > div > span,
#delivery .delivery-header > div > span {
  font-size: var(--font-size-7);
  color: var(--black);
  text-transform: capitalize;
}
.categorized-content .dishes .dishes-header > div .toggle-button {
  margin-left: 5px;
}
.categorized-content .dishes .dishes-body,
.uncategorized-content {
  display: grid;
  grid-template-columns: 22% 22% 22% 22%;
  justify-content: space-between;
  width: 100%;
  row-gap: 20px;
}
.uncategorized-content {
  height: calc(100vh - 187px);
  overflow: scroll;
  padding-top: 15px;
}
.categorized-content .dishes .dishes-body .dish-card,
.uncategorized-content .dish-card {
  width: 100%;
  border: 1px solid #fdebc7;
  background-color: var(--yellow-1);
  border-radius: 20px;
  height: 200px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.categorized-content .dishes .dishes-body .dish-card .content,
.uncategorized-content .dish-card .content {
  padding: 25px 20px;
  width: 50%;
  font-size: var(--font-size-4);
  color: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.categorized-content .dishes .dishes-body .dish-card .content p:first-child,
#search-modal .search-result .dish-item-card .content p:first-child,
.uncategorized-content .dish-card .content p:first-child {
  display: flex;
  flex-direction: column;
}
.categorized-content
  .dishes
  .dishes-body
  .dish-card
  .content
  p:first-child
  .title,
.uncategorized-content .dish-card .content p:first-child .title,
#search-modal .search-result .dish-item-card .content p:first-child .title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: capitalize;
}
.categorized-content .dishes .dishes-body .dish-card .content .price,
#search-modal .search-result .dish-item-card .content .price,
.uncategorized-content .dish-card .content .price {
  color: var(--red-5);
  padding-top: 10px;
}
.categorized-content .dishes .dishes-body .dish-card .content .button-section,
.uncategorized-content .dish-card .content .button-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.categorized-content .dishes .dishes-body .dish-card .content .edit-button,
.uncategorized-content .dish-card .content .edit-button {
  background-color: var(--blue-1);
  padding: 2px 10px;
  font-size: 13px;
  border-radius: 20px;
  display: flex;
  gap: 5px;
  align-items: center;
}
.categorized-content .dishes .dishes-body .dish-card .content .delete-button,
.uncategorized-content .dish-card .content .delete-button {
  background-color: var(--red-5);
  border-radius: 20px;
  padding: 3px 5px 0;
  align-items: center;
  justify-content: center;
}
.categorized-content .dishes .dishes-body .dish-card .image,
#search-modal .search-result .dish-item-card .image,
.uncategorized-content .dish-card .image {
  width: 50%;
  height: 100%;
  position: relative;
}
.categorized-content .dishes .dishes-body .dish-card .image img,
#search-modal .search-result .dish-item-card .image img,
.uncategorized-content .dish-card .image img {
  object-fit: cover;
  z-index: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(0%);
  transition: filter 0.3s ease;
}
.categorized-content .dishes .dishes-body .dish-card.disabled {
  border: 1px solid var(--gray-3);
  background-color: var(--gray-1);
}
.categorized-content .dishes .dishes-body .dish-card.disabled .image img,
#search-modal .search-result .dish-item-card.disabled .image img {
  filter: grayscale(100%);
}
.categorized-content .dishes .dishes-body .dish-card .image .count {
  object-fit: cover;
  position: absolute;
  background-color: var(--blue-2);
  color: var(--white);
  bottom: -15px;
  right: -38px;
  padding: 5px 50px 20px 10px;
  border-radius: 14px;
  font-size: var(--font-size-1);
}
.categorized-content .empty {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}
.categorized-content .empty .header {
  font-weight: 500;
  color: var(--black);
}
.uncategorized-container .dishes-header > p {
  width: fit-content;
}
.uncategorized-content .dish-card {
  width: 100%;
}
.uncategorized-content .dish-card .content {
  justify-content: center;
  height: fit-content;
  gap: 20px;
}
.create-form {
  flex: 1;
  height: fit-content;
  /* height: calc(100vh - 110px) !important;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-y: hidden; */
}
.create-form .create-form-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.create-form .create-form-header > p {
  display: flex;
  gap: 20px;
  align-items: center;
}
.create-form .create-form-header .toggle-button {
  padding: 15px 15px !important;
  border-radius: 30px !important;
}
.create-form .create-form-container {
  width: 100%;
  display: grid;
  grid-template-columns: 65% calc(35% - 20px);
  column-gap: 20px;
  min-height: 450px !important;
  overflow-y: hidden;
}
.create-form .create-form-container form {
  grid-column: 1 / span 1;
  height: 100%;
  overflow: scroll;
  padding-top: 15px;
  padding-bottom: 100px;
}
.create-form .create-form-container .form-group {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.create-form .create-form-container .image-input-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}
.create-form .create-form-container .upload-button {
  width: 180px;
  color: var(--gray-5);
}
.create-form .create-form-container .upload-button .info,
.create-form .create-form-container .current-image span {
  font-size: var(--font-size-1);
  margin-top: 8px;
}
.create-form .create-form-container .profile-picture {
  opacity: 0.75;
  height: 180px;
  width: 180px;
  position: relative;
  overflow: hidden;
  border: 1px dashed var(--gray-4);
  border-radius: 20px;
  background-color: var(--gray-1);
}
.create-form .create-form-container .profile-picture .upload-text {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.create-form
  .create-form-container
  .profile-picture
  .upload-text
  span:last-child {
  font-size: var(--font-size-2);
  color: var(--blue-2);
}
.create-form .create-form-container .file-uploader {
  opacity: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  position: absolute;
  top: 0%;
  left: 0%;
}
.create-form .create-form-container .current-image {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.create-form .create-form-container .current-image img {
  height: 180px;
  width: 180px;
  border-radius: 30px;
  object-fit: cover;
  object-position: center;
}
.create-form-container .form-group .floating-controls.dropdown img {
  width: 15px !important;
  margin-right: 15px;
}
.create-form
  .create-form-container
  .form-group
  .floating-controls:first-child
  .hint {
  margin-bottom: 20px;
}
.create-form
  .create-form-container
  .form-group
  .floating-controls:first-child::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--yellow-4);
  margin-bottom: 10px;
}
.create-form .create-form-container .form-group > div:nth-child(2) img {
  margin-right: 0;
}
.create-form .create-form-container .form-group > div:first-child,
.create-form .create-form-container .form-group > div:nth-child(2),
.create-form .create-form-container .form-group > div:nth-child(10),
.create-form .create-form-container .form-group > span,
.create-form-container .form-group .availability-section {
  grid-column: 1 / span 12;
}
.create-form .create-form-container .form-group > div:nth-child(3),
.create-form
  .create-form-container
  .form-group
  .floating-controls:nth-child(8) {
  grid-column: 1 / span 6;
}
.create-form .create-form-container .form-group > div:nth-child(4),
.create-form .create-form-container .form-group > div:nth-child(9) {
  grid-column: 7 / span 6;
}
.create-form .create-form-container .form-group > div:nth-child(5) {
  grid-column: 1 / span 4;
}
.create-form .create-form-container .form-group > div:nth-child(6) {
  grid-column: 5 / span 4;
}
.create-form .create-form-container .form-group > div:nth-child(7) {
  grid-column: 9 / span 4;
}
.create-form-container .form-group .availability-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 20px;
  column-gap: 10px;
  justify-content: space-between;
}
.create-form-container .form-group .availability-section .available-day {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.availability-section .available-day > label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px 8px 8px;
  cursor: pointer;
  border-radius: 3px;
  font-size: 12px;
}
.availability-section .available-day > label:hover {
  background-color: var(--yellow-2);
}
.availability-section .available-day > label:hover input:checked + svg path,
.availability-section .available-day > label:hover input + svg path {
  fill: var(--black);
  fill-opacity: 1;
}
.availability-section .available-day > label:hover span {
  color: var(--yellow-4);
}
.availability-section .available-day.selected > label {
  color: var(--black);
}
.availability-section .available-day .floating-controls.dropdown button {
  margin-bottom: 0;
}
.availability-section .available-day .floating-controls {
  width: 50%;
}
#dishes .create-form .floating-controls > ul li,
#discount form .floating-controls > ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}
#dishes .create-form .floating-controls > ul li span,
#discount form .floating-controls > ul li span {
  padding: 0;
  border-bottom: 0;
  margin: 0;
}
.create-form-container .customization-container {
  background-color: var(--yellow-2);
  grid-column: 2 / span 1;
  border-radius: 10px;
  padding: 20px;
  height: calc(100vh - 185px);
  max-height: 550px;
  overflow-y: auto;
  /* position: fixed; */
}
.create-form-container .customization-container .customization-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
  align-items: flex-start;
}
.create-form-container .customization-container.empty .customization-header {
  align-items: center;
}
.create-form-container .customization-container .customization-header div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.create-form-container
  .customization-container
  .customization-header
  div:first-child
  > button {
  display: none;
}
.create-form-container .customization-container .customization-header button {
  font-size: var(--font-size-2);
}
.create-form-container
  .customization-container
  .customization-header
  div:first-child
  .buttons {
  flex: 1;
  justify-content: flex-end;
  gap: 20px;
}
.create-form-container
  .customization-container
  .customization-header
  > .buttons {
  display: none;
}
.create-form-container
  .customization-container
  .customization-header
  div:first-child
  .buttons
  button {
  width: fit-content;
}
.create-form-container
  .customization-container
  .customization-header
  .search-container {
  width: 100%;
  padding: 8px 20px;
  margin-top: 15px;
}
.create-form-container
  .customization-container
  .customization-header
  .search-container
  input {
  background-color: transparent;
}
.create-form-container .customization-container .customization-body,
.create-form-container .customization-container .customization-body .content,
.create-form-container .customization-container .customization-body .buttons {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.create-form-container .customization-container .customization-body {
  height: fit-content;
  max-height: calc(100% - 98px);
  overflow-y: scroll;
}
.create-form-container
  .customization-container
  .customization-body
  .empty-container {
  padding-top: 50px;
  padding-bottom: 30px;
  height: fit-content;
}
.create-form-container .customization-container .customization-body .content {
  gap: 5px;
  text-align: center;
}
.create-form-container
  .customization-container.empty
  .customization-header
  .search-container,
.create-form-container
  .customization-container.empty
  .customization-header
  .buttons,
.create-form-container
  .customization-container.empty
  .customization-header
  button,
.create-form-container .customization-container .empty-container {
  display: none;
}
.create-form-container .customization-container.empty .customization-body {
  max-height: calc(100% - 30px);
}
.create-form-container
  .customization-container.empty
  .customization-header
  div {
  justify-content: center;
}
.create-form-container .customization-container.empty .empty-container {
  display: block;
}
.create-form-container
  .customization-container
  .customization-body
  .content
  .count {
  color: var(--black);
  font-size: var(--font-size-2);
}
.create-form-container .customization-container .customization-body .buttons {
  color: var(--black);
  margin-top: 30px;
  margin-bottom: 80px;
  gap: 20px;
}
.create-form-container .customization-container .add-items-btn,
.create-form-container .customization-container .new-category-btn {
  display: flex;
  padding: 12px 18px;
  border-radius: 40px;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}
.create-form-container .customization-container .add-items-btn {
  background-color: var(--yellow-4);
  color: var(--white);
}
.create-form-container .customization-container .new-category-btn {
  background-color: var(--gray-2);
  color: var(--black);
}
.create-form-container .customization-container .items-container {
  width: 100%;
}
.create-form-container .customization-container .category-header {
  margin-block: 15px;
}
.create-form-container .customization-container .category-header > div > span {
  text-transform: capitalize;
  color: var(--black);
}
.create-form-container
  .customization-container
  .category-header
  .toggle-button
  span {
  font-size: 11px;
}
.create-form-container
  .customization-container
  .category-header
  .static-dropdown {
  margin: 0;
}
.create-form-container .customization-container .category-body {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.create-form-container .customization-container .category-body .category-card {
  background-color: #f9f2f1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border-radius: 15px;
  gap: 20px;
}
.create-form-container
  .customization-container
  .category-body
  .category-card
  .content,
.create-form-container
  .customization-container
  .category-body
  .category-card
  .content
  > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.create-form-container
  .customization-container
  .category-body
  .category-card
  .content
  > div {
  gap: 10px;
}
.create-form-container
  .customization-container
  .category-body
  .category-card
  .content
  > div
  > p {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.create-form-container
  .customization-container
  .category-body
  .category-card
  .id {
  font-size: var(--font-size-6);
  color: #804fbf;
}
.create-form-container
  .customization-container
  .category-body
  .category-card
  .content {
  flex: 1;
}
.create-form-container
  .customization-container
  .category-body
  .category-card
  .content
  img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 15px;
}
.create-form-container
  .customization-container
  .category-body
  .category-card
  .content
  .title,
.create-form-container
  .customization-container
  .category-body
  .category-card
  .content
  .price {
  font-size: var(--font-size-2);
  text-align: left;
  text-transform: capitalize;
  cursor: pointer;
}
.create-form-container
  .customization-container
  .category-body
  .category-card
  .content
  .price {
  color: var(--red-5);
}
.create-form-container
  .customization-container
  .category-body
  .category-card
  .toggle-button {
  background-color: transparent !important;
  padding: 0 !important;
}
.create-form-container
  .customization-container
  .category-body
  .category-card
  .toggle-button
  span,
.create-form-container
  .customization-container
  .category-body
  .category-card
  .delete-button {
  display: none;
}
#dishes .floating-controls.dropdown ul,
#discount form .floating-controls.dropdown ul {
  top: 54px;
}
.create-form-container > .buttons {
  display: none;
}
@media (max-width: 1850px) {
  .categorized-content .dishes .dishes-body,
  .uncategorized-content {
    grid-template-columns: 32% 32% 32%;
  }
}
@media (max-width: 1600px) {
  .create-form-container .customization-container .customization-header > div {
    gap: 20px;
    margin-bottom: 10px;
  }
  .create-form-container
    .customization-container
    .customization-header
    div:first-child
    > button {
    display: flex;
  }
  .create-form-container
    .customization-container.empty
    .customization-header
    div:first-child
    > button {
    display: none;
  }
  .create-form-container
    .customization-container
    .customization-header
    > .buttons {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  .create-form-container
    .customization-container
    .customization-header
    div:first-child
    > .buttons {
    display: none;
  }
  .create-form-container
    .customization-container
    .customization-header
    .search-container {
    display: none;
  }
}
@media (max-width: 1350px) {
  .categorized-container header .create-button {
    border-radius: 50%;
    padding: 10px;
    width: fit-content;
  }
  .categorized-container header .create-button p,
  .categorized-container header .create-button img {
    display: none;
  }
  .categorized-container header .create-button .plus-icon {
    display: block;
  }
}
@media (max-width: 950px) {
  .create-form-container .form-group .availability-section {
    column-gap: 12%;
  }
  .create-form .create-form-container {
    grid-template-columns: 100%;
    column-gap: 20px;
    min-height: 450px !important;
    overflow-y: hidden;
  }
  .create-form-container .customization-container {
    grid-column: 1 / span 1;
    /* position: fixed; */
    height: fit-content;
  }
  .create-form-container
    .customization-container
    .customization-header
    > .buttons {
    display: none;
  }
  .create-form-container
    .customization-container
    .customization-header
    div:first-child
    > .buttons {
    display: flex;
  }
  .create-form-container
    .customization-container.empty
    .customization-header
    div:first-child
    > button,
  .create-form-container
    .customization-container
    .customization-header
    div:first-child
    > button {
    display: none;
  }
  .create-form-container
    .customization-container
    .customization-header
    .search-container {
    display: flex;
    margin-top: 0;
  }
  .create-form-container .customization-container .customization-body {
    height: fit-content;
  }
  .create-form-container .customization-container .category-body {
    display: grid;
    grid-template-columns: 48% 48%;
    justify-content: space-between;
  }
  .create-form .create-form-header .buttons .publish-button {
    display: none;
  }
  .create-form-container > .buttons {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    margin-block: 40px;
  }
}
@media (max-width: 900px) {
  .categorized-content .dishes {
    height: calc(100vh - 270px);
    overflow: scroll;
  }
  #dishes .categorized-container header {
    display: grid;
    grid-template-columns: 48% 48%;
    grid-template-rows: auto auto;
    gap: 10px;
  }
  #dishes header .swap-button {
    grid-column: 1 / span 1;
    grid-row: 1 / span 1;
    width: 100%;
    height: 60px;
    display: flex;
    gap: 0;
    justify-content: space-between;
  }
  #dishes header .swap-button::before,
  #dishes header .swap-button::after {
    width: 32%;
  }
  #dishes .categorized-container header .info-card {
    grid-column: 1 / span 1;
    grid-row: 2 / span 1;
  }
  .categorized-container header .info-card > div,
  #delivery .delivery-header .info-card > div,
  .categorized-container header .uncategorized-dishes p {
    flex: 1;
    justify-content: space-between;
  }
  .categorized-container header .uncategorized-dishes,
  .categorized-container header .select-dropdown {
    grid-column: 2 / span 1;
    grid-row: 2 / span 1;
  }
  .categorized-container header .create-button {
    grid-column: 2 / span 1;
    grid-row: 1 / span 1;
    margin-left: auto;
  }
  .categorized-content .dishes .dishes-body,
  .uncategorized-content {
    grid-template-columns: 49% 49%;
  }
  .categorized-container .categorized-content table tbody {
    height: calc(100vh - 330px);
    overflow: scroll;
  }
}
@media (max-width: 840px) {
  #dishes .categorized-container header,
  #dishes .categorized-container .categorized-content .menu,
  #dishes .categorized-container .categorized-content .dishes,
  #dishes .categorized-container .categorized-content .empty,
  .uncategorized-container,
  .create-form .create-form-container form,
  .create-form .create-form-header {
    padding-inline: 20px;
  }
}
@media (max-width: 760px) {
  .categorized-container header .select-dropdown {
    display: none !important;
  }
  #dishes
    .categorized-container
    .categorized-content
    .menu.show
    ~ #dishes
    .categorized-container
    header
    .info-card {
    grid-column: 1 / span 2;
    grid-row: 2 / span 1;
  }
  .categorized-container
    .categorized-content
    table
    tr
    th:nth-child(3)
    .select-dropdown {
    display: flex;
    margin-bottom: 0;
  }
  .categorized-container .categorized-content table tr th:nth-child(2),
  .categorized-container .categorized-content table tr th:nth-child(4),
  .categorized-container .categorized-content table tr th:nth-child(5),
  .categorized-container .categorized-content table tr th:nth-child(6),
  .categorized-container .categorized-content table tr th:nth-child(7),
  .categorized-container .categorized-content table tr td:nth-child(2),
  .categorized-container .categorized-content table tr td:nth-child(5),
  .categorized-container .categorized-content table tr td:nth-child(6),
  .categorized-container .categorized-content table tr td:last-child,
  .categorized-container .categorized-content table tr th:nth-child(3) > span {
    display: none;
  }
  .categorized-container .categorized-content table thead,
  .categorized-container .categorized-content table tbody {
    background-color: var(--white);
  }
  .categorized-container .categorized-content table tr th:nth-child(3)::before,
  .categorized-container .categorized-content table tr td:nth-child(3)::before {
    display: none;
  }
  .categorized-container .categorized-content table tr {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    width: 100%;
    align-items: center;
    column-gap: 15px;
    row-gap: 5px;
    padding-inline: 0;
  }
  .categorized-container
    .categorized-content
    table
    tr
    th:nth-child(3)
    .select-dropdown,
  .categorized-container .categorized-content table tr th:nth-child(3) {
    padding: 0;
  }
  .categorized-container .categorized-content table thead tr {
    padding-bottom: 0;
  }
  .categorized-container .categorized-content table tr td:nth-child(1) {
    grid-column: 1 / span 1;
    grid-row: 1 / span 2;
  }
  .categorized-container .categorized-content table tr td:nth-child(3) {
    grid-row: 1 / span 1;
    grid-column: 2 / span 1;
    padding: 0;
  }
  .categorized-container .categorized-content table tr td:nth-child(4) {
    grid-row: 2 / span 1;
    grid-column: 2 / span 1;
  }
  .categorized-container .categorized-content table tr td:nth-child(7) {
    grid-row: 1 / span 2;
    grid-column: 3 / span 1;
    min-width: fit-content;
  }
  #delivery table tbody {
    background-color: var(--white);
}
}
@media (max-width: 690px) {
  .create-form-container .form-group .availability-section {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
    column-gap: 10px;
    justify-content: space-between;
  }
  .availability-section .available-day .floating-controls {
    width: 70%;
  }
}
@media (max-width: 650px) {
  .create-form-container .form-group .availability-section {
    column-gap: 5%;
  }
  .categorized-content .dishes .dishes-body .dish-card .content,
  .uncategorized-content .dish-card .content {
    width: 62%;
  }
  .categorized-content .dishes .dishes-body .dish-card .image,
  #search-modal .search-result .dish-item-card .image,
  .uncategorized-content .dish-card .image {
    width: 38%;
  }
}
@media (max-width: 550px) {
  .categorized-content .dishes .dishes-body,
  .uncategorized-content {
    grid-template-columns: 100%;
  }
  #dishes .categorized-container header {
    display: grid;
    grid-template-columns: 48% 48%;
    grid-template-rows: auto auto auto auto;
    gap: 10px;
  }
  #dishes .categorized-container header .info-card {
    grid-column: 1 / span 2;
  }
  .categorized-container header .uncategorized-dishes {
    grid-column: 1 / span 2;
    grid-row: 3 / span 1;
  }
  .categorized-container header .select-dropdown {
    grid-column: 1 / span 1;
    grid-row: 4 / span 1;
    justify-content: flex-start;
  }
  .categorized-content .dishes .dishes-body .dish-card .content,
  .uncategorized-content .dish-card .content {
    width: 58%;
  }
  .categorized-content .dishes .dishes-body .dish-card .image,
  #search-modal .search-result .dish-item-card .image,
  .uncategorized-content .dish-card .image {
    width: 42%;
  }
  .create-form .create-form-container .form-group {
    gap: 10px;
  }
  .create-form .create-form-container .form-group > div:nth-child(5),
  .create-form .create-form-container .form-group > div:nth-child(6),
  .create-form .create-form-container .form-group > div:nth-child(7) {
    grid-column: 1 / span 12;
  }
  .create-form-container .customization-container .category-body {
    display: grid;
    grid-template-columns: 100%;
  }
  .create-form-container
    .customization-container
    .category-body
    .category-card {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 10px;
  }
  .create-form-container
    .customization-container
    .category-body
    .category-card
    .toggle-button
    span,
  .create-form-container
    .customization-container
    .category-body
    .category-card
    .delete-button {
    display: flex;
    width: 14px;
  }
  .create-form-container
    .customization-container
    .category-body
    .category-card
    .id {
    grid-row: 1 / span 1;
    grid-column: 1 / span 1;
    justify-content: space-between;
  }
  .create-form-container
    .customization-container
    .category-body
    .category-card
    .toggle-button {
    grid-column: 2 / span 1;
    grid-row: 1 / span 1;
    padding: 2px 8px !important;
    width: 90px !important;
    justify-content: space-between;
  }
  .create-form-container
    .customization-container
    .category-body
    .category-card
    .toggle-button.enabled {
    background-color: var(--green-2) !important;
  }
  .create-form-container
    .customization-container
    .category-body
    .category-card
    .toggle-button.disabled {
    background-color: var(--gray-2) !important;
  }
  .create-form-container
    .customization-container
    .category-body
    .category-card
    .content {
    grid-row: 2 / span 2;
    grid-column: 1 / span 2;
    justify-content: space-between;
  }
}
@media (max-width: 490px) {
  .create-form .create-form-container .form-group > div:nth-child(3),
  .create-form .create-form-container .form-group > div:nth-child(4) {
    grid-column: 1 / span 12;
  }
  .create-form-container
    .customization-container
    .customization-header
    > .buttons {
    display: flex;
  }
  .create-form-container
    .customization-container
    .customization-header
    div:first-child
    > .buttons {
    display: none;
  }
  .create-form-container
    .customization-container
    .customization-header
    div:first-child
    > button {
    display: flex;
  }
  .create-form-container
    .customization-container
    .customization-header
    .search-container {
    display: none;
  }
  .create-form .create-form-container .image-input-section {
    gap: 10px;
    height: fit-content;
    margin-bottom: 80px;
  }
  .create-form .create-form-container .upload-button,
  .create-form .create-form-container .current-image,
  .create-form .create-form-container .profile-picture {
    width: 100px;
    height: 100px;
  }
  .create-form .create-form-container .current-image img {
    width: 100%;
  }
  .create-form .create-form-container .profile-picture .upload-text span {
    font-size: var(--font-size-2);
  }
  .create-form .create-form-container .profile-picture .svg {
    width: 35px;
  }
  .categorized-container .categorized-content table tr td:nth-child(7) {
    min-width: 18px;
  }
  .categorized-container .categorized-content table .enabled-cell .enabled,
  .categorized-container .categorized-content table .enabled-cell .disabled {
    background-color: transparent;
    padding: 0;
  }
  .categorized-container
    .categorized-content
    table
    .enabled-cell
    > button
    > span {
    display: none;
  }
}
