@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,100&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&display=swap');

:root {
  /***:::::::::::::-font-family-::::::::::::::***/
  --font: "Poppins", sans-serif;
  --font02: 'Montserrat', sans-serif;

  /***:::::::::::::-background-::::::::::::::***/
  --bg: #2f5bf6;
  --bg02: #fff;
  --bg03: #f8f8f8;
  --bg04: #313131;
  --bg05: linear-gradient(180deg, #2f5bf6 0%, #17e3ff 188.75%);
  --bg06: linear-gradient(180deg, #2f5bf6 0%, #17e3ff 100%);

  /***:::::::::::::-color-::::::::::::::***/
  --color: #2f5bf6;
  --color01: #fff;
  --color02: #313131;
  --color03: #cecece;
  --color04: #9e9e9e;
  --color05: #d7d7d7;
  --color06: #969696;
  --color07: #595858;
  --color08: #f8f8f8;
  --color-9: #073389;

  /***:::::::::::::-border-::::::::::::::***/
  --border: #9e9e9e;
  --border02: #2f5bf6;
  --border03: #cecece;
  --border04: #17e3ff;
  --border05: #fff;
  /***:::::::::::::-box-shadow-::::::::::::::***/
  --bxs: 0px 4px 20px rgba(0, 0, 0, 0.08);
  --bx02: 0px 0px 10px rgba(0, 0, 0, 0.12);
  --bx03: 0px 4px 10px rgba(0, 0, 0, 0.1);
  --bx04: 0px 4px 20px rgba(0, 0, 0, 0.06);
  --bx05: 0px -4px 10px rgba(0, 0, 0, 0.05);
  --bx06: 0 10px 20px 0 #4c4ee866;
  --bx07: 0 2px 5px 0 #4c4ee866;
  --bx08: 0px 0px 10px rgba(0, 0, 0, 0.06);
  /* ::::::::::::::::: border radious ::::::::::::::::::::::::::: */
  --radious: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font);
}

body {
  background: var(--bg03);
  color: var(--color04);
  font-family: var(--font);
  transition: all 0.4s ease;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-family: var(--font);
}

p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none !important;
  outline: 0;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a,
span,
i {
  display: inline-block;
}

.ReMin {
  margin: 0 auto;
  position: relative;
  max-width: 600px;
}

.plr {
  padding: 0 15px;
}

.ptb {
  padding: 15px 0;
}

.plrtb {
  padding: 15px;
}

.mx_ot {
  margin: 0 auto;
}

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



input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/*** scrollbar ***/
/* if you need scrollbar custom */
/* ::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background-color: var(--bg02);
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 4px;
  border-radius: 4px;
  border: 3px solid var(--bg02);
  background: var(--bg04);
} */







/***** :::::::::::::::::::: Animation Coding Effect :::::::::::::::::::: *****/
.ripple-btn-wrapper {
  overflow: hidden;
  position: relative;
}

.ripple-btn-wrapper .ripple-button:focus,
.ripple-btn-wrapper .ripple-button:active {
  outline: 0;
  box-shadow: none;
}

.ripple-btn-wrapper .ripple-button .ripple-span {
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  transform: scale(0);
  animation: ripple 0.8s linear;
  width: 20px;
  height: 20px;
}

@keyframes ripple {
  from {
    transform: scale(1);
    opacity: 0.4;
  }

  to {
    transform: scale(30);
    opacity: 0;
  }
}



/*** :::::::::::::::::::: - Start Project - :::::::::::::::::::: ***/

/*:::::::::::::::::::- Preloader -:::::::::::::::::::: */

#loading-area {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: var(--bg03);
  top: 0;
  left: 0;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}


.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  gap: 6px;
  height: 100px;
  position: relative;
}

.loading span {
  width: 4px;
  height: 50px;
  background: var(--bg);
  animation: scale 0.9s ease-in-out infinite;
}

.loading span:nth-child(2) {
  background: var(--bg04);
  animation-delay: -0.8s;
}

.loading span:nth-child(3) {
  background: var(--border04);
  animation-delay: -0.7s;
}

.loading span:nth-child(4) {
  background: var(--color01);
  animation-delay: -0.6s;
}

.loading span:nth-child(5) {
  background: #2196f3;
  animation-delay: -0.5s;
}

@keyframes scale {

  0%,
  40%,
  100% {
    transform: scaleY(0.05);
  }

  20% {
    transform: scaleY(1);
  }
}



/*:::::::::::::::::::- Navbar start -:::::::::::::::::::: */
nav {
  background-color: var(--bg02);
  padding: 20px 50px;
  width: 100%;

}

nav .header_box03 {
  display: flex;
  justify-content: space-between;
}

.nav-icon {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg05);
  border-radius: 6px;
  position: relative;
}



.nav-icon i {
  font-size: 20px;
  color: var(--bg02);
}

.cart_add_numberShow {
  position: absolute;
  color: var(--color01);
  border-radius: 20px;
  background: var(--bg05);
  padding: 2px;
  width: 24px;
  height: 24px;
  display: flex;
  font-weight: 600;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  top: -4px;
  left: -8px;
  line-height: 24px;
  box-shadow: var(--bx03);
  animation: shakeCart 1s ease-in-out forwards;
}

@keyframes shakeCart {
  25% {
    transform: translateX(4px);
  }

  50% {
    transform: translateX(-2px);
  }

  75% {
    transform: translateX(2px);
  }

  100% {
    transform: translateX(0);
  }
}

