:root {
  /* Color Variables */
  --color-white: #ffffff;
  --color-light-gray: #fafafa;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;

  --color-teal-100: #d1fadf;
  --color-teal-500: #77b0a9;
  --color-teal-600: #74aaa5;
  --color-teal-700: #77b0a9;
  --color-teal-800: #063235;
  --color-teal-900: #0b3d2e;

  --color-red-100: #fee2e2;
  --color-red-500: #f04438;
  --color-red-600: #b91c1c;

  --color-green-100: #dcfce7;
  --color-green-600: #166534;
  --color-green-700: #027a48;

  --color-purple-100: #ede9fe;
  --color-purple-600: #6d28d9;

  --color-blue-100: #dbeafe;
  --color-blue-600: #1d4ed8;

  --color-light-bg: #f4f6f9;
  --color-light-bg-2: #f4f5f7;
  --shadow-color: rgba(0, 0, 0, 0.15);
}

/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* scroll */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  border-radius: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #ddd;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb {
  background: var(--color-teal-500);
  border-radius: 5px;
}
body {
  background-color: var(--color-light-gray);
  direction: rtl;
  font-family: "Cairo", system-ui;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1;
}
html,
body {
  height: 100%;
  margin: 0;
}
a {
  text-decoration: none;
  color: black;
}

.owner {
  color: var(--color-gray-200);
}
.bg-grwhite {
  background-color: #77b0a91a;
  border: 1px solid var(--color-teal-700);
  color: var(--color-teal-800);
}
.active {
  background-color: #77b0a91a;
  color: var(--color-gray-200) !important;
  border-radius: 8px;
  width: 250px;
  height: 50px;
  /* padding: 15px; */
  cursor: pointer;
}
.active a {
  color: var(--color-gray-200) !important;
}

.active-pag {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: var(--color-teal-500);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

/* //////login page///////////// */
.dashboard {
  display: flex;
  height: 100vh;
}
/* Sidebar styles */
.sidebar {
  width: 260px;
  background-color: #063235;
  padding: 5px;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  border-left: 1px solid var(--color-gray-200);
  transition: transform 0.3s ease;
  z-index: 10;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.menu-item {
  display: flex;
  align-items: center;
  /* padding: 10px; */
  gap: 12px;
  font-size: 15px;
  color: white;
  transition: background 0.2s;
}
.menu-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  width: 250px;
}
.user-profile {
  display: flex;
  align-items: center;
  padding: 10px;
  border-top: 1px solid #1a4a4a;
  margin-top: auto;
  gap: 10px;
}
.bor {
  border-bottom: 1px solid #1a4a4a;
}
.avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.user-info {
  display: flex;
  flex-direction: column;
  color: white;
}

.username {
  font-weight: bold;
}

.user-role {
  font-size: 12px;
  color: #ccc;
}
.all {
  color: var(--color-gray-600);
}
.logo img {
  width: 100%;
  max-width: 60px;
  margin: auto;
}

.img-user img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.active-p {
  width: fit-content;
  border-radius: 8px;
  background-color: var(--color-teal-500);
  color: var(--color-white);
  font-size: 14px;
}

.sidebar ul {
  list-style: none;
  /* padding-top: 5px; */
}
.soon {
  background-color: var(--color-teal-500);
  color: white;
  padding: 2px 8px;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
  margin-left: -14px;
}
.sidebar ul li {
  padding: 8px 12px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #333;
  /* margin-top: 10px; */
  cursor: pointer;
  display: flex;
  gap: 15px;
}

li {
  display: flex;
  align-items: center;
  gap: 5px;
}

.close-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #000;
}

.content {
  flex-grow: 1;
  padding: 0px;
  margin-right: 240px;
  transition: margin-right 0.3s ease;
}
.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--color-teal-500);
  margin: 15px 0;
}
main {
  padding: 2rem;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #fff;
  /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); */
  border-bottom: 1px solid #ddd;
  /* margin-top: -20px; */
}

.header-icons {
  display: flex;
  gap: 15px;
}

.icon {
  font-size: 20px;
  cursor: pointer;
}

.icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-light-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  border-radius: 12px;
}
.text-ai {
  border: 1px solid #434a60;
  padding: 5px;
  border-radius: 8px;
}
.text-ai span {
  font-size: 14px;
}
.num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--color-white);
  background-color: var(--color-teal-500);
  display: flex;
  justify-content: center;
  align-items: center;
  top: -7px;
  left: 8px;
}

.massage {
  color: var(--color-gray-600);
}
.btn-one-reload{
  background-color: #496f70;
  padding: 10px 15px;
  border-radius: 8px;
 
}
.num-reload{
  background-color: #496f70;
  padding: 5px 15px;
  border-radius: 32px;
}
.num-reload2{
  background-color: #063235;
  padding: 5px 15px;
  border-radius: 32px;
}
.btn-one {
  background-color: var(--color-teal-500);
  width: 178.16px;
  height: 48px;
  border-radius: 8px;
  color: var(--color-white);
  border: none;
  outline: none;
  transition: all 0.3s ease; /* smooth animation */
}

.btn-one:hover {
  background-color: var(--color-gray-500) !important ; 
}
 .dropdown-toggle::after {
    display: none; 
  }
  .dropdown-menu {
    animation: fadeDown 0.3s ease-in-out;
  }
  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
  }

.btn-slider {
  background-color: var(--color-teal-500);
  color: white;
  padding: 12px 10px;
  border: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* margin: 20px 0; */
  margin-bottom: 12px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease; 
}

