@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  --primary: #E4022B;
  --secondary: #303AB2;
  --filterPrimary: invert(12%) sepia(100%) saturate(4542%) hue-rotate(342deg) brightness(97%) contrast(107%);
  --filterSecondary: invert(22%) sepia(95%) saturate(1543%) hue-rotate(221deg) brightness(85%) contrast(99%);
  --filterWhite: invert(99%) sepia(0%) saturate(4787%) hue-rotate(41deg) brightness(127%) contrast(96%);
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  scroll-behavior: smooth;
}

*::-moz-selection {
  background-color: var(--primary);
  color: #fff;
}

*::selection {
  background-color: var(--primary);
  color: #fff;
}

*::-webkit-scrollbar {
  width: 7px;
}

*::-webkit-scrollbar-track {
  background-color: #eee;
}

*::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}

body {
  direction: ltr;
  overflow-x: hidden;
  background-color: #F7F8FA;
}

div::-webkit-scrollbar,
ul::-webkit-scrollbar,
nav::-webkit-scrollbar {
  height: 5px;
}

/**********************************************
   Start Global Style
**********************************************/
.color-gray {
  color: #727A90;
}

.color-gray2 {
  color: #888;
}

.color-dark {
  color: #1B2021;
}

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

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

.filterPrimary {
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.filterSecondary {
  -webkit-filter: var(--filterSecondary);
          filter: var(--filterSecondary);
}

.filterWhite {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

p,
.p {
  font-size: 15px;
  color: #555;
  line-height: 1.7rem;
  margin-bottom: 0;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  text-decoration: none !important;
}

a:hover {
  color: var(--primary) !important;
}

a:focus {
  outline: 0;
}

del,
.del {
  text-decoration: line-through;
  color: #888;
  font-size: 80%;
}

ul {
  list-style-type: none;
  padding: 0;
}

button {
  border: none;
  padding: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  background-color: transparent;
}

button:focus {
  border: none;
  -webkit-box-shadow: transparent;
          box-shadow: transparent;
  outline: 0;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-group {
  position: relative;
}

.form-control {
  font-size: 14px;
  border-radius: 12px;
}

.form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid var(--primary) !important;
}

input,
select {
  height: 40px !important;
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
  -webkit-box-shadow: none;
          box-shadow: none;
}

textarea {
  resize: none;
}

.form-check-input {
  height: 1em !important;
}

.progress-wrap {
  position: fixed;
  inset-inline-end: 15px;
  bottom: 15px;
  height: 45px;
  width: 45px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
          box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transform: translateY(130%);
          transform: translateY(130%);
  z-index: 99;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap::after {
  background: url(../images/icons/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: var(--primary);
  left: 10.5px;
  top: 10.5px;
  height: 25px;
  width: 25px;
  display: block;
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.progress-wrap svg path {
  fill: #f8f8f8;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.container,
.container-fluid,
.zi-5 {
  position: relative;
  z-index: 5;
}

.secImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.text-end {
  text-align: end;
}

.overflow_hidden {
  overflow: hidden !important;
}

.bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.w-fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.position-unset {
  position: unset;
}

.underline {
  text-decoration: underline !important;
}

.trans_3 {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

/**********************************************
   Start Loader
**********************************************/
#preloader {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  z-index: 9999999;
  pointer-events: none;
  /*----------- upload loader ------------*/
}

#preloader::after, #preloader::before {
  content: "";
  position: fixed;
  left: 0;
  height: 50%;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#0d1a36), color-stop(#132650), to(#0a152e));
  background: linear-gradient(to right, #0d1a36, #132650, #0a152e);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

#preloader::before {
  top: 0;
}

#preloader::after {
  bottom: 0;
}

#preloader .logo_img {
  width: 300px;
  max-width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 20;
  opacity: 0.5;
}

#preloader #loading-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  background-color: #0005;
  display: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#preloader #loading-wrapper.show {
  display: block;
}

#preloader #loading-wrapper #loading-text {
  display: block;
  position: absolute;
  top: calc(50% - 38px);
  left: 50%;
  color: #fff;
  width: 100px;
  height: 100px;
  margin: -7px 0 0 -45px;
  text-align: center;
  font-size: 20px;
}

#preloader #loading-wrapper img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
}

#preloader #loading-wrapper #loading-content {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 170px;
  height: 170px;
  margin: -85px 0 0 -85px;
  border: 3px solid #F00;
}

#preloader #loading-wrapper #loading-content::after {
  content: "";
  position: absolute;
  border: 3px solid #0F0;
  left: 15px;
  right: 15px;
  top: 15px;
  bottom: 15px;
}

#preloader #loading-wrapper #loading-content::before {
  content: "";
  position: absolute;
  border: 3px solid #00F;
  left: 5px;
  right: 5px;
  top: 5px;
  bottom: 5px;
}