.nav-wrapper {
  position: relative;
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav .title_022 {
  font-weight: 600;
  font-size: 20px;
  color: var(--color02);
}



/** :::::::::::::::::::: sidebar :::::::::::::::::::: ***/


.sidebar_menus {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

.side-bar {
  background: var(--bg03);
  width: 360px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: -400px;
  overflow-y: auto;
  transition: 0.6s ease;
  /* transition-property: left; */
  z-index: 100;
  border-radius: 0 10px 10px 0 !important;
}

/** sidebar scrollbar **/
.side-bar::-webkit-scrollbar {
  width: 0px;
}

/* .side-bar::-webkit-scrollbar-track {
  background-color: var(--bg03);
}

.side-bar::-webkit-scrollbar-thumb {
  -webkit-border-radius: 8px;
  border-radius: 8px;
  background: var(--bg);
} */

.side-bar.active {
  left: 0;
}

.btn_are_close-btns {
  height: 50px;
  position: fixed;
  width: 360px;
  background: var(--bg03);
  display: flex;
  padding: 10px 20px;
  top: 0;
  transition: 0.6s ease;
  /* transition-property: left; */
  justify-content: flex-end;
}

.btn_are_close-btns .close-btn {
  border: none;
  background: transparent;
  width: 6%;
}

.side-bar_ares {
  margin: 65px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-item-link {
  color: var(--color04);
  transition: all 0.3s ease;
}

.sidebar-item-link:hover,
#link-active {
  color: var(--color);
}

.sidebar-item i {
  transition: 0.4s;
  font-size: 20px;
}

.sidebar-item-title {
  transition: 0.4s;
}

.sidebar-item-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: max-content;
  gap: 20px;
}

.sidebar-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  background-color: var(--bg02);
  box-shadow: var(--bx04);
  border-radius: 50%;
}

.sidebar-item-title {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}



/* :::::::::::::::::::: common class for text start ::::::::::::::::::::::::: */
.light-ash {
  color: var(--color06);
}

.white-box .dark-ash {
  font-size: 20px;
  color: var(--color07);
  font-weight: 600;
}





/* :::::::::::::::::::: common class for text start ::::::::::::::::::::::::: */
/* ::::::::::::::::::: white box and blue box start ::::::::::::::::::::::: */
.white-box {
  padding: 25px 0;
  text-align: center;
  box-shadow: var(--bx03);
  background-color: var(--bg02);
  border-radius: var(--radious);
  -webkit-border-radius: var(--radious);
  -moz-border-radius: var(--radious);
  -ms-border-radius: var(--radious);
  -o-border-radius: var(--radious);
}

.bluebox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 20px;
  background-color: var(--color);
  box-shadow: var(--bx03);
  color: var(--color01);
  border-radius: var(--radious);
  -webkit-border-radius: var(--radious);
  -moz-border-radius: var(--radious);
  -ms-border-radius: var(--radious);
  -o-border-radius: var(--radious);
}

.blue-box-text h5 {
  font-size: 18px;
}

.blue-box-number-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blue-box-number-button h5 {
  font-size: 18px;
}

/* ::::::::::::::::::: white box and blue box end ::::::::::::::::::::::: */

/* ::::::::::::::::::::::: white arrow button start :::::::::::::::::::::::: */
.white-arrow-button {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color);
  font-size: 20px;
  width: 46px;
  height: 46px;
  background-color: var(--bg02);
  box-shadow: var(--bxs);
  border-radius: 50%;
  margin-left: 20px;
}

/* ::::::::::::::::::::::: white arrow button end :::::::::::::::::::::::: */

/* :::::::::::::::::::::::: common white background section start :::::::::::::::::::::: */
.white-bg-section {
  background-color: var(--bg02);
  padding: 22px 0 50px 0;
  margin-bottom: 50px;
}

/* :::::::::::::::::::::::: common white background section end :::::::::::::::::::::: */
/* :::::::::::::::::::::::: section heading start :::::::::::::::::::::::::::::::: */
.sec-header {
  margin-bottom: 12px;
  font-size: 22px;
  color: var(--color07);
}



/* :::::::::::::::::::::::: section heading end :::::::::::::::::::::::::::::::::: */

/* :::::::::::::::::::::::: tab links wrapper styling start ::::::::::::::::::::::::::::::: */
.tab-link-wrapper {
  display: flex;
  justify-content: space-around;
  margin-bottom: 16px;
  padding: 0 !important;
}

.tab-link-txt {
  color: var(--color04) !important;
  font-size: 18px;
  user-select: none;
}

.tab-link-wrapper .nav-link {
  position: relative;
  border: none !important;
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 !important;
}

.tab-link-wrapper .nav-link.active .tab-link-txt {
  color: var(--color) !important;
}

.tab-link-wrapper .nav-link.active .tab-bottom-bar {
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--color);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

/* :::::::::::::::::::::::: tab links wrapper styling end ::::::::::::::::::::::::::::::: */

/***::::::::::::::::::-Welcome-::::::::::::::::::***/
.wlc {
  background: var(--bg02);
  height: 100vh;
}

.wlc .header-wlc {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 100px;
}

.wlc .header-wlc h1 {
  font-weight: 600;
  font-size: 30px;
  color: var(--color02);
}

.wlc_area .logo {
  width: 200px;
  padding: 50px 0;
}