.btn-slider:hover {
background-color: var(--color-gray-500) !important ; 
 
 
}

.btn-two {
  background-color: var(--color-gray-200);
  width: 147.56px;
  height: 48px;
  border-radius: 8px;
  color: var(--color-gray-600);
  border: none;
  outline: none;
}
.box-search {
  width: 100%;
  max-width: 448px;
  border-radius: 8px;
  position: relative;
}
.header-search {
  width: 100%;
  max-width: 300px;
}
.box-search .search-icon {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  color: #999;
  font-size: 16px;
  cursor: pointer;
}

.box-search input {
  padding: 10px;
  border: 1px solid var(--color-gray-300);
  padding-right: 40px;
  height: 40px;
  font-size: 14px;
}
.form-select {
  width: 139px;
  height: 46px;
  border-radius: 8px;
  background-position: right 0.75rem center;
}
.bg {
  background-color: var(--color-white);
  padding: 15px;
  border-radius: 12px;
  box-shadow: var(--shadow-color) 1.95px 1.95px 2.6px;
}
.notification-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.notification-bell {
  position: relative;
  font-size: 1.2rem;
  color: #333;
}

.notification-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #dc3545;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: bold;
}

.notification-dropdown {
  position: absolute;
  top: 31px;
  right: -224px;
  width: 300px;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* z-index: 1000; */
  display: none;
}
.mes-chat-dropdown {
  position: absolute;
  top: 31px;
     top: 68px;
    left: 63px;
width: 300px;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* z-index: 1000; */
  display: none;
}

.mes-chat-dropdown.showchat {
  display: block;
}
.notification-dropdown.show {
  display: block;
}

.notification-header {
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
  font-weight: bold;
  background-color: #f8f9fa;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.notification-chat-header {
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
  font-weight: bold;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mess-list-chat {
  max-height: 400px;
  overflow-y: auto;
}
.notification-list {
  max-height: 400px;
  overflow-y: auto;
}

.mess-item-chat {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  transition: background-color 0.2s;
}
.notification-item {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  transition: background-color 0.2s;
}

.mess-item-chat:hover {
  background-color: #f8f9fa;
}
.notification-item:hover {
  background-color: #f8f9fa;
}

.mess-item-chat.unread {
  background-color: #f0f7ff;
}
.mess-item-chat.unread {
  background-color: #f0f7ff;
}
.notification-item.unread {
  background-color: #f0f7ff;
}
 

  .mes-chat-dropdown.showchat {
    display: block;
  }
.mess-time-chat {
  font-size: 0.8rem;
  color: #6c757d;
  margin-top: 5px;
}
.notification-time {
  font-size: 0.8rem;
  color: #6c757d;
  margin-top: 5px;
}

.mark-all-read {
  color: #0d6efd;
  cursor: pointer;
  font-size: 0.9rem;
}
.datauser h3 {
  font-size: 24px;
  color: var(--color-gray-800);
}
.gray {
  color: var(--color-gray-600);
}
.card-ac {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  /* box-shadow: 0 0 10px #0000000a; */
  margin: 0 16px !important;
  height: 450px;
}

.activity {
  flex: 1;
  min-width: 300px;
}

.chart-box {
  flex: 2;
  min-width: 300px;
}

.activity h3 {
  margin-bottom: 15px;
  font-size: 17px;
}

.activity ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.activity li {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.activity li .text {
  font-size: 15px;
}

.activity li .time {
  font-size: 13px;
  color: gray;
}

.activity li .status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-finlly {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.success i {
  background-color: #dcfce7;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.successs {
  color: #16a34a;
}
.dropdown-menu{
  width: 100%;
  
}
.bg-successt{
  background-color:var(--color-gray-600);
}
.pending i {
  background-color: #fef9c3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pendingg i {
  background-color: #fefce8;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.info i {
  background-color: #dbeafe;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.infoo i {
  background-color: #eff6ff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.errorr {
  background-color: #fee2e2;
}
.error i {
  background-color: #fee2e2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.movee i {
  background-color: #f3e8ff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.moveee {
  background-color: #faf5ff;
}
.bnf{
  background-color: #F3E8FF;
    display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #9333EA;
}
.text-movee {
  color: #9333ea;
}

canvas {
  max-width: 100%;
}

.chart-title {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}
.toggle-container {
  display: flex;
  background-color: var(--color-light-bg-2);
  padding: 5px;
  width: 197.14px;
  border-radius: 8px;
  width: fit-content;
  font-family: sans-serif;
}
.dropdown a {
  outline: none;
  border: none;
}
.toggle-btn {
 display: flex
;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: none;
    background-color: transparent;
    border-radius: 8px;
    cursor: pointer;
    /* color: var(--color-gray-600); */
    font-size: 16px;
    transition: 0.3s;
    width: 100%;
    height: 100%;
}

.toggle-btn.active {
  background-color: var(--color-teal-700);
  color: var(--color-white);
}
.text-product {
  color: var(--color-teal-800);
  font-weight: 500;
}
.card {
  background: var(--color-white);
  border-radius: 12px;
  /* box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px; */
  overflow: hidden;
  width: 280px;
  position: relative;
  border: none;
  margin-bottom: 20px;
}
.status-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--color-teal-100);
  color: var(--color-green-700);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
}
.status-badge-yellow {
  background: #fef9c3;
  color: #854d0e;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
  position: absolute;
  top: 15px;
  right: 15px;
}
.change_image img {
  width: 65px;
  height: 65px;
  border-radius: 8px;
  object-fit: cover;
  border: none;
}
.filter-btn {
    background-color: #e0e0e0; 
    color: #000; 
    border: none;
}

.filter-btn-active {
    background-color: black;
    color: white;
}

.change_image_beg i {
  width: 65px;
  height: 65px;
  border-radius: 8px;
  object-fit: cover;
  border: none;
  background-color: #F3F4F6;
  border: 1px solid #E5E7EB;
  display: flex;
  justify-content: center;
  align-items: center;
}
.status-badgechose {
  position: absolute;
  top: 15px;
  left: 10px;
  border-radius: 20px;
  font-size: 14px;
}
.status-badgechose input {
  width: 18px;
  height: 18px;
}
.product-image {
  width: 100%;
  height: 235px;
  object-fit: cover;
}
.low-stock {
  position: absolute;
  top: 190px;
  right: 15px;
  background: #2563ebcc;
  color: var(--color-white);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
}
.star i {
  color: gold;
  margin: 0 2px;
  font-size: 18px;
}

.card-body {
  padding: 15px;
}
.title {
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 5px;
}
.details {
  color: #888;
  font-size: 14px;
  margin-bottom: 10px;
}
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
}
.price {
  color: var(--color-teal-900);
  font-size: 18px;
  font-weight: bold;
}
.quantity {
  color: var(--color-red-500);
  font-weight: bold;
  font-size: 16px;
}
.views {
  display: flex;
  align-items: center;
  color: #555;
  font-size: 14px;
  gap: 5px;
  margin-bottom: 10px;
}
.date {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}
.actions {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}
.action-btn {
  background: var(--color-gray-100);
  border: none;
  padding: 10px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}
