/* @import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap");

/*----------------------------------------------*
 General CSS
/*----------------------------------------------*/

*,
::after,
::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  /* border: 0; */
  outline: 0;
}

html,
body,
form,
fieldset,
p,
div,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-text-size-adjust: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
  clear: both;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--white);
  overflow-x: hidden;
}
textarea {
  resize: none;
}
a {
  background: transparent;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

a:active {
  outline: 0;
}

a:active,
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}

*:focus {
  outline: none;
  box-shadow: none;
}
.btn:focus {
  outline: none;
  box-shadow: none;
}
.btn-close:focus {
  box-shadow: none;
}
.form-control:focus {
  box-shadow: none;
  border-color: #dee2e6;
}
b,
strong {
  font-weight: bold;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
video {
  width: 100%;
  height: 100%;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
svg:not(:root) {
  overflow: hidden;
}
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

mark {
  background: #ff0;
  color: #111111;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
ul,
ol {
  list-style: none outside none;
}

img {
  vertical-align: middle;
  border: 0;
  max-width: 100%;
}

ul,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

/* ============  Variable declare start ============== */

:root {
  --primary-color: #4880ff;
  --blue2: #0d39a9;
  --blue3: #0639a3;
  --secondary-color: #5c5c5c;
  --blue-soft-color: #ffedef;
  /* --blue-soft-color: #f7f7f7; */
  --active-color: #4880ff;
  --hover-color: #0845df;
  --white: #ffffff;
  --white1: #fff8f8;
  --white2: #f4f8fe;
  --black: #000000;
  --black2: #232529;
  --black3: #202224;
  --grey1: #4a4a4a;
  --grey2: #737b7b;
  --grey3: #464f60;
  --grey4: #687182;
  --blue-dark: #030229;
  --primary-red: #d11a2a;
  --red-2: #e71d36;
  --light-red: #f1523c;
  --light-red2: #ef5466;
  --primary-green: #2b9943;
  --green2: #14804a;
  --green3: #38a06c;
  --orange: #d67606;
  --light-red: rgba(231, 29, 54, 0.05);
  --light-blue: rgba(13, 57, 169, 0.1);
  --light-orange: #ff8f6b;
  --light-orange2: #ff8157;
  /* --primary-font: "Nunito Sans", sans-serif; */
  --primary-font: "Lexend Deca", sans-serif;
  --secondary-font: "Inter", sans-serif;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 700;
  --fw-900: 700;
  --fs-1: 0.813rem;
  --fs-2: 1.762rem;
  --fs-2-medium: 1.562rem;
  --fs-3: 1rem;
  --border-radius-8: 8px;
  --border-radius-12: 12px;
  --border-radius-16: 16px;
  --body-bg: #eff0f4;
  --transition: 0.2s ease;
}

/* ============  Variable declare end ============== */
.text-light-red {
  color: var(--light-red);
}
.text-green2 {
  color: var(--green2);
}
.text-green3 {
  color: var(--green3);
}
.text-orange {
  color: ar(--orange);
}
.text-blue2 {
  color: var(--blue2);
}
.text-black2 {
  color: var(--black2);
}
.h-100 {
  height: 100vh;
}
/* Main style start */
.body-bg-color {
  background: var(--body-bg);
}

.body-top-title {
  color: var(--black);
  font-family: var(--primary-font);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 100%;
}
.primary-bg-blue {
  background-color: var(--primary-color);
}
.primary-bg-green {
  background-color: var(--primary-green);
}
.bg-green3 {
  background-color: var(--green3);
}
.bg-grey4 {
  background-color: var(--grey4);
}
.hover-bg-green:hover {
  background-color: #35be53;
}
.blue-dark-text {
  color: var(--blue-dark);
}
.red-text {
  color: var(--primary-red);
}
.tale-td-red-text {
  color: var(--primary-red);
}
.light-orange-bg {
  background: var(--light-orange);
}
.light-red-bg {
  background: var(--light-red);
}
.light-red2-bg {
  background: var(--light-red2);
}
.light-blue-bg {
  background: var(--light-blue);
}
.text-red-2 {
  color: var(--red-2);
}
/* Custom breadcrumb start */
.breadcrumb--common .breadcrumb-item {
  font-family: var(--primary-font);
  /* font-size: var(--fs-1); */
  font-size: 11.606px;
  line-height: 19.895px;
  text-transform: capitalize;
}
.breadcrumb--common .breadcrumb-item > a {
  color: var(--secondary-color);
  font-weight: var(--fw-500);
  line-height: 100%;
}

.breadcrumb--common .breadcrumb-item .active {
  font-weight: var(--fw-600);
}
.page-topbar-title {
  font-family: var(--primary-font);
  color: var(--black3);
  font-size: var(--fs-3);
  font-weight: var(--fw-400);
  line-height: 100%;
  letter-spacing: -0.564px;
  line-height: 34.817px;
  text-transform: capitalize;
}

/* Custom breadcrumb end */
.page-top-bar-left-content {
  display: flex;
}
/* Topbar search start */
.page-top-bar-right-content {
  width: 100%;
  height: 51px;
  border-radius: 24.869px;
  background: var(--white);
  box-shadow: 11.60565px 14.09257px 33.159px 3.3159px rgba(112, 144, 176, 0.08);
  -webkit-border-radius: 24.869px;
  -moz-border-radius: 24.869px;
  -ms-border-radius: 24.869px;
  -o-border-radius: 24.869px;
  display: flex;
  align-items: center;
  padding: 8px;
  justify-content: flex-end;
}

.search-container {
  position: relative;
  display: inline-block;
}

.search-container .form-control {
  width: 100%;
  height: 38px;
  padding: 5px 10px 5px 34px;
  border: 1px solid #c7e4ff;
  background: #f4f7fe;
  border-radius: 30px;
  font-size: 14px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  display: flex;
  align-items: center;
}

.search-container button[type="submit"] {
  position: absolute;
  top: -2px;
  left: 0;
  padding: 8px 15px;
  background-color: transparent;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: auto;
}

.form-control:focus,
.btn:focus {
  outline: none;
  box-shadow: none;
}
.header-item {
  /* height: 70px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.accordion-drop-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.accordion-drop-item-btn {
  padding: 3px;
}
.common-dropdown .dropdown-item {
  color: #344054;
  font-family: var(--secondary-font);
  font-size: 14px;

  font-weight: 500;
  line-height: 20px; /* 142.857% */
}
.common-dropdown .dropdown-item:focus {
  background-color: transparent;
}
.error-log-accordion-drop.dropdown-menu {
  border: 1px solid #d6d5d5 !important;
}
.error-log-accordion-drop .dropdown-item:not(:last-child) {
  border-bottom: 1px solid #d6d5d5;
}
.error-log-accordion-drop {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
.error-log-accordion-drop .dropdown-item {
  padding: 12px;
}
.common-dropdown .dropdown-item:hover {
  color: var(--primary-color);
}
/* Topbar search end */
.custom-animated-dropdown .dropdown-menu {
  -webkit-box-shadow: 0 5px 10px rgba(30, 32, 37, 0.12);
  box-shadow: 0 5px 10px rgba(30, 32, 37, 0.12);
  -webkit-animation-name: DropDownSlide;
  animation-name: DropDownSlide;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  z-index: 1000;
  border: none;
}

@keyframes DropDownSlide {
  100% {
    margin-top: -1px;
  }

  0% {
    margin-top: 8px;
  }
}
/* Topbar style start  */
.page-topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1002;
  background: var(--white);
  /* box-shadow: 11.60565px 14.09257px 33.159px 3.3159px rgba(112, 144, 176, 0.08); */
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.1s ease-out;
  border: 1px solid none;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  -webkit-transition: all 0.1s ease-out;
}
.navbar-header {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 0.75rem;
}
.hamburger-icon {
  width: 20px;
  height: 14px;
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.header-item {
  /* height: 70px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.topbar-user .btn {
  padding-left: 0;
  padding-right: 0;
}
.collapsed-navbar-menu.mobile-sidebar {
  width: 242px;
}

/* Hamburger style start */
.hamburger-icon {
  width: 20px;
  height: 14px;
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.hamburger-icon span {
  background-color: #878a99;
  position: absolute;
  border-radius: 2px;
  transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  width: 100%;
  height: 2px;
  display: block;
  left: 0;
  -moz-transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  -ms-transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  -o-transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  -webkit-transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}
.hamburger-icon span:nth-child(1) {
  top: 0;
  width: 80%;
}
.hamburger-icon span:nth-child(2) {
  top: 6px;
}
.hamburger-icon span:nth-child(3) {
  bottom: 0;
  width: 60%;
}

.vertical-menu-btn:hover .hamburger-icon:not(.open) span:nth-child(1) {
  top: -1px;
}
.vertical-menu-btn:hover .hamburger-icon:not(.open) span:nth-child(3) {
  bottom: -1px;
}
.vertical-menu-btn.btn:first-child:active {
  border-color: var(--white) !important;
}
.vertical-menu-btn.btn:focus {
  border-color: var(--white) !important;
}
.hamburger-icon.open {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}

.hamburger-icon.open span:nth-child(1) {
  left: 1px;
  top: 5px;
  width: 20px;
  transform: rotate(90deg);
  transition-delay: 150ms;
  -webkit-transition-delay: 150ms;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}

.hamburger-icon.open span:nth-child(2) {
  left: 3px;
  top: 13px;
  width: 10px;
  transform: rotate(45deg);
  -webkit-transition-delay: 50ms;
  transition-delay: 50ms;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.hamburger-icon.open span:nth-child(3) {
  left: 9px;
  top: 13px;
  width: 10px;
  transform: rotate(-45deg);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}
/* Hamburger style end */

.collapsed-navbar-menu {
  position: absolute;
  width: 70px !important;
}

/* Topbar style end */

/* Sidebar menu start */

/* width */

.scrollbar {
  height: calc(100vh - 100px);
  overflow-y: auto;
  width: 100%;
}
.scrollbar::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
.scrollbar::-webkit-scrollbar-track {
  background: var(--blue-soft-color);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

/* Handle */
.scrollbar::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

/* Handle on hover */
.scrollbar::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

.hover-dropdown-collapse-prevent .scrollbar-dropdown {
  min-height: 50px;
  max-height: 250px;
  overflow-y: auto;
}
.hover-dropdown-collapse-prevent .scrollbar-dropdown::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.hover-dropdown-collapse-prevent .scrollbar-dropdown::-webkit-scrollbar-track {
  background: var(--blue-soft-color);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}
.hover-dropdown-collapse-prevent .scrollbar-dropdown::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}
.hover-dropdown-collapse-prevent
  .scrollbar-dropdown::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

.scrollbar--sidebar {
  height: calc(100vh - 190px);
  overflow-x: hidden;
}
@media (min-width: 1700px) {
  .scrollbar--sidebar {
    height: calc(100vh - 240px);
    overflow-x: hidden;
  }
}
.scrollbar--common-table {
  height: auto;
}
.sidebar {
  width: 242px;
  z-index: 1002;
  background: var(--white);
  /* box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.25); */
  border-right: 1px solid #e0e0e0;
  bottom: 0;
  margin-top: 0;
  position: fixed;
  top: 0;
  padding: 0 0 calc(70px + 25px) 0;
  transition: all 0.1s ease-out;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
}
.sidebar-brand {
  padding: 0 1.3rem;
  text-align: center;
  transition: all 0.1s ease-out;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
}
.logo-light {
  display: inline-block;
}
.logo {
  line-height: 70px;
}
.logo-text {
  color: var(--primary-color);
  font-family: var(--primary-font);
  font-size: 1.01rem;

  font-weight: var(--fw-700);
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
}
.sidebar-nav .nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.225rem 0.125rem;
  margin: 0.425rem 0.875rem;
  color: var(--black3);
  font-size: 14px;
  font-family: var(--primary-font);
  font-weight: var(--fw-400);
  line-height: 26.719px;
  letter-spacing: -0.24px;
}
.sidebar-nav .nav-link svg {
  display: inline-block;
  min-width: 2.3rem;
}

.toggle-xs-sidebar .sidebar-brand {
  padding-bottom: 10px;
  text-align: left;
}

.toggle-xs-sidebar.collapsed-navbar-menu {
  padding-bottom: 0px;
}

.sidebar-menu-text {
  margin-left: 8px;
}
.sidebar-nav .nav-link {
  margin-right: 5px;
}

.sidebar-nav .nav-link {
  border-radius: 0px 30px 30px 0px;
  -webkit-border-radius: 0px 30px 30px 0px;
  -moz-border-radius: 0px 30px 30px 0px;
  -ms-border-radius: 0px 30px 30px 0px;
  -o-border-radius: 0px 30px 30px 0px;
}
.sidebar-nav .nav-link.active {
  color: var(--primary-color);
}
.sidebar-nav .nav-link:hover {
  color: var(--primary-color);
}

.sidebar-nav .nav-link svg.dashboard-icon,
.sidebar-nav .nav-link svg.master-icon {
  fill: var(--black3);
}
.sidebar-nav .nav-link:hover svg.dashboard-icon,
.sidebar-nav .nav-link:hover svg.master-icon {
  fill: var(--primary-color);
}
.sidebar-nav .nav-link.active svg.dashboard-icon,
.sidebar-nav .nav-link.active svg.master-icon {
  fill: var(--primary-color);
}
.sidebar-nav .nav-link svg.settings-icon path,
.sidebar-nav .nav-link svg.check-in-icon path,
.sidebar-nav .nav-link svg.scheme-icon path,
.sidebar-nav .nav-link svg.loadsheets-icon path,
.sidebar-nav .nav-link svg.stock-icon path,
.sidebar-nav .nav-link svg.stock-icon path,
.sidebar-nav .nav-link svg.orders-icon path,
.sidebar-nav .nav-link svg.grn-icon path {
  fill: var(--black3);
}
.sidebar-nav .nav-link:hover svg.settings-icon path,
.sidebar-nav .nav-link:hover svg.check-in-icon path,
.sidebar-nav .nav-link:hover svg.scheme-icon path,
.sidebar-nav .nav-link:hover svg.loadsheets-icon path,
.sidebar-nav .nav-link:hover svg.stock-icon path,
.sidebar-nav .nav-link:hover svg.orders-icon path,
.sidebar-nav .nav-link:hover svg.grn-icon path {
  fill: var(--primary-color);
}
.sidebar-nav .nav-link.active svg.settings-icon path,
.sidebar-nav .nav-link.active svg.check-in-icon path,
.sidebar-nav .nav-link.active svg.scheme-icon path,
.sidebar-nav .nav-link.active svg.loadsheets-icon path,
.sidebar-nav .nav-link.active svg.stock-icon path,
.sidebar-nav .nav-link.active svg.stock-icon path,
.sidebar-nav .nav-link.active svg.orders-icon path,
.sidebar-nav .nav-link.active svg.grn-icon path {
  fill: var(--primary-color);
}
.sidebar-nav .nav-link svg.settings-icon:hover path {
  fill: var(--primary-color);
}
.sidebar-nav .nav-link svg.invoice-icon path,
.sidebar-nav .nav-link svg.settlement-icon path,
.sidebar-nav .nav-link svg.reports-icon path,
.sidebar-nav .nav-link svg.cash-received-icon path,
.sidebar-nav .nav-link svg.sales-orders-icon path {
  stroke: var(--black3);
}
.sidebar-nav .nav-link:hover svg.invoice-icon path,
.sidebar-nav .nav-link:hover svg.settlement-icon path,
.sidebar-nav .nav-link:hover svg.reports-icon path,
.sidebar-nav .nav-link:hover svg.cash-received-icon path,
.sidebar-nav .nav-link.active svg.sales-orders-icon path {
  stroke: var(--primary-color);
}
.sidebar-nav .nav-link.active svg.invoice-icon path,
.sidebar-nav .nav-link.active svg.settlement-icon path,
.sidebar-nav .nav-link.active svg.reports-icon path,
.sidebar-nav .nav-link.active svg.cash-received-icon path,
.sidebar-nav .nav-link:hover svg.sales-orders-icon path {
  stroke: var(--primary-color);
}

.vertical-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(33, 37, 41, 0.35);
  z-index: 1001;
  display: none;
}

@media (max-width: 991px) {
  .navbar-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .page-top-bar-right-content {
    width: auto;
  }
}
/* Sidebar menu end */

/* Sidebar dropdown menu start */

.dropdown-content {
  padding-left: 2.8rem;
}
.dropdown-content2 {
  padding-left: 0.875rem;
}
.dropdown-content .nav-link {
  font-size: 0.75rem;
  padding-right: 0;
  font-family: var(--primary-font);
  color: var(--secondary-color);
  font-weight: var(--fw-500);
  line-height: 10.719px;
  letter-spacing: -0.24px;
}

.dropdown-content .dropdown-content2 .nav-link {
  font-size: 0.75rem;
  padding-right: 0;
  font-family: var(--primary-font);
  color: var(--secondary-color);
  font-weight: var(--fw-500);
  line-height: 10.719px;
  letter-spacing: -0.24px;
}
.dropdown-content,
.dropdown-content2 {
  display: none;
}
/* Sidebar dropdown menu end */

/* Sidebar buton logout start */
.btn-logout-wrap {
  padding: 12px 12px 12px 22px;
}
.sidebar-btn-logout {
  background: var(--primary-color);
  width: 140px;
  height: 46px;
  border: none;
  color: var(--white);
  margin: auto;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  transition: 0.6s;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar-btn-logout.btn:hover,
.sidebar-btn-logout.btn:focus {
  background: var(--hover-color);
  color: var(--white);
}
.logout-btn-small {
  margin: auto;
}
.logout-btn-small svg {
  color: var(--grey1);
}
.logout-btn-small:hover svg {
  color: var(--hover-color);
}
.bg-transparent {
  background: transparent;
}
/* Sidebar buton logout end */

/* Small Sidebar menu show hover start  */
/* .hover-expanded-menu .nav-item:hover .sidebar-nav-menu-box {
  position: absolute;
  width: calc(200px + 70px);
  background: var(--white);
  box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.25);
  right: -270px;
  padding: 0.75rem;
}
.hover-expanded-menu .nav-item:hover .sidebar-nav-menu-box .sidebar-menu-text {
  display: block !important;
}
.hover-expanded-menu .nav-item:hover .dropdown-content {
  position: absolute;
  width: calc(200px + 70px);
  background: var(--white);
  box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.25);
  right: -270px;
  padding: 0.75rem;
  display: block !important;
} */
/* Small Sidebar menu show hover  end  */

/* Page content start */
.page-content {
  /* padding: calc(70px + 1.5rem) calc(1.5rem * 0.5) 60px calc(1.5rem * 0.5); */
  padding: calc(32px + 1.5rem) calc(1.5rem * 0.5) 60px calc(1.5rem * 0.5);
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-content {
    padding: calc(76px + 1.5rem) calc(1.5rem * 0.5) 60px calc(1.5rem * 0.5);
  }
}
/* Page title style start */
.page-title {
  margin: 17px 0px 37px;
}

.page-content {
  min-height: 100vh;
}

/* common Datatable with 100% when navbar collapsed start */
.common-data-table {
  border: 1px solid #f7f7f7;
  border-collapse: collapse;
  width: 100% !important;
}

.table-card {
  border: 1px solid #f7f7f7;
  border-radius: 12px;
}
.tableResize .dataTables_scrollHeadInner {
  width: 100% !important;
  padding-right: 0px !important;
}
.tableResize .dataTables_scrollFootInner {
  width: 100% !important;
}
.tableResize .dataTables_scrollHead {
  width: 100% !important;
}
.tableResize .common-data-table {
  width: 100% !important;
}
.custom-dataTables-wrapper .dataTables_scrollFootInner {
  padding-right: 0px !important;
  width: 100% !important;
}
.custom-dataTables-wrapper .dataTables_scrollHeadInner {
  padding-right: 0px !important;
  width: 100% !important;
}

table.common-data-table.dataTable
  thead
  > tr
  > th.sorting-disabled.sorting_asc:before,
table.common-data-table.dataTable
  thead
  > tr
  > th.sorting-disabled.sorting_asc:after {
  display: none !important;
}
table.dataTable thead > tr > th.sorting-disabled.sorting:after,
table.dataTable thead > tr > th.sorting-disabled.sorting_desc:after {
  display: none !important;
}
table.dataTable thead > tr > th.sorting-disabled {
  pointer-events: none;
}
table.dataTable thead > tr > th.sorting-disabled .checkbox-container {
  pointer-events: all;
}
/* Common Datatable with 100% when navbar collapsed end */
/* Table row hightlight style end */
table.common-data-table.dataTable thead > tr > th.sorting:after,
table.common-data-table.dataTable thead > tr > th.sorting_asc:after,
table.common-data-table.dataTable thead > tr > th.sorting_desc:after,
table.common-data-table.dataTable thead > tr > th.sorting_asc_disabled:after,
table.common-data-table.dataTable thead > tr > th.sorting_desc_disabled:after,
table.common-data-table.dataTable thead > tr > td.sorting:after,
table.common-data-table.dataTable thead > tr > td.sorting_asc:after,
table.common-data-table.dataTable thead > tr > td.sorting_desc:after,
table.common-data-table.dataTable thead > tr > td.sorting_asc_disabled:after,
table.common-data-table.dataTable thead > tr > td.sorting_desc_disabled:after {
  top: 26%;
}
table.common-data-table.dataTable thead > tr > th.sorting:before,
table.common-data-table.dataTable thead > tr > th.sorting_asc:before,
table.common-data-table.dataTable thead > tr > th.sorting_desc:before,
table.common-data-table.dataTable thead > tr > th.sorting_asc_disabled:before,
table.common-data-table.dataTable thead > tr > th.sorting_desc_disabled:before,
table.common-data-table.dataTable thead > tr > td.sorting:before,
table.common-data-table.dataTable thead > tr > td.sorting_asc:before,
table.common-data-table.dataTable thead > tr > td.sorting_desc:before,
table.common-data-table.dataTable thead > tr > td.sorting_asc_disabled:before,
table.common-data-table.dataTable thead > tr > td.sorting_desc_disabled:before {
  bottom: 73%;
}

table.dataTable thead > tr > th.sorting:before,
table.dataTable thead > tr > th.sorting_desc:before {
  display: block !important;
}
table.dataTable thead > tr > th.sorting:after,
table.dataTable thead > tr > th.sorting_desc:after {
  display: block !important;
}

div.dataTables_scrollBody > table.dataTable > thead > tr > th:after {
  display: none !important;
}

/* //////////////////////////// */

/* .table-data-select .form-label {
  display: flex;
  margin-bottom: 0;
  align-items: center;
} */
.table-data-select .form-select {
  height: 32px;
}
/* Table head select box toggle style start */
.table-header-select-box {
  display: none;
}
.hide-selectbox-trigger-icon {
  display: none;
}
.table-data-select .select2-container {
  width: 100% !important;
}
.table-header-select-box .select2-container {
  width: 100% !important;
}
.show-selectbox-trigger-icon {
  margin-left: 12px;
}
.hide-selectbox-trigger-icon {
  margin-left: 12px;
}
/* Table head select box toggle style end */

/* .common-data-table thead th,
.common-data-table tfoot th {
  padding-top: 12px;
  padding-bottom: 12px;
} */
.common-data-table {
  border-radius: 12px;
  border-color: #f7f7f7;
}
.common-data-table thead th:first-child {
  border-top-left-radius: 12px;
}
.common-data-table thead th:last-child {
  border-top-right-radius: 12px;
}

.common-data-table tfoot th:first-child {
  border-bottom-left-radius: 12px;
}
.common-data-table tfoot th:last-child {
  border-bottom-right-radius: 12px;
}
table.common-data-table.table-bordered.dataTable th:first-child,
table.common-data-table.table-bordered.dataTable th:first-child,
table.common-data-table.table-bordered.dataTable td:first-child,
table.common-data-table.table-bordered.dataTable td:first-child {
  border-left-width: 0px;
  border-right-width: 0px;
}
table.common-data-table.table-bordered.dataTable th,
table.common-data-table.table-bordered.dataTable td {
  border-left-width: 0px;
  border-right-width: 0px;
}
.common-data-table th {
  color: var(--primary-color);
  font-family: var(--primary-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  padding-right: 8px !important;
  text-transform: uppercase;
}
.common-data-table th .form-label {
  text-transform: uppercase;
}

.common-data-table.order-list-table tr td:nth-child(5) {
  text-align: right;
}
.common-data-table.order-list-table tr td:nth-child(6) {
  text-align: right;
}
.common-data-table.order-list-table tr td:nth-child(7) {
  text-align: right;
}

.common-data-table.load-details-table tr td:nth-child(5) {
  text-align: right;
}
.common-data-table.load-details-table tr td:nth-child(6) {
  text-align: right;
}
.common-data-table.load-details-table tr td:nth-child(7) {
  text-align: right;
}
.common-data-table.load-details-table tr td:nth-child(8) {
  text-align: right;
}
.common-data-table.load-details-table tr td:nth-child(9) {
  text-align: right;
}
.common-data-table.load-details-table tr td:nth-child(10) {
  text-align: right;
}
.common-data-table.load-details-table tr td:nth-child(11) {
  text-align: right;
}

.common-data-table.order-list-table tr th:nth-child(5) .form-label {
  text-align: right;
  display: flow-root;
  padding-right: 16px;
  /* margin-bottom: 0px; */
}
.common-data-table.order-list-table tr th:nth-child(6) .form-label {
  text-align: right;
  display: flow-root;
  padding-right: 16px;
  /* margin-bottom: 0px; */
}
.common-data-table.order-list-table tr th:nth-child(7) .form-label {
  text-align: right;
  display: flow-root;
  padding-right: 16px;
  /* margin-bottom: 0px; */
}
.common-data-table.load-details-table tr th:nth-child(5) .form-label {
  text-align: right;
  display: flow-root;
  padding-right: 16px;
  /* margin-bottom: 0px; */
}
.common-data-table.load-details-table tr th:nth-child(6) .form-label {
  text-align: right;
  display: flow-root;
  padding-right: 16px;
  /* margin-bottom: 0px; */
}
.common-data-table.load-details-table tr th:nth-child(7) .form-label {
  text-align: right;
  display: flow-root;
  padding-right: 16px;
  /* margin-bottom: 0px; */
}
.common-data-table.load-details-table tr th:nth-child(8) .form-label {
  text-align: right;
  display: flow-root;
  padding-right: 16px;
  /* margin-bottom: 0px; */
}
.common-data-table.load-details-table tr th:nth-child(9) .form-label {
  text-align: right;
  display: flow-root;
  padding-right: 16px;
  /* margin-bottom: 0px; */
}
.common-data-table.load-details-table tr th:nth-child(10) .form-label {
  text-align: right;
  display: flow-root;
  padding-right: 16px;
  /* margin-bottom: 0px; */
}
.common-data-table.load-details-table tr th:nth-child(11) .form-label {
  text-align: right;
  display: flow-root;
  padding-right: 16px;
  /* margin-bottom: 0px; */
}

.common-data-table.order-list-table tfoot tr th:nth-child(5) {
  text-align: right;
}
.common-data-table.order-list-table tfoot tr th:nth-child(6) {
  text-align: right;
}
.common-data-table.order-list-table tfoot tr th:nth-child(7) {
  text-align: right;
}
.common-data-table.load-details-table tfoot tr th:nth-child(5) {
  text-align: right;
}
.common-data-table.load-details-table tfoot tr th:nth-child(6) {
  text-align: right;
}
.common-data-table.load-details-table tfoot tr th:nth-child(7) {
  text-align: right;
}
.common-data-table.load-details-table tfoot tr th:nth-child(8) {
  text-align: right;
}
.common-data-table.load-details-table tfoot tr th:nth-child(9) {
  text-align: right;
}
.common-data-table.load-details-table tfoot tr th:nth-child(10) {
  text-align: right;
}
.common-data-table.load-details-table tfoot tr th:nth-child(11) {
  text-align: right;
}

table.common-data-table.dataTable thead > tr > th.sorting_asc:before,
table.common-data-table.dataTable thead > tr > th.sorting_asc:after {
  display: none;
}

.common-data-table.invoice-order-details-table thead tr th:nth-child(5),
.common-data-table.invoice-order-details-table thead tr th:nth-child(7),
.common-data-table.invoice-order-details-table thead tr th:nth-child(8),
.common-data-table.invoice-order-details-table thead tr th:nth-child(9),
.common-data-table.invoice-order-details-table thead tr th:nth-child(10),
.common-data-table.invoice-order-details-table thead tr th:nth-child(11),
.common-data-table.invoice-order-details-table thead tr th:nth-child(13),
.common-data-table.invoice-order-details-table tfoot tr th:nth-child(5),
.common-data-table.invoice-order-details-table tfoot tr th:nth-child(7),
.common-data-table.invoice-order-details-table tfoot tr th:nth-child(8),
.common-data-table.invoice-order-details-table tfoot tr th:nth-child(9),
.common-data-table.invoice-order-details-table tfoot tr th:nth-child(10),
.common-data-table.invoice-order-details-table tfoot tr th:nth-child(11),
.common-data-table.invoice-order-details-table tfoot tr th:nth-child(13) {
  text-align: right;
}
.common-data-table.invoice-order-details-table thead tr th:nth-child(6),
.common-data-table.invoice-order-details-table thead tr th:nth-child(12) {
  text-align: right;
}
.common-data-table.invoice-order-details-table tr td:nth-child(5),
.common-data-table.invoice-order-details-table tr td:nth-child(7),
.common-data-table.invoice-order-details-table tr td:nth-child(8),
.common-data-table.invoice-order-details-table tr td:nth-child(9),
.common-data-table.invoice-order-details-table tr td:nth-child(10),
.common-data-table.invoice-order-details-table tr td:nth-child(11),
.common-data-table.invoice-order-details-table tr td:nth-child(13),
.common-data-table.generate-order-list-table tr td:nth-child(3),
.common-data-table.generate-order-list-table tr td:nth-child(4),
.common-data-table.generate-order-list-table tr td:nth-child(5),
.common-data-table.generate-order-list-table tr td:nth-child(6),
.common-data-table.generate-order-list-table tr td:nth-child(7),
.common-data-table.generate-order-list-table tr td:nth-child(8) {
  text-align: right;
}
.common-data-table.invoice-order-details-table thead tr th,
.common-data-table.invoice-order-details-table tfoot tr th {
  text-transform: uppercase;
}
.common-data-table.modal-orders-table thead tr th:nth-child(2),
.common-data-table.modal-orders-table thead tr th:nth-child(4),
.common-data-table.modal-orders-table thead tr th:nth-child(5),
.common-data-table.modal-orders-table thead tr th:nth-child(6),
.common-data-table.modal-orders-table thead tr th:nth-child(7),
.common-data-table.modal-orders-table thead tr th:nth-child(8),
.common-data-table.modal-orders-table thead tr th:nth-child(9) {
  text-align: right;
}
.common-data-table.modal-orders-table tr td:nth-child(2),
.common-data-table.modal-orders-table tr td:nth-child(4),
.common-data-table.modal-orders-table tr td:nth-child(5),
.common-data-table.modal-orders-table tr td:nth-child(6),
.common-data-table.modal-orders-table tr td:nth-child(7),
.common-data-table.modal-orders-table tr td:nth-child(8),
.common-data-table.modal-orders-table tr td:nth-child(9) {
  text-align: right;
}
.common-data-table.modal-orders-table tfoot tr th:nth-child(2),
.common-data-table.modal-orders-table tfoot tr th:nth-child(4),
.common-data-table.modal-orders-table tfoot tr th:nth-child(5),
.common-data-table.modal-orders-table tfoot tr th:nth-child(6),
.common-data-table.modal-orders-table tfoot tr th:nth-child(7),
.common-data-table.modal-orders-table tfoot tr th:nth-child(8),
.common-data-table.modal-orders-table tfoot tr th:nth-child(9) {
  text-align: right;
}
.common-data-table.generate-order-list-table thead tr th:nth-child(3),
.common-data-table.generate-order-list-table thead tr th:nth-child(4),
.common-data-table.generate-order-list-table thead tr th:nth-child(5),
.common-data-table.generate-order-list-table thead tr th:nth-child(6),
.common-data-table.generate-order-list-table thead tr th:nth-child(7),
.common-data-table.generate-order-list-table thead tr th:nth-child(8) {
  text-align: right;
}
/* .invoice-order-details-table tr th,
.invoice-order-details-table tr td {
  width: 250px !important;
  max-width: 250px !important;
} */

.common-data-table th {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
}
/* .common-data-table th:hover {
  background-color: #dee8ff;
} */
.common-data-table th:nth-child(1) {
  vertical-align: middle;
}
.common-data-table tr td:nth-child(1) {
  vertical-align: middle;
}
.common-data-table tr td {
  color: var(--black3);
  font-family: var(--primary-font);
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
}
@media (min-width: 1600px) {
  .common-data-table th {
    font-size: 14px;
  }
  .common-data-table td {
    font-size: 12px;
  }
  .common-data-table tr td {
    font-size: 12px;
  }
}
@media (min-width: 1800px) {
  .common-data-table th {
    font-size: 14px;
  }
  .common-data-table td {
    font-size: 12px;
  }
  .common-data-table tr td {
    font-size: 12px;
  }
}

.table-title-bottom-space {
  margin-bottom: 21px;
}
.table-form-control.form-control {
  border-color: #e6e6e6;
  height: 22px;
  border-radius: 3px;
  font-size: 12px;
  color: var(--black3);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  text-align: right;
}
/* Scrollbar height */
.parent-data-table-wrap
  .dataTables_scroll
  .dataTables_scrollBody::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
.parent-data-table-wrap
  .dataTables_scroll
  .dataTables_scrollBody::-webkit-scrollbar-track {
  background: var(--blue-soft-color);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

/* Handle */
.parent-data-table-wrap
  .dataTables_scroll
  .dataTables_scrollBody::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

/* Handle on hover */
.parent-data-table-wrap
  .dataTables_scroll
  .dataTables_scrollBody::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}
.parent-data-table-wrap .active > .page-link,
.page-link.active {
  background: var(--primary-color);
}
.tableResize .select2-container {
  width: 100% !important;
}
.common-table-title {
  color: #5c6160;
  font-family: var(--primary-font);
  font-size: 16.579px;
  font-weight: 700;
  line-height: 16.579px; /* 100% */
  letter-spacing: -0.332px;
}
.common-table-sub-title {
  color: #667085;
  font-family: var(--primary-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.title-span {
  font-family: var(--primary-font);
  color: var(--primary-color);
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  position: relative;
  bottom: 3px;
  left: 7px;
}

/* Custom checkbox start */
/* The container */
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  /* margin-bottom: 12px; */
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: var(--black3);
  font-family: var(--primary-font);
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */

.custom-checkmark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 16px;
  width: 16px;
  background-color: var(--white);
  border: 1px solid #d9d9d9;
  border-radius: 4px;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .custom-checkmark {
  background-color: var(--white);
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .custom-checkmark {
  background-color: var(--primary-color);
}

/* Create the checkmark/indicator (hidden when not checked) */
.custom-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .custom-checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .custom-checkmark:after {
  left: 4px;
  top: 1px;
  width: 6px;
  border-radius: 0.5px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.checkbox-container.disabled {
  pointer-events: none;
  cursor: context-menu;
}

.checkbox-container.disabled .custom-checkmark {
  background-color: #e9ecef;
  opacity: 1;
  border-color: #e9ecef;
  color: rgba(45, 55, 72, 0.32);
}

/* Custom checkbox end */
/* Table row hightlight style end */
.common-table-head {
  margin-bottom: 14px;
}
.common-card {
  border: 1px solid #d5d5d5;
  background-color: #edeff5;
  padding: 14px;
  border-radius: 12px;
}
@media (min-width: 992px) {
  .common-card {
    padding: 21px 22px 22px;
  }
  .page-content {
    padding: calc(70px + 1.5rem) calc(1.5rem * 0.5) 30px calc(1.5rem * 0.5);
  }
}
@media (min-width: 1700px) {
  .common-card {
    padding: 21px 32px 32px;
  }
}
.common-btn {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 4px 14px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 14px;
  border-radius: 8px;
  transition: 0.3s;
  text-transform: capitalize;
  line-height: 100%;
}
@media (min-width: 1600px) {
  .common-btn {
    min-height: 40px;
    padding: 4px 16px;
  }
}
.common-btn:hover {
  background-color: var(--hover-color);
  border-color: var(--hover-color);
}
.common-btn:disabled {
  background-color: #e9ecef;
  opacity: 1;
  border-color: #e9ecef;
  pointer-events: none;
  color: rgba(45, 55, 72, 0.32);
}
.common-btn:disabled svg path {
  fill: rgba(45, 55, 72, 0.32);
}
.title {
  font-family: var(--primary-font);
  color: var(--black2);
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.3px;
  font-weight: var(--fw-400);
  text-transform: capitalize;
}
.common-form-btn-top-space {
  margin-top: 21px;
}
@media (width: 1700px) {
  .title {
    font-size: 32px;
  }
}
.primary-color {
  color: var(--primary-color);
}
.btn-text-span {
  padding-right: 6px;
}

/* Common form sec style start */

/* Checkbox style for common form start */
.common-form-checkbox-wrapper .checkbox-container {
  padding-left: 28px;
}
.common-form-checkbox-wrapper .custom-checkmark {
  left: 8px;
}
/* Checkbox style for common form end */

.common-form-btn-inline-top-space {
  margin-top: 16px;
}
@media (min-width: 992px) {
  .common-form-checkbox-wrapper {
    margin-top: 35px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .common-form-btn-inline-top-space {
    margin-top: 5px;
  }
}
@media (min-width: 1200px) {
  .common-form-btn-inline-top-space {
    margin-top: 26px;
  }
}
.common-space-bottom {
  margin-bottom: 28px;
}

.common-form .form-label {
  font-family: var(--primary-font);
  color: var(--black3);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}
.common-form .form-control {
  font-family: var(--primary-font);
  color: var(--black3);
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
}
.common-form .form-control::placeholder {
  color: rgba(45, 55, 72, 0.32);
}
.common-form .form-select {
  height: 32px !important;
}
.schemeFrom ~ .select2-container {
  width: 100% !important;
}
@media (min-width: 768px) {
  .form-contentindividual-wrap {
    margin-top: 16px;
  }
}

.textarea-control {
  min-height: 32px !important;
  height: 32px;
}
.single-btn-space {
  margin-top: 45px;
}
/* Common form sec style end */
/* Slect2 customize start */
.select2-container--default
  .schemeFromSelect.select2-selection--single
  .select2-selection__placeholder,
.select2-container--default
  .tableSchemeFromSelect.select2-selection--single
  .select2-selection__placeholder {
  font-family: var(--primary-font);
  color: var(--black3);
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}
.select2-container--default .schemeFromSelect.select2-selection--single,
.select2-container--default .tableSchemeFromSelect.select2-selection--single {
  font-family: var(--primary-font);
  color: var(--black3);
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 8px 34px 8px 12px;
  font-weight: 400;
  line-height: 1.5;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  height: 32px !important;
}
.select2-container--default .tableSchemeFromSelect.select2-selection--single {
  height: 25px !important;
}
.select2-container--default
  .tableSchemeFromSelect.select2-selection--single
  .select2-selection__rendered {
  font-size: 12px !important;
}
.tableSchemeFromSelect.select2-selection--single
  .select2-selection__placeholder {
  font-size: 12px !important;
}
.tableSchemeFromSelect.select2-selection--single {
  padding: 5px 34px 4px 12px !important;
}
.tableSchemeFromSelect.select2-selection--single .select2-selection__arrow {
  padding: 0px 16px !important;
}

.select2-container--default
  .tableSchemeFromSelect.select2-selection--single
  .select2-selection__arrow {
  background-size: 13px 10px !important;
}
.select2-container--default
  .schemeFromSelect.select2-selection--single
  .select2-selection__rendered,
.select2-container--default
  .tableSchemeFromSelect.select2-selection--single
  .select2-selection__rendered {
  font-family: var(--primary-font);
  color: var(--black3);
  font-size: 14px;
  line-height: 100%;
  height: auto;
  padding: 0px;
}
.select2-container--default
  .schemeFromSelect.select2-selection--single
  .select2-selection__arrow
  b,
.select2-container--default
  .tableSchemeFromSelect.select2-selection--single
  .select2-selection__arrow
  b {
  border: none;
}

/* .select2-container--default.select2-container--open
  .select2-selection--single
  .select2-selection__arrow {
  transform: rotate(-180deg);
} */
.select2-container--default
  .schemeFromSelect.select2-selection--single
  .select2-selection__arrow,
.select2-container--default
  .tableSchemeFromSelect.select2-selection--single
  .select2-selection__arrow {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  padding: 15px 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: var(--bs-form-select-bg-img),
    var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border-radius: var(--bs-border-radius);
  transition: all 0.4s ease;
}
.schemeFromSelectDrop.select2-dropdown,
.tableSchemeFromSelectDrop.select2-dropdown {
  background-color: white;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: 4px;
  box-sizing: border-box;
}
.select2-container--default.select2-container--disabled
  .tableSchemeFromSelect.select2-selection--single,
.select2-container--default.select2-container--disabled
  .schemeFromSelect.select2-selection--single {
  background-color: var(--bs-secondary-bg) !important;
  opacity: 1;
}
.select2-container--default.select2-container--disabled
  .tableSchemeFromSelect.select2-selection--single
  .select2-selection__placeholder,
.select2-container--default.select2-container--disabled
  .schemeFromSelect.select2-selection--single
  .select2-selection__placeholder {
  color: #acb2b9;
}

.select2-container--default.select2-container--disabled
  .tableSchemeFromSelect.select2-selection--single
  .select2-selection__placeholder,
.select2-container--default.select2-container--disabled
  .schemeFromSelect.select2-selection--single
  .select2-selection__arrow {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="none" stroke="%23B4B7BC" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m2 5 6 6 6-6"/></svg>');
}

/* Slect2 customize end */
/* Flatpickr date range pickr start */

.calendar-icon {
  background-image: url('data:image/svg+xml,<svg width="16" height="18" viewBox="0 0 16 18" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_138_2097)"><path d="M3.83333 8.99996H5.5V10.6666H3.83333V8.99996ZM15.5 3.99996V15.6666C15.5 16.1087 15.3244 16.5326 15.0118 16.8451C14.6993 17.1577 14.2754 17.3333 13.8333 17.3333H2.16667C1.24167 17.3333 0.5 16.5833 0.5 15.6666V3.99996C0.5 3.55793 0.675595 3.13401 0.988155 2.82145C1.30072 2.50889 1.72464 2.33329 2.16667 2.33329H3V0.666626H4.66667V2.33329H11.3333V0.666626H13V2.33329H13.8333C14.2754 2.33329 14.6993 2.50889 15.0118 2.82145C15.3244 3.13401 15.5 3.55793 15.5 3.99996ZM2.16667 5.66663H13.8333V3.99996H2.16667V5.66663ZM13.8333 15.6666V7.33329H2.16667V15.6666H13.8333ZM10.5 10.6666V8.99996H12.1667V10.6666H10.5ZM7.16667 10.6666V8.99996H8.83333V10.6666H7.16667ZM3.83333 12.3333H5.5V14H3.83333V12.3333ZM10.5 14V12.3333H12.1667V14H10.5ZM7.16667 14V12.3333H8.83333V14H7.16667Z" fill="%232D3748" fill-opacity="0.32"/></g><defs><clipPath id="clip0_138_2097"><rect width="16" height="18" fill="white"/></clipPath></defs></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.timepickr-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 16 16'%3E%3Cpath fill='%23acb2b9' d='M8 15c-3.86 0-7-3.14-7-7s3.14-7 7-7s7 3.14 7 7s-3.14 7-7 7M8 2C4.69 2 2 4.69 2 8s2.69 6 6 6s6-2.69 6-6s-2.69-6-6-6'/%3E%3Cpath fill='%23acb2b9' d='M10 10.5c-.09 0-.18-.02-.26-.07l-2.5-1.5A.5.5 0 0 1 7 8.5v-4c0-.28.22-.5.5-.5s.5.22.5.5v3.72l2.26 1.35a.502.502 0 0 1-.26.93'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.search-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'%3E%3Cpath fill='%23acb2b9' d='M21.71 20.29L18 16.61A9 9 0 1 0 16.61 18l3.68 3.68a1 1 0 0 0 1.42 0a1 1 0 0 0 0-1.39M11 18a7 7 0 1 1 7-7a7 7 0 0 1-7 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

@media (max-width: 992px) {
  .calendar-icon {
    background-image: none;
  }
  .timepickr-icon {
    background-image: none;
  }
}
/* // Datepiccker customize start */
.flatpickr-months {
  background-color: var(--primary-color);
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
  color: #fff;
  font-family: var(--primary-font);
  font-size: 14px;
  font-weight: 500;
}
.flatpickr-current-month .flatpickr-monthDropdown-months option {
  color: #000;
  font-family: var(--primary-font);
  font-size: 14px;
  font-weight: 500;
}
.flatpickr-current-month input.cur-year {
  color: #fff;
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 600;
}
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month:hover,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month:hover {
  fill: #fff;
}

span.flatpickr-weekday {
  color: #fff;
  font-family: var(--primary-font);
}
.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  fill: #fff;
}
.flatpickr-months .flatpickr-prev-month svg:hover,
.flatpickr-months .flatpickr-next-month svg:hover {
  fill: #cecece;
}
.flatpickr-calendar.arrowTop::before {
  border-bottom-color: var(--primary-color);
}
.flatpickr-calendar.arrowTop::after {
  border-bottom-color: var(--primary-color);
}
.flatpickr-calendar.arrowBottom::before {
  border-top-color: var(--primary-color);
}
.flatpickr-calendar.arrowBottom::after {
  border-top-color: var(--primary-color);
}
.flatpickr-weekdays {
  background-color: var(--primary-color);
}
.flatpickr-day.today {
  border-color: var(--primary-color);
  background-color: #eaeefa;
}
span.flatpickr-weekday {
  background: var(--primary-color);
}
.flatpickr-day.today:focus,
.flatpickr-day.today:hover {
  border-color: var(--primary-color);
  background-color: #e7eaf2;
}
.flatpickr-day.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day.nextMonthDay:focus,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.today.inRange,
.flatpickr-day:focus,
.flatpickr-day:hover {
  border-color: #e7eaf2;
  background-color: #e7eaf2;
}
.flatpickr-day.endRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.endRange.nextMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.endRange:focus,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected,
.flatpickr-day.selected.inRange,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.selected:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.startRange:focus,
.flatpickr-day.startRange:hover {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}
.flatpickr-day.endRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.endRange.nextMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.endRange:focus,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected,
.flatpickr-day.selected.inRange,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.selected:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.startRange:focus,
.flatpickr-day.startRange:hover {
  background: var(--primary-color);
}
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n + 1)),
.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n + 1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n + 1)) {
  box-shadow: -10px 0 0 #e7eaf2;
}
.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: var(--white);
}
.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: var(--white);
}
.numInputWrapper span {
  right: -7px;
}
/* // Datepiccker customize end */
/* Flatpickr date range pickr end */

.table-footer-btn-group {
  margin-top: 16px;
}

.loaddetails-form .form-contentindividual-wrap {
  margin: 18px 0 16px;
}
.loadsheet-prefield-form .form-contentindividual-wrap {
  margin-bottom: 16px;
  margin-top: 0px;
}
.modal-form-sec {
  margin-bottom: 16px;
}
.modal-table-head .title {
  margin-top: 32px;
}
.order-name-text {
  font-family: var(--primary-font);
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-left: 16px;
}
/* Page content end */
/* Footer start */
.footer {
  /* bottom: 0; */
  padding: 20px calc(1.5rem * 0.5);
  /* position: fixed; */
  /* right: 0; */
  color: var(--grey2);
  /* left: 0; */
  background: var(--white);
  /* z-index: 3; */
  font-family: var(--primary-font);
}
.footer.left-70 {
  left: 70px;
}
/* Footer end */

/* Gosales new Style start  */

.logout-icon-wrap svg {
  fill: var(--black3);
}
.logout-text {
  color: var(--black3);
  padding-left: 16px;
}

/* Gosales new Style end */
.bg_grn {
  background: #00b69b;
  border: #00b69b;
}
.common-btn.bg-danger {
  border: #ff0000;
}
/* Common Table Modal start */
.common-table-modal .modal-body {
  padding: 16px;
}

.custom-close-btn {
  border: none;
  position: absolute;
  right: 3px;
  top: 2px;
  border-radius: 50%;
  background-color: transparent;
}
.custom-close-btn svg path {
  fill: #777a7c;
}
.modal-subtitle {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--secondary-font);
}
.common-table-modal .common-card {
  padding: 21px;
}
.common-table-head.modal-title-space {
  margin-bottom: 14px;
}
.modal-subtitle-space {
  margin-bottom: 10px;
}
@media (min-width: 1800px) {
  .common-table-modal .modal-body {
    padding: 32px;
  }
  .common-table-modal h1.title {
    font-size: 20px;
  }
  .modal-subtitle {
    font-size: 18px;
  }
}
/* Common Table Modal  end */
.invoice-label-width {
  width: 170px;
}
.single-invoice-card {
  border: 1px solid #d5d5d5;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
}
.single-invoice-form {
  padding: 24px;
  border-bottom: 1px solid #d5d5d5;
}
.single-invoice-table-card {
  padding: 24px;
}
@media (max-width: 767px) {
  .mt-mob-btn {
    margin-top: 16px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .common-form-btn-inline-top-space.mob-btn-sales-order {
    margin-top: 31px;
  }
}

.table-cell-btn {
  display: flex;
  align-items: center;
  height: 24px;
  padding: 8px 10px;
  border-radius: 15px;
  background-color: var(--primary-color);
  color: var(--white);
  font-family: var(--primary-font);
  border: 1px solid var(--primary-color);
  margin: 5px;
  font-weight: 600;
  text-transform: capitalize;
}

.checkin-modal-table thead tr th:nth-child(5),
.checkin-modal-table thead tr th:nth-child(6),
.checkin-modal-table thead tr th:nth-child(7),
.checkin-modal-table thead tr th:nth-child(8),
.checkin-modal-table thead tr th:nth-child(9) {
  text-align: right;
}
.checkin-modal-table tfoot tr th:nth-child(5),
.checkin-modal-table tfoot tr th:nth-child(6),
.checkin-modal-table tfoot tr th:nth-child(7),
.checkin-modal-table tfoot tr th:nth-child(8),
.checkin-modal-table tfoot tr th:nth-child(9) {
  text-align: right;
}
.checkin-modal-table tr td:nth-child(5),
.checkin-modal-table tr td:nth-child(6),
.checkin-modal-table tr td:nth-child(7),
.checkin-modal-table tr td:nth-child(8),
.checkin-modal-table tr td:nth-child(9) {
  text-align: right;
}
/* Login style start */
.login-content-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}
/* Left Side */

.left-side-content-wrap {
  background-image: url(../dmsimages/banner/login-left-image.jpg);
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.left-side-content-wrap {
  padding: 50px;
}
.left-side-banner-top-title h2 {
  font-family: var(--primary-font);
  color: var(--white);
  text-align: center;
  font-weight: 700;
  font-size: 24px;
}
@media (min-width: 1700px) {
  .left-side-banner-top-title h2 {
    font-size: 32px;
  }
}
/* Right side */
.right-side-content-wrap {
  width: 100%;
  height: auto;
}
.right-side-content-wrap {
  padding: 32px;
}
.login-form-title h1 {
  font-family: var(--primary-font);
  font-size: 40px;
  font-weight: 600;
  color: var(--black3);
  line-height: 100%;
}
.login-form-sub-title p {
  font-family: var(--primary-font);
  font-size: 14px;
  font-weight: 400;
  color: #313131;
  line-height: 100%;
}
.login-form-title {
  margin-bottom: 16px;
}
.login-form-sub-title {
  margin-bottom: 8px;
}
.login-logo {
  display: inline-block;
  width: 150px;
  margin-bottom: 50px;
}
.login-form-top {
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  .right-side-content-wrap {
    width: 50%;
    height: auto;
  }
  .right-side-content-wrap {
    padding: 40px;
  }
}

@media (max-width: 991px) {
  .slider-container .dots span:before {
    display: none !important;
  }
  .slider-container .dots {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .left-side-content-wrap {
    width: 50%;
    height: 100vh;
  }
  .login-content-wrap {
    flex-direction: row;
  }
}
@media (min-width: 1700px) {
  .login-logo {
    display: inline-block;
    width: 190px;
    margin-bottom: 100px;
  }
  .right-side-content-wrap {
    padding: 50px 100px;
  }
}
/* floating label form start */
.login-form {
  display: grid;
  gap: 1.3rem;
  /* margin-block: 4rem; */
}

.login-form .form-group {
  position: relative;
}

.login-form .form-control {
  border-radius: 4px;
  padding-block: 12px 16px;
  padding-inline: 16px 16px;
  font: inherit;
  display: block;
  width: 100%;
  border: 1px solid #dadada;
  transition: 0.3s;
  background-color: #fafafa;
}

.login-form .form-control::placeholder {
  color: #c2c2c2;
}

.login-form .form-control:focus {
  outline: none;
  border-color: #007bff;
}

.login-form .form-float-label {
  position: absolute;
  top: 16px;
  left: 16px;
  color: #757575;
  font-family: var(--primary-font);
  font-size: 14px;
  pointer-events: none;
  transition: 0.3s;
}

.login-form .form-control:focus ~ .form-float-label,
.login-form .form-control:valid ~ .form-float-label {
  top: calc(16px * -0.7);
  left: calc(16px * 0.5);
  font-size: 15px;
  font-family: var(--primary-font);
  background-color: var(--white);
  color: #007bff;
  padding-inline: 4px;
}
.btn-bg-login {
  background-color: #0775ec;
  font-size: 18px;
  font-weight: 600;
  height: 48px;
  border-radius: 4px;
}
.login-reg-link {
  font-family: var(--primary-font);
  color: #0775ec;
  font-size: 14px;
  font-weight: 700;
  margin-left: 5px;
}
.login-new-user-label {
  font-family: var(--primary-font);
  color: #313131;
  font-size: 14px;
  font-weight: 600;
  margin-left: 5px;
}
.login-form .form-check .form-check-input {
  border-color: #757575;
}
.login-form .form-check .form-check-label {
  border-color: #757575;
  font-family: var(--primary-font);
  font-size: 14px;
  font-weight: 400;
}
.login-form .login-forgot-password-link {
  font-family: var(--primary-font);
  color: #0775ec;
  font-size: 14px;
  font-weight: 700;
  margin-left: 5px;
}
.login-form .form-check-input:checked[type="checkbox"] {
  border-color: #0775ec;
}
/* floating label form end */
/* Left slider start */
.slider-container {
  display: block;
  height: 71vh;
  width: auto;
  margin: 0 auto;
  position: relative;
  /* max-width: 1300px; */
  margin-top: 20px;
}

/* .slider-container .arrow-left {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  color: white;
  font-size: 28px;
  cursor: pointer;
  z-index: 9;
  border-top: 15px solid transparent;
  border-right: 30px solid #c85054;
  border-bottom: 15px solid transparent;
} */

/* @media (max-width: 768px) {
  .slider-container .arrow-left {
    display: none;
  }
} */
/* 
.slider-container .arrow-right {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  color: white;
  font-size: 28px;
  cursor: pointer;
  z-index: 9;
  border-top: 15px solid transparent;
  border-left: 30px solid #c85054;
  border-bottom: 15px solid transparent;
} */

/* @media (max-width: 768px) {
  .slider-container .arrow-right {
    display: none;
  }
} */

.slider-container .dots {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin: 30px 0;
  user-select: none;
}

.slider-container .dots span {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 2px;
  cursor: pointer;
  user-select: none;
  padding: 10px 0;
  position: relative;
}

.slider-container .dots span:before {
  content: "";
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: #ccc;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .slider-container .dots span {
    width: 23px;
    margin-bottom: 15px;
  }
}

.slider-container .dots span.active:before {
  background-color: #4880ff;
  opacity: 1;
}

.slider-container .slider {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  text-align: center;
  /* line-height: 270px; */
  color: white;
}

@media (max-width: 991px) {
  .slider-container .slider {
    height: 450px;
  }
  .left-side-content-wrap {
    order: 2;
  }
}
@media (min-width: 769px) and (max-width: 991px) {
  .slider-container .slider {
    height: 684px;
  }
}

@media (min-width: 992px) and (max-width: 1600px) {
  .slider-container .slider {
    /* height: 450px; */
    width: 300px;
  }
  .slider-container .slider {
    height: 63vh;
  }
}
@media (min-width: 1601px) and (max-width: 1800px) {
  .slider-container .slider {
    /* height: 450px; */
    /* width: 550px; */
    width: 386px;
    height: 72vh;
  }
  /* .slider-container {
    margin-top: 35px;
  } */
  /* .slider-container .slider .slide {
    width: 100%;
    } */
}

.slider-container .slider .slide {
  display: inline-block;
  width: 80%;
  /* height: 270px; */

  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0) scale3d(0.4, 0.4, 1);
  transition: transform 0.3s ease-in-out 0s, z-index 0.2s ease-in-out 0.1s;
  /* background-color: #2c2a40; */
}
@media (min-width: 1801px) {
  .slider-container .slider .slide {
    width: 540px;
  }
}
/* .slider-container .slider .slide:nth-child(odd) {
  background-color: gray;
} */

@media (max-width: 768px) {
  .slider-container .slider .slide {
    /* width: 100%; */
    /* width: auto; */
    height: 450px;
  }
}

/* .slider-container .slider .slide:nth-child(1) {
  background-color: #505e63;
}

.slider-container .slider .slide:nth-child(2) {
  background-color: #62698c;
}

.slider-container .slider .slide:nth-child(3) {
  background-color: #2c2a40;
}

.slider-container .slider .slide:nth-child(4) {
  background-color: #c85054;
}

.slider-container .slider .slide:nth-child(5) {
  background-color: #f1bb70;
} */

.slider-container .slider .slide.prev-2 {
  transform: translate3d(-105%, -50%, 0) scale3d(0.4, 0.4, 1);
  z-index: 1;
  opacity: 0.5;
}

.slider-container .slider .slide.prev-1 {
  transform: translate3d(-85%, -50%, 0) scale3d(0.6, 0.6, 1);
  z-index: 2;
}

.slider-container .slider .slide.next-1 {
  z-index: 2;
  transform: translate3d(-15%, -50%, 0) scale3d(0.6, 0.6, 1);
}

.slider-container .slider .slide.next-2 {
  z-index: 1;
  transform: translate3d(5%, -50%, 0) scale3d(0.4, 0.4, 1);
  opacity: 0.5;
}

.slider-container .slider .slide.active {
  z-index: 3;
  transform: translate3d(-50%, -50%, 0) scale3d(1, 1, 1);
  /* box-shadow: 0px 5px 15px 3px rgba(0, 0, 0, 0.3); */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Left slider end */
/* // password visible hidden component start */

.passwordHidden,
.passwordShowed {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  stroke: #c8c7cc;
  fill: none;
  width: 20px;
  height: 20px;
}
.passwordHideShow .passwordShowed {
  top: 50%;
  transform: translateY(-50%);
}
.passwordHidden,
.passwordShowed {
  right: 12px;
}

/* // password visible hidden component end */
/* Login style end */
/* Dashboard start */
/* Dashboard slider start*/
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dashboard-banner-box {
  width: 100%;
  height: 252px;
  overflow: hidden;
  border-radius: 12px;
}
.dashboard-banner-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
/* @media (min-width: 1600px) {
  .dashboard-banner-box {
    height: 360px;
  }
} */
/* Dashboard slider end */

/* pending activities start */
.pending-list-wrap {
  margin: 24px 0;
  padding: 24px;
}
.pending-list-card {
  width: 100%;
  border: 1px solid #d5d5d5;
  border-radius: 6px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  margin-bottom: 24px;
}
.pend-list-card-title {
  font-family: var(--primary-font);
  font-size: 16px;
  color: var(--black3);
  font-weight: var(--fw-400);
}
.common-btn.small-btn {
  font-size: 12px;
  min-height: 34px;
}
.card-common-title-wrap {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .pending-list-card {
    margin-bottom: 0;
  }
}
/* pending activities end */

/* Dashboard end */

/* Select2 Multiple checkbox style start */
/* .select2-results__options .select2-results__option {
  padding-left: 0;
}
.select2-results__options .select2-results__option input {
  margin-right: 10px;
} */

.select-box {
  width: 100%;
  /* background: var(--white); */
}
.select-box-drop-down {
  width: 100%;
  background-color: var(--white);
  border-radius: 4px;
  padding: 8px;
  box-shadow: 0 5px 10px rgba(30, 32, 37, 0.12);
}
/* Select2 Multiple checkbox style end */


.slider-container .slider {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  text-align: center;
  /* line-height: 270px; */
  color: white;
}

@media (max-width: 991px) {
  .slider-container .slider {
    height: 450px;
  }
  .left-side-content-wrap {
    order: 2;
  }
}

@media (min-width: 992px) and (max-width: 1600px) {
  /*.slider-container .slider {*/
    /* height: 450px; */
    /*width: 300px;
  }*/
  .slider-container .slider {
    height: 63vh;
  }
}


@media (min-width: 992px) and (max-width: 1299px) {
  .slider-container .slider {
    /* height: 450px; */
    width: 300px;
  }

}

@media (min-width: 1300px) and (max-width: 1600px) {
  .slider-container .slider {
    /* height: 450px; */
    width: 245px;
  }

}

@media (min-width: 1601px) and (max-width: 1800px) {
  .slider-container .slider {
    /* height: 450px; */
    width: 350px;
  }
}

@media (min-width: 1801px) {
  .slider-container .slider {
    /* height: 450px; */
    width: 400px;
  }
}

.form-check-login label{
    padding-left: 12px;
}


/* New style start 05-07-2024 */


.login-form .form-control:autofill ~ .form-float-label,
.login-form .form-control:-webkit-autofill ~ .form-float-label {
    top: calc(16px * -0.7);
    color: #007bff;
}

/* New style end 05-07-2024 */