.wlc_area .boxwlc {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wlc_area .boxwlc {
  gap: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.wlc_area .boxwlc .link01_wlc {
  width: 400px;
  height: 50px;
  background: var(--bg);
  display: flex;
  color: var(--color01);
  border-radius: 10px;
  align-items: center;
  font-weight: 500;
  justify-content: center;
  border: 2px solid var(--bg);
  transition: all 0.3s ease;
}

.wlc_area .boxwlc .link01_wlc:hover {
  background: var(--bg04);
  border: 2px solid var(--bg04);
}

.wlc_area .boxwlc .link01_wlc:last-child {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--color04);
  transition: all 0.3s ease;
}

.wlc_area .boxwlc .link01_wlc:last-child:hover {
  border: 2px solid var(--border02);
}

.wlc_area .boxwlc .link01_wlc:last-child span {
  text-decoration: underline var(--color);
  color: var(--color);
  margin-left: 4px;
}

.boxwlc {
  margin-top: 30px;
}

/***::::::::::::::::::- login -::::::::::::::::::***/

.form_header {
  border-radius: none;
  background: none;
  box-shadow: none;
}

.form_header .form_logo {
  width: 140px;
  padding: 25px 0;
}

.form_area {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

.form_area .header-from h1 {
  color: var(--color02);
  font-weight: 600;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.form_area .input_are {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 20px;
}

.input_are label {
  font-weight: 500;
  font-size: 15px;
}

.input_are .from_int01 {
  box-shadow: var(--bxs);
  background: var(--bg02);
  border-radius: 10px;
  height: 50px;
  width: 100%;
  padding: 0px 20px;
  font-size: 16px;
  color: var(--color);
  outline: none;
  display: block;
  font-weight: 400;
  border: 2px solid var(--bg02);
  margin: 10px 0px 0px 0px;
}

.input_are .from_int01:focus {
  border-color: var(--bg);
}

.input_are .from_int01::placeholder {
  color: var(--color05);
}

.form_area .form_btn_01 {
  background: var(--bg);
  border-radius: 10px;
  height: 50px;
  width: 100%;
  font-size: 18px;
  color: var(--color01);
  outline: none;
  border: 2px solid var(--bg02);
  margin: 20px 0px;
  transition: all 0.3s ease;
}

.form_area .form_btn_01:hover {
  background: var(--bg04);
}

.form_area .form_btn_01:active {
  transform: scale(0.99);
}

.form_area .form_footer {
  display: block;
  text-align: center;
  color: var(--color04);
  margin-top: 20px;
}

.form_area .form_footer a {
  color: var(--color);
  margin-left: 10px;
  font-weight: 500;
  text-decoration: underline;
  font-size: 16px;
}




/* :::::::::::::::::::: banner start ::::::::::::::::::: */
.banner {
  background: var(--bg05);
  padding: 45px 0 110px 0;
}

.banner-container {
  display: flex;
  justify-content: center;
}

.banner-content {
  text-align: center;
  color: var(--bg02);
}

.banner-text {
  margin-bottom: 15px;
}

.banner-white-box-container {
  transform: translateY(-20%);
}

.banner-blue-box-container {
  transform: translateY(-65%);
}

/* :::::::::::::::::: banner end ::::::::::::::::: */

/***::::::::::::::::::- footer -::::::::::::::::::***/
.footer {
  position: fixed;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 9;
  border-radius: 15px 15px 0 0;
  background: var(--bg02);
  box-shadow: var(--bx02);
  transition: all 0.3s ease;
}

.footer .navbar {
  align-items: center;
  max-width: 480px;
  padding: 1px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  list-style: none;
  transition: all 0.3s ease;
}

.footer .navbar .nav-item {
  height: 60px;
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
  transition: all 0.3s ease;
}

.footer .navbar .nav-item .nav-link {
  text-align: center;
  background: transparent;
  height: 100%;
  width: 100%;
  line-height: 44px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer .navbar .nav-item .nav-link span:hover>i {
  background: var(--bg06);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer .navbar .nav-item .nav-link span i.active {
  background: var(--bg);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer .navbar .nav-item.center__box .nav-link .color__center:hover,
.footer .navbar .nav-item.center__box .nav-link .color__center.active {
  background: var(--bg06);
  box-shadow: 0 10px 20px 0 #19d9fe66;
}

.footer .navbar .nav-item .nav-link span i {
  font-size: 20px;
  color: var(--color05);
}

.footer .navbar .nav-item.center__box {
  padding: 10px;
  transition: none;
}

.footer .navbar .nav-item.center__box .nav-link span i {
  background: var(--bg02);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer .navbar .nav-item.center__box .nav-link {
  position: relative;
  padding: 8px;
  height: 76px;
  width: 76px;
  margin: 0 auto;
  border-radius: 0 0 40px 40px;
  margin-top: -30px;
  transition: none;
}

.footer .navbar .nav-item.center__box .nav-link span {
  height: 60px;
  line-height: 60px;
  width: 60px;
  position: relative;
  top: -10px;
  border-radius: 30px;
  margin: 0px auto 0 auto;
  box-shadow: var(--bx06);
}

.color__center {
  background: var(--bg);
}

/***::::::::::::::::::- Devoluciones -::::::::::::::::::***/
.header_02 {
  display: block;
  padding: 20px 50px;
  background: var(--bg02);
  box-shadow: var(--bx04);
}

.header_content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_titles_02 {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header_titles_02 h2 {
  font-weight: 600;
  font-size: 22px;
  color: var(--color02);
}

.header_content .add_btn_1,
.header_content .header_titles_02 .icon_back_h {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg05);
  border-radius: 6px;
  color: var(--color01);
  font-size: 22px;
  border-radius: 6px;
  user-select: none;
}

.header_content .header_titles_02 .icon_back_h {
  background: transparent !important;
  color: var(--color02);
  transition: all 0.3s ease;
}

.header_content .header_titles_02 .icon_back_h:hover {
  color: var(--color);
}

.header_s .search_icon {
  padding: 15px 30px;
  border: 2px solid var(--bg) !important;
  outline: none;
  overflow: hidden;
  background: var(--bg);
  border-radius: 6px 0px 0px 6px;
  user-select: none;
}

.search_area .search_input {
  outline: none;
  background: var(--bg03);
  border: 2px solid var(--bg03);
  color: var(--color06);
  font-size: 18px;

}

.search_area .search_input:focus {
  outline: none !important;
  border: 2px solid var(--bg) !important;
  box-shadow: none !important;
  opacity: 1 !important;
}




/***::::::::::::::::::- all tab pages content -::::::::::::::::::***/
.tabs {
  position: relative;
  display: block;
}

#tabs-boxs,
#tabs-boxs_2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 65px;
  border-radius: 12px;
  background: var(--bg02);
  box-shadow: var(--bx03);
  overflow: hidden;
  margin: 35px 50px;

}

.tab_btns a {

  display: block;
  height: 65px;
  line-height: 65px;
  transition: all 0.3s ease;
  color: var(--color06);
  font-weight: 600;
  font-size: 16px;
}

.tab_btns a:hover,
.tab_active a {
  color: var(--color);
  position: relative;
}

.tab_active a::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 4px;
  bottom: 0;
  background: var(--bg);
  left: 0;
  border-radius: 25px;
  transition: all 0.3s ease;
}

#tabs-content {
  padding: 0px 50px 125px;
}

#tabs-content .tabs_content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tabs_content_bx {
  display: flex;
  background: var(--bg02);
  box-shadow: var(--bx03);
  border-radius: 20px;
  padding: 22px;
  justify-content: space-between;
}


/* Dropdown menu css */
.tabs_plus_btn {
  /* width: 10%; */
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

.btn_icon_toggle {
  background: var(--bg05);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  width: 40px;
  height: 40px;
  justify-content: center;
  border: none;
  z-index: 2;
}

.tabs_plus_btn .dropdown_list {
  width: 140px;
  position: absolute;
  left: -148px;
  top: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(48px);
  z-index: 1;
  transition: all 0.4s ease;

}

.tabs_plus_btn .dropdown_list li {
  margin-bottom: 15px;
}

.tabs_plus_btn .dropdown_list li a {
  padding: 10px 0px;
  background: var(--bg);
  font-size: 15px;
  font-weight: 500;
  color: var(--color01);
  width: 100%;
  text-align: center;
  border-radius: 5px;
  position: relative;
}

.btn_icon_toggle i {

  color: var(--color01);
  transform: rotate(0deg);
  display: flex;
  transform-origin: center;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}


.dropdown-open .dropdown_list.dropdown-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
}

.dropdown-open .btn_icon_toggle i {
  transform: rotate(-45deg);
}

/**-::::::::- facturas_area -:::::::::-**/
.facturas_area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 35px 50px 115px;
}

.facturas_card {
  background: var(--bg02);
  box-shadow: var(--bx03);
  border-radius: 20px;
  padding: 20px;
}

.facturas_list {
  display: block;
  margin-bottom: 20px;
}

.facturas_sub_total {
  display: block;
}

.facturas_sub_total .sub_total_01,
.facturas_total .total-01 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  margin: 25px 0px;
  color: var(--color02);
  font-weight: 500;
  padding: 0px 15px;
}

.facturas_sub_total .sub_total_01 .us_f_01 {
  font-weight: 600;
}

.facturas_sub_total .line {
  border-bottom: 1px solid var(--border03);
}

.facturas_total .total-01,
.Pedidos_total .total-01 {
  box-shadow: var(--bx03);
  background-color: var(--bg02);
  padding: 20px 15px !important;
  border-radius: 20px;
}

.facturas_total .blue_are01 {
  background: var(--bg) !important;
}

.facturas_total .blue_are01 .f-total {
  color: var(--color01) !important;
}

.facturas_total .blue_are01 .us_ft-01 {
  color: var(--color01) !important;
}



.facturas_total .total-01 .us_ft-01 {
  color: var(--color);
  font-weight: 600;
}

.facturas_total .total-01 .f-total {
  color: var(--color04);
}

.facturas_card .next_factura {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.facturas_card .next_factura a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  background: var(--bg05);
  color: var(--color01);
}

/**-::::::::- factura_area -:::::::::-**/
.factura-area {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin: 35px 50px;
}

.factura-product {
  margin: 0px 50px 115px !important;
}


.seemore_less_area,
.factura_usd_area,
.factura_cant_area {
  width: 480px;
  margin: 0 auto;
}

.product-f-card {
  display: flex;
  align-items: center;
  width: 250px;
  margin: 0 auto;
}

.seemore_less_area .product-f_title {
  color: var(--color02);
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  text-transform: uppercase;
}

.factura_usd_area,
.factura_cant_area {
  margin-top: 20px;
}

.factura_usd_area .product-f_title_usd {
  color: var(--color06) !important;
  font-weight: 500 !important;
  line-height: 25px;
  font-size: 17px;
}

.factura_cant_area {
  display: flex;
  justify-content: space-between;
}

.factura_cant_content {
  display: flex;
  flex-direction: column;
}

.factura_cant_content .number {
  border-radius: 2px;
  background: var(--bg);
  padding: 8px 25px;
  color: var(--color01);
  font-size: 16px;
  font-weight: 500;
  margin: 10px 0px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.factura_cant_content .number:hover {
  box-shadow: var(--bx06);
}

/**-::::::::- Pedidos -:::::::::-**/
.Pedidos_total .total-01 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  color: var(--color02);
  font-weight: 500;
}

.Pedidos_total .total-01 .f-total {
  color: var(--color04);
}

.Pedidos_total .total-01 .us_ft-01 {
  color: var(--color);
  font-weight: 600;
}


/**-::::::::- table -:::::::::-**/
.table_data {
  position: relative;
  margin: 35px 50px 120px !important;
  box-shadow: var(--bx03);
  background-color: var(--bg02);
  border-radius: 20px;
  padding: 20px;
}

.table_data .table thead tr th,
.table_data .table tbody tr td {
  text-align: center;
}

.table_data .table thead tr th {
  color: var(--color02);
  font-weight: 600;
  font-size: 18px;
}

.table_data .table tbody tr td {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 18px;
  color: var(--color06);
}

.table>:not(caption)>*>* {
  padding: 20px 25px;
  background-color: none;
  border: none !important;
  box-shadow: none !important;
}

/**-::::::::- Proyecciones -:::::::::-**/
.Proyecciones_are {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 20px;
  margin: 35px 50px 120px;
}

.Proyecciones_content {
  background: var(--bg02);
  box-shadow: var(--bx03);
  border-radius: 20px;
  padding: 22px;
  display: block;
}

.Proyecciones_cplus {
  display: flex;
  justify-content: flex-end;
}

.Proyecciones_cplus .tabs_plus_btn .dropdown_list {
  top: -35px;
}

.ventas_content {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 15px;
  margin: 15px 0px;
  box-shadow: var(--bx03);
  background-color: var(--bg02);
  border-radius: var(--radious);
}

.ventas_content .ventas_title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ventas_content .ventas_title span {
  font-size: 18px;
  color: var(--color06);
  font-weight: 500;
}

.ventas_content .ventas_title .v_usd {
  font-size: 18px;
  color: var(--color07);
  font-weight: 600;
}



.ventas_content .ventas_usd .v_usd02 {
  font-weight: 500;
  color: var(--color01);
  font-size: 18px;
  padding: 15px;
  margin: 15px 0px;
  background: var(--bg);
  width: 100%;
  text-align: center;
  border-radius: 15px;
  position: relative;
  transition: all 0.3s ease;
}

.ventas_content .ventas_usd .v_usd02:hover {
  box-shadow: 0 2px 4px 0 #4c4ee866;
}


.Proyecciones-calender {
  margin: 30px 50px 0px;
}

/**-::::::::- Reportes de clientes inactivos page -:::::::::-**/
.reportes_cliente_area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 35px 50px 125px;
}