#preloader #loading-wrapper #loading-content {
  border: 3px solid transparent;
  border-top-color: #3659A3;
  border-bottom-color: #3659A3;
  border-radius: 50%;
  -webkit-animation: loader 2s linear infinite;
  animation: loader 2s linear infinite;
}

#preloader #loading-wrapper #loading-content::before {
  border: 3px solid transparent;
  border-top-color: #0aafde;
  border-bottom-color: #0aafde;
  border-radius: 50%;
  -webkit-animation: loader 3s linear infinite;
  animation: loader 3s linear infinite;
}

#preloader #loading-wrapper #loading-content::after {
  border: 3px solid transparent;
  border-top-color: #E33F74;
  border-bottom-color: #E33F74;
  border-radius: 50%;
  -webkit-animation: loader 1.5s linear infinite;
  animation: loader 1.5s linear infinite;
  -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
}

#preloader.isdone {
  visibility: hidden;
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.5s;
}

#preloader.isdone #loading-wrapper {
  opacity: 0;
  -webkit-transform: scale(3);
  transform: scale(3);
  -webkit-filter: blur(2px);
  filter: blur(2px);
}

#preloader.isdone::after, #preloader.isdone::before {
  height: 0;
  -webkit-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

#preloader #content-wrapper {
  color: #FFF;
  position: fixed;
  left: 0;
  top: 20px;
  width: 100%;
  height: 100%;
}

#preloader #header {
  width: 800px;
  margin: 0 auto;
  text-align: center;
  height: 100px;
  background-color: #666;
}

#preloader #content {
  width: 800px;
  height: 1000px;
  margin: 0 auto;
  text-align: center;
  background-color: #888;
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/**********************************************
   Start Animations
**********************************************/
@-webkit-keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

@-webkit-keyframes floatingX {
  0% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
}

@keyframes floatingX {
  0% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
}

