/* Reset some default browser styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

@media print {
  body {
    padding: 20px;
  }
  #archive-invoice,
  #new-order-invoice,
  #total-invoices {
    width: 350px;
    border: 1px solid gray;
  }
  #tablecontent {
    width: 100%;
    border-radius: 10px;
    border: 1px solid gray;
    padding: 10px;
  }
}
body {
  background-color: var(--surface-container);
  position: relative;
  transition: 0.9s ease-in-out;
  height: 100vh;
  overflow:hidden;

  
 
}

.layoutSidenav {
  display: flex;
  height:inherit;
}

p,
ul {
  margin: 0px;
  padding: 0px;
}

h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

/* 
**************************************
    import font web font
**************************************
*/
@font-face {
  font-family: "cairo-black";
  font-weight: 900;
  src: local("Open Sans Light"), local("OpenSans-Light"), url(../fonts/Cairo-Black.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "cairo-extrabold";
  font-weight: 800;
  src: local("Open Sans Light"), local("OpenSans-Light"), url(../fonts/Cairo-ExtraBold.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "cairo-bold";
  font-weight: 700;
  src: local("Open Sans Light"), local("OpenSans-Light"), url(../fonts/Cairo-Bold.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "cairo-simebold";
  font-weight: 600;
  src: local("Open Sans Light"), local("OpenSans-Light"), url(../fonts/Cairo-SemiBold.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "cairo-medium";
  font-weight: 500;
  src: local("Open Sans Light"), local("OpenSans-Light"), url(../fonts/Cairo-Medium.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "cairo-regular";
  font-weight: 400;
  src: local("Open Sans Light"), local("OpenSans-Light"), url(../fonts/Cairo-Regular.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "cairo-light";
  font-weight: 300;
  src: local("Open Sans Light"), local("OpenSans-Light"), url(../fonts/Cairo-Light.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "cairo-extralight";
  font-weight: 300;
  src: local("Open Sans Light"), local("OpenSans-Light"), url(../fonts/Cairo-ExtraLight.woff) format("woff");
  font-display: swap;
}
/* font clases */
.text-X-Small {
  font-family: "cairo-Regular";
  font-size: 13px;
}

.text-XX-Small {
  font-family: "cairo-Regular";
  font-size: 12px;
}

.text-small {
  font-family: "cairo-Medium";
  font-size: 14px;
}

.text-Small-light {
  font-family: "cairo-extrabold";
  font-size: 11px;
}

.text-Small-lighter {
  font-family: "cairo-Medium";
  font-size: 17px;
}

.text-Small-Bold {
  font-family: "cairo-Regular";
  font-size: 14px;
}

.text-Small-regular {
  font-family: var(--cairo-Bold);
  font-size: 12px;
}

.text-Small-Bolder {
  font-family: var(--cairo-Bold);
  font-size: 16px;
}

.text-Small-midium {
  font-family: var(--cairo-Medium);
  font-size: 19px;
}

.font-bold {
  font-family: "cairo-extrabold";
}

.font-Medium {
  font-family: "cairo-Medium";
}

.font-regular {
  font-family: "cairo-Regular";
}

.font-regular {
  font-family: "cairo-Regular";
}

.s-10 {
  font-size: 10px;
}

.s-15 {
  font-size: 15px;
}

.s-20 {
  font-size: 20px;
}

.s-25 {
  font-size: 25px;
}

.s-30 {
  font-size: 30px;
}

.s-30 {
  font-size: 30px;
}

.s-35 {
  font-size: 35px;
}

.light-theme {
  --body-background: white;
  --bg-blue: #2f2fcc;
  /* prrimary yellow */
  --primary-color-yellow-light: #fff8e6;
  --primary-color-yellow-Light-hover: #fff5d9;
  --primary-color-yellow-light-active: #ffeab0;
  --primary-color-yellow-Normal: #ffba00;
  --primary-color-yellow-Normal-hover: #e6a700;
  --primary-color-yellow-Normal-active: #cc9500;
  /* dark mode */
  --primary-color-yellow-Dark: #bf8c00;
  --primary-color-yellow-Dark-hover: #997000;
  --primary-color-yellow-Dark-active: #735400;
  --primary-color-yellow-Darker: #594100;
  /* primary red */
  --primary-color-red-light: #fceaea;
  --primary-color-red-Light-hover: #fbdfdf;
  --primary-color-red-light-active: #f6bdbd;
  --primary-color-red-Normal: #e32929;
  --primary-color-red-Normal-hover: #cc2525;
  --primary-color-red-Normal-active: #b62121;
  /* dark mode */
  --primary-color-red-Dark: #aa1f1f;
  --primary-color-red-Dark-hover: #881919;
  --primary-color-red-Dark-active: #661212;
  --primary-color-red-Darker: #4f0e0e;
  /* color primary */
  --primary-color-white: #ffffff;
  --primary-color-Light: #eaedfc;
  --primary-color-Normal: #2f4cdd;
  --primary-color-sucsess: #0d5f18;
  /* color socndary */
  --secondary-color-Normal: #ffa000;
  /* icon background */
  --icon-background: #d2d8c82e;
  --secondary-color-avatar: #ffa000;
  /* text-color */
  --text-color-light: #ebeef2;
  --text-color-Lighter: #b2bbc6;
  --text-color-Normal: #546881;
  --text-color-Dark: #1d242d;
  --text-color-Darker: #090b0e;
  /* background */
  --surface-container: #ebeef2;
  --surface-bright: #f9fafb;
  --surface-dim: #f5f7f9;
  --surface-dim-2: #f5f7f9;
  --surface-dim-tow: #c3d5eb57;
  --btn-gb-one: #98c0f038;
  /* input color */
  --input-border-color: #dae2eb;
  --input-background-color: #f2f4f7;
  --input-placeholder-color: #a6b5c8;
  /* font */
  --cairo-ExtraLight: "cairo-ExtraLight";
  --cairo-light: "cairo-Light";
  --cairo-Regular: "cairo-Regular";
  --cairo-Medium: "cairo-Medium";
  --cairo-Bold: "cairo-Bold";
  --cairo-Bold: "cairo-extrabold";
  --cairo-simebold: "cairo-simebold";
  --cairo-Black: "cairo-Black";
  /* box-shadow */
  --size-icon-one: 22px;
  --size-icon-tow: 20px;
}

.dark-theme {
  /* color primary */
  --body-background: white;
  --primary-color-white: #ffffff;
  --primary-color-Light: #272b3c;
  --primary-color-Normal: #2f4cdd;
  --bg-blue: #09093c;
  /* color socndary */
  --secondary-color-Normal: #ffa000;
  /* icon background */
  --icon-background: #d2d8c82e;
  --secondary-color-avatar: #ffa000;
  /* text-color */
  --text-color-light: #ebeef2;
  --text-color-Lighter: #b2bbc6;
  --text-color-Normal: #ffffff;
  --text-color-Dark: #ffffff;
  --text-color-Darker: #ffffff;
  /* background */
  --surface-container: #121314;
  --surface-bright: #1f1c2d;
  --surface-dim: #0000009c;
  --surface-dark: #000000;
  --surface-dim-2: #f7f9fc;
  /* input color */
  --input-border-color: #dae2eb;
  --input-background-color: #f2f4f7;
  --input-placeholder-color: #a6b5c8;
}

.join-btn {
  background-color: #2a4fbe !important;
  width: 100%;
  outline: 2px solid #225888 !important;
}

.normal-btn {
  background-color: unset;
  border: none;
}

.buttom-one {
  padding: 6px 0px;
  background-color: var(--primary-color-Normal);
  color: var(--text-color-light);
  font-family: var(--cairo-Regular);
  font-size: 16px;
  width: 100%;
  display: block;
  border-radius: 7px;
  text-align: center;
  margin-bottom: 8px;
}

.buttom-one:hover {
  color: var(--primary-color-Light);
}

.save-btn-one {
  color: var(--text-color-light);
  background-color: var(--primary-color-Normal);
  padding: 5px 30px;
  border-radius: 7px;
  font-family: var(--cairo-Regular);
  font-size: 20px;
}

.save-btn-one:hover {
  color: var(--primary-color-Light);
}

.save-btn-three {
  color: var(--text-color-light);
  background-color: var(--primary-color-Normal);
  padding: 4px 24px;
  border-radius: 7px;
  font-family: var(--cairo-Regular);
  font-size: 20px;
}

.save-btn-three:hover {
  color: var(--primary-color-Light);
}

.cancle-btn-three {
  background-color: var(--primary-color-red-light-active);
  padding: 4px 24px;
  border-radius: 7px;
  font-family: var(--cairo-Regular);
  font-size: 20px;
  color: var(--primary-color-red-Normal);
  transition: 0.3s ease-in-out;
}

.cancle-btn-three:hover,
.cancle-btn-one:hover {
  color: var(--primary-color-Light);
  background-color: red;
}

.buttom-three {
  padding: 7px 15px;
  background-color: var(--primary-color-Normal);
  color: var(--text-color-light);
  font-family: var(--cairo-Regular);
  font-size: 16px;
  display: block;
  border-radius: 7px;
  text-align: center;
}

.buttom-4 {
  padding: 7px 15px;
  background-color: var(--primary-color-Normal);
  color: var(--text-color-light);
  font-family: var(--cairo-Regular);
  font-size: 16px;
  display: block;
  border-radius: 7px;
  text-align: center;
}

.buttom-three:hover,
.buttom-4:hover {
  color: white;
}

.buttom-four {
  padding: 7px 15px;
  background-color: var(--primary-color-sucsess);
  color: var(--text-color-light);
  font-family: var(--cairo-Regular);
  display: block ruby;
  border-radius: 7px;
  text-align: center;
}

.buttom-four:hover {
  color: var(--primary-color-Light);
}

.cancle-btn-tow {
  padding: 7px 15px;
  background-color: var(--primary-color-red-Normal);
  color: var(--text-color-light);
  font-family: var(--cairo-Regular);
  display: block ruby;
  border-radius: 7px;
  text-align: center;
}

.cancle-btn-tow:hover {
  color: white;
}

.save-btn-tow {
  color: var(--text-color-light);
  background-color: var(--primary-color-red-light-active);
  padding: 9px 30px;
  border-radius: 7px;
  font-family: var(--cairo-Regular);
  font-size: 20px;
}

.cancle-btn-one {
  color: var(--primary-color-red-Normal);
  background-color: var(--primary-color-red-light-active);
  padding: 5px 30px;
  border-radius: 7px;
  font-family: var(--cairo-Regular);
  font-size: 20px;
  transition: 0.3s ease-in-out;
}

.add-new-category-2 {
  background-color: var(--surface-dim-tow);
  padding: 8px 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--cairo-Regular);
  color: var(--text-color-Normal);
}

.buttom-five {
  padding: 7px 15px;
  background-color: var(--btn-gb-one);
  color: var(--primary-color-Normal);
  font-family: var(--cairo-Regular);
  display: block ruby;
  border-radius: 7px;
  text-align: center;
}

.buttom-five:hover {
  color: var(--primary-color-Normal);
}

.filter-btn-one {
  background-color: var(--surface-dim-tow);
  padding: 7px 27px;
  border-radius: 7px;
  border: 1px solid #d2c8c8;
}

.counter-minus {
  border: none;
  font-size: 19px;
  padding: 3px 5px;
}

.counter-plus,
.counter-minus {
  border: none;
  font-size: 19px;
  padding: 3px 5px;
  color: var(--text-color-Normal);
}

.add-iamge {
  padding: 3px 8px;
  color: var(--primary-color-Light);
  border-radius: 6px;
  font-family: var(--cairo-Regular);
  transition: 0.3s ease-in-out;
  background-color: var(--primary-color-Normal);
}

.add-iamge:hover {
  color: var(--primary-color-Light);
}

.download-qrcode {
  padding: 7px 15px;
  background-color: var(--primary-color-Normal);
  color: var(--text-color-light);
  font-family: var(--cairo-Regular);
  font-size: 16px;
  display: block;
  text-align: center;
}

.add-rattings {
  color: var(--text-color-Darke);
  background-color: var(--primary-color-yellow-Normal);
  padding: 5px 13px;
  font-family: var(--cairo-Regular);
  font-size: 13px;
  margin-left: 11px;
  border-radius: 6px;
}

.add-rattings:hover,
.view-rattings:hover {
  color: white;
}

.view-rattings {
  color: var(--text-color-light);
  background-color: var(--primary-color-Normal);
  padding: 5px 13px;
  font-family: var(--cairo-Regular);
  font-size: 13px;
  margin-left: 11px;
  border-radius: 6px;
}

.default-color {
  padding: 4px 7px;
  font-family: var(--cairo-Regular);
  font-size: 15px;
  background-color: var(--primary-color-Normal);
  color: #fff;
}

#qr-extension {
  background-color: var(--primary-color-yellow-Normal);
}

.date-picker {
  position: relative;
  width: 250px;
}

#date-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.calendar {
  position: absolute;
  top: 50px;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.hidden {
  display: none;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #007bff;
  color: #fff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.nav-button {
  cursor: pointer;
  font-size: 18px;
}

.calendar-body {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}

.calendar-weekday,
.calendar-day {
  width: 14.28%;
  text-align: center;
  margin-bottom: 10px;
}

.calendar-day {
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
}

.calendar-day:hover {
  background-color: #007bff;
  color: #fff;
}

.selected {
  background-color: #007bff;
  color: #fff;
}

tbody tr:nth-child(even) {
  background-color: rgba(42, 118, 211, 0.031372549);
}

/* color */
.text-color-white {
  color: var(--primary-color-white);
}

.primary-text-color {
  color: var(--primary-color-Normal);
}

.primary-color-light {
  color: var(--primary-color-Light);
}

.text-color-normal {
  color: var(--text-color-Normal);
}

.text-color-darck {
  color: var(--text-color-Darker);
}

.red {
  background-color: #fa5050;
}

.green {
  background-color: #4bf9a5;
}

.yellow {
  background-color: #f9f24b;
}

.orange {
  background-color: #f9944b;
}

.blue {
  background-color: #634bf9;
}

.purple {
  background-color: #e04bf9;
}

.gold {
  color: var(--secondary-color-Normal);
}

.bg-white-1 {
  background-color: var(--primary-color-white);
}

.bg-gry {
  background-color: var(--primary-color-Light);
}

.color-btn {
  padding: 10px 20px;
  margin: 5px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  border-radius: 5px;
}

.color-btn[data-color=red] {
  background-color: red;
  color: white;
}

.color-btn[data-color=green] {
  background-color: green;
  color: white;
}

.color-btn[data-color=yellow] {
  background-color: #f9f24b;
  color: white;
}

.color-btn[data-color=orange] {
  background-color: #f9944b;
  color: white;
}

.color-btn[data-color=purple] {
  background-color: #e04bf9;
  color: white;
}

.curent-theme-color {
  transition: background-color 0.3s;
}

.bg-custom-color {
  transition: background-color 0.3s;
}

.active-link-one {
  background-color: var(--primary-color-Light);
}

.active-menu-one {
  display: block !important;
}

.row-gab {
  row-gap: 13px;
}

.w-5 {
  width: 5%;
}

.w-7 {
  width: 7%;
}

.w-10 {
  width: 10%;
}

.w-15 {
  width: 15%;
}

.w-20 {
  width: 20%;
}

html[lang=ar] .nav-link-1 a span {
  margin-left: 5px;
}

html[lang=ar] .main-menu ul li a span i {
  padding-left: 6px;
  padding-right: 0px;
}

html[lang=ar] .language-switcher {
  margin-left: 0px;
  margin-right: 15px;
}

html[lang=ar] .user-avatar-one {
  margin-left: 0px;
  margin-right: 10px;
}

@media only screen and (max-width: 500px) {
  html[lang=ar] .main-menu {
    right: -300px;
    left: 0px;
  }
  html[lang=ar] .show-main-menu {
    right: 0px !important;
  }
}
html[lang=ar] .input-with-icon i {
  right: 8px;
}

html[lang=ar] .input-with-icon input {
  padding-right: 29px;
}

html[lang=ar] .input-group-text {
  border-radius: 0px 5px 5px 0px !important;
}

html[lang=ar] .form-control {
  border-radius: 5px 5px 5px 5px !important;
}

html[lang=ar] .password-wrapper .toggle-password {
  right: auto;
  left: 15px;
}

html[lang=ar] .main-page {
  right: auto;
  left: 0px;
}

.form-one .form-group label {
  font-family: "cairo-medium";
  margin-bottom: 6px;
  font-size: 13px;
  color: var(--text-color-Normal);
}

.form-one .form-group input {
  font-family: "cairo-medium";
}

.input-one {
  padding: 5px 8px;
  padding-left: 8px;
  border-radius: 6px;
  border: 1px solid #d2c8c8;
  background-color: var(--primary-color-Light);
  line-height: 1;
}

.form-control {
  background-color: var(--primary-color-Light);
  padding: 0px 10px;
  font-family: "cairo-simebold";
  font-size: 14px;
  min-height: 36px;
}

.input-with-icon i {
  position: absolute;
  left: 12px;
  top: 56%;
  transform: translatey(-50%);
  width: -moz-fit-content;
  width: fit-content;
  color: var(--text-color-Normal);
}

.input-with-icon input {
  padding-left: 29px;
}

.input-one:focus-visible {
  border: none !important;
  box-shadow: 0px 0px 6px 0px #736f6f;
  outline: none;
  transition: 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.password-wrapper {
  position: relative;
}

.password-wrapper .toggle-password {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #888;
}

.password-wrapper .toggle-password:hover {
  color: #333;
}

.table-four {
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
}

.table-four th {
  background-color: var(--surface-dim-tow);
  text-shadow: 0px 0px 0 rgba(0, 0, 0, 0.4);
}

.table-four th {
  font-family: var(--cairo-Bold);
  padding: 7px;
  border: 1px solid var(--surface-dim-tow);
}

.table-four td {
  font-family: var(--cairo-Medium);
  padding: 5px;
  border: 1px solid var(--surface-dim-tow);
}

.table-four tbody tr td .table-img {
  width: 50px;
}

.table-four tbody tr td .table-img img {
  width: 100%;
}

.avatar-one {
  padding: 2px;
  background-color: var(--primary-color-Light);
  border: 1px solid var(--primary-color-Light);
  border-radius: 11px;
  max-width: 30%;
  height: auto;
}

.btn-submit-one {
  background-color: var(--bg-blue);
  border: none;
  padding: 5px 20px;
  color: white;
  border-radius: 5px;
  outline: 2px solid var(--bg-blue);
  font-family: "cairo-bold";
  border: 2px solid #fff;
}

.alert {
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease-out, visibility 1s ease-out;
}

/* 
**************************************
    1- admin topbar
**************************************
*/
.staytop {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #ebebeb;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.17);
}

.stikysaid {
  position: fixed;
  top: 60px;
  width: 100%;
  z-index: 1000;
  background-color: #ebebeb;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.17);
}

.settings {
  display: none;
}

.settings span {
  top: 55px;
  right: 0px;
  background-color: red;
  padding: 3px 6px;
  color: white;
  font-size: 15px;
  border-radius: 10px;
  cursor: pointer;
}

.color-settings {
  background-color: var(--primary-color-Light);
  right: -6px;
  bottom: -100px;
  padding: 10px;
  border-radius: 10px;
  transition: 0.7s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  z-index: 3;
}

.show-settings-option {
  width: 66% !important;
}

.show-box-1 {
  display: block !important;
  transition: 0.9s cubic-bezier(0.98, 0.43, 0, 1.61);
}

.show-option-menu {
  position: fixed;
  top: 55px;
  left: 0px;
  width: 0px;
  transition: 0.4s cubic-bezier(0.62, 0.38, 0.25, 1);
  overflow: hidden;
  z-index: 3;
  box-shadow: -3px 5px 5px 0px rgba(0, 0, 0, 0.2);
}

.option-box {
  background-color: var(--surface-bright);
  padding: 11px;
  box-shadow: -3px 5px 5px 0px rgba(0, 0, 0, 0.2);
  display: none;
  transition: 0.9s cubic-bezier(0.98, 0.43, 0, 1.61);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.settings span i {
  animation: rotate 2s linear infinite;
}

.admin-top-bar {
  background-color: var(--surface-bright);
  padding: 5px 0px;
  transition: 0.9s ease-in-out;
  height: 60px;
  display: flex;
  align-items: center;
}

.topbar-date {
  margin-left: 10px;
}

.website-mode span i {
  color: var(--text-color-Darker);
}

/* order-tatus */
.order-status {
  margin-right: 20px;
}

.toggle-btn {
  height: 24px;
  width: 50px;
  background-color: var(--surface-dim);
  position: relative;
  border: 2px solid var(--input-border-color);
  border-radius: 20px;
  margin: 0px 5px;
}

.toggle-btn.active {
  background-color: #d5d6d5;
}

.toggle-circle {
  width: 20px;
  height: 20px;
  background-color: var(--text-color-Normal) !important;
  border-radius: 50%;
  transition: transform 0.3s;
  position: absolute;
}

.noyes {
  background-color: #dc0808 !important;
}

.toggle-btn.active .toggle-circle {
  transform: translateX(26px);
  background-color: var(--primary-color-Normal) !important;
}

.notefication-icon {
  margin: 0px 22px;
}

.notefication-icon a,
.color-option {
  background-color: var(--primary-color-Light);
  padding: 8px;
}

.color-option {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none; /* Remove underline from link */
  border-radius: 16px;
  height: 40px;
  width: 40px;
  margin-right: 13px;
  margin-left: 40px;
}

.notefication-icon .icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none; /* Remove underline from link */
  border-radius: 16px;
  margin: 0px 4px;
  height: 40px;
  width: 40px;
}

.sms-notification-mobile {
  position: absolute;
  background-color: var(--secondary-color-avatar);
  border-radius: 50px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -7px;
  right: -6px;
  font-size: 12px;
  font-family: var(--cairo-Regular);
  color: var(--text-color-light);
}

.sms-notification {
  position: absolute;
  background-color: var(--secondary-color-avatar);
  border-radius: 50px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -7px;
  right: -6px;
  font-size: 12px;
  font-family: var(--cairo-Regular);
  color: var(--text-color-light);
  z-index: 1;
}

.notefication-icon a img {
  max-width: 100%;
  max-height: 100%;
}

.color-slection {
  background-color: var(--surface-bright);
  position: absolute;
  right: -6px;
  bottom: -100px;
  box-shadow: 3px 4px 5px rgba(0, 0, 0, 0.2);
  padding: 10px;
  border-radius: 10px;
  transition: 0.7s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  display: none;
  z-index: 3;
}

.color-btn {
  border: navajowhite;
  margin: 2px;
  padding: 2px;
  border-radius: 6px;
  width: 30px;
  height: 30px;
}

.color-slection::before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  background-color: var(--surface-bright);
  right: 16px;
  top: -8px;
  z-index: -1;
  rotate: 137deg;
}

.color-slection p {
  margin-left: 4px;
}

.color-box {
  height: 30px;
  width: 30px;
  margin: 4px;
  border-radius: 5px;
}

.show-color-option {
  display: block !important;
}

/* user-top-account */
.user-avatar {
  background-color: var(--primary-color-avatar);
  border-radius: 11px;
}

.user-info {
  display: flex;
}

.user-avatar-one {
  height: 40px;
  width: 40px;
  border-radius: 10px;
  overflow: hidden;
  margin-left: 6px;
}

.user-avatar-one .user-avatar-top {
  width: 100%;
  height: 100%;
}

.avatar-two {
  height: 100%;
  width: 100%;
}

.option-one {
  display: flex;
  padding: 16px;
  align-items: center;
  justify-content: center;
}

.mobile-icon {
  cursor: pointer;
  background-color: var(--primary-color-Light);
  height: 37px;
  width: 38px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 7px 6px;
  border-radius: 6px;
}

.mobile-icon span {
  height: 4px;
  display: block;
  width: 100%;
  background-color: blue;
  border-radius: 30px;
}

.popup-box {
  background-color: var(--surface-bright);
  border-radius: 10px;
  padding: 10px;
  width: 315px;
  box-shadow: 3px 4px 5px rgba(0, 0, 0, 0.2);
  z-index: 1;
  display: none;
  opacity: 1;
  transition: 0.2s ease-in-out;
}

.popup-box.show {
  opacity: 1;
}

.sms {
  position: absolute;
  top: 58px;
  right: 4px;
}

.notification {
  position: absolute;
  top: 58px;
  right: 0px;
}

.mesage-content {
  margin-right: 8px;
}

.message-box {
  background-color: var(--surface-dim-2);
  margin-bottom: 15px;
  padding: 9px;
  border-radius: 9px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.14);
}

.mesage-content p {
  font-family: var(--cairo-Regular);
  font-size: 12px;
}

.mesaage-read {
  border: 1px solid #f5d10d;
}

.un-mesaage-read {
  border: 1px solid #ee1717;
}

.all-message {
  display: block;
  text-align: center;
  background-color: rgba(183, 176, 176, 0) !important;
}

.notification-box {
  background-color: var(--surface-dim-2);
  margin-bottom: 15px;
  padding: 9px;
  border-radius: 9px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.14);
}

.notification-box-2 {
  background-color: var(--surface-bright);
  margin-bottom: 15px;
  padding: 9px;
  border-radius: 9px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.14);
}

.notification-content {
  margin-right: 8px;
}

.notification-supcontent h3 {
  margin-left: 11px;
  margin-bottom: 7px;
}

.notification-supcontent {
  flex-wrap: wrap;
}

.notification-icon i {
  background-color: var(--primary-color-Normal);
  padding: 11px;
  border-radius: 23px;
  font-size: 22px;
  color: white;
}

.notification-type-done {
  align-items: center;
}

.notification-type-cancel-order .notification-content .notification-supcontent {
  justify-content: space-between;
}

.cancel-order .notification-icon i {
  background-color: red !important;
}

.new-rating .notification-icon i {
  background-color: var(--secondary-color-Normal) !important;
}

.edit-order .notification-icon i {
  background-color: #32cbcb !important;
}

.order-done .notification-icon i {
  background-color: var(--primary-color-sucsess) !important;
  color: white;
}

.user-list-links {
  padding-top: 15px;
}

.user-list-links li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.user-box {
  position: absolute;
  top: 58px;
  right: 16px;
  width: 213px !important;
}

.user-list-links li span {
  font-size: 22px;
  width: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rotate {
  transform: rotate(180deg);
}

.dropdown-container {
  height: 0px;
  overflow: hidden;
  background-color: var(--surface-container);
  transition: 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.show-sub-menu {
  height: auto;
}

.dropdown1 {
  padding: 0px !important;
}

.dropdown1 a {
  padding: 10px 15px !important;
}

.dropdown-container li {
  padding: 4px 0px !important;
}

.dropdown-container li a {
  padding: 0px 16px !important;
}

.language-switcher {
  position: relative;
  display: inline-block;
  margin-left: 15px;
}

.language-button {
  background-color: #4caf50;
  color: white;
  padding: 4px 13px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: "cairo-bold";
}

.language-dropdown {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

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

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

.language-switcher:hover .language-dropdown {
  display: block;
}

.language-switcher:hover .language-button {
  background-color: #3e8e41;
}

.sidpar {
  width: 15%;
  background-color: var(--surface-bright);
  color: white;
  box-sizing: border-box;
  
  height: 100%;
  transition: 0.9s ease-in-out;
}

.nav-link-1 {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}

.main-menu ul li {
  padding: 10px 15px;
  width: 100%;
}

.main-menu ul li a {
  font-family: "cairo-Medium";
  font-size: 14px;
  color: var(--text-color-Normal);
  display: block;
}

.main-menu ul li a {
  font-family: "cairo-Medium";
  font-size: 16px;
  color: var(--text-color-Normal);
}

.main-menu ul li a span i {
  padding-right: 6px;
}

.flotting-menu {
  position: absolute;
  left: 12px;
  bottom: 12px;
}

.flotting-menu-two {
  position: absolute;
  left: 12px;
  bottom: 58px;
}

.flotting-menu button {
  background-color: #0d6efd;
  border: 2px solid white;
  padding: 5px 10px;
  border-radius: 7px;
  outline: 2px solid #0d6efd;
  color: white;
}

.flotting-menu-two button {
  background-color: #358b0e;
  border: 2px solid white;
  padding: 5px 10px;
  border-radius: 7px;
  outline: 2px solid #0d6efd;
  color: white;
}

.popup-one {
  position: absolute;
  background-color: rgba(8, 15, 30, 0.9294117647);
  width: 100%;
  height: 100%;
  z-index: 5;
  transition: 0.8s all cubic-bezier(0.88, -0.39, 0, 1.49);
  opacity: 0;
  visibility: hidden;
}

.popup-one-card {
  background-color: rgb(255, 255, 255);
  z-index: 9;
  padding: 10px;
  border-radius: 12px;
}

.popup-card-header {
  border-bottom: 1px solid #19396a;
  margin-bottom: 14px;
  padding-bottom: 8px;
}

.popup-card-header h3 {
  font-family: "cairo-bold";
  font-size: 16px;
}

.popup-card-header button {
  background-color: unset;
  border: 2px solid white;
  color: #0d6efd;
}

.popup-link-one {
  background-color: #19396a;
  padding: 10px 14px;
  color: white;
  font-family: "cairo-bold";
  font-size: 15px;
  display: block;
  text-align: center;
  border-radius: 7px;
}

.show-popup-model-one {
  opacity: 1;
  visibility: visible;
}

.main-container {
  background-color: var(--surface-bright);
  width: 86%;
  margin: 10px;
  padding: 10px;
  transition: 0.9s ease-in-out;
}

.main-page {
  width: 85%;
  display: flex;
  flex-direction: column;
  padding: 10px;
  right: 0px;
//   position: absolute;
height: 90vh;
  overflow: scroll;
  padding-bottom: 30px;
}

.page-header {
  border-bottom: 1px solid #a99f9f;
  margin-bottom: 10px;
  background-color: var(--surface-bright);
  padding: 10px;
}

.page-header h2 {
  color: var(--text-color-Darker);
  font-family: "cairo-bold";
  font-size: 15px;
}

.page-content {
  padding: 10px;
  background-color: var(--surface-bright);
  flex: 1;
}

#preview_image {
  width: 120px;
  padding: 7px;
  background-color: var(--primary-color-Light);
}

.image-upload-container {
  margin-bottom: 20px;
}

.avatar-upload {
  position: relative;
  width: 130px;
  height: 130px;
}

/* Preview Circle */
.avatar-preview {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.preview-holder {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}

/* Floating Buttons */
.avatar-controls {
  position: absolute;
  right: -10px;
  top: 5px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.control-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  transition: all 0.2s;
}

.upload-btn {
  color: #4a5568;
}

.upload-btn:hover {
  background: #edf2f7;
  color: #2d3748;
}

.delete-btn {
  color: #e53e3e;
  border: none;
}

.delete-btn:hover {
  background: #e53e3e;
  color: #fff;
}

/* Progress Bar */
.upload-progress {
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #edf2f7;
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar-fill {
  width: 0%;
  height: 100%;
  background: #4299e1;
  transition: width 0.3s;
}

.user-card-one {
  background-color: #ebeef2;
  padding: 10px;
  border-radius: 10px;
  position: relative;
}

.user-image-one {
  width: 80px;
  height: 80px;
  overflow: hidden;
  padding: 2px;
  border-radius: 170px;
  border: 3px solid #c2c2c2;
  margin: 0px auto;
}

.user-image-one img {
  width: 100%;
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.user-role-name {
  background-color: red;
}

.user-role-name {
  background-color: rgba(194, 194, 194, 0.6);
  padding: 0px 21px;
  border-radius: 40px;
  font-family: "cairo-medium";
  margin-top: 6px;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.user-cars-icon {
  background-color: #d2d3d5;
  margin-top: 10px;
  border-radius: 7px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
}

.user-cars-icon a {
  background-color: #aaafc7;
  padding: 0px;
  width: 23%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 27px;
  border-radius: 5px;
  font-size: 18px;
  color: #0a5b0d;
}

.delete-user-icon {
  position: absolute;
  top: 7px;
  left: 7px;
  background-color: #d2d3d5;
  height: 30px;
  width: 30px;
  border-radius: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.delete-user-icon form .normal-btn i {
  color: #e54e4e;
  font-size: 18px;
}

.app-logo {
  width: 100%;
  overflow: hidden;
  text-align: center;
  margin-top: 14px;
}

.app-logo img {
  width: 57%;
}

.password-wrapper {
  position: relative;
}

.password-wrapper .toggle-password {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #888;
}

.password-wrapper .toggle-password:hover {
  color: #333;
}

.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Segoe UI", sans-serif;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
}

.login-page::after {
  background: linear-gradient(135deg, #1a56181f, #0c1a0659);
  background-color: rgba(0, 0, 0, 0);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: -1;
  opacity: 0.9;
}

.login-container {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  max-width: 400px;
  width: 100%;
  margin: 0px auto;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.form-title {
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #333;
}

.btn-primary {
  background-color: #2575fc;
  border-color: #2575fc;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.form-footer a {
  text-decoration: none;
  color: #2575fc;
}

.form-footer a:hover {
  text-decoration: underline;
}

.basic-info {
  font-family: "cairo-medium";
  font-size: 16px;
  margin-bottom: 13px;
  border-right: 3px solid var(--primary-color-Light);
  color: var(--text-color-Darker);
}

.task-container {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: var(--primary-color-Light);
}

@media only screen and (max-width: 500px) {
  .topbar-date {
    display: none;
  }
  .notefication-icon {
    display: none !important;
  }
  .website-mode {
    display: none;
  }
  .sidpar {
    position: fixed;
    width: 0px;
    top: 61px;
    background-color: rgba(0, 0, 0, 0.8980392157);
    z-index: 1000;
    transition: 1.5s all;
  }
  .main-menu {
    background-color: var(--surface-bright);
    width: 50%;
    transition: 1.1s all;
    height: 100%;
    left: -300px;
    position: relative;
  }
  .main-page {
    width: 100%;
  }
  .show-main-menu {
    left: 0px;
  }
  .show-side-bar {
    width: 100%;
  }
}/*# sourceMappingURL=main.css.map */