.reporte_cliente_content {
  background: var(--bg02);
  box-shadow: var(--bx03);
  border-radius: 20px;
  padding: 22px;
  display: block;
}

/**-::::::::- list -:::::::::-**/
.number_id {
  color: var(--color06);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.list_id_001 li {
  margin-bottom: 15px;
}

.list_id_001 li:last-child {
  margin-bottom: 0px;
}

.list_id_001 li a {
  display: flex;
  align-items: center;
  color: var(--color06);
  transition: all 0.3s ease;
  width: max-content;
}

.list_id_001 li a i {
  font-size: 16px;
  color: var(--color);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 30px;
  transition: all 0.3s ease;
}


.list_id_001 li a span {
  font-size: 16px;
  font-weight: 400;
}

.list_id_001 li a:hover>i,
.list_id_001 li a:hover {
  color: var(--color02) !important;
}

/**-::::::::- Reportes  -:::::::::-**/
.pages_nxt_are {
  position: relative;
  margin: 35px 50px;
}

.reporte_btns {
  border-radius: 12px;
  background: var(--bg02);
  box-shadow: var(--bx05);
  transition: all 0.3s ease;
}


.reporte_btns a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 22px;
  height: 70px;
  color: var(--color06);
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 18px;
  transition: all 0.3s ease;
}