.slide_ltr {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.slide_ltr.animated {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.slide_ltr.no_scale {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.slide_rtl {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.slide_rtl.animated {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.slide_rtl.no_scale {
  -webkit-transform: scale(1);
          transform: scale(1);
}

@-webkit-keyframes puff-in {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -webkit-filter: blur(4px);
            filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes puff-in {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -webkit-filter: blur(4px);
            filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.puff-in {
  -webkit-animation: puff-in 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
          animation: puff-in 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.text-focus-in {
  -webkit-animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

/**********************************************
    Start Public Classes
**********************************************/
.section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
  -webkit-padding-end: 3vw;
          padding-inline-end: 3vw;
}

.swiper-container .swiper-pagination {
  bottom: 0;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 25px;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  background-image: unset;
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 50%;
  background-image: unset;
  background-color: #f5f5f5;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.swiper-container .swiper-button-next::before,
.swiper-container .swiper-button-prev::before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 15px;
  color: var(--secondary);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover {
  background-color: var(--primary);
  opacity: 1;
}

.swiper-container .swiper-button-next:hover::before,
.swiper-container .swiper-button-prev:hover::before {
  color: #fff;
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-container-rtl .swiper-button-prev {
  right: 2%;
  left: auto;
}

.swiper-container .swiper-button-next::before,
.swiper-container .swiper-container-rtl .swiper-button-prev::before {
  content: '\f0da';
}

.swiper-container .swiper-button-prev,
.swiper-container .swiper-container-rtl .swiper-button-next {
  left: 2%;
  right: auto;
}

.swiper-container .swiper-button-prev::before,
.swiper-container .swiper-container-rtl .swiper-button-next::before {
  content: '\f0d9';
}

.butn {
  position: relative;
  padding: .7rem 1.7rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 500;
}

.butn i {
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
}

.butn.sm_butn {
  padding: 0;
  width: 40px;
  height: 40px;
}

.butn.primary_butn {
  background-color: var(--primary);
  color: #fff;
}

.butn.primary_border_butn {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.butn.secondary_butn {
  background-color: #F4ECFB;
  color: #303AB2;
}

.butn.secondary_butn2 {
  background-color: var(--secondary);
  color: #ffff;
}

.butn.white_border_butn {
  background-color: #fff;
  border: 1px solid #D6D3D3;
}

.butn.gray_border_butn {
  background-color: #fff;
  border-color: #E0E2E7 !important;
  color: #667085 !important;
}

.butn:hover {
  background-color: #060a36;
  border: 1px solid #060a36;
  color: #fff !important;
}

.butn:hover .icon {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

.icon18 {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}

.icon15 {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}

.main_butn {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 0 100%);
  min-height: 60px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  padding: .7rem 1.5rem;
  -webkit-box-shadow: 0 10px 30px 0 #573BFF !important;
          box-shadow: 0 10px 30px 0 #573BFF !important;
}

.main_butn.primary_butn {
  background-color: var(--primary);
  color: #fff !important;
}

.main_butn.primary_butn:hover {
  background-color: var(--secondary) !important;
}

/**********************************************
   Start Edit sidebar & main & top_nav
**********************************************/
.sidebar {
  height: 100vh;
  display: block;
  width: 18vw;
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  padding: 40px 0;
  background-color: #F8F8FC;
  -webkit-box-shadow: 3px 6px 15px 0 #5551;
          box-shadow: 3px 6px 15px 0 #5551;
  z-index: 8;
  overflow-y: auto;
}

.sidebar::-webkit-scrollbar-thumb {
  background: transparent;
}

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

.sidebar .logo {
  width: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}

.sidebar .menu_box .main_title {
  color: #727A90;
  font-size: 12px;
  margin-bottom: 15px;
  font-weight: 500;
}

.sidebar .menu_box .sidemenu-links a {
  position: relative;
  padding: 12px 15px;
  display: block;
  width: 100%;
  font-size: 14px;
  text-transform: capitalize;
  color: #222;
  border-radius: 12px;
  margin: 5px 0;
  font-weight: 600;
}

.sidebar .menu_box .sidemenu-links a img.icon {
  height: 16px;
  width: 16px;
  -webkit-filter: invert(49%) sepia(11%) saturate(708%) hue-rotate(186deg) brightness(94%) contrast(81%);
          filter: invert(49%) sepia(11%) saturate(708%) hue-rotate(186deg) brightness(94%) contrast(81%);
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.sidebar .menu_box .sidemenu-links a .num {
  width: 18px;
  height: 18px;
  background-color: var(--primary);
  border-radius: 50%;
  color: #fff !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  position: absolute;
  inset-inline-end: 10px;
  top: 13px;
}

.sidebar .menu_box .sidemenu-links li.active a {
  color: var(--primary);
  background-color: #FCE8E8;
}

.sidebar .menu_box .sidemenu-links li.active a span {
  color: var(--primary);
}

.sidebar .menu_box .sidemenu-links li.active a img.icon {
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.sidebar .menu_box .sidemenu-links li.active a.linkItem-head::before {
  color: var(--primary);
}

.sidebar .menu_box .sidemenu-links li.active img.icon {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.sidebar .menu_box .sidemenu-links li .linkItem-body {
  padding: 5px;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
}

.sidebar .menu_box .sidemenu-links li .linkItem-body a {
  background-color: transparent;
  padding: 5px;
  font-size: 12px;
  position: relative;
  color: #8f95b2;
}

.sidebar .menu_box .sidemenu-links li .linkItem-body a.active {
  color: var(--primary);
}

.sidebar .menu_box .sidemenu-links li .linkItem-body a.icon {
  display: none;
}

.sidebar .menu_box .sidemenu-links a.linkItem-head {
  position: relative;
}

.sidebar .menu_box .sidemenu-links a.linkItem-head::before {
  position: absolute;
  content: "\f078";
  inset-inline-end: 10px;
  top: 15px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  color: var(--secondary);
  font-size: 12px;
}

.sidebar .menu_box .sidemenu-links .linkItem-body a {
  padding: 10px 30px;
}

.sidebar .menu_box .sidemenu-links .linkItem-body a:hover {
  color: var(--primary);
}

.sidebar .menu_box .sidemenu-links .linkItem-body a:hover::before {
  background-color: var(--primary);
  border: 2px solid var(--primary);
}

.sidebar .sidemenu_foot .link {
  color: #8C91A2;
  padding: 15px 15px;
  display: block;
}

.sidebar .sidemenu_foot .link i {
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
}

.sidebar .sidemenu_foot .link:last-child {
  color: var(--primary);
}

main {
  -webkit-margin-start: 18vw;
          margin-inline-start: 18vw;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
  width: calc(100% - 18vw);
  -webkit-padding-start: 3vw;
          padding-inline-start: 3vw;
}

.top_nav {
  background-color: #fff;
  padding: 1rem;
}

.top_nav .search_box .form-control {
  height: 50px !important;
  border: none !important;
  -webkit-padding-start: 45px;
          padding-inline-start: 45px;
}

.top_nav .search_box .search_butn {
  position: absolute;
  inset-inline-start: 7px;
  top: 13px;
  color: #30373D;
}

.top_nav .nav_link {
  position: relative;
  -webkit-margin-end: 3vw;
          margin-inline-end: 3vw;
}

.top_nav .nav_link .icon {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}

.top_nav .nav_link .circle {
  width: 12px;
  height: 12px;
  background-color: var(--primary);
  border-radius: 50%;
  border: 3px solid #fff;
  position: absolute;
  top: 1px;
  right: -5px;
  pointer-events: none;
}

.top_nav .avatar {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.top_nav2 {
  padding: 1rem;
}

.top_nav2 .search_box .form-control {
  height: 50px !important;
  -webkit-padding-start: 45px;
          padding-inline-start: 45px;
  border-radius: 12px;
}

.top_nav2 .search_box .search_butn {
  position: absolute;
  inset-inline-start: 15px;
  top: 13px;
  color: #30373D;
}

.top_nav2 .nav_end .nav_link {
  position: relative;
  -webkit-margin-end: 2vw;
          margin-inline-end: 2vw;
}

.top_nav2 .nav_end .nav_link .icon {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: invert(51%) sepia(10%) saturate(753%) hue-rotate(186deg) brightness(92%) contrast(86%);
          filter: invert(51%) sepia(10%) saturate(753%) hue-rotate(186deg) brightness(92%) contrast(86%);
}

.top_nav2 .nav_end .nav_link .circle {
  width: 12px;
  height: 12px;
  background-color: var(--primary);
  border-radius: 50%;
  border: 3px solid #fff;
  position: absolute;
  top: 1px;
  right: -5px;
  pointer-events: none;
}

.top_nav2 .nav_end .add_butn {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--primary);
  border-radius: 15px;
  color: #fff !important;
}

.top_nav2 .nav_end .drop_butn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-padding-start: 25px;
          padding-inline-start: 25px;
  -webkit-border-start: 1px solid #eee;
          border-inline-start: 1px solid #eee;
  -webkit-margin-start: 25px;
          margin-inline-start: 25px;
}

.top_nav2 .nav_end .drop_butn .avatar {
  width: 35px;
  height: 35px;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.top_nav2 .nav_end .drop_butn .txt {
  width: calc(100% - 15px);
  text-align: start;
}

.top_nav2 .nav_end .drop_butn .txt .name {
  font-size: 14px;
}

.top_nav2 .nav_end .drop_butn .txt .job {
  font-size: 12px;
  color: #727A90;
}

.top_nav2 .nav_end .drop_butn.dropdown-toggle::after {
  margin-left: 1rem;
}

.top_nav2 .nav_end .dropdown-menu {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.0666667);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.0666667);
  border-radius: 10px;
  font-size: 13px;
  border: 0;
}

.top_nav2 .nav_end .dropdown-menu a {
  padding: .6rem 1rem;
}

.top_nav2 .nav_end .dropdown-menu a i {
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.dashboard_pg .sec_head .title {
  color: #30373D;
  font-size: 42px;
}

.dashboard_pg .sec_head .p {
  color: #8C91A2;
  font-size: 14px;
}

.dashboard_pg .data_card {
  background-color: #fff;
  padding: 30px 25px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
  position: relative;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  margin-bottom: 25px;
}

.dashboard_pg .data_card .head_card .icon_box {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
  background-color: var(--secondary);
  -webkit-box-shadow: 0 10px 30px 0 #583bff37 !important;
          box-shadow: 0 10px 30px 0 #583bff37 !important;
}

.dashboard_pg .data_card .head_card .icon_box .icon {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

.dashboard_pg .data_card .head_card .title {
  width: calc(100% - 70px);
}

.dashboard_pg .data_card .number {
  font-size: 22px;
  margin: 20px 0;
}

.dashboard_pg .data_card .ratio_txt {
  font-size: 14px;
}

.dashboard_pg .data_card:hover {
  background-color: var(--secondary);
}

.dashboard_pg .data_card:hover .head_card .icon_box {
  background-color: #fff;
}

.dashboard_pg .data_card:hover .head_card .icon_box .icon {
  -webkit-filter: var(--filterSecondary);
          filter: var(--filterSecondary);
}

.dashboard_pg .data_card:hover * {
  color: #fff;
}

.dashboard_pg .revenue_box {
  background-color: #fff;
  border-radius: 15px;
  padding: 35px 25px;
  -webkit-box-shadow: 0 4px 30px 0 #2e2d7412;
          box-shadow: 0 4px 30px 0 #2e2d7412;
  margin-bottom: 35px;
}

.dashboard_pg .revenue_box .nav {
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #E0E2E7;
}

.dashboard_pg .revenue_box .nav .nav-link {
  color: #667085;
  font-size: 14px;
  border-radius: 5px;
  padding: .4rem 1.5rem;
  font-weight: 500;
}

.dashboard_pg .revenue_box .nav .nav-link.active {
  background-color: #F4ECFB;
  color: var(--secondary);
}

.dashboard_pg .revenue_box .data_box {
  margin: 10px 0;
}

.dashboard_pg .revenue_box .data_box .icon {
  width: 35px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.dashboard_pg .revenue_box .data_box .txt_cont {
  width: calc(100% - 50px);
}

.dashboard_pg .revenue_box .data_box .txt_cont .label {
  color: #667085;
  font-size: 14px;
}

.dashboard_pg .revenue_box .data_box .txt_cont .number {
  font-size: 18px;
}

.dashboard_pg .revenue_box .data_box .txt_cont .number small {
  font-size: 12px;
}

.dashboard_pg .growth_box {
  background-color: #fff;
  border-radius: 15px;
  margin-bottom: 35px;
}

.dashboard_pg .growth_box .map_box iframe {
  border-radius: 15px;
}

.dashboard_pg .growth_box .prog_box {
  height: 275px;
  overflow-y: auto;
}

.dashboard_pg .growth_box .prog_box .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.dashboard_pg .growth_box .prog_box .item .txt_cont h6 {
  font-size: 14px;
}

.dashboard_pg .growth_box .prog_box .item .txt_cont .p {
  color: #667085;
  font-size: 13px;
}

.dashboard_pg .growth_box .prog_box .item .prog_inner .progress {
  width: 75px;
  border-radius: 15px;
  height: 8px;
}

.dashboard_pg .growth_box .prog_box .item .prog_inner .percentage {
  font-size: 12px;
  color: #858D9D;
}

.dashboard_pg .prod_box {
  background-color: #fff;
  border-radius: 15px;
  margin-bottom: 35px;
  padding: 45px 25px;
}

.dashboard_pg .prod_box .item {
  margin-bottom: 25px;
}

.dashboard_pg .prod_box .item .prod_img {
  width: 50px;
  height: 50px;
  border: 1px solid #eee;
  border-radius: 5px;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}

.dashboard_pg .prod_box .item .txt_cont .name {
  font-size: 14px;
  margin-bottom: 0px;
}

.dashboard_pg .prod_box .item .txt_cont .categ {
  color: #667085;
  font-size: 12px;
}

.dashboard_pg .prod_box .item .price {
  color: #1D1F2C;
  font-size: 14px;
}

.dashboard_pg .categ_box {
  background-color: #fff;
  border-radius: 15px;
  margin-bottom: 35px;
  padding: 45px 25px;
}

.dashboard_pg .categ_box .item {
  margin-bottom: 16px;
}

.dashboard_pg .categ_box .item .label {
  color: #1D1F2C;
  font-size: 14px;
}

.dashboard_pg .categ_box .item .label .icon {
  width: 40px;
  height: 40px;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.dashboard_pg .categ_box .item .data {
  font-size: 14px;
  color: #1D1F2C;
  font-weight: 500;
}

.dashboard_pg .target_box {
  background-color: #fff;
  border-radius: 15px;
  margin-bottom: 35px;
  padding: 45px 25px;
  border: 1px solid #dcdee38e;
}

.dashboard_pg .target_box .progress {
  border-radius: 15px;
  height: 180px;
  font-weight: bold;
  font-size: 20px;
}

.dashboard_pg .target_box .progress .progress-bar {
  background-color: var(--secondary);
}

.dashboard_pg .orders_box {
  background-color: #fff;
  border-radius: 15px;
  margin-bottom: 35px;
  padding: 45px 0;
  -webkit-box-shadow: 0 4px 30px 0 #2e2d7412;
          box-shadow: 0 4px 30px 0 #2e2d7412;
}

.dashboard_pg .orders_box .head_box .form-group .datepicker {
  height: 40px !important;
  border-radius: 8px;
  border-color: #E0E2E7;
  -webkit-padding-start: 28px;
          padding-inline-start: 28px;
  font-size: 12px;
}

.dashboard_pg .orders_box .head_box .form-group i {
  color: #858D9D;
  position: absolute;
  top: 14px;
  inset-inline-start: 10px;
  font-size: 13px;
}

.dashboard_pg .orders_box .head_box .butn {
  height: 40px;
  width: 100%;
}

.dashboard_pg .orders_box .table thead, .dashboard_pg .orders_box .table tbody, .dashboard_pg .orders_box .table tfoot, .dashboard_pg .orders_box .table tr, .dashboard_pg .orders_box .table td, .dashboard_pg .orders_box .table th {
  border-color: #eee !important;
}

.dashboard_pg .orders_box .table thead th {
  padding: 1.2rem 1rem;
  background-color: #F9F9FC;
  border-color: #F0F1F3;
  border-top: 1px solid #F0F1F3;
  font-size: 14px;
}

.dashboard_pg .orders_box .table tbody td {
  padding: 1.2rem 1rem;
  vertical-align: middle;
  font-size: 13px;
}

.dashboard_pg .orders_box .table tbody td .prod_data .prod_img {
  width: 50px;
  height: 50px;
  border: 1px solid #eee;
  border-radius: 5px;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}

.dashboard_pg .orders_box .table tbody td .prod_data .txt_cont .name {
  font-size: 13px;
  margin-bottom: 0px;
}

.dashboard_pg .orders_box .table tbody td .prod_data .txt_cont .categ {
  color: #667085;
  font-size: 12px;
}

.dashboard_pg .orders_box .table tbody td .badge {
  font-size: 14px;
  padding: .5rem 1rem;
}

.dashboard_pg .orders_box .table tbody td .actions_butns a {
  color: #A3A9B6;
  margin: 0 7px;
}

.pagination-wrapper .pagination .page-link {
  border-radius: 5px !important;
  background-color: transparent;
  color: var(--secondary);
  margin: 0 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  width: 30px;
  height: 30px;
  font-size: 12px;
}

.pagination-wrapper .pagination .page-link:hover, .pagination-wrapper .pagination .page-link.active {
  background-color: var(--secondary);
  color: #fff !important;
}

.badge.green_badge {
  background-color: #E9FAF7;
  color: #1A9882;
}

.badge.red_badge {
  background-color: #FEECEE;
  color: #EB3D4D;
}

.badge.gray_badge {
  background-color: #F0F1F3;
  color: #4A4C56;
}

.badge.blue_badge {
  background-color: #EAF8FF;
  color: #2BB2FE;
}

.badge.secondary_badge {
  background-color: #F1E7F8;
  color: var(--secondary);
}

.act_dropdown .dropdown-menu {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.0666667);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.0666667);
  border-radius: 10px;
  font-size: 13px;
  border: 0;
}

.act_dropdown .dropdown-menu a {
  padding: .6rem 1rem;
}

.act_dropdown .dropdown-menu a i {
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
  color: #727A90;
}

.order_item {
  border: 1px solid #E9EAEA;
  border-radius: 20px;
  position: relative;
  padding: 25px 20px;
  -webkit-padding-end: 0;
          padding-inline-end: 0;
  margin-bottom: 20px;
}

.order_item .title {
  font-size: 16px;
  color: #727A90;
}

.order_item .title .icon {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.order_item .number {
  font-size: 24px;
}

.order_item .ratio_txt {
  font-size: 12px;
}

.order_item .shape {
  height: 65px;
  -o-object-fit: contain;
     object-fit: contain;
}

.orders_box_pg {
  padding: 25px 0;
  border-radius: 20px;
  border: 1px solid #E9EAEA;
}

.orders_box_pg .head_box {
  padding: 0 25px;
}

.orders_box_pg .head_box .search_box .form-control {
  height: 40px !important;
  -webkit-padding-start: 35px;
          padding-inline-start: 35px;
  border-radius: 12px;
}

.orders_box_pg .head_box .search_box .search_butn {
  position: absolute;
  inset-inline-start: 0px;
  top: 0px;
  color: #30373D;
}

.orders_box_pg .head_box .form-group .datepicker {
  width: 130px;
  height: 40px !important;
  border-radius: 8px;
  border-color: #E0E2E7;
  -webkit-padding-start: 28px;
          padding-inline-start: 28px;
  font-size: 12px;
}

.orders_box_pg .head_box .form-group i {
  color: #858D9D;
  position: absolute;
  top: 14px;
  inset-inline-start: 10px;
  font-size: 13px;
}

.orders_box_pg .head_box .butn {
  height: 40px;
  width: 100%;
}

.orders_box_pg .head_box .butn.filter_butn {
  width: 100px;
}

.orders_box_pg .head_box .excel_butn {
  background-color: #D7EFCD;
  border-radius: 12px;
  width: 160px;
  height: 40px;
  color: #38AE04;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  font-weight: 400;
}

.orders_box_pg .head_box .excel_butn .icon {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-end: 1px;
          margin-inline-end: 1px;
}

.orders_box_pg .head_box .show_group .sm_label {
  color: #727A90;
  font-size: 14px;
}

.orders_box_pg .head_box .show_group .form-control {
  width: 80px;
  height: 40px !important;
  -webkit-margin-start: 10px;
          margin-inline-start: 10px;
  border-radius: 12px;
}

.orders_box_pg .table thead, .orders_box_pg .table tbody, .orders_box_pg .table tfoot, .orders_box_pg .table tr, .orders_box_pg .table td, .orders_box_pg .table th {
  border-color: #eee !important;
}

.orders_box_pg .table thead th {
  padding: 1.2rem 1rem;
  border-color: #F0F1F3;
  border-top: 1px solid #F0F1F3;
  font-size: 14px;
}

.orders_box_pg .table tbody td {
  padding: 1.2rem 1rem;
  vertical-align: middle;
  font-size: 13px;
}

.orders_box_pg .table tbody td .prod_data .prod_img {
  width: 50px;
  height: 50px;
  border: 1px solid #eee;
  border-radius: 5px;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}

.orders_box_pg .table tbody td .prod_data .txt_cont .name {
  font-size: 13px;
  margin-bottom: 0px;
}

.orders_box_pg .table tbody td .prod_data .txt_cont .categ {
  color: #667085;
  font-size: 12px;
}

.orders_box_pg .table tbody td .badge {
  font-size: 13px;
  border-radius: 25px;
  padding: .5rem .7rem;
}

.orders_box_pg .table tbody td .actions_butns a {
  color: #A3A9B6;
  margin: 0 7px;
}

.add_prod_butn {
  height: 40px;
  padding: .5rem;
  width: 140px;
}

.det_box {
  position: relative;
  padding: 25px;
  border: 1px solid #E9EAEA;
  border-radius: 20px;
}

.det_box .item {
  margin: 10px 0;
}

.det_box .item .label {
  color: #727A90;
  font-size: 12px;
  margin-bottom: 0.5em;
}

.det_box .item .data {
  font-size: 14px;
}

.order_items_box {
  position: relative;
  padding: 35px 25px;
  border: 1px solid #E9EAEA;
  border-radius: 20px;
}

.order_items_box .table .prod_data .prod_img {
  width: 65px;
  height: 65px;
  border: 1px solid #eee;
  border-radius: 5px;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}

.order_items_box .table .prod_data .txt_cont .name {
  font-size: 14px;
  margin-bottom: 0px;
}

.order_items_box .table .prod_data .txt_cont .categ {
  color: #667085;
  font-size: 12px;
}

.order_items_box .table .actions_butns a {
  color: #A3A9B6;
  margin: 0 7px;
}

.order_items_box .table td {
  vertical-align: middle;
  padding: 1.5rem .7rem;
  font-size: 14px;
  font-weight: 500;
}

.order_items_box .table td small {
  margin-bottom: 0.5rem;
  font-size: 12px;
}

.order_items_box .table tr:last-child td {
  border-bottom: none;
}

.table .form-check-input {
  width: 20px;
  height: 20px !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
  position: relative;
  top: -4px;
}

.table .form-check-input:checked {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.summary_box {
  position: relative;
  padding: 35px 25px;
  border: 1px solid #E9EAEA;
  border-radius: 20px;
}

.summary_box .item {
  margin-bottom: 15px;
  font-size: 14px;
}

.summary_box .item h6 {
  font-size: 14px;
}

.summary_box .item:last-child {
  margin-top: 20px;
  padding-top: 20px;
  font-size: 16px;
  border-top: 1px solid #eee;
  margin-bottom: 0;
}

.summary_box .item:last-child h6 {
  color: #24282E;
  font-size: 16px;
}

.address_box {
  position: relative;
  padding: 35px 25px;
  border: 1px solid #E9EAEA;
  border-radius: 20px;
}

.address_box .item {
  position: relative;
  -webkit-padding-start: 30px;
          padding-inline-start: 30px;
  margin-bottom: 25px;
}

.address_box .item .icon {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  inset-inline-start: 0;
  top: 0;
}

.address_box .item .title {
  color: #727A90;
  margin-bottom: 0.5em;
  font-size: 14px;
  font-weight: 500;
}

.address_box .item .p {
  color: #24282E;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}

.address_box .item:last-child {
  margin-bottom: 0;
}

.information_box {
  position: relative;
  padding: 35px 25px;
  border: 1px solid #E9EAEA;
  border-radius: 20px;
  margin-bottom: 35px;
}

.information_box .item {
  position: relative;
  -webkit-padding-start: 30px;
          padding-inline-start: 30px;
  margin-bottom: 20px;
}

.information_box .item:last-child {
  margin-bottom: 0;
}

.information_box .item .icon {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  inset-inline-start: 0;
  top: 0;
}

.information_box .item .txt_cont .label {
  font-size: 14px;
  color: #727A90;
  margin-bottom: 0.7em;
}

.information_box .item .copy_butn {
  position: absolute;
  inset-inline-end: 10px;
  top: 10px;
}

.butns_box {
  position: relative;
  padding: 35px 25px;
  border: 1px solid #E9EAEA;
  border-radius: 20px;
  margin-bottom: 35px;
}

.butns_box .butn {
  width: 100%;
  height: 45px;
  border-radius: 12px;
  font-weight: bold;
  margin-bottom: 20px;
}

.butns_box .butn .icon {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
  -webkit-filter: invert(51%) sepia(10%) saturate(753%) hue-rotate(186deg) brightness(92%) contrast(86%);
          filter: invert(51%) sepia(10%) saturate(753%) hue-rotate(186deg) brightness(92%) contrast(86%);
}

.butns_box .butn.secondary_butn2 .icon {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

.butns_box .butn:last-child {
  margin-bottom: 0;
}

.add_prod_form .box {
  position: relative;
  padding: 35px 25px;
  border: 1px solid #E9EAEA;
  border-radius: 20px;
  margin-bottom: 35px;
}

.add_prod_form .box .form-group {
  margin-bottom: 1.3rem;
}

.add_prod_form .box .form-group:last-child {
  margin-bottom: 0;
}

.add_prod_form .box .form-group .label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0.6em;
  color: #727A90;
}

.add_prod_form .box .fileUpload_box {
  position: relative;
}

.add_prod_form .box .fileUpload_box #fileUpload .file-upload div {
  height: 180px;
  background-color: #fff;
  padding: 0;
  margin: 0;
  border: 1px solid #E9EAEA;
}

.add_prod_form .box .fileUpload_box #fileUpload .file-upload div .material-icons-outlined,
.add_prod_form .box .fileUpload_box #fileUpload .file-upload div p,
.add_prod_form .box .fileUpload_box #fileUpload .file-upload div span,
.add_prod_form .box .fileUpload_box #fileUpload .file-upload div div {
  display: none !important;
}

.add_prod_form .box .fileUpload_box #fileUpload .file-upload:hover {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.add_prod_form .box .fileUpload_box .uploader_inner {
  text-align: center;
  position: absolute;
  width: 100%;
  top: 25px;
  inset-inline-start: 0;
  pointer-events: none;
}

.add_prod_form .box .fileUpload_box .uploader_inner * {
  pointer-events: none;
}

.add_prod_form .box .fileUpload_box .uploader_inner .icon {
  width: 35px;
  height: 35px;
  display: block;
  margin: 0 auto;
}

.add_prod_form .box .fileUpload_box .uploader_inner .p {
  color: #727A90;
  font-size: 14px;
}

.add_prod_form .box .fileUpload_box .uploader_inner .butn {
  width: 100px;
  height: 40px;
  border-radius: 12px;
  padding: 0;
}

.add_prod_form .box .status_badge {
  width: 55px;
  height: 28px;
  border-radius: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #D3D6DD;
}

.att_box {
  position: relative;
  padding: 35px 25px;
  border: 1px solid #E9EAEA;
  border-radius: 20px;
  margin-bottom: 35px;
}

.att_box .prod_img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  padding: 5px;
  border: 1px solid #eee;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 5px;
}

/**********************************************
    Start Edit Media screens 
**********************************************/
@media screen and (max-width: 991px) {
  .order_md_1 {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .sidebar {
    width: 320px;
    min-height: -webkit-fit-content;
    min-height: -moz-fit-content;
    min-height: fit-content;
    height: 100% !important;
    position: absolute;
    inset-inline-start: -100%;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    overflow-y: unset;
  }
  .sidebar.active {
    inset-inline-start: 0;
  }
  main {
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    width: 100%;
  }
  .top_nav .avatar {
    width: 30px;
    height: 30px;
  }
  .sidebar_toggler.butn.sm_butn {
    width: 30px;
    height: 30px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-margin-start: 7px;
            margin-inline-start: 7px;
    background-color: #f5f5f5;
    color: var(--primary);
  }
  .top_nav2 .search_box {
    margin-bottom: 10px;
  }
  .top_nav2 .nav_end .drop_butn {
    -webkit-padding-start: 10px;
            padding-inline-start: 10px;
    -webkit-margin-start: 10px;
            margin-inline-start: 10px;
  }
  .top_nav2 .nav_end .drop_butn .txt .name {
    font-size: 10px;
  }
  .dashboard_pg .revenue_box .d-flex.justify-content-between.align-items-center.mb-5 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .dashboard_pg .revenue_box .nav {
    margin-top: 10px;
  }
  .dashboard_pg .revenue_box .nav .nav-link {
    padding: .4rem .8rem;
  }
  .table_foot .p {
    font-size: 10px;
  }
  .dashboard_pg .orders_box .head_box form {
    margin-top: 10px !important;
  }
  .dashboard_pg .orders_box .head_box form .butn {
    font-size: 12px;
    padding: .7rem .7rem;
  }
  .butns_head {
    position: fixed;
    z-index: 99;
    bottom: 5px;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .table td,
  .table th {
    text-wrap: nowrap;
  }
  .orders_box_pg .head_box .search_box {
    margin-bottom: 10px;
  }
  .orders_box_pg .head_box .filter_opt {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .orders_box_pg .head_box .filter_opt .excel_butn {
    width: auto;
    padding: 0 5px;
    font-size: 11px;
    margin: 10px 0;
  }
  .det_box .item {
    min-width: 125px;
  }
}

/**********************************************
    Start Edit EN direction 
**********************************************/
html[dir="ltr"] {
}

html[dir="ltr"] body {
  direction: ltr;
  font-family: 'Poppins', sans-serif;
}
/*# sourceMappingURL=style.css.map */