@import url("https://fonts.googleapis.com/css2?family=El+Messiri:wght@400..700&family=Vazirmatn:wght@100..900&display=swap");
:root {
  /* Default (light) theme */
  --bg: #fff;
  --accent-bg: #fff4ea;
  --text: #050f24;
  --text-light: #6f757e;
  --border: #898ea4;
  --accent: #0d47a1;
  --code: #d81b60;
  --marked: #ffdd33;
  --disabled: #efefef;
  --orange: #ff8e29;
  --green: #27d095;
  --menu-bg: #f7f7f7;
  --menu-hover: #e0e0e0;
  --menu-double-hover: #c8c8c8;
  --shadow-main: rgba(0, 0, 0, 0.3) 0px 3px 6px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
  direction: rtl;
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  font-family: "Vazirmatn";
  overflow-x: hidden;
  color: var(--text);
  background-color: var(--accent-bg);
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
.admin-area__container {
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  padding: calc(110px + 2vw) 2vw 2vw;
}
.admin-bar__container {
  background-color: var(--accent-bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.admin-bar__branding,
.admin-bar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.admin-bar__branding button,
.bar-bell__btn,
.bar-user__btn {
  text-decoration: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-size: 24px;
}
.admin-bar__branding img {
  width: 45px;
  height: 45px;
}
.bar-bell__btn {
  position: relative;
  color: var(--text);
}
.bar-bell__btn span {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  color: var(--accent-bg);
  background-color: var(--code);
  border-radius: 50%;
  right: -10px;
  top: -10px;
  font-size: 14px;
}
.bar-bell__btn span strong {
  font-weight: 500;
  transform: translateY(1px);
}
.bar-user__btn {
  position: relative;
  font-family: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.bar-user__btn p {
  font-size: 16px;
  display: none;
}
.bar-user__btn i.fa-caret-down {
  display: none;
}

.bar-user__btn img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: block;
  background-color: var(--bg);
}
.bar-user__btn ul {
  list-style-type: none;
  position: absolute;
  top: 50px;
  left: 25px;
  background-color: var(--bg);
  box-shadow: var(--shadow-main);
  padding: 0;
  border-radius: 8px;
  height: 0;
  width: 0;
  overflow: hidden;
  transition: width 0.3s linear, height 0.3s linear, padding 0.3s linear;
}
.bar-user__btn.active ul {
  padding: 10px 0;
  width: 140px;
  height: 140px;
  transition: width 0.3s linear, height 0.3s linear, padding 0.3s linear;
}
.bar-user__btn ul li {
  opacity: 0;
  transition: opacity 0.01s ease-in 0s;
}
.bar-user__btn.active ul li {
  opacity: 1;
  transition: opacity 0.2s ease-out 0.3s;
}
.bar-user__btn.active ul li a:hover {
  opacity: 0.6;
}
.bar-user__btn ul li a {
  text-decoration: none;
  color: var(--text);
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 15px;
  gap: 10px;
  font-size: 16px;
  padding: 0 15px 0 50px;
}
.bar-user__btn ul li:last-of-type a {
  color: var(--code);
  margin-bottom: 0;
  padding: 10px 10px 0 50px;
  border-top: 1px solid var(--code);
}

.side-menu__container {
  position: fixed;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  right: -100vw;
  top: 0;
}
.side-menu__overlay {
  position: absolute;
  left: -100vw;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--text);
  display: none;
  opacity: 0;
}
.side-menu__container.active .side-menu__overlay {
  display: initial;
  opacity: 0.6;
}
.side-content__container {
  position: absolute;
  left: -70vw;
  top: 0;
  width: 70%;
  height: 100%;
  background-color: var(--bg);
  transform: translateX(100%);
  transition: transform 0.3s ease-in;
}

.side-menu__container.active .side-content__container {
  transform: translateX(0);
}
.side-menu__branding {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 8px;
  padding: 30px;
  height: 15%;
}
.side-menu__branding h3 {
  font-size: 30px;
}
.side-menu__branding img {
  height: 50px;
  width: 50px;
}
.side-menu__ul {
  list-style-type: none;
  height: 85%;
  overflow-y: auto;
  padding: 20px 0;
}
.side-list__item {
  margin: 0 0 5px;
  padding: 0 10px;
}
.side-collapse__item {
  margin: 0 0 5px;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  height: 45px;
  overflow: hidden;
}
.side-collapse__item.active {
  height: auto;
}
.side-collapse__item i.fa-chevron-down {
  transform: rotate(0);
  transition: transform 0.1s ease-in;
}
.side-collapse__item.active i.fa-chevron-down {
  transform: rotate(180deg);
}
.side-collapse__item > div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 10px 20px 10px 10px;
  color: var(--text-light);
  background-color: var(--menu-bg);
}
.side-list__item.chosen,
.side-collapse__item.chosen {
  position: relative;
}
.side-list__item.chosen::after,
.side-collapse__item.chosen::after {
  content: "";
  width: 20px;
  position: absolute;
  right: -12px;
  top: 0;
  bottom: 0;
  border-radius: 20px;
  background-color: var(--orange);
}
.side-list__item a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 16px;
  display: inline-block;
  width: 100%;
  border-radius: 10px;
  padding: 10px 20px;
}
.side-list__item a:hover {
  background-color: var(--menu-hover);
}