.reporte_btns a .next_page_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color01);
  font-size: 20px;
  width: 40px;
  height: 40px;
  padding: 12px;
  margin-left: 12px;
  background-color: var(--bg);
  box-shadow: var(--bxs);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.reporte_btns:hover {
  background: var(--bg);
}

.reporte_btns:hover>a {
  color: var(--color01);
}

.reporte_btns a:hover>.next_page_icon {
  color: var(--color);
  background: var(--bg02);
}


/**-::::::::- Devoluciones -:::::::::-**/
.devoluciones_area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 35px 50px 120px;
}


.devoluciones_info_text {
  text-align: center;
  margin: 20px 0px;
  font-size: 20px;
  color: var(--color02);
  text-transform: capitalize;
}

.devoluciones-2,
.blue_areas01 {
  margin: 35px 50px 120px;
}

.devolucione_img_bx {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}


.devolucione_img_content {
  padding: 4px;
  width: 145px;
  height: 145px;
  object-fit: cover;
}

.devolucione_img_content .img_body {
  object-fit: cover;
}



/**** - check - *****/
.check_then44[type=checkbox] {
  display: none !important;
}

.check_then44[type=checkbox]:checked+label:before {
  background-color: var(--bg) !important;
  border-color: var(--border02) !important;
  color: #fff;
}

.check_then44[type=checkbox]+label {
  display: block;
  cursor: pointer;
  text-transform: uppercase;
  font-family: sans-serif;
  font-weight: bold;
}

.check_then44[type=checkbox]+label.active:before {
  transform: scale(0);
}

.check_then44[type=checkbox]+label:before {
  content: "✔";
  border: 1px solid var(--border02);
  border-radius: 0.2em;
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: center;
  text-align: center;
  color: transparent;
  transition: 0.2s;
  font-size: 13px;
}

.check_open {
  position: relative;
  visibility: hidden;
  opacity: 0;
  scale: 0;
  transition: all 0.3s ease;

}

.check_open.show44 {
  visibility: visible;
  opacity: 1;
  scale: 1;
}

.check_open {
  position: relative;
  visibility: hidden;
  opacity: 0;
  scale: 0;
  transition: all 0.3s ease;

}

.check_open.show44 {
  visibility: visible;
  opacity: 1;
  scale: 1;
}

.open_checked44 {
  padding: 25px 0px !important;
  width: 100px !important;
}

.open_checked44_area {
  position: absolute;
  left: 0;
  right: 0;
  top: 5px;
  border-radius: 10px;
  height: 40px;
  line-height: 40px;
  border: 1px solid var(--border03);
  display: flex;
  align-items: center;
  justify-content: center;
}

.open_checked44_area label {
  font-size: 16px;
  line-height: 16px;
}

.open_checked44_area input {
  border: none !important;
  outline: none !important;
  background: transparent;
  font-size: 16px;
  font-weight: 500;
  margin-left: 10px;
  width: 80px;
}



/**-::::::::- Articulos  -:::::::::-**/
.shoping_card_area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 35px 60px 125px;
}

.s_card_box {
  background: var(--bg02);
  box-shadow: var(--bx03);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.s_card_box .as_img {
  width: 100%;
  display: block;
}

.s_card_box .as_img img {
  width: 180px;
  display: block;
  margin: 0 auto;
}

.s_card_info .scard_title {
  color: var(--color-9);
  font-size: 17px;
  font-weight: 600;
  margin: 15px 0;
}

.usd_s-card {
  width: max-content;
}

.usd_s-card .select_bx {
  height: 45px;
  padding: 0px;
  border-radius: 6px;
  color: var(--color02) !important;
  gap: 6px;
  width: 140px;
  justify-content: normal;
  /* margin-bottom: 15px; */
}

.usd_s-card .select_bx .icon_down {
  font-size: 14px;
  margin-left: 0px !important;
  color: var(--color06);
}

.usd_s-card .select_bx .usT {
  font-size: 16px;
  font-weight: 600;
}

.usd_s-card .select_bx #select_data {
  font-size: 15px;
}

.s_card_box .disp {
  font-size: 16px;
  color: var(--color04);

}

.s_card_box .disp .num {
  color: var(--color);
}



.Unidad_opt .select_content .select_bx {
  height: 38px;
  padding: 0px 10px;
  border-radius: 6px;
  color: var(--color01) !important;
  background: var(--bg) !important;
  width: 100%;
}