.action-btn.red {
  background: var(--color-red-100);
  color: var(--color-red-600);
}
.action-btn.green {
  background: var(--color-green-100);
  color: var(--color-green-600);
}
.action-btn.purple {
  background: var(--color-purple-100);
  color: var(--color-purple-600);
}
.action-btn.blue {
  background: var(--color-blue-100);
  color: var(--color-blue-600);
}
.action-btn:hover {
  transform: scale(1.1);
}
.card-das {
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-right: 4px solid var(--color-teal-500);
  width: 266px;
  height: 168.25px;
}
.card-show {
  width: 362.66px;
  height: 168px;
}

.yal {
  border-right: 4px solid #facc15;
}
.redc {
  border-right: 4px solid #ef4444;
}
.redblack {
  border-right: 4px solid #000;
}
.line-colorr {
  border-right: 2px solid #bbf7d0;
}
.line-colorry {
  border-right: 2px solid #fef08a;
}
.line-info {
  border-right: 2px solid #bfdbfe;
}
.line-movee {
  border-right: 2px solid #f3e8ff;
}
.reason {
  color: var(--color-teal-500);
}
.line-danger {
  border-right: 2px solid #fee2e2;
}
.bg-primp {
  border-right: 4px solid #3b82f6;
}
.bg-prim {
  background-color: #dbeafe;
  color: #3b82f6;
}
.gre {
  color: var(--color-teal-500);
}
.ico_roud {
  background-color: #77b0a91a;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bg-warnings {
  background-color: #fefce8;
  color: #facc15;
}
.bg-warningsa {
  color: #facc15;
}
.bg-reda {
  color: #ef4444;
}
.bg-dangere {
  background-color: #fef2f2;
}
.bg-dangerer {
  background-color: #fef2f2;
  border: 1px solid #fecaca;
}
.bg-success {
  background-color: #f0fdf4 !important;
}
/* ///start login page styles */
nav {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-gray-200);
  padding: 10px 0;
}
.header-landing span {
  color: var(--color-gray-600);
}