.side-menu__ul a i,
.side-collapse__item > div i {
  font-size: 16px;
  margin-left: 8px;
}

.side-collapse__item > div span {
  font-size: 16px;
}
/* .side-list__item.active span,
.side-list__item.active i {
  color: var(--orange);
} */
.side-collapse__item ul {
  width: 100%;
  list-style-type: none;
  padding: 5px 25px 0 25px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background-color: var(--menu-hover);
}
.side-collapse__item ul li {
  padding: 5px 25px;
  margin-bottom: 5px;
  border-radius: 8px;
}
.side-collapse__item ul li:hover {
  background-color: var(--menu-double-hover);
}
.side-collapse__item ul li a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 16px;
}
.main-content-area {
  background-color: var(--bg);
  width: 100%;
  overflow-y: auto;
  padding: 20px 10px;
  border-radius: 10px;
  min-height: calc(100vh - (110px + 4vw));
}
/* not fount page */
.not-found-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--bg);
}
.not-found-container img {
  max-width: 100vw;
}
.not-found-container a {
  font-family: inherit;
  background-color: var(--green);
  color: var(--text);
  font-size: 16px;
  cursor: pointer;
  padding: 5px 30px;
  border-radius: 8px;
  border: none;
  margin-top: 8px;
  text-decoration: none;
  box-shadow: var(--shadow-main);
}
/* primary table styling */
.responsive-table__container {
  overflow-x: auto;
}
.responsive-table__container .divider-line {
  margin-top: 50px;
  margin-bottom: 0;
}
.responsive-table__container .views-header__description {
  padding: 10px 0 25px;
}
.responsive-table__container .views-header__description a {
  background-color: var(--marked);
  color: var(--text);
  cursor: pointer;
}
.responsive-table__container .views-table__priority input {
  width: 50px;
}
.views-header__description {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.views-header__description a,
.views-table__primary td.comment-row button {
  text-decoration: none;
  background-color: var(--green);
  color: var(--bg);
  padding: 10px 20px;
  border-radius: 6px;
  box-shadow: var(--shadow-main);
}
.views-table__primary td.comment-row {
  padding: 8px 8px 16px;
}
.views-table__primary td.comment-row button {
  border: none;
  color: #fff;
  font-family: inherit;
  padding: 5px 10px;
  cursor: pointer;
  box-shadow: none;
}
.views-table__primary td.comment-row button:disabled {
  background-color: #c8c8c8;
  cursor: not-allowed;
}
td.comment-row .comment-row__action {
  display: flex;
  justify-content: end;
}
.views-header__description a:hover {
  opacity: 0.9;
}
.views-header__description a:active {
  transform: scale(0.98);
}
.divider-line {
  margin: 20px 0;
}
.views-table__primary {
  border-collapse: collapse;
  width: 100%;
  color: var(--text);
  box-shadow: var(--shadow-main);
}

.views-table__primary th,
.views-table__primary td {
  text-align: right;
  padding: 8px;
}
.views-table__primary td img {
  display: block;
}
.views-table__primary tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.views-table__primary tr:nth-child(even) {
  background-color: var(--disabled);
}
.order-guide {
  font-size: 14px;
  display: flex;
  gap: 8px;
  padding: 0 0 4px;
}
.order-guide span {
  display: inline-block;
  width: 10px;
  height: 10px;
}
.views-table__primary tr.placed,
.order-guide span.placed {
  background-color: #22c0ff7a;
}
.views-table__primary tr.confirmed,
.order-guide span.confirmed {
  background-color: #22ffae7a;
}
.views-table__primary tr.rejected,
.order-guide span.rejected {
  background-color: #ff7e7e7a;
}
.views-table__primary tr.delay,
.order-guide span.delay {
  background-color: #ffb47e7a;
}
.views-table__primary tr.delivered,
.order-guide span.placed {
  background-color: var(--bg);
}
.views-table__primary tr.banned-center {
  background-color: var(--marked);
}
.views-table__primary tr:first-of-type {
  background-color: var(--orange);
  color: var(--bg);
  border: none;
}
.views-table__primary.views-table__secondary tr:first-of-type {
  background-color: var(--marked);
  color: var(--text);
}
.views-table__primary td.comment-row textarea {
  width: 100%;
  font-family: inherit;
  resize: none;
  padding: 16px;
  border-radius: 8px;
  border-top-right-radius: 0;
}
.views-table__actions form {
  display: inline;
}
.views-table__actions i {
  cursor: pointer;
  margin-left: 16px;
}
.views-table__actions a {
  text-decoration: none;
  color: var(--text);
}
.views-table__priority input {
  direction: ltr;
  width: 40px;
  height: 25px;
  font-size: 16px;
  padding: 0 5px;
}
.views-table__primary th.center-table-column,
.views-table__primary td.center-table-column {
  text-align: center;
}
.product-price__td span {
  display: inline-block;
  color: var(--bg);
  background-color: var(--accent);
  border-radius: 6px;
  padding: 5px 10px 2px;
}
.table-search-row input {
  width: 100%;
  height: 30px;
  font-size: 16px;
  padding: 0 5px;
}
.table-search-row input[type="submit"] {
  font-family: inherit;
  cursor: pointer;
}
/* insertion form styling */
.forms-errors-list {
  margin: 20px;
  color: var(--code);
}
.forms-errors-list li {
  margin-bottom: 6px;
}
.insertion-form__split {
  display: flex;
  justify-content: start;
  align-items: stretch;
  flex-wrap: wrap;
}
.insertion-form__split .insertion-input__wrapper {
  width: 100%;
}
.insertion-form__split .insertion-input__wrapper input,
.insertion-form__split .insertion-input__wrapper select {
  width: 100%;
}
.insertion-form__split input:read-only {
  cursor: not-allowed;
  background-color: var(--disabled);
}
.insertion-input__wrapper {
  padding: 6px 0;
  margin-bottom: 10px;
}
.insertion-input__wrapper input,
.insertion-input__wrapper select {
  width: 350px;
  max-width: 100%;
  font-size: 16px;
  padding: 5px;
  font-family: inherit;
  background-color: var(--bg);
  border: 2px solid var(--text);
  border-radius: 6px;
}
.insertion-input__wrapper label {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
}

.insertion-form__actions {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 25px;
  margin: 20px 0;
}
.insertion-form__actions input,
.insertion-form__actions a,
.img-upload-btn {
  font-family: inherit;
  font-size: 14px;
  padding: 8px 10px;
  color: var(--bg);
  border-radius: 6px;
  width: 100px;
  box-shadow: var(--shadow-main);
  cursor: pointer;
}
.img-upload-btn label {
  cursor: pointer;
}
.insertion-form__actions input {
  background-color: var(--green);
  border: none;
}
.insertion-form__actions a {
  background-color: var(--code);
  text-decoration: none;
  text-align: center;
}
.insertion-file__wrapper label {
  display: block;
}
.insertion-file__wrapper input {
  visibility: hidden;
}
.img-upload-btn {
  background-color: var(--accent);
  width: auto;
  border: none;
  margin: 20px 0;
}
.preview-img {
  width: 300px;
  height: auto;
  max-width: 100%;
}
/* pagination styling */
.paginate-records {
  list-style-type: none;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  margin: 30px 0 0;
}
.paginate-records li a:not(.no-link):hover {
  opacity: 0.7;
}
.paginate-records li a {
  text-decoration: none;
  color: var(--orange);
}
.paginate-records li a.no-link {
  color: var(--menu-double-hover);
  pointer-events: none;
}
.paginate-records .active-paginate {
  color: var(--bg);
  background-color: var(--orange);
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
}
.active-paginate span {
  display: block;
}
.records-statistics {
  margin-bottom: 20px;
}
.center-setting__title {
  margin-bottom: 16px;
}
.banner-removing-form i {
  color: var(--bg);
  display: inline-block;
  width: 120px;
  height: 45px;
  font-size: 16px;
  background-color: var(--code);
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.center-setting__nav {
  list-style-type: none;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: start;
  align-items: center;
  background-color: var(--menu-double-hover);
  margin-bottom: 20px;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
  overflow: hidden;
}
.center-setting__nav li {
  width: 33.33%;
}
.center-setting__nav li a {
  display: block;
  text-decoration: none;
  width: 100%;
  font-size: 14px;
  height: 50px;
  font-family: inherit;
  border: none;
  background-color: transparent;
  cursor: pointer;
  color: var(--text);
  text-align: center;
  line-height: 50px;
}

.center-setting__nav li a:hover,
.center-setting__nav li a.selected {
  background-color: var(--text-light);
  color: var(--bg);
}
.working-hour__container {
  width: 100%;
}
.working-hour__container table th {
  text-align: center;
}
.working-hour__container table tr th:first-of-type {
  text-align: right;
}
.working-hour__container table tr {
  border: none;
}
.working-hour__container table tr:nth-of-type(even) {
  background-color: var(--bg);
}
.working-hour__container input[type="time"] {
  background-color: transparent;
  border: none;
  width: 100%;
  border: 1px solid var(--menu-hover);
  height: 40px;
  padding-left: 5px;
  font-size: 18px;
  color: var(--text-light);
}
.working-hour__container input[type="time"]:focus {
  background-color: #ffebcf;
  border: none;
  border-bottom: 3px solid var(--orange);
}
.center-banner__container .preview-img {
  width: 800px;
  height: auto;
  max-width: 100%;
}

.service-area__container .fa-trash {
  color: var(--code);
  cursor: pointer;
}

.set-service-price input {
  direction: ltr;
  padding: 0 5px;
  font-size: 16px;
  height: 30px;
}
/* style add products overlay section*/
.products-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.products-overlay.terminate {
  display: none;
}
.product-overlay__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.product-overlay__contents {
  width: 700px;
  max-width: 98%;
  max-height: 98%;
  background-color: var(--bg);
  position: relative;
  border-radius: 6px;
  padding: 25px 5px;
  overflow-x: auto;
}
.product-overlay__contents .insert-product-spliter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.insert-product textarea {
  width: 100%;
  height: 80px;
  resize: none;
  border-radius: 6px;
  border: 2px solid var(--text);
  padding: 5px;
  font-family: inherit;
  font-size: 16px;
}
.product-overlay__contents .close-product-btn {
  display: inline-block;
  width: 36px;
  height: 36px;
  cursor: pointer;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 18px;
  background-color: var(--menu-double-hover);
}
.product-overlay__contents .product-img__container img.preview-img {
  width: 100px;
  height: 100px;
}
.insert-product-spliter .insertion-input__wrapper {
  width: 48%;
}
.insertion-checkbox input {
  margin-left: 3px;
  transform: scale(1.3);
}
/* styling profile page */
.profile-page__container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 16px;
}
.profile-page__form {
  box-shadow: var(--shadow-main);
  padding: 16px;
  width: 50%;
  border-radius: 16px;
  flex: 1;
  background-color: var(--accent-bg);
}
.profile-page__form.change-password-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.profile-page__form h3 {
  text-align: center;
}
.profile-page__form .submit-profile-btn {
  width: 100%;
  background-color: var(--accent);
  height: 40px;
  font-family: inherit;
  border: none;
  border-radius: 8px;
  color: var(--bg);
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
}
.profile-page__form .profile-form-action,
.profile-page__form .profile-form-checkbox {
  padding: 8px 0;
  width: 100%;
}
.profile-page__form .profile-form-action label {
  display: block;
  margin-bottom: 4px;
}
.profile-page__form .profile-form-action input {
  width: 100%;
  height: 36px;
  font-family: inherit;
  border-radius: 8px;
  padding-right: 8px;
  font-size: 16px;
}
/* styling login page */
.login-page {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login-page__container {
  background-color: var(--bg);
  padding: 5px 12px 15px;
  width: 400px;
  max-width: 90%;
  box-shadow: var(--shadow-main);
  border-radius: 8px;
}
.login-page__anime {
  display: none;
  overflow: hidden;
  position: relative;
  border-right: 1px solid var(--border);
}
.login-page__anime h2 {
  text-align: center;
  margin: 60px 0 20px;
  color: var(--text);
}
.login-page__anime p {
  color: var(--border);
  text-align: center;
  margin-right: 10px;
}
.login-page__content {
  width: 100%;
}
.login-page__content img {
  display: block;
  margin: 25px auto 0;
  width: 75px;
  height: auto;
}
.login-page__divider {
  position: relative;
  height: 30px;
  margin: 15px 0 50px;
}
.login-page__divider p {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--bg);
  transform: translate(-50%, -50%);
}
.login-page__divider hr {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(50%);
}
.login-page__actions {
  position: relative;
  margin: 20px 0 0;
  color: var(--text);
}
.login-page__actions input[type="text"],
.login-page__actions input[type="password"] {
  font-family: inherit;
  color: var(--text);
  width: 100%;
  height: 45px;
  font-size: 18px;
  border-radius: 6px;
  padding-right: 46px;
}
.login-page__actions .floating-icon {
  position: absolute;
  right: 0;
  font-size: 18px;
  top: 0;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login-page__actions button.floating-icon {
  right: unset;
  left: 0;
  cursor: pointer;
  border: none;
  background-color: transparent;
}
.login-page__actions button i.fa-eye-slash {
  display: none;
}
.login-page__actions button i.fa-eye {
  display: initial;
}
.login-page__actions button.show-pass i.fa-eye {
  display: none;
}
.login-page__actions button.show-pass i.fa-eye-slash {
  display: initial;
}
.login-page__checkbox {
  margin: 15px 0 0;
}
.login-page__checkbox label {
  font-size: 14px;
}
.login-page__checkbox input {
  transform: scale(1.2);
  margin-left: 5px;
}
.login-form__btn {
  font-family: inherit;
  color: var(--bg);
  cursor: pointer;
  width: 100%;
  height: 45px;
  font-size: 18px;
  border: none;
  border-radius: 6px;
  margin: 30px 0 25px;
  background-color: var(--accent);
}
.login-form__btn:active {
  transform: scale(0.98);
}
.login-page__content .forget-pass {
  text-decoration: none;
}
.login-page__content .forget-pass,
.login-page__content .forget-pass:active,
.login-page__content .forget-pass:visited {
  color: var(--accent);
}
.login-anime__container {
  width: 100%;
  height: 100%;
}

.orange-guy-body {
  background-color: var(--orange);
  position: absolute;
  animation: orangeEntrance 1s linear 1 forwards;
}
.orange-left-eye,
.orange-right-eye {
  width: 12px;
  height: 12px;
  background-color: black;
  border-radius: 50%;
  position: absolute;
  left: 200px;
  bottom: 130px;
  opacity: 0;
  animation: blinkEye 5s linear 2s infinite forwards,
    showFace 0.1s ease-in 1.1s forwards;
}
.orange-right-eye {
  right: 200px;
  left: unset;
}
.orange-guy-mouth {
  width: 24px;
  height: 12px;
  background-color: black;
  border-radius: 0 0 24px 24px;
  position: absolute;
  right: 213px;
  bottom: 110px;
  opacity: 0;
  animation: showFace 0.1s ease-in 1.1s forwards;
}
.login-anime__container.close-eye .orange-left-eye,
.login-anime__container.close-eye .orange-right-eye {
  width: 18px;
  background-color: transparent;
  border: 4px solid black;
  border-bottom: none;
  border-left: 0;
  border-right: 0;
  opacity: 1;
  animation-duration: 0ms;
}
.login-anime__container.close-eye .orange-guy-mouth {
  width: 24px;
  background-color: transparent;
  border: 4px solid black;
  border-bottom: none;
  border-left: 0;
  border-right: 0;
}
/* Order details section */
.details-container,
.factor-headings {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 8px;
}
.factor-headings {
  padding-bottom: 8px;
}
.basket-list {
  list-style-type: none;
  width: 70%;
  flex-grow: 1;
  background-color: #f7f7f7;
  border-radius: 16px;
  overflow: hidden;
  padding: 8px 0;
}
.basket-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--menu-double-hover);
}
.basket-list li:last-of-type {
  border-bottom: none;
}
.basket-list .order-flex-item {
  width: 25%;
  flex-grow: 0;
}
.basket-list .order-flex-item .secondary-item {
  color: #999ba4;
  font-size: 14px;
}
.basket-list li img {
  width: 80px;
  height: 80px;
}
.details-container .bill-item {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  font-size: 18px;
  margin-bottom: 8px;
}
.details-container .bill-item.bill-total {
  font-weight: bold;
  color: var(--green);
  margin-top: 8px;
  font-size: 20px;
}