.Unidad_opt .select_content .select_bx #select_data {
  font-size: 16px;
}

.Unidad_opt .select_content .select_bx .icon_down {
  font-size: 15px;
  margin-left: 6px;
}

.Unidad_opt .option_s_body .option_whitebx .option_content {
  height: 90px;
}

.Unidad_opt {
  position: relative;
  margin: 15px 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.Unidad_opt .select_content h3 {
  margin: 10px 0;
  font-size: 17px;
  color: var(--color04);
}

.scBtn_11_area {
  width: 100%;
}

.scBtn_11_area .scBtn_11 {
  background: var(--bg04);
  font-size: 17px;
  color: var(--color01);
  border-radius: 4px;
  border: none;
  width: 100%;
  padding: 8px 0px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.scBtn_11_area .out_stock {
  background: var(--bg);
}

.scBtn_11_area .out_stock:hover {
  background: var(--bg04) !important;
}

.scBtn_11_area .scBtn_11:hover {
  background: var(--bg);
}

.Unidad_opt .cant_are h3 {
  margin: 10px 0;
  font-size: 17px;
  color: var(--color04);
  padding-left: 25px;
}

.Unidad_opt .cant_are .number_content .count_numbers {
  height: 38px;
  padding: 0px 10px;
  border-radius: 6px;
  color: var(--color01) !important;
  background: var(--bg) !important;
  width: 60px;
  text-align: center;
  border: none !important;
  outline: none !important;
}

.count_numbers[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.cant_are .number_content {
  display: flex;
  gap: 8px;
}

.cant_are .number_content .minus_numBtn {
  border: none;
  background: transparent;
  outline: none;
  font-size: 16px;
}

/**-::::::::- select -:::::::::-**/

.bx_blue01 {
  background: var(--bg);
  padding: 20px;
  border-radius: 10px;
}


.select_content,
.select_area {
  position: relative;
}

.select_bx {
  height: 60px;
  background: var(--bg02);
  display: flex;
  position: relative;
  color: var(--color06);
  align-items: center;
  justify-content: space-between;
  border-radius: 6px;
  font-weight: 500;
  font-size: 18px;
  padding: 0px 20px;
  overflow: hidden;
  /* overflow-y: auto; */
  /** if text go to outside then**/
}

.select_bx .icon_down,
.flx_search .icon_down {
  font-size: 16px;
  margin-left: 6px;
}


.option_s {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  padding: 20px;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.547);
  z-index: 9999999;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.option_s.show_sbox {
  opacity: 1;
  visibility: visible;
}

.option_s .option_list {
  padding: 10px 0px;
  color: var(--color06);
  text-decoration: none;
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  text-transform: capitalize;
  font-size: 18px;
  transition: all 0.3s ease;
}

.option_s .option_list:hover {
  color: var(--color02);
}

.option_s .option_list::before {
  content: "";
  position: relative;
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 3px solid var(--border);
  border-radius: 50%;
  transition: border-color 400ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  padding: 6px;
}

.option_s .option_list.op_list_active::before {
  border-color: var(--border02);
}

.option_s .option_list::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--bg);
  border: 2px solid var(--border02);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 400ms ease;
}

:root {
  --primary-color: rgb(177, 39, 108);
}

.option_s .option_list.op_list_active::after {
  transform: scale(0.45);
}

.op_list_active {
  color: var(--color) !important;
}

.option_s_body {
  width: 632px;
  background: #FFFFFF;
  border-radius: 10px;
}

.option_whitebx,
.option_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  padding: 20px;
  border-radius: 10px;

}

.option_content {
  padding: 0px !important;
  margin: 15px 0px 0px;
  width: 100%;
  height: 282px;
  overflow: hidden;
  overflow-y: auto;
  border-radius: 0px !important;
}

/** scrollbar **/
.option_content::-webkit-scrollbar {
  width: 6px;
}

.option_content::-webkit-scrollbar-track {
  background-color: transparent;
}

.option_content::-webkit-scrollbar-thumb {
  -webkit-border-radius: 8px;
  border-radius: 8px;
  background: var(--bg);
}

.s_btn_area002 {
  background: #FFFFFF;
  box-shadow: 0px -4px 10px rgb(0 0 0 / 5%);
  border-radius: 0px 0px 10px 10px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  padding: 14px 15px;
}

.s_btn_area002 #cancel_btn,
.s_btn_area002 #save_btn {
  background: transparent;
  border: none;
}

.s_btn_area002 #cancel_btn .cancel {
  background: var(--bg02) !important;
  color: var(--color06) !important;
}

.s_btn_area002 #cancel_btn .cancel,
.s_btn_area002 #save_btn .save {
  background: var(--bg);
  border-radius: 4px;
  color: var(--color01);
  display: block;
  font-size: 16px;
  padding: 0px 12px;
  height: 40px;
  line-height: 40px;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.s_btn_area002 #save_btn .save:hover,
.s_btn_area002 #cancel_btn .cancel:hover {
  background: var(--bg04) !important;
  color: var(--color01) !important;
}



.option_whitebx h3 {
  font-size: 20px;
  color: var(--color06);
  font-weight: 500;
  text-transform: capitalize;
}

.select_bx #select_data {
  text-transform: capitalize;
}

.bx_blue01 .select_content {
  margin-bottom: 16px;
}

.bx_blue01 .select_content:last-child {
  margin-bottom: 0px;
}

.button_sm1 .select_bx {
  height: 45px;
  font-size: 15px;
  padding: 0px 10px;
  border-radius: 6px;
  color: var(--color01) !important;
  background: var(--bg) !important;
  width: 160px;
}

/**-::::::::- carrito_are  -:::::::::-**/
.carrito_are .input_are label {
  font-size: 18px;
  color: var(--color06);
}

.carrito_are .input_are .from_int01 {
  height: 55px;
}

.header_content .add_btn_2 {
  font-size: 18px;
  color: var(--color);
  transition: all 0.3s ease;
}

.header_content .add_btn_2:hover {
  color: var(--color02);
}

.button_sm1 h3 {
  font-size: 18px;
  color: var(--color06);
  margin-bottom: 16px;
  margin-top: 20px;
}