.title-landing h1 {
  color: var(--color-teal-800);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.5;
}
.title-landing h2 {
  color: var(--color-teal-800);
  font-weight: 700;
  font-size: 25px;
}
.desc {
  font-size: 18px;
  color: var(--color-gray-600);

  line-height: 36px;
}
.icon-landing {
  width: 48px;
  height: 48px;
  background-color: #77b0a933;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}
.icon-landing2 {
  width: 55px;
  height: 55px;
  background-color: #77b0a933;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}
.icon-lforget {
  width: 80px;
  height: 80px;
  background-color: #77b0a933;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}
.icon-whats {
  width: 100px;
  height: 100px;
  background-color: #77b0a933;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}
.num-whats {
  color: var(--color-teal-800);
}
.otp-inputs {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.otp-inputs input {
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 20px;
  border: 1px solid #ddd;
  background-color: #f9fafb;
  border-radius: 12px;
  outline: none;
  transition: border-color 0.3s;
  color: var(--color-green-700);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}
.finsh-time {
  background-color: #e4f9f2;
  border-radius: 8px;

  padding: 20px;
}
.text-time {
  color: var(--color-gray-600);
}
.text-time i {
  color: var(--color-teal-700);
}
.replay-code {
  cursor: pointer;
}
.bg-secondaryb {
  background-color: var(--color-gray-300);
  color: var(--color-gray-500);
}
.message-sms {
  background-color: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 10px;
  border-radius: 8px;
}
.message-sms a {
  color: #1d4ed8;
}
.box-halved {
  padding: 10px;
  border-radius: 8px;
  background-color: #fffbeb;
  border: 1px solid #fde68a;
  color: #b45309;
  width: 448px;
}
.box-halved span {
  font-size: 12px;
  font-weight: 500;
}
.problem-code {
  color: var(--color-gray-600);
  font-size: 14px;
  font-weight: 500;
}
.support-code {
  color: var(--color-teal-700);
  font-size: 14px;
  font-weight: 500;
}
.message-call {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 10px;
  border-radius: 8px;
}
.message-call a {
  color: #15803d;
}
.otp-inputs input:focus {
  border-color: #4caf50;
  box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}
.form-control:focus {
  border-color: #4caf50;
  box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}
.box-login {
  width: 100%;
  margin: auto;
  padding: 25px;
  background-color: var(--color-white);
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
.box-register {
  width: 100%;
  margin: auto;
  padding: 25px;
  background-color: var(--color-white);
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
.box-detils {
  border: 1px solid #bfdbfe;
  background-color: #eff6ff;
  /* width: 448px; */
  border-radius: 8px;
  padding: 25px;
  margin: auto;
  color: #1d4ed8;
}
.box-detils2 {
  border: 1px solid #77b0a94d;
  background-color: #e0ebea;
  /* width: 448px; */
  border-radius: 8px;
  padding: 15px;
  margin: auto;
}
.btn-liner{
  background: linear-gradient(to right, #063235, #77B0A9);
  padding: 10px;
}
.box-upload-image{
  width: 100%;
  border: 2px dashed #D1D5DB;
  border-radius: 8px;
  padding: 25px;
  margin: auto;
  text-align: center;
  cursor: pointer;
}
.box-detilsPlat {
  border: 1px solid #77B0A94D;
  background-color: #E6F4F3;
  /* width: 448px; */
  border-radius: 8px;
  padding: 15px;
  margin: auto;
}
.iti input,
.iti input[type="text"],
.iti input[type="tel"] {
  position: relative;
  z-index: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-right: 36px;
  margin-right: 0;
  width: 500px;
}
.nafz {
  width: 140px !important;
}
.icondetails {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 40px;
  border-radius: 8px;
  background-color: #dbeafe;
}
.icondetails2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 40px;
  border-radius: 8px;
  background-color: #77b0a933;
}
.form-label {
  font-size: 14px;
  color: var(--color-teal-800);
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.phon-sr {
  text-align: center;
}
.iti {
  width: 100% !important;
}

.iti input {
  width: 100% !important;
}
.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  left: auto;
  right: 0;
}
.text-icons span:first-child {
  color: var(--color-gray-800);
  font-size: 16px;
  font-weight: 500;
}
.group-iconsLanding {
  margin-bottom: 33px;
}
.text-icons span:last-child {
  color: var(--color-gray-600);
  font-size: 14px;
}
.icon-landing i {
  color: var(--color-white);
  font-size: 24px;
}
.form-control {
  padding: 10px;
  border: 1px solid var(--color-gray-200);
}
.form-control::placeholder {
  font-size: 14px;
}
.forget,
.create {
  font-size: 14px;
  color: var(--color-teal-500);
}
.des-form {
  font-size: 16px;
  color: var(--color-gray-600);
}
.toggle-password {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-10%);
  cursor: pointer;
  color: #666;
}
input[type="password"] {
  padding-right: 40px;
}
.pas {
  padding-right: 37px;
}
.phone-forget {
  max-width: 395px;
  height: 54px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.text-forget span {
  color: var(--color-teal-800);
  font-size: 18px;
  line-height: 2;
}
/* ///end login page styles */
/* ///  start footer  styles */
.icon-footer a {
  color: var(--color-gray-400);
  font-size: 20px;
  cursor: pointer;
}
.smsall a,
.hash {
  color: var(--color-teal-500);
  font-size: 14px;
}
.gre {
  color: var(--color-teal-500);
}
.progress-bar {
  height: 8px;
  width: 100%;
  background-color: #e5e7eb;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.progress-bar {
  height: 6px;
  background-color: #e5e7eb;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.progress-weak {
  width: 30%;
  background-color: red;
}

.progress-medium {
  width: 60%;
  background-color: orange;
}

.progress-strong {
  width: 100%;
  background-color: green;
}
.dotd {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #e5e7eb;
}
.lin-step {
  width: 55px;
  height: 2px;
  background-color: #e5e7eb;
  display: block;
  transition: background-color 0.3s;
}
.lin-step-arive {
  width: 234px;
  height: 2px;
  background-color: #bbf7d0;
  display: block;
  transition: background-color 0.3s;
}

.line-step-active {
  background-color: var(--color-teal-500);
}
.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #e5e7eb;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}
.step-number-active {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--color-teal-500);
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}
.active-stage {
  display: block !important;
}

.step {
  position: relative;
}

.step-text {
  font-size: 14px;
  color: #6b7280;
}

.step-number-active + .step-text {
  color: var(--color-teal-500);
  font-weight: 600;
}
/* ///  end footer  styles */
/* start table styles */
.image-table {
  max-width: 50px;
  padding: 0 5px;
  object-fit: cover;
}

.header-table input {
  flex: 1;
  min-width: 250px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.table-container {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

thead {
  background-color: #f1f1f1;
}

th,
td {
  text-align: right;
  padding: 12px;
  border-bottom: 1px solid #ddd;
  white-space: nowrap;
}

.status {
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 14px;
  display: inline-block;
}
.card_mange{
  width: 100%;
  max-width: 176px;
  height: 92px;
  border-radius: 8px;
  margin: auto;
 
}
.card_mange p{
  font-size: 12px !important;
  text-wrap: nowrap !important;
}
.tab-btn.btn-selected {
    background-color: #000; 
    color: #fff;
}
.tab-btn.btn-selected i,
.tab-btn.btn-selected span,
.tab-btn.btn-selected img {
    filter: brightness(0) invert(1); 
}
.status.accepted {
  background-color: #d4f6eb;
  color: #007f5f;
}
.status.blu {
  background-color: #DBEAFE;
  color: #1E40AF;
}
.status.bnff {
  background-color: #F3E8FF;
  color: #9333EA;
}
.container-bg {
  /* max-width: 1000px;
  margin: 20px auto; */
  padding: 15px;
  background-color: #fff;
}

.status.review {
  background-color: #fff3cd;
  color: #856404;
}
.status.blue-ta {
  background-color: #dbeafe;
  color: #1e40af;
}
.status.draft {
  background-color: #e9ecef;
  color: #6c757d;
}

.status.rejected {
  background-color: #f8d7da;
  color: #dc3545;
}

.actions-table a {
  margin: auto;
  cursor: pointer;
  color: #333;
}
.grrre{
  color: #166534;
}
.active-state {
  background-color: #dcfce7;
  width: 76px;
  height: 28px;
  border-radius: 32px;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  -ms-border-radius: 32px;
  -o-border-radius: 32px;
  color: #166534;
}
.archive {
  background-color: #f3f4f6;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  width: 155.48px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-gray-600);
}
.active-state i {
  color: #15803d;
}

/* start table styles */
/* start style chat support */
.chat-container {
  margin: 30px auto;
  border-radius: 10px;
  overflow: hidden;
}

.chat-header {
  padding: 15px;

  border-bottom: none;
}

.response-time {
  font-size: 13px;
  color: #555;
}

.deti-chat {
  width: fit-content;
}
.chat-body {
  max-height: 400px;
  overflow-y: auto;
  padding: 20px;
  background-color: #fff;
}

.message {
  display: flex;
  margin-bottom: 20px;
  align-items: flex-start;
}

.message.user {
  flex-direction: row-reverse;
}

.message img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 10px;
}

.message-content {
  background-color: #f1f1f1;
  padding: 10px 15px;
  border-radius: 15px;
  max-width: 100%;
  position: relative;
  font-size: 12px;
}

.message.support .message-content {
  background-color: #e5e7eb;
  color: var(--color-gray-600);
}

.message.user .message-content {
  background-color: #003c57;
  color: #fff;
}

.chat-footer {
  border-top: 1px solid #ddd;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.chat-footer .input-group {
  flex: 1;
  position: relative;
}

.chat-footer input {
  width: 100%;
  padding: 10px 40px 10px 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.chat-footer .input-group i.fa-face-smile {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  color: #999;
  cursor: pointer;
}

.chat-footer .icons-chat {
  display: flex;
  gap: 10px;
}

.chat-footer .icons-chat i {
  font-size: 18px;
  color: #333;
  cursor: pointer;
  background-color: #e5e7eb;
  padding: 10px;
  border-radius: 8px;
}

.chat-footer button {
  background-color: #063235;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.chat-actions {
  padding: 15px;
  text-align: left;

  margin: 10px 0;
}

.chat-actions button {
  margin-left: 10px;
  padding: 8px 12px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

.chat-actions .close {
  background-color: #fee2e2;
  color: #991b1b;
}

.chat-actions .rate {
  background-color: #fef9c3;
  color: #854d0e;
}

.select-comment {
  width: 250px;
}
/* end style chat support */
/* style add product//// */
.box-show-product {
  width: 280px;
  height: 42px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  background-color: #f9fafb;
}
.group-btn button {
  width: 100px;
  height: 38px;
  border-radius: 8px;
  border: none;
}
.card-pricess {
  width: 362.67px !important;
}
.btn-phone-s {
  width: 260px !important;
}
.active-btn-group {
  background-color: var(--color-teal-600);
  color: #fff;
  border-radius: 32px;
}
.active-btn-group-filter {
  background-color: var(--color-teal-600);
  color: #fff;
  border-radius: 32px;
}
.searchAi{
 padding: 50px 0;
}
.btn-search_ai{
  bottom: 10px;
  left: 10px;
}
.beg {
  background-color: var(--color-gray-200);
}
.image-product {
  max-width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}
.bor-green {
  border: 1px solid var(--color-teal-500);
}
.bor-green2 {
  border-right: 4px solid #22c55e;
}
.bor-yyyy2 {
  border-right: 4px solid #EAB308;
}
/* style add product//// */
/* style pricing product//// */
.tabs-container {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tab-item a {
  text-decoration: none;

  padding: 10px 0;
  display: inline-block;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.tab-item.activea a {
  color: var(--color-teal-500);
  font-weight: 600;
  border-bottom: 3px solid var(--color-teal-500);
}
.red-t {
  color: #dc2626;
}
.og-text {
  color: #ea580c;
}
.btn-price {
  width: 150px;
}
.add-detiles {
  width: 341.33px;
  height: 108px;
}
.grblack {
  color: var(--color-teal-800);
}
.btn-price2 {
  width: 504px;
}
.inpu-table {
  width: 75px;
}
/* style pricing product//// */
/* style add ternds//// */
.ternds-icon {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to left, #063235, #77b0a9);
}
.bg-liner {
  background: linear-gradient(to left, #063235, #77b0a9);
}
.card-subscribe {
  width: 512px;
}
.card-ternds {
  width: 231px;
  height: 280px;
}
.text-ternds {
  font-size: 30px;
}
/* style add ternds//// */
/* style add customer//// */
.woring {
  border: 1px solid #facc15;
  color: #a16207;
}
.btn-archway {
  width: 180px;
}
.chat-list {
  /* width: 25%; */
  background-color: white;
  border-left: 1px solid #ddd;
  padding: 1rem;
  overflow-y: auto;
}

.chat-list h3 {
  margin-bottom: 1rem;
}

.ellipsis {
  cursor: pointer;
}

.chat-user {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.chat-user.actives,
.chat-user:hover {
  background-color: #f3f4f6;
}

.bg-gr-coustom {
  background-color: #77b0a9 !important;
}

.chat-user img {
  border-radius: 50%;
  margin-left: 10px;
}

.btn-confirmc {
  width: 238.89px;
}

.chat-info {
  flex: 1;
}

.chat-info span {
  display: block;
  font-size: 13px;
  color: #666;
}

.bg-bloo {
  background-color: #3b82f6;
  color: white;
}
.bg-bloo2 {
  background-color: #cce0ff;
  border-radius: 32px;
  padding: 0 5px;
  font-size: 10px;
}
.bg-move2 {
  background-color: #f3e8ff;
  color: #6b21a8;
  border-radius: 32px;
  padding: 0 5px;
  font-size: 10px;
}

.text-bloo {
  color: #3b82f6;
  font-weight: 500;
}

.tag {
  font-size: 12px;
  background-color: #cce0ff;
  color: #1d4ed8;
  padding: 2px 6px;
  border-radius: 5px;
  display: inline-block;
  margin-top: 4px;
  width: fit-content;
}
.text-suport {
  color: #9ca3af;
  font-size: 12px;
}
.tag.yellow {
  background-color: #fff4cc;
  color: #b68b00;
  width: fit-content;
}
.tag.move {
  background-color: #f3e8ff;
  color: #6b21a8;
  width: fit-content;
}
.tag.red {
  background-color: #fee2e2;
  color: #991b1b;
  width: fit-content;
}
.tag.orang {
  background-color: #ffedd5;
  color: #9a3412;
  width: fit-content;
}

.tag.green {
  background-color: #dcfce7;
  color: #15803d;
  width: fit-content;
}

.chat-box {
  width: 75%;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background-color: #fff;
}
.imgUser-chat img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.bg-success-send {
  background-color: var(--color-teal-700) !important;
}

.num-message {
  width: 25px;
  height: 25px;
}

.order-step-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #ddd;
  color: white;
  font-weight: bold;
}

.order-step-label {
  font-weight: bold;
  color: #999;
}

.order-step-line {
  flex-grow: 1;
  height: 3px;
  background-color: #ccc;
}

.active-order-step {
  background-color: #007bff;
}
.order-steps{
  font-size: 12px;
}
.active-order-label {
  color: #007bff;
}
.bor-gw {
  border-right: 4px solid #14b8a6;
}
.bor-gwm {
  border-right: 4px solid #a855f7;
}
.order-step-line.active-line {
  background-color: #007bff;
}
/* style add customer//// */
/* style add pay fees//// */
/* style add profile//// */
.bg-green {
  background-color: var(--color-teal-600);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  height: 8px;
}
.progress,
.progress-stacked {
  --bs-progress-height: 8px;
}
.text-profile {
  color: var(--color-teal-800);
  font-size: 18px;
  line-height: 2;
}
textarea {
  resize: none;
}
.btn-draft {
  transition: all 0.3s ease-in-out;
}
.btn-draft:hover {
  background-color: var(--color-teal-500) !important;
  color: var(--color-gray-100) !important;
}
.img-flat {
  width: 130px;
  height: 130px;
  border-radius: 8px;
  background-color: #f9fafb;
  border: 2px dashed var(--color-gray-400);
  display: flex;
  justify-content: center;
  align-items: center;
}
.text-pro {
  color: #854d0e;
}
.image-profile img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-teal-700);
}
.icon-camera {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--color-teal-700);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  color: white;
  bottom: 4px;
  left: 3px;
  font-size: 12px;
}
.btn-mosq {
  background-color: #dcfce7;
  width: fit-content;
}
.card-profile {
  width: 100%;
  max-width: 266px;
  height: 162px;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.text-profiletwo {
  color: #063235;
}
.h-branch {
  height: 30vh;
}
.bg-ozo {
  background-color: #fef9c3;
  color: #854d0e;
}
.text-oza {
  color: #854d0e;
}
.bg-gree_white {
  background: linear-gradient(to left, #063235, #77b0a9);
  color: #fff;
}
.bg-gree_white2 {
  background: linear-gradient(to right, #063235, #77B0A9);
  color: #fff;
}
.success-green i {
  background-color: #ffffff33;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

/* style add profile//// */
/* style add pay fees//// */

.pointer-cursor {
  cursor: pointer;
}
.card-fees {
  width: 362.67px;
}
.btn-cridt {
  background-color: #83989a;
  height: 55px;
}
.bor-gray {
  border-right: 4px solid #9ca3af;
}
.boll-gre {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid #9ca3af;
}
.text-green {
  color: var(--color-teal-800);
}
.certifc {
  width: 100%;
  max-width: 350.66px;
  height: 90px;
  border: 2px dashed #d1d5db;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

/* style add pay fees//// */
/* style add support center//// */
.search-help {
  width: 50%;
}
.bg-organn i {
  background-color: #fff7ed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #f97316;
}
.img-team img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

/* style add support center//// */
/* style add settings //// */
.custom-tab-item {
  cursor: pointer;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

.custom-tab-item.active-tab {
  border-bottom: 2px solid #25006c;
}

.custom-tab-panel {
  display: none;
}

.custom-tab-panel.active-panel {
  display: block;
}
/* style add settings //// */
/* style add product detils //// */
/* .text-product-detils{
  width: 260.66px;
  
} */
.text-product-detils2,
.text-product-detils3 {
  background: linear-gradient(to right, #77b0a91a, #77b0a90d);
  padding: 15px;
  border: 1px solid #77b0a933;
  /* width: 260.66px; */
}
.text-product-detils3 {
  background: linear-gradient(to right, #f0fdf4, #f0fdf400);
  border: 1px solid #bbf7d0;
}
.text-bg-product {
  padding: 14px;
}
.bg-card-detials {
  background-color: #f4f9f8;
}
.smsallas {
  font-size: 8px;
}
.currency-product {
  bottom: 14px;
  left: 8px;
}
/* style add product detils //// */
/* style add product  //// */
.card-add-product {
  width: 100%;
  height: 162px;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-gray-500);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.card-add-product4 {
  width: 100%;
  height: 162px;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
 
  color: var(--color-gray-500);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}


.card-add-product4:hover {
  border-color: var(--color-teal-700);
  background-color: #77b0a91a;
  color: var(--color-teal-800);
}
.card-add-product4:active {
  border-color: var(--color-teal-700);
  background-color: #77b0a91a;
  color: var(--color-teal-800);
}
.card-add-product4-a {
  border-color: var(--color-teal-700);
  background-color: #77b0a91a;
  color: var(--color-teal-800);
}
.card-add-product4:focus,
.card-add-product4:focus-within {
  outline: none;
  border-color: var(--color-teal-700);
  background-color: #77b0a91a;
  color: var(--color-teal-800);
}
.card-add-product:hover {
  border-color: var(--color-teal-700);
  background-color: #77b0a91a;
  color: var(--color-teal-800);
}
.card-add-product:active {
  border-color: var(--color-teal-700);
  background-color: #77b0a91a;
  color: var(--color-teal-800);
}
.card-add-product-a {
  border-color: var(--color-teal-700);
  background-color: #77b0a91a;
  color: var(--color-teal-800);
}
.card-add-product:focus,
.card-add-product:focus-within {
  outline: none;
  border-color: var(--color-teal-700);
  background-color: #77b0a91a;
  color: var(--color-teal-800);
}
.card-add-product-2 {
  width: 100%;
  height: 162px;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  display: flex;
  justify-content: start;
  align-items: start;
  color: var(--color-gray-500);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.card-add-product-2:hover {
  border-color: var(--color-teal-800);
  background-color: #0632350d;
  color: var(--color-teal-800);
}
.card-add-product-2:hover .icon-chselected {
  color: var(--color-teal-800);
  background-color: #000;
  color: white;
}
.card-add-product-2:focus .icon-chselected {
  color: var(--color-teal-800);
  background-color: #000;
  color: white;
}
.card-add-product-2:active {
  border-color: var(--color-teal-800);
  background-color: #0632350d;
  color: var(--color-teal-800);
}
.card-add-product-2-a {
  border-color: var(--color-teal-800);
  background-color: #0632350d;
  color: var(--color-teal-800);
}
.card-add-product-2:focus,
.card-add-product-2:focus-within {
  outline: none;
  border-color: var(--color-teal-800);
  background-color: #0632350d;
  color: var(--color-teal-800);
}
.card-add-product-2 .icon-chselected {
  background-color: var(--color-gray-200);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #4b5563;
}
.message-box {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.message-counter {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #dc3545;
  color: #fff;
  font-size: 12px;
  padding: 3px 7px;
  border-radius: 50%;
  font-weight: bold;
}

/*  */



.bg-cionn {
  background-color: #77b0a9;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

/* style add product  //// */

/* Mobile view styles */
@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }

  .sidebar {
    transform: translateX(100%);
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .close-btn {
    display: block;
  }

  .content {
    margin-right: 0px;
  }
}
@media (max-width: 477px) {
  .content {
    margin-top: 10%;
    padding: 2px !important;
  }
  main {
    padding: 1rem;
  }
  .row {
    margin: auto;
  }
}
@media (max-width: 799px) {
  .card {
    width: 322px;
    margin: auto !important;
    margin-bottom: 20px !important;
  }
  .btn-price {
    width: 150px !important;
  }
  .btn-price2 {
    width: 150px !important;
  }
  .card-show-tap {
    justify-content: center !important;
  }
  th,
  td {
    text-align: right;
    padding: 12px;
    border-bottom: 1px solid #ddd;
    white-space: nowrap;
    font-size: 11px;
  }
  .text-login {
    display: none;
  }
  .logo-footer,
  .text-footer {
    text-align: center;
  }
  .list-unstyled {
    padding: 0;
    list-style: none;
  }

  .list-unstyled li {
    display: flex;
    justify-content: center;
  }
  .icon-footer {
    justify-content: center !important;
  }
}
@media (max-width: 992px) {
  .menu-btn {
    display: block;
  }
  .card-show-tap {
    justify-content: center !important;
  }
  .btn-price {
    width: 150px !important;
  }
  .btn-price2 {
    width: 150px !important;
  }
  th,
  td {
    text-align: right;
    padding: 12px;
    border-bottom: 1px solid #ddd;
    white-space: nowrap;
    font-size: 11px;
  }
  .text-login {
    display: none;
  }
  .sidebar {
    transform: translateX(100%);
  }
  .sidebar.open {
    transform: translateX(0);
  }

  .close-btn {
    display: block;
  }

  .content {
    margin-right: 0px;
  }
}
@media (max-width: 500px) {
  .menu-btn {
    display: block;
  }

  .sidebar {
    transform: translateX(100%);
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .close-btn {
    display: block;
  }

  .content {
    margin-right: 0px;
  }
}
@media (max-width: 477px) {
  .dashboard {
    flex-direction: column;
  }
  .center-text-archive{
    align-items: center  ;
    
  }
.btn-liner {
    background: linear-gradient(to right, #063235, #77B0A9);
    padding: 10px;
    width: 100%;
  
    display: inline-block;
    font-size: 12px;
}
.mes-chat-dropdown {
  left: 26px;
}

  .card_mange {
    width: 100%;
    max-width: 262px;
   
}
  .center-text-archives{
    text-align: center !important;
    display: block;
    
  }
  .btn-archway {
    width: 170px !important;
  }
  .card-pricess {
    width: 317px !important;
  }
  .active-order-label {
    color: #007bff;
    font-size: 12px;
  }
  .name-chat {
    font-size: 12px;
  }
  .order-step-label {
    font-size: 12px;
  }
  .message-content {
    font-size: 12px;
  }
  .search-help {
    width: 100%;
  }
  .boll-gre {
    display: none;
  }
  .uload-btn {
    width: 100% !important;
  }
  .bg-profile {
    justify-content: center !important;
    align-items: center !important;
  }
  .font-card-price {
    font-size: 10px;
  }
  .group-btn-2 {
    justify-content: center !important;
  }
  .icon-finlly {
    width: 73px;
    height: 41px;
    border-radius: 50%;
  }
  .group-btn button {
    width: 79px;
  }
  .btn-price {
    width: 150px !important;
  }
  .btn-price2 {
    width: 150px !important;
  }
  .box-show-product {
    width: 260px;
  }
  .chat-actions {
    text-align: center !important;
  }
  .chat-footer {
    flex-direction: column;
  }
  .btn-confirmc {
    width: 220px !important;
  }
  .chat-footer-two {
    flex-direction: row !important;
  }
  .w-phone {
    width: 300px !important;
  }
  .card-das {
    width: 288px;
  }
  .card-ac {
    margin: auto !important;
  }
  .chart-title {
    margin: 10px 0;
    font-size: 13px;
    font-weight: 600;
  }
  .toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 19px 15px;
    border: none;
    background-color: transparent;
    border-radius: 8px;
    cursor: pointer;
    color: var(--color-gray-600);
    font-size: 16px;
    transition: 0.3s;
    width: 69.63px;
    height: 50px;
  }
  .step {
    gap: 0.25rem !important;
  }
  .box-halved {
    width: 301px !important;
    margin: auto;
  }
  .step-text {
    font-size: 9px;
    color: #6b7280;
  }
  .otp-inputs input {
    width: 40px;
    height: 40px;
  }
  .text-login {
    display: none;
  }
  .iti input,
  .iti input[type="text"],
  .iti input[type="tel"] {
    position: relative;
    z-index: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-right: 86px;
    /* margin-right: 0; */
    width: 289px;
  }
  .logo-footer,
  .text-footer {
    text-align: center;
  }
  .list-unstyled {
    padding: 0;
    list-style: none;
  }

  .list-unstyled li {
    display: flex;
    justify-content: center;
  }
  .icon-footer {
    justify-content: center !important;
  }
  .box-login,
  .box-register {
    /* width: 316px; */
    margin: auto !important;
  }
  .phone-pagination {
    justify-content: center !important;
  }
  .sidebar {
    transform: translateX(100%);
  }
  .bg {
    margin-top: 18%;
  }
  .sidebar.open {
    transform: translateX(0);
  }

  .content {
    margin: 0;
    padding: 10px;
  }
  .btn-two {
    background-color: var(--color-gray-200);
    width: 116.56px;
    height: 48px;
    border-radius: 8px;
    color: var(--color-gray-600);
    border: none;
    outline: none;
  }
  .btn-one {
    width: 109.16px;
    height: 40px;
  }
  .logo {
    max-width: 100px;
    margin: 0 auto;
  }

  .sidebar ul {
    padding-top: 0px;
  }

  .user-info {
    flex-direction: column;
    align-items: flex-start;
    font-size: 14px;
  }

  .header-icons {
    /* margin-top: 10px; */
    /* flex-wrap: wrap; */
    justify-content: center;
  }
}
@media (max-width: 1024px) {
  .text-login {
    display: none;
  }
  .card-show-tap {
    justify-content: center !important;
  }
  th,
  td {
    text-align: right;
    padding: 2px;
    border-bottom: 1px solid #ddd;
    white-space: nowrap;
    font-size: 11px;
  }

  table {
    width: 100%;
    border-collapse: collapse;
    min-width: 650px;
  }
  /* .btn-one {
 width: 86.16px;
        height: 31px;
    
} */
  .inpu-table {
    height: 27px !important;
  }
  .btn-price {
    width: 150px !important;
  }
  .btn-price2 {
    width: 150px !important;
  }
}