.details-container .basket-info {
  width: 30%;
  background-color: #f7f7f7;
  border-radius: 16px;
  overflow: hidden;
  padding: 8px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.customer-info {
  padding: 16px 8px;
  background-color: #f7f7f7;
  margin: 8px 0;
  overflow: hidden;
  border-radius: 16px;
}
.customer-info .customer-item {
  padding-bottom: 8px;
}
.customer-info .customer-item:last-of-type {
  padding-bottom: 0;
}
.customer-info .customer-item span {
  font-weight: bold;
}
.order-details__actions {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding-top: 16px;
}
.order-details__actions .confirmation-form {
  width: 32%;
  background-color: #f7f7f7;
  border-radius: 16px;
  padding: 16px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.confirmation-form.confirmed-order-box {
  background-color: #27d09581;
}
.confirmation-form.rejected-order-box {
  background-color: #d81b6072;
  justify-content: center;
}
.confirmation-form .order-action-btn {
  width: 100%;
  height: 36px;
  border-radius: 8px;
  font-size: 16px;
  background-color: var(--green);
  border: none;
  font-family: inherit;
  color: var(--bg);
  cursor: pointer;
}
.confirmation-form .order-action-btn:disabled {
  background-color: var(--menu-double-hover);
  cursor: not-allowed;
}
.confirmation-form .order-reject-btn {
  background-color: var(--code);
}

.confirmation-form .confirmation-input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
}
.confirmation-form .confirmation-input input {
  width: 48px;
  height: 32px;
  border-radius: 8px;
  padding: 0 2px;
  direction: ltr;
  font-size: 16px;
  text-align: center;
}
@keyframes showFace {
  form {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes orangeEntrance {
  0% {
    width: 50px;
    height: 50px;
    left: 0;
    bottom: 0;
  }
  20% {
    width: 50px;
    height: 50px;
    left: 50px;
    bottom: 100px;
  }
  40% {
    width: 50px;
    height: 50px;
    left: 100px;
    bottom: 0;
  }
  60% {
    width: 50px;
    height: 50px;
    left: 150px;
    bottom: 100px;
  }
  80% {
    width: 50px;
    height: 50px;
    left: 200px;
    bottom: -50px;
  }
  100% {
    width: 300px;
    height: 300px;
    left: 75px;
    bottom: -120px;
    border-top-left-radius: 300px 300px;
    border-top-right-radius: 300px 300px;
  }
}
@keyframes blinkEye {
  0% {
    height: 12px;
    opacity: 1;
  }
  5% {
    height: 3px;
  }
  10% {
    height: 12px;
  }
  15% {
    height: 3px;
  }
  20% {
    height: 12px;
  }
  100% {
    height: 12px;
    opacity: 1;
  }
}
/* customers setting page */

.cusomer-balance-view {
  border-radius: 8px;
  margin: 10px 0 20px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
.customer-balance-form,
.balance-amount-container {
  width: 100%;
}
.cusomer-balance-view .balance-amount span {
  font-size: 12px;
}
.cusomer-balance-view .balance-amount {
  background-color: var(--bg);
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, #ffd700 0%, #ffa500 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  margin: 15px auto;
  font-weight: 500;
  border: 12px solid gold;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
.customer-balance-form p.over-charge {
  color: var(--code);
  font-size: 12px;
}
.customer-balance-form input[type="submit"] {
  color: var(--text);
  padding: 5px 15px;
  display: block;
  height: 40px;
  background-color: #27d095;
  font-family: inherit;
  font-size: 16px;
  border-radius: 5px;
  border: none;
  margin: 10px 0;
  cursor: pointer;
}
.pre-deposit-amounts {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 50%;
  width: 350px;
  max-width: 100%;
  gap: 2%;
}
.pre-deposit-amounts button {
  font-family: inherit;
  padding: 5px 15px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
  width: 32%;
}
/* dashboard page styles */
ul.dashboard-features__container {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.dashboard-features__container .dashboard-features__box {
  border: 1px solid var(--menu-double-hover);
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  padding: 8px;
  min-height: 120px;
  background-color: #ff8d29cd;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  color: var(--text);
  font-size: 20px;
  position: relative;
  box-shadow: var(--shadow-main);
}
.dashboard-features__box i {
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-size: 36px;
  opacity: 0.1;
}
.dashboard-features__box.dashboard-productbox {
  background-color: #d81b60cd;
}
.dashboard-features__box.dashboard-centerbox {
  background-color: #27d095cd;
}
.dashboard-features__box.dashboard-userbox {
  background-color: #ffdd33cd;
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .side-content__container {
    left: -50vw;
    width: 50%;
  }
  .insertion-form__actions input,
  .insertion-form__actions a,
  .img-upload-btn {
    font-size: 16px;
    padding: 10px 20px;
  }
  .center-setting__nav li {
    width: auto;
  }
  .center-setting__nav li a {
    width: 120px;
    font-size: 16px;
  }
  .product-overlay__contents {
    padding: 25px;
  }
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .admin-bar__container {
    padding: 30px 40px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 3px;
  }
  .side-content__container {
    left: -40vw;
    width: 40%;
  }
  .bar-user__btn p {
    display: initial;
  }
  .bar-user__btn i.fa-caret-down {
    display: initial;
  }
  .bar-user__btn ul {
    left: 0px;
  }
  .side-collapse__item ul li a {
    font-size: 18px;
  }
  .side-menu__ul a i,
  .side-collapse__item > div i {
    font-size: 18px;
  }

  .side-collapse__item > div span {
    font-size: 18px;
  }
  .side-list__item a {
    font-size: 18px;
  }
  .insertion-form__split {
    gap: 2%;
  }
  .insertion-form__split .insertion-input__wrapper {
    width: 49%;
  }
  .cusomer-balance-view {
    flex-direction: row-reverse;
    flex-wrap: wrap;
  }
  .customer-balance-form,
  .balance-amount-container {
    width: 50%;
  }
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .admin-area__container {
    padding: calc(110px + 1vw) 26vw 1vw 1vw;
  }
  .main-content-area {
    padding: 30px;
    min-height: calc(100vh - (110px + 2vw));
  }
  .admin-bar__container {
    padding: 30px 50px;
  }
  .side-content__container {
    left: -25vw;
    width: 25%;
    transform: translateX(0);
  }
  .side-menu__container.active .side-menu__overlay {
    display: none;
  }
  .login-page__container {
    padding: 15px;
    width: 900px;
    max-width: 900px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
  .login-page__anime {
    display: block;
    width: 450px;
  }
  .login-page__content {
    width: 400px;
  }
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .admin-area__container {
    padding: calc(110px + 1vw) 21vw 1vw 1vw;
  }
  .side-content__container {
    left: -20vw;
    width: 20%;
  }
  .insertion-form__split {
    gap: 2%;
  }
  .insertion-form__split .insertion-input__wrapper {
    width: 32%;
  }
}