.total_bx33 {
  margin: 16px 0;
}

.total_bx33 .total-044 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 15px !important;
  border-bottom: 1px solid var(--border03);
  margin-bottom: 15px;
}

.total-04 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 500;
  box-shadow: var(--bx03);
  background-color: var(--bg02);
  padding: 16px 15px !important;
  border-radius: 10px;
}

.total-04 .t-total {
  color: var(--color04);
}

.total-04 .us_tt-04 {
  color: var(--color);
  font-weight: 600;
}

.button_en {
  margin: 16px 0;
}

.button_en .btn-espera {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  background-color: var(--bg);
  padding: 16px 15px !important;
  border-radius: 10px;
  width: 100%;
  border: none;
  text-transform: capitalize;
  color: var(--color01);
}

.fter_button {
  background: #FFFFFF;
  box-shadow: var(--bx03);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 15px;
  margin: 0px 0px 80px;
}

.btn_body44 .btn_f044 {
  background: var(--bg);
  border-radius: 4px;
  color: var(--color01);
  display: block;
  font-size: 16px;
  padding: 0px 45px;
  height: 40px;
  line-height: 40px;
  transition: all 0.3s ease;
  border: none;
  text-transform: capitalize;
}

.btn_body44 .btn-44 {
  background: var(--bg02);
  color: var(--color06);
  box-shadow: var(--bx03);
}

.btn_body44 .btn_f044:hover {
  background: var(--bg02);
  color: var(--color06);
  box-shadow: var(--bx03);
}

.btn_body44 .btn-44:hover {
  background: var(--bg);
  color: var(--color01);
}


/**-::::::::- reportes_pedidos  -:::::::::-**/
.reportes_pedidos {
  margin: 35px 50px 120px;
}

.sle_bxrp .icon_down {
  margin-left: 20px;
}

.reportes_pedidos .buscar-rp {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  background-color: var(--bg02);
  padding: 16px 15px !important;
  border-radius: 6px;
  width: 100%;
  border: none;
  text-transform: capitalize;
  color: var(--color);
  box-shadow: var(--bx08);
  transition: all 0.3s ease;
  margin-top: 18px;
}

.reportes_pedidos .buscar-rp:hover {
  background: var(--bg04);
  color: var(--color01);
}


/**-::::::::- solicitudes  -:::::::::-**/
.solicitudes-2 {
  margin: 35px 50px 120px;
}

.max-rem {
  margin: 35px auto 120px !important;
  position: relative;
  max-width: 800px;
}

.stInput_from {
  height: 60px;
  background: var(--bg02);
  display: flex;
  position: relative;
  color: var(--color06);
  border-radius: 6px;
  font-weight: 500;
  font-size: 18px;
  padding: 0px 20px;
  width: 100%;
  border: none !important;
  outline: none !important;
  margin-bottom: 15px;
}

.st_from textarea {
  background: var(--bg02);
  display: flex;
  position: relative;
  color: var(--color06);
  border-radius: 6px;
  font-weight: 500;
  font-size: 18px;
  width: 100%;
  border: none !important;
  outline: none !important;
  margin-bottom: 15px;
  margin-bottom: 0px;
  height: 80px;
  padding: 15px;
}

.st_from textarea::-webkit-resizer {
  display: none;
}

.sol_text {
  font-size: 18px;
  color: var(--color01);
  margin: 22px 0px;
}

.white_btn_are .wt_Btn {
  height: 58px;
  background: var(--bg02);
  display: flex;
  position: relative;
  color: var(--color);
  border-radius: 6px;
  font-weight: 600;
  font-size: 18px;
  padding: 0px 20px;
  width: 100%;
  border: none !important;
  outline: none !important;
  margin: 20px 0px;
  align-items: center;
  justify-content: center;
  box-shadow: var(--bx04);
  text-transform: capitalize;
  transition: all 0.3s ease;
}

.white_btn_are .wt_Btn:hover {
  background: var(--bg04);
  color: var(--color01);
}

/**-::::::::- add remove img upload -:::::::::-**/
.sc_bx_area {
  padding: 20px;
  border-radius: 10px;
  border: 2px solid var(--border05);
  margin-bottom: 15px;
}

.sc_input02 {
  height: 55px;
  width: 100%;
  background: #FFF;
  display: flex;
  position: relative;
  color: #333;
  align-items: center;
  justify-content: space-between;
  border-radius: 6px;
  font-weight: 500;
  font-size: 18px;
  padding: 0px 20px;
  margin-bottom: 15px;
  outline: none !important;
  border: none !important;
}

.sc_input02:last-child {
  margin-bottom: 15px;
}

.sc_Button_area {
  display: flex;
}

.sc_btnPlus,
.sc_btnMinus {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg02);
  color: var(--color);
  border-radius: 20px;
  border: none;
  outline: none;
  font-size: 20px;
}

.sc_Btn2 {
  width: 50%;
  display: flex;
}

.plus_btnsc {
  justify-content: flex-end;
  width: 100%;
}


.imgbox_area {
  position: relative;
  display: block;
  margin: 0 auto;
  width: max-content;
  overflow: hidden;
}

.img_deleted_btn {
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 20px;
  width: 30px;
  display: flex;
  height: 30px;
  background: var(--bg);
  border-radius: 40px;
  color: var(--color01);
  align-items: center;
  justify-content: center
}

.img_body_upload {
  background: var(--bg02);
  border-radius: 10px;
  box-shadow: var(--bx03);
  padding: 15px;
  width: 210px;
  display: flex;
  height: 210px;
  position: relative;
  align-items: center;
  justify-content: center;
}

.img_body_upload .img_upIcon {
  font-size: 120px;
}

/***- img upload --***/
.img_body_upload .add_imgs .image_up {
  height: 200px;
  width: 200px;
  border-radius: 6px;
  padding: 4px;
  object-fit: cover;
}

.showbtn_plus {
  display: none;

}

.show_img {
  display: none;

}

.alert_modalimg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  align-items: center;
  display: flex;
  background: rgba(255, 255, 255, 0.777);
  justify-content: center;
}

.alert_modalimg .content {
  width: 400px;
  background-color: var(--bg02);
  box-shadow: var(--bx02);
}


/**-::::::::- google map -:::::::::-**/
.google_map_now {
  margin: 35px 50px 120px;
  background: var(--bg02);
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--bx04);
}

.google_map_now h2 {
  font-size: 18px;
  color: var(--color06);
  font-weight: 500;
  margin-bottom: 16px;
  text-align: center;
  text-transform: capitalize;

}

.google_map_now .g_mp_btn {
  display: block;
  margin: 0 auto;
  width: 200px;
}

.map .map_size {
  width: 100%;
  height: 480px;
}

.google_map_now .g_mp_btn .btn_cfg {
  width: 100%;
  height: 45px;
  margin-top: 15px;
  background: var(--bg);
  color: var(--color01);
  font-size: 17px;
  text-transform: capitalize;
  border-radius: 6px;
  border: none !important;
  transition: all 0.3s ease;
}

.google_map_now .g_mp_btn .btn_cfg:hover {
  background: var(--bg04);
}



/*** pedidos_en_espera ***/
.rs_grid_22 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 35px 50px 120px;
}

.card_pp_22 {
  display: flex;
  background: var(--bg02);
  box-shadow: var(--bx03);
  border-radius: 20px;
  padding: 22px;
  justify-content: space-between;
}

.rs_grid_22 .dropdown_list {
  top: 65px;
}

.deleted_s_card {
  margin-top: 40px;
  font-size: 20px;
  color: rgb(243, 0, 0);
}

/*** - search_filterArea - ***/
.search_filterArea {
  position: relative;
}

.search_areaF {
  height: 60px;
  background: var(--bg02);
  display: flex;
  position: relative;
  color: var(--color06);
  align-items: center;
  justify-content: space-between;
  border-radius: 6px;
  font-weight: 500;
  font-size: 18px;
  padding: 0px 20px;
}



.flx_search {
  display: flex;
  align-items: center;
  width: 100%;
}

#search_bxsF {
  width: 100%;
  margin: 0px 20px;
  padding: 4px;
  text-align: end;
}

.search_areaFModel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg02);
  z-index: 9999999;
  display: block;
  transition: all 0.3s ease;


}

.search_areaFModel .search_ModelShowId {
  visibility: visible;
  opacity: 1;
}

.search_rows {
  display: flex;
  background: #FFF;
  padding: 20px;
  flex-direction: column;
}

.header_search_fil {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  color: var(--color06);
  margin-bottom: 15px;
}

.header_search_fil h4 {
  font-size: 18px;
}

.header_search_fil .close_searchModel:hover {
  color: rgba(252, 7, 7, 0.975);
}

.search_ModelInfo {
  height: 60px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  border-radius: 6px;
  font-weight: 500;
  font-size: 18px;
  padding: 0px 20px;
  outline: none;
  background: var(--bg03);
  border: 2px solid var(--bg03);
  color: var(--color06);
  font-size: 18px;
  transition: all 0.3s ease;
}

.search_ModelInfo:hover {
  outline: none !important;
  border: 2px solid var(--bg) !important;
  box-shadow: none !important;
  opacity: 1 !important;
}

.search_ModelInfo .search_icnF {
  font-size: 15px;
}

.search_ModelInfo .xmark {
  color: var(--color);
}

.search_dataF {
  width: 100%;
  margin: 0px 20px;
  padding: 4px;
  height: 25px;
  color: var(--color02);
  background: transparent;
  border: none !important;
  outline: none !important;
}

.search_option_Area {
  background: #FFF;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2px 25px;
}

.search_opc {
  padding: 0px !important;
  margin: 15px 0px 20px;
  width: 100%;
  height: 580px;
  overflow: hidden;
  overflow-y: auto;
  border-radius: 0px !important;
}

.search_opc::-webkit-scrollbar {
  width: 6px;
}

.search_opc::-webkit-scrollbar-track {
  background-color: transparent;
}

.search_opc::-webkit-scrollbar-thumb {
  -webkit-border-radius: 8px;
  border-radius: 8px;
  background: var(--bg);
}

.search_op_list {
  padding: 10px 0px;
  color: var(--color06);
  text-decoration: none;
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  text-transform: capitalize;
  font-size: 18px;
  transition: all 0.3s ease;
}

.search_op_list:hover {
  color: var(--color02);
}

.search_op_list.active {
  color: var(--color) !important;
}


.search_op_list.active::before {
  border-color: var(--border02);
}

.search_op_list::before {
  content: "";
  position: relative;
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 3px solid var(--border);
  border-radius: 50%;
  transition: border-color 400ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  padding: 6px;
}

.search_op_list::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--bg);
  border: 2px solid var(--border02);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 400ms ease;
}

.search_op_list.active::after {
  transform: scale(0.45);
}

.open_searchFilter {
  display: none;
}

.alert_img_which .content h2 {
  color: var(--color06);
  font-size: 18px;
}

/**** demo ****/
.demobtn_999 {
  box-shadow: none !important;
}

.modal-header999 {
  border: none;
}

.closem_999 {
  border: none !important;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  box-shadow: none !important;
  outline: none !important;
}



.modal-footer999 {
  border: none !important;
}

/******::::: img alert model:::::******/

.alert_modalimg .content {
  padding: 18px;
  border-radius: 10px;
}

.alert_img_which .content h2 {
  margin-bottom: 22px;
}

.alert_modalimg .content .chooseBtn_body {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.alert_modalimg .content .chooseBtn_body button {
  background: var(--bg);
  border-radius: 4px;
  color: var(--color01);
  display: block;
  font-size: 16px;
  padding: 0px 10px;
  height: 38px;
  line-height: 38px;
  transition: all 0.3s ease;
  text-transform: capitalize;
  border: none !important;

}

.alert_modalimg .content .chooseBtn_body button:hover {
  background: var(--bg04) !important;
  color: var(--color01) !important;
}

@media (max-width: 600px) {
  .alert_modalimg .content {
    width: 100%;
    margin: 16px;
  }
}