@font-face {
  font-family: 'Eudoxus Sans', sans-serif;
  src: url('../fonts/EudoxusSans-Regular.woff2') format('woff2'),
      url('../fonts/EudoxusSans-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Eudoxus Sans', sans-serif;
  src: url('../fonts/EudoxusSans-Bold.woff2') format('woff2'),
      url('../fonts/EudoxusSans-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Eudoxus Sans', sans-serif;
  src: url('../fonts/EudoxusSans-ExtraBold.woff2') format('woff2'),
      url('../fonts/EudoxusSans-ExtraBold.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Eudoxus Sans', sans-serif;
  src: url('../fonts/EudoxusSans-ExtraLight.woff2') format('woff2'),
      url('../fonts/EudoxusSans-ExtraLight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Eudoxus Sans', sans-serif;
  src: url('../fonts/EudoxusSans-Medium.woff2') format('woff2'),
      url('../fonts/EudoxusSans-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Eudoxus Sans', sans-serif;
  src: url('../fonts/EudoxusSans-Light.woff2') format('woff2'),
      url('../fonts/EudoxusSans-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
    --font-family: 'Eudoxus Sans', sans-serif;
    --font-weight-normal: 400;
    --font-weight-bold: 700;
    --font-weight-extra-bold: 900;
    --font-weight-extra-light: 200;
    --font-weight-medium: 500;
    --font-weight-light: 300;
    --black: #000;
    --white: #fff;
    --sidebar-bg: #FFFFFF;
    --sidebar-fonts-color: #101010;
    --sidebar-active-bg: #F5F5F5;
    --border-color-dasboard: #EDEDED;
    --dashboard-fonts-primary: #101010;
    --dashboard-fonts-secondary: #002E62;
    --dashboard-top-bar-bg: #ffffff;
    --dashboard-body-bg: #F9FAFB;
    --dashboard-body-border: #EDEDED;
    --heading-title: #101010;
    --grey-placeholder: #919FB6;
    --dark-grey-bg: #66768E;
    --purple-color: #002E62;
    --primary-font-size: 16px;
    --primary-line-height: 26px;
    --secondary-font-size: 14px;
    --secondary-line-height: 20px;
    --heading-title-font-size: 28px;
    --heading-font-size: 40px;
    --heading-line-height: 56px;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  font-size: var(--primary-font-size);
  line-height: var(--primary-line-height);
  font-weight: var(--font-weight-normal);
  background-color: var(--white);
  color: var(--dashboard-fonts-primary);
}

body::-webkit-scrollbar {
  width: 14px;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 14px 14px transparent;
  border: solid 5px transparent;
}
 
body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 14px 14px #919FB6;
  border: solid 5px transparent;
}

h1, .heading-title{
  font-family: var(--font-family);
  font-size: var(--heading-font-size);
  font-weight: var(--font-weight-bold);
  line-height: var(--heading-line-height);
  color: var(--heading-title);
  margin-bottom: 10px;
}
h3, .child-heading-title{
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #606060;
  margin-bottom: 10px;
}

p{
  font-family: var(--font-family);
  font-size: var(--primary-font-size);
  line-height: var(--dashboard-fonts-primary);
  color: var(--dashboard-fonts-primary);
  margin: 0;
}

a {
  text-decoration: none;
  color: var(--dashboard-fonts-primary);
  font-family: var(--font-family);
  font-size: var(--secondary-font-size);
  line-height: var(--secondary-line-height);
  font-weight: var(--font-weight-medium);
}
a:visited, a:focus, a:active{
  color: var(--dashboard-fonts-primary);
  text-decoration: none;
}
a:hover{
  color: var(--black);
}

ul{
  padding: 0;
  margin: 0;
}
li{
  list-style-type: none;
}

img {
  display: block; 
  max-width: 100%; 
  height: auto; 
}

.required-field{
  position: relative;
}
.required-field::after{
  content: '*';
  position: absolute;
  color: red;
  font-size: var(--secondary-font-size);
  line-height: normal;
  right: -10px;
  top: 2px;
}

.btn-cta {
    background-color: var(--blue);
    border: 1px solid var(--border-color-dasboard);
    color: var(--white);
    border-radius: 8px;
    padding: 10px 16px;
    font-family: var(--font-family);
    font-size: var(--secondary-font-size);
    line-height: var(--secondary-line-height);
    font-weight: var(--font-weight-bold);
    outline: 0;
    margin-bottom: 10px;
    height: 48px;
    min-width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease-in;
}
.btn-cta:hover{
  background-color: var(--white);
  color: var(--dark-grey-bg);
  border-color: var(--dark-grey-bg);
}
.btn-cta:visited, .btn-cta:active, .btn-cta:focus{
  background-color: var(--white);
  color: var(--dashboard-fonts-primary);
}
.btn-cta-back{
  background-color: var(--grey-bg);
}
.btn-cta-back:hover{
  background-color: var(--white);
  color: var(--dark-grey-bg);
  border-color: var(--dark-grey-bg);
}
.btn-cta-save{
  background-color: var(--purple-color);
  color: var(--white);
  border-color: var(--purple-color);
}
.btn-cta-save:hover{
  background-color: var(--white);
  color: var(--purple-color);
  border-color: var(--purple-color);
}
.btn-cta-save:visited, .btn-cta-save:active, .btn-cta-save:focus{
  background-color: var(--purple-color);
  color: var(--white);
  border-color: var(--purple-color);
}

.btn-cta-cancel{
  background-color: var(--border-color-dasboard);
  color: var(--dark-grey-bg);
  border-color: var(--border-color-dasboard);
}
.btn-cta-cancel:hover{
  background-color: var(--white);
  color: var(--dark-grey-bg);
  border-color: var(--dark-grey-bg);
}
.icon-btn-div{
  padding: 14px 14px 14px 44px;
  position: relative;
  margin-left: 16px;
  background-color: var(--purple-color);
  color: var(--white);
  border-color: var(--purple-color);
  max-width: max-content;
}
.icon-btn-div::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url('../lib/images/add-icon.svg');
  background-repeat: no-repeat;
  background-position: center;
  transition: all .4s ease-in;
}
.icon-btn-div:hover::before{
  transform: translateY(-50%) rotate(180deg);
}
.icon-btn-div:hover{
  background-color: #ae69d7;
  color: var(--white);
}
.icon-btn-div:visited, .icon-btn-div:focus{
  background-color: var(--purple-color);
  color: var(--white);
}
.icon-btn-div:visited:hover, .icon-btn-div:focus:hover{
  background-color: #ae69d7;
}
.filter-btn{
  padding: 14px 14px 14px 44px;
  position: relative;
  max-width: max-content;
}
.filter-btn::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url('../lib/images/filter-icon.svg');
  background-repeat: no-repeat;
  background-position: center;
  transition: all .4s ease-in;
}
.filter-btn:hover::before{
  transform: translateY(-50%) rotateX(-180deg);
}
.add-new-div .icon-btn-div{
  margin: 0 0 10px 0;
}

input,
textarea,
select {
  background-color: var(--white);
  border: 1px solid var(--border-color-dasboard);
  color: var(--dashboard-fonts-primary);
  border-radius: 8px;
  padding: 16px 12px;
  font-family: var(--font-family);
  font-size: var(--secondary-font-size);
  line-height: var(--secondary-line-height);
  font-weight: var(--font-weight-normal);
  margin-bottom: 20px;
  outline: 0;
  width: 100%;
}

input:visited, input:focus, input:active, 
textarea:visited, textarea:focus, textarea:active, 
select:visited, select:focus, select:active {
  outline: 0;
}

input, select{
  height: 56px;
}

select{
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-image: url(../lib/images/chevron-grey-down.svg);
  background-repeat: no-repeat;
  background-position-x: calc(100% - 12px);
  background-position-y: 50%;
  background-size: 20px;
  padding-right: 40px;
}

textarea{
  height: 100px;
}

input::placeholder, textarea::placeholder{
  color: var(--dashboard-fonts-primary);
  font-size: var(--secondary-font-size);
  line-height: var(--secondary-line-height);
  font-weight: var(--font-weight-normal);
}
.form-group.form-group-filled input::placeholder{
  color: var(--grey-placeholder);
}

label{
  font-family: var(--font-family);
  color: var(--dashboard-fonts-primary);
  font-size: var(--secondary-font-size);
  line-height: var(--secondary-line-height);
  font-weight: var(--font-weight-medium);
  margin-bottom: 6px;
  display: inline-block;
}

.form-control:focus{
  box-shadow: none;
  border-color: var(--border-color-dasboard);
}

input[type=checkbox] ~ label{
  margin: 0;
  display: inline-block;
}

input[type=checkbox]{
  height: 20px;
  width: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  box-shadow: 0px 8px 25px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  border: 2px solid var(--border-color-dasboard);
  appearance: none;
  padding: 0;
  line-height: 0;
  background: none;
  position: relative;
  cursor: pointer;
  transition: all .4s ease-in-out;
}

input[type=checkbox]:checked {
  background-color: var(--purple-color);
  border-color: var(--purple-color);
  opacity: 1;
  transition: all .4s ease-in-out;
}
input[type=checkbox]::before{
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
  transition: all .4s ease-in;
}

input[type=checkbox]:checked::before{
  content: '';
  position: absolute;
  right: 50%;
  top: 50%;
  width: 5px;
  height: 10px;
  opacity: 1;
  visibility: visible;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-50%, -60%);
  z-index: 2;
  transition: all .4s ease-in-out;
}

.dashboard-detailed-section .detail-section-wrapper .breadcrumb-container.order-title{
  padding: 20px 0 10px;
  flex-wrap: wrap;
}
.dashboard-detailed-section .detail-section-wrapper .breadcrumb-container .cancel-btn .btn-cta{
  margin: 0;
}
.breadcrumb-wrapper{
  padding-right: 10px;
  margin-bottom: 10px;
  flex: 1;
}
.breadcrumb-wrapper .breadcrumb-list{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.breadcrumb-wrapper .breadcrumb-list .breadcrumb-item{
  color: var(--purple-color);
  font-family: var(--font-family);
  font-size: var(--secondary-font-size);
  line-height: var(--secondary-line-height);
  font-weight: var(--font-weight-normalsearch-input-container);
}
.breadcrumb-wrapper .breadcrumb-list .breadcrumb-item .breadcrumb-link{
  color: var(--purple-color);
  font-weight: var(--font-weight-bold);
}
.breadcrumb-wrapper .breadcrumb-list .breadcrumb-item{
  position: relative;
}
.breadcrumb-wrapper .breadcrumb-list .breadcrumb-item+.breadcrumb-item{
 padding-left: 4px;
}
.breadcrumb-wrapper .breadcrumb-list .breadcrumb-item+.breadcrumb-item::before {
  content: "";
  position: relative;
  display: inline-block;
  background-image: url('../lib/images/breadcrumb-arrow.svg');
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 24px 10px;
  width: 24px;
  height: 19px;
  left: 0;
  top: 50%;
  padding-right: 8px;
  color: var(--dashboard-fonts-primary);
}
.breadcrumb-wrapper .breadcrumb-list .breadcrumb-item.current{
  color: var(--dashboard-fonts-primary);
}
.order-dashboard{
  min-height: 100vh;
  overflow-x: hidden;
}
.order-dashboard .work-order-section{
  min-height: 100vh;
  position: relative;
}
.work-order-section .side-navbar{
  max-width: 256px;
  flex: 0 0 256px;
  background-color: var(--sidebar-bg);
  color: var(--white);
  font-size: var(--secondary-font-size);
  line-height: var(--secondary-line-height);
  font-weight: var(--font-weight-medium);
  border-right: 1px solid var(--border-color-dasboard);
  transition: max-width 0.5s ease, flex 0.5s ease;
  position: sticky;
  height: 100vh;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
}
.work-order-section .side-navbar-list-wrapper{
  padding: 0 14px;
}

.work-order-section .side-navbar .nav-top{
  padding: 20px 14px;
  margin-bottom: 40px;
  position: relative;
  border-bottom: 1px solid var(--border-color-dasboard);
  height: 87px;
}
.work-order-section .side-navbar .nav-top .nav-logo .logo-img{
  height: 40px;
}
.work-order-section .side-navbar .nav-top .nav-logo p{
  padding-left: 12px;
  color: var(--white);
  font-size: var(--secondary-font-size);
  line-height: var(--secondary-line-height);
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family);
}
.work-order-section .side-navbar .nav-top .nav-back-arrow{
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0px 1px 4px 2px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  width: 33px;
  height: 33px;
  margin-left: auto;
  position: absolute;
  right: -16px;
}
.work-order-section .side-navbar .nav-top .nav-back-arrow .menu-arrow{
  display: none;
}
.work-order-section .side-navbar .nav-top .nav-back-arrow img{
  height: 24px;
  transform: scale(1);
  transition: transform .4s ease-in-out;
  max-width: inherit;
}
.work-order-section .side-navbar .nav-top .nav-back-arrow img:hover{
  transform: scale(1.2);
}
.work-order-section .side-navbar .nav-bottom .nav-list{
  max-height: 365px;
  overflow-y: auto;
  overflow-x: hidden;
}
.work-order-section .side-navbar .nav-bottom .nav-list::-webkit-scrollbar {
  width: 14px;
}

.work-order-section .side-navbar .nav-bottom .nav-list::-webkit-scrollbar-track {
  box-shadow: inset 0 0 14px 14px transparent;
  border: solid 5px transparent;
}
 
.work-order-section .side-navbar .nav-bottom .nav-list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 14px 14px #919FB6;
  border: solid 5px transparent;
}
.work-order-section .side-navbar .nav-bottom:not(:last-child) .nav-list{
  padding-bottom: 14px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color-dasboard);
}
.work-order-section .side-navbar .nav-bottom .nav-list .nav-links{
  padding: 12px;
  margin-bottom: 6px;
  border-radius: 4px;
  transition: all .4s ease-in;
}

.work-order-section .side-navbar .nav-bottom .nav-list .nav-items.nav-items-sub-dropdown .nav-links .dropdown-arrow{
  height: 20px;
  transition: all .4s ease-in;
}
.work-order-section .side-navbar .nav-bottom .nav-list .nav-items.nav-items-sub-dropdown .nav-links.active{
  background-color: var(--sidebar-active-bg);
}
.work-order-section .side-navbar .nav-bottom .nav-list .nav-items.nav-items-sub-dropdown .nav-links.active span{
  color: var(--dashboard-fonts-secondary);
}
.work-order-section .side-navbar .nav-bottom .nav-list .nav-items.nav-items-sub-dropdown .nav-links.active .dropdown-arrow{
  transform: rotate(-180deg);
}

.work-order-section .side-navbar .nav-bottom .nav-list .nav-items.nav-items-sub-dropdown .nav-list-dropdown{
  display: none;
  overflow: auto;
}
.work-order-section .side-navbar .nav-bottom .nav-list .nav-items.nav-items-sub-dropdown .nav-list-dropdown .dropdown-list{
  margin-bottom: 6px;
  border-radius: 4px;
  transition: all .4s ease-in;
}
.work-order-section .side-navbar .nav-bottom .nav-list .nav-items.nav-items-sub-dropdown .nav-list-dropdown .dropdown-list a{
  padding: 12px 12px 12px 34px;
  border-radius: 4px;
  display: block;
}
.work-order-section .side-navbar .nav-bottom .nav-list .nav-items.nav-items-sub-dropdown .nav-list-dropdown .dropdown-list:hover{
  background-color: var(--sidebar-active-bg);
}
.work-order-section .side-navbar .nav-bottom .nav-list .nav-items.nav-items-sub-dropdown .nav-list-dropdown .dropdown-list:hover a{
  color: var(--dashboard-fonts-secondary);
}
.work-order-section .side-navbar .nav-bottom .nav-list .nav-items.nav-items-sub-dropdown .nav-list-dropdown a{
  color: var(--sidebar-fonts-color);
  font-size: var(--secondary-font-size);
  line-height: var(--secondary-line-height);
  font-weight: var(--font-weight-medium);
  transition: all .4s ease-in;
}
.work-order-section .side-navbar .nav-bottom .nav-list .nav-items:hover .nav-links{
  background-color: var(--sidebar-active-bg);
}
.work-order-section .side-navbar .nav-bottom .nav-list .nav-items:hover .nav-links span{
  color: var(--dashboard-fonts-secondary);
}
.work-order-section .side-navbar .nav-bottom .nav-list .nav-items .list-icons{
  height: 20px;
}
.work-order-section .side-navbar .nav-bottom .nav-list .nav-items .nav-links span{
  padding-left: 12px;
  color: var(--sidebar-fonts-color);
  font-size: var(--secondary-font-size);
  line-height: var(--secondary-line-height);
  font-weight: var(--font-weight-medium);
  transition: all .4s ease-in;
}

.work-order-section .dashboard-wrapper{
  max-width: calc(100% - 256px);
  flex: 0 0 calc(100% - 256px);
}
.work-order-section.sidebar-collapsed .dashboard-wrapper{
  max-width: calc(100% - 76px);
  flex: 0 0 calc(100% - 76px);
}
.work-order-section .dashboard-topbar.sticky{
  position: fixed;
  width: calc(100% - 256px);
  height: 86px;
  top: 0;
  right: 0;
  box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1);
  z-index: 3;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
  -o-backdrop-filter: blur(10px);
  -moz-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all 0.5s ease-in;
}
.work-order-section.sidebar-collapsed .dashboard-topbar.sticky{
  width: calc(100% - 76px);
}
.work-order-section.sidebar-collapsed  h3, .work-order-section.sidebar-collapsed  .child-heading-title{
  display: none;
}
.work-order-section .dashboard-topbar .topbar-heading{
  padding-left: 15px;
}
.work-order-section .dashboard-topbar .heading-title{
  font-size: 32px;
  line-height: 48px;
  font-weight: 500;
}
.dashboard-wrapper .dashboard-topbar{
  flex-wrap: wrap;
  padding: 20px 20px 10px 20px; 
  background-color: var(--white);
  transition: all 0.5s ease-in;
}
.dashboard-wrapper .profile-wrapper .tool-box{
  padding: 12px;
  border: 1px solid var(--border-color-dasboard);
  border-radius: 12px;
  margin-bottom: 10px;
  cursor: pointer;
}
.dashboard-wrapper .profile-wrapper .tool-box + .tool-box{
  margin-left: 16px;
}
.dashboard-wrapper .profile-wrapper .tool-box .tool-box-image{
  height: 20px;
}
.dashboard-wrapper .profile-wrapper .tool-box.bell-anim img{
  -webkit-animation: ring 4s .7s ease-in-out infinite;
  -webkit-transform-origin: 50% 4px;
  -moz-animation: ring 4s .7s ease-in-out infinite;
  -moz-transform-origin: 50% 4px;
  animation: ring 4s .7s ease-in-out infinite;
  transform-origin: 50% 4px;
}

.dashboard-wrapper .profile-wrapper .tool-box.rotate-image img{
  animation: rotation 2s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

@-webkit-keyframes ring {
  0% { -webkit-transform: rotateZ(0); }
  1% { -webkit-transform: rotateZ(30deg); }
  3% { -webkit-transform: rotateZ(-28deg); }
  5% { -webkit-transform: rotateZ(34deg); }
  7% { -webkit-transform: rotateZ(-32deg); }
  9% { -webkit-transform: rotateZ(30deg); }
  11% { -webkit-transform: rotateZ(-28deg); }
  13% { -webkit-transform: rotateZ(26deg); }
  15% { -webkit-transform: rotateZ(-24deg); }
  17% { -webkit-transform: rotateZ(22deg); }
  19% { -webkit-transform: rotateZ(-20deg); }
  21% { -webkit-transform: rotateZ(18deg); }
  23% { -webkit-transform: rotateZ(-16deg); }
  25% { -webkit-transform: rotateZ(14deg); }
  27% { -webkit-transform: rotateZ(-12deg); }
  29% { -webkit-transform: rotateZ(10deg); }
  31% { -webkit-transform: rotateZ(-8deg); }
  33% { -webkit-transform: rotateZ(6deg); }
  35% { -webkit-transform: rotateZ(-4deg); }
  37% { -webkit-transform: rotateZ(2deg); }
  39% { -webkit-transform: rotateZ(-1deg); }
  41% { -webkit-transform: rotateZ(1deg); }

  43% { -webkit-transform: rotateZ(0); }
  100% { -webkit-transform: rotateZ(0); }
}

@-moz-keyframes ring {
  0% { -moz-transform: rotate(0); }
  1% { -moz-transform: rotate(30deg); }
  3% { -moz-transform: rotate(-28deg); }
  5% { -moz-transform: rotate(34deg); }
  7% { -moz-transform: rotate(-32deg); }
  9% { -moz-transform: rotate(30deg); }
  11% { -moz-transform: rotate(-28deg); }
  13% { -moz-transform: rotate(26deg); }
  15% { -moz-transform: rotate(-24deg); }
  17% { -moz-transform: rotate(22deg); }
  19% { -moz-transform: rotate(-20deg); }
  21% { -moz-transform: rotate(18deg); }
  23% { -moz-transform: rotate(-16deg); }
  25% { -moz-transform: rotate(14deg); }
  27% { -moz-transform: rotate(-12deg); }
  29% { -moz-transform: rotate(10deg); }
  31% { -moz-transform: rotate(-8deg); }
  33% { -moz-transform: rotate(6deg); }
  35% { -moz-transform: rotate(-4deg); }
  37% { -moz-transform: rotate(2deg); }
  39% { -moz-transform: rotate(-1deg); }
  41% { -moz-transform: rotate(1deg); }

  43% { -moz-transform: rotate(0); }
  100% { -moz-transform: rotate(0); }
}

@keyframes ring {
  0% { transform: rotate(0); }
  1% { transform: rotate(30deg); }
  3% { transform: rotate(-28deg); }
  5% { transform: rotate(34deg); }
  7% { transform: rotate(-32deg); }
  9% { transform: rotate(30deg); }
  11% { transform: rotate(-28deg); }
  13% { transform: rotate(26deg); }
  15% { transform: rotate(-24deg); }
  17% { transform: rotate(22deg); }
  19% { transform: rotate(-20deg); }
  21% { transform: rotate(18deg); }
  23% { transform: rotate(-16deg); }
  25% { transform: rotate(14deg); }
  27% { transform: rotate(-12deg); }
  29% { transform: rotate(10deg); }
  31% { transform: rotate(-8deg); }
  33% { transform: rotate(6deg); }
  35% { transform: rotate(-4deg); }
  37% { transform: rotate(2deg); }
  39% { transform: rotate(-1deg); }
  41% { transform: rotate(1deg); }

  43% { transform: rotate(0); }
  100% { transform: rotate(0); }
}

.dashboard-wrapper .profile-wrapper .user-profile-box{
  margin: 0 0 10px 16px;
  position: relative;
  cursor: pointer;
}
.dashboard-wrapper .profile-wrapper .user-profile-box .user-avatar{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-color-dasboard);
  position: relative;
}
.dashboard-wrapper .profile-wrapper .user-profile-box .user-avatar::before{
  content: '';
  position: absolute;
  background-image: url(../lib/images/presence-badge.svg);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  right: 0;
  bottom: 0;
  width: 16px;
  height: 16px;
  z-index: 1;
}
.dashboard-wrapper .profile-wrapper .user-profile-box .user-avatar img{
  height: 40px;
  overflow: hidden;
}
.dashboard-wrapper .profile-wrapper .user-profile-box .user-info{
  padding-left: 8px;
}
.dashboard-wrapper .profile-wrapper .user-profile-box .user-info .user-name, .dashboard-wrapper .profile-wrapper .user-profile-box .user-info .user-title{
  font-size: var(--secondary-font-size);
  line-height: var(--secondary-line-height);
  font-weight: var(--font-weight-medium);
  font-family: var(--font-family);
}
.dashboard-wrapper .profile-wrapper .user-profile-box .user-info .user-name{
  color: var(--dashboard-fonts-primary);
}
.dashboard-wrapper .profile-wrapper .user-profile-box .user-info .user-title{
  color: var(--dashboard-fonts-secondary);
}
.dashboard-wrapper .profile-wrapper .user-profile-box .user-dropdown {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  margin-left: 8px;
}
.dashboard-wrapper .profile-wrapper .user-profile-box .user-dropdown img{
  height: 8px;
  transition: all .4s ease-in;
}
.dashboard-wrapper .profile-wrapper .user-profile-box .user-dropdown.active img{
  transform: rotate(-180deg);
}
.dashboard-wrapper .profile-wrapper .user-profile-box .profile-dropdown-list{
  position: absolute;
  width: 100%;
  background-color: var(--white);
  z-index: 1;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  top: 100%;
  right: 0;
  display: none ;
  border-radius: 7px;
  min-width: 180px;
  margin-top: 5px;
}
.dashboard-wrapper .profile-wrapper .user-profile-box .profile-dropdown-list .profile-dropdown-list-item a{
  padding: 15px;
  display: block;
  transition: all .4s ease-in;
  font-size: var(--secondary-font-size);
  line-height: var(--secondary-line-height);
  font-weight: var(--font-weight-medium);
  color: var(--dashboard-fonts-primary);
}
.dashboard-wrapper .profile-wrapper .user-profile-box .profile-dropdown-list .profile-dropdown-list-item + .profile-dropdown-list-item{
  border-top: 1px solid var(--border-color-dasboard);
}
.dashboard-wrapper .profile-wrapper .user-profile-box .profile-dropdown-list .profile-dropdown-list-item:hover a{
  background-color: var(--dashboard-top-bar-bg);
}
.dashboard-detailed-section{
  background-color: var(--dashboard-body-bg);
  padding: 20px;
  margin-top: 86px;
  min-height: calc(100vh - 86px);
}
.dashboard-detailed-section .detail-section-wrapper{
  border: 1px solid var(--border-color-dasboard);
  padding: 0 20px;
  border-radius: 6px;
  background-color: var(--white);
}
.dashboard-detailed-section .detail-section-wrapper .order-title{
  padding: 24px 0 0 0;
  margin-bottom: 12px;
}
.dashboard-detailed-section .detail-section-wrapper .order-title .heading-title{
  margin-bottom: 10px;
  padding-right: 12px;
  font-family: var(--font-family);
  font-size: 24px;
  font-weight: var(--font-weight-medium);
  line-height: 30px;
  color: var(--dashboard-fonts-secondary);
}
.dashboard-detailed-section .detail-section-wrapper .order-title .detailed-btn{
  margin-bottom: 10px;
}
.dashboard-detailed-section .detail-section-wrapper .order-title .detailed-btn + .detailed-btn{
  margin-left: 10px;
}
.dashboard-detailed-section .detail-section-wrapper.detail-table-view{
  border: 0;
  padding: 0;
}
.dashboard-detailed-section .detail-section-wrapper.detail-table-view .order-title{
  padding: 0 0 10px 0;
}
.dashboard-detailed-section .detail-section-wrapper.detail-table-view div.dt-container div.dt-paging{
  padding: 0;
}
.main-dasboard-heading-title .heading-title{
  padding-left: 42px;
  position: relative;
}
.main-dasboard-heading-title .heading-title::before{
  content: '';
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 30px 30px;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}


.heading-title[data-icon="role-icon.svg"]::before {
    background-image: url(../lib/images/role-icon.svg);
}
.heading-title[data-icon="box-icon.svg"]::before {
    background-image: url(../lib/images/box-icon.svg);
}
.heading-title[data-icon="store-icon.svg"]::before {
    background-image: url(../lib/images/store-icon.svg);
}
.heading-title[data-icon="product-box.svg"]::before {
    background-image: url(../lib/images/product-box.svg);
}
.heading-title[data-icon="history.svg"]::before {
    background-image: url(../lib/images/history.svg);
}
.heading-title[data-icon="api-icon.svg"]::before {
    background-image: url(../lib/images/api-icon.svg);
}
.heading-title[data-icon="trasaction.svg"]::before {
    background-image: url(../lib/images/trasaction.svg);
}
.heading-title[data-icon="sales-history.svg"]::before {
    background-image: url(../lib/images/sales-history.svg);
}
.form-wrapper{
  display: none;
}
.form{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
}
.form .form-group{
  max-width: calc(33.33% - 10px);
  flex: calc(33.33% - 10px);
}
.form .form-group.form-group-filled input{
  background-color: var(--grey-bg);
}
.form .form-group.form-group-fullwidth{
  max-width: 100%;
  flex: 0 0 100%;
}
.form .form-group.form-group-halfwidth{
  max-width: calc(50% - 10px);
  flex: 0 0 calc(50% - 10px);
}
.form .form-group .date-picker{
  background-image: url(../lib/images/calender.svg);
  background-position: calc(100% - 12px);
  background-size: 20px 20px;
  background-repeat: no-repeat;
}
.form .form-group .phone-field{
  background-image: url(../lib/images/phone.svg);
  background-position: calc(100% - 12px);
  background-size: 20px 20px;
  background-repeat: no-repeat;
}
.form .form-group .phone-field::-webkit-inner-spin-button, .form .form-group .phone-field::-webkit-outer-spin-button{
  -webkit-appearance: none; 
  margin: 0;
}
.form .form-group .phone-field:hover{
  appearance: none;
  -moz-appearance: none;
}
.form input.required.error{
  border-color: red;
}
.form .error-message{
  color: red;
  font-family: var(--font-family);
  font-size: var(--secondary-font-size);
  line-height: var(--secondary-line-height);
  font-weight: var(--font-weight-medium);
}
.accordion-content-box{
  display: none;
}

.admin-detailed-section .order-title-right .detailed-btn{
  margin: 0 0 10px 0;
}
.table-wrapper{
  display: block;
  width: 100%;
  overflow: auto;
}
.table-wrapper::-webkit-scrollbar {
  width: 5px;
  height: 6px;
}

.table-wrapper::-webkit-scrollbar-track {
  box-shadow: inset 0 0 7px #eee6e6;
  border-radius: 10px;
}
 
.table-wrapper::-webkit-scrollbar-thumb {
  background: var(--grey-placeholder); 
  border-radius: 10px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--dark-grey-bg); 
}

.table-wrapper .row:nth-child(2) > div.col-12::-webkit-scrollbar {
  width: 5px;
  height: 6px;
}

.table-wrapper .row:nth-child(2) > div.col-12::-webkit-scrollbar-track {
  box-shadow: inset 0 0 7px #eee6e6;
  border-radius: 10px;
}
 
.table-wrapper .row:nth-child(2) > div.col-12::-webkit-scrollbar-thumb {
  background: var(--grey-placeholder); 
  border-radius: 10px;
}

.table-wrapper .row:nth-child(2) > div.col-12::-webkit-scrollbar-thumb:hover {
  background: var(--dark-grey-bg); 
}
.table-wrapper .row:nth-child(2) > div.col-12{
  overflow-x: auto;
  display: block;
  width: 100%;
}

table.table.dataTable>tbody>tr.selected>*{
  box-shadow: none;
  color: var(--accordion-text-color);
}

table input[type=checkbox] ~ label{
  margin: 0;
  display: none;
}

table input[type=checkbox] {
    height: 20px;
    width: 20px;
    margin-bottom: 0;
    vertical-align: middle;
    box-shadow: 0px 8px 25px 0px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    border: 2px solid #dbd5d5;
    appearance: none;
    padding: 0;
    line-height: 0;
    background: none;
    position: relative;
    cursor: pointer;
    transition: all .4s linear;
}

table input[type=checkbox]:checked {
  background-color: var(--purple-color);
  border-color: var(--purple-color);
  opacity: 1;
  transition: all .4s linear;
}
table input[type=checkbox]::before{
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
  transition: all .4s linear;
}

table input[type=checkbox]:checked::before{
  content: '';
  position: absolute;
  right: 50%;
  top: 50%;
  width: 5px;
  height: 10px;
  opacity: 1;
  visibility: visible;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-50%, -60%);
  z-index: 2;
  transition: all .4s linear;
}

.table-wrapper .table thead tr.selected input[type=checkbox]:checked::before{
  right: 70%;
  top: 29%;
  width: auto;
  border: solid var(--white);
  border-width: 0 2px 0px 0;
  transform: rotate(90deg) translate(-50%, -50%);
}

.table-wrapper .table tr th, .table-wrapper .table tr td{
  transition: all .4s ease-in;
  white-space: nowrap;
}
.table-wrapper .table tr.selected th, .table-wrapper .table tr.selected td{
  background-color: var(--purple-bg);
  border-color: var(--white);
}

.table-wrapper .table thead th{
  vertical-align: bottom;
  border-bottom: 1px solid var(--border-color-dasboard);
  border-bottom-color: var(--border-color-dasboard);
  padding: 15px 15px 15px 0;
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  font-family: var(--font-family);
  color: var(--accordion-text-color);
  background-color: #F8FAFC;
  vertical-align: middle;
  text-align: left;
}
.table-wrapper .table thead th:first-child{
  padding-left: 15px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.table-wrapper .table thead th:last-child{
  padding-left: 0px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.table>:not(:last-child)>:last-child>* {
  border: 0;
}
.table>:not(caption)>*>*{
  padding: 15px;
  border-color: var(--border-color-dasboard);
}
.table-wrapper table thead th .sort-div{
  vertical-align: middle;
  width: 20px;
  height: 20px;
  display: inline-flex;
  cursor: pointer;
  transition: all .6s ease-in-out;
  transform: scale(1);
  will-change: transform;
  margin-left: 2px;
}
.table-wrapper table thead th .sort-div:hover{
  transform: scale(1.1);
  will-change: transform;
}
.table-wrapper table thead th .sort-div img{
  display: inline-block;
}
.table-wrapper .table tbody td{
  font-size: var(--secondary-font-size);
  line-height: var(--secondary-line-height);
  font-family: var(--font-family);
  font-weight: var(--font-weight-medium);
  color: var(--accordion-text-color);
  vertical-align: middle;
  cursor: pointer;
  padding-left: 0;
  text-align: left;
}
.table-wrapper .table tbody tr:nth-child(even){
  background-color: var(--dashboard-body-bg);
}
.table-wrapper .table tbody tr{
  transition: all .4s ease-in;
}
.table-wrapper .table tbody tr:hover{
  background-color: var(--grey-bg);
}
.table-wrapper .table tbody tr:last-child td{
  border-bottom: 0;
}
.table-wrapper .table tbody td:first-child{
  padding-left: 15px;
}
.table-wrapper .table tbody td a{
  color: var(--dashboard-fonts-primary);
  transition: all .3s ease-in;
}
.table-wrapper .table tbody td a:hover{
  color: var(--dashboard-fonts-secondary);
}
.table-wrapper .table tbody td .account-title{
  background-color: #F5F5F5;
  border: 1px solid var(--border-color-dasboard);
  padding: 5px;
  border-radius: 7px;
  margin-right: 7px;
}
.table-wrapper .table tbody td .account-title img{
  height: 28px;
}
.table-wrapper .table tbody td.action-tools a.tools-link + a.tools-link{
  margin-left: 3px;
}
.table-wrapper .table tbody td.action-tools a.tools-link img{
  height: 25px;
}

div.dt-container div.dt-paging{
  padding-bottom: 12px;
}

.search-input-container{
  margin: 0 0 10px 16px;
  position: relative;
}
.search-input-container::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url('../lib/images/search-icon.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
}
.search-input-container .search-input{
  height: 48px;
  min-width: 326px;
  padding: 10px 12px 10px 45px;
  margin-bottom: 0;
}
.search-input-container .search-input::placeholder, .search-input-container .search-input::-moz-placeholder{
  color: var(--grey-placeholder);
}
.custom-select{
  position: relative;
  margin: 0 16px 10px 0;
}
.custom-select.language-dropdown{
  margin: 0 0 10px 20px;
}
.custom-select .select-selected{
  padding: 14px 48px 14px 14px;
  border-radius: 8px;
  border: 1px solid var(--border-color-dasboard);
  position: relative;
  font-size: var(--secondary-font-size);
  line-height: var(--secondary-line-height);
  font-weight: var(--font-weight-bold);
  color: var(--dashboard-fonts-primary);
  cursor: pointer;
}

    .custom-select .select-selected::before {
        content: '';
        position: absolute;
        top: 50%;
        right: 14px;
        transform: translateY(-50%);
        width: 23px;
        height: 23px;
        background-image: url(../lib/images/chevron-down-icon.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        transition: all .4s ease-in;
    }
.custom-select .select-selected.clicked::before{
  transform: translateY(-50%) rotate(180deg);
}
.custom-select.language-dropdown .select-selected{
  background-color: var(--dashboard-fonts-secondary);
  color: var(--white);
}
.custom-select .select-items{
  position: absolute;
  min-width: 180px;
  width: 100%;
  background-color: var(--white);
  z-index: 1;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  top: 100%;
  right: 0;
  border-radius: 7px;
  display: none;
  margin-top: 10px;
}
.custom-select .select-items li{
  padding: 15px;
  display: block;
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: all .4s ease-in;
}
.custom-select .select-items li + li{
  border-top: 1px solid var(--border-color-dasboard);
}
.custom-select .select-items li.items-active{
  background-color: #f0f0f0;
}
.custom-select .select-items .pagination li:hover{
  background-color: var(--dashboard-top-bar-bg);
}
.custom-select .select-items .pagination li.items-active{
  background-color: var(--dashboard-top-bar-bg);
}
.dashboard-detailed-section .form-layout .form-field{
  margin-bottom: 20px;
}
.dashboard-detailed-section .form-layout .form-field label{
  margin: 0;
  max-width: 250px;
  flex: 0 0 250px;
  padding-right: 12px;
}
.dashboard-detailed-section .form-layout .form-field input{
  margin: 0;
}
.dashboard-detailed-section .form-layout .btn-cta{
  max-width: max-content;
  margin-left: auto;
  margin-bottom: 20px;
}
.custom-select-box {
  position: relative;
  width: 100px;
  background-color: #003366;
  border-radius: 5px;
  color: white;
  font-family: Arial, sans-serif;
  text-align: center;
  cursor: pointer;
  padding: 10px;
}

.selected-value {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.selected-value::after {
  content: '▼';
  margin-left: 5px;
  font-size: 12px;
}

.options {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  color: black;
  z-index: 1000;
}

.option {
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.option:hover {
  background-color: #f0f0f0;
}

.page-link{
  color: var(--dashboard-fonts-primary);
  border-color: var(--purple-bg);
}
.page-item.active .page-link{
  background-color: var(--purple-bg);
  color: var(--purple-color);
  border-color: var(--purple-bg);
}
.page-link:hover{
  color: var(--purple-color);
}
.page-link:focus{
  box-shadow: none;
  color: var(--dashboard-fonts-primary);
}
.page-link:focus-visible{
  outline: 0;
}
.form-select{
  cursor: pointer;
  border-color: var(--border-color-dasboard);
}
.form-select:focus{
  box-shadow: none;
  border-color: var(--border-color-dasboard);
}

.work-order-section.sidebar-collapsed .side-navbar{
  max-width: 76px;
  flex: 0 0 76px;
}
.work-order-section.sidebar-collapsed .side-navbar .nav-top{
  justify-content: center;
}
.work-order-section.sidebar-collapsed .side-navbar .nav-back-arrow .collapsed-arrow{
  display: none;
}
.work-order-section.sidebar-collapsed .side-navbar .nav-back-arrow .menu-arrow{
  display: block;
}
.work-order-section .side-navbar .nav-bottom .nav-list .nav-items .nav-links span{
  max-width: 170px; 
  transition: max-width 0.5s ease, opacity 0.5s ease;
  overflow: hidden; 
  white-space: nowrap; 
  will-change: max-width, opacity;
}
.work-order-section.sidebar-collapsed .side-navbar .nav-bottom .nav-list .nav-items .nav-links span {
  max-width: 0;
  opacity: 0;
  visibility: hidden;
  padding: 0;
}
.work-order-section .side-navbar .nav-logo{
  max-width: 170px; 
  transition: max-width 0.5s ease, opacity 0.5s ease;
  overflow: hidden; 
  white-space: nowrap; 
  will-change: max-width, opacity;
  padding-right: 10px;
}
.work-order-section.sidebar-collapsed .side-navbar .nav-logo{
  max-width: 0;
  opacity: 0;
  visibility: hidden;
}
.work-order-section.sidebar-collapsed .nav-items.nav-items-sub-dropdown .dropdown-arrow{
  display: none;
} 
.work-order-section.sidebar-collapsed .nav-bottom .nav-list .nav-links{
  padding: 12px 0;
  justify-content: center;
}
.work-order-section.sidebar-collapsed .dashboard-topbar .topbar-logo{
  max-width: 200px;
  opacity: 1;
  visibility: visible;
  height: auto;
  transition: max-width 0.5s ease, opacity 0.5s ease;
  overflow: hidden; 
  white-space: nowrap; 
  will-change: max-width, opacity;
}


@media (max-width: 1024px){
  .search-input-container{
    max-width: 100%;
    flex: 0 0 100%;
    margin-right: 0;
  }
}

@media (max-width: 991px){
  .form .form-group, .form .form-group.form-group.form-group-halfwidth{
    max-width: 100%;
    flex: 0 0 100%;
  }
  .dashboard-detailed-section .form-layout .form-field label{
    max-width: auto;
    flex: auto;
  }
  .search-input-container{
    width: 100%;
    margin-right: 0;
  }
  .search-input-container .search-input{
    min-width: auto;
    width: 100%;
  }
  .table-wrapper .dt-search .form-control{
    min-width: auto;
    width: 100%;
  }
  .search-box, .filter-container{
    max-width: 100%;
    flex: 0 0 100%;
  }
  .detail-sub-page-section .accordion-content-box .order-title-right .search-input-container input{
    min-width: auto;
  }
}
@media screen and (max-width: 767px) {
    .btn-cta {
        min-width: auto;
    }

    .work-order-section .side-navbar {
        position: absolute;
        max-width: 100%;
        flex: 0 0 100%;
        width: 80%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }

    .work-order-section.sidebar-collapsed .side-navbar {
        position: sticky;
        max-width: 76px;
        flex: 0 0 76px;
        width: auto;
    }

    .work-order-section .dashboard-wrapper {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .work-order-section.sidebar-collapsed .dashboard-wrapper {
        max-width: calc(100% - 76px);
        flex: 0 0 calc(100% - 76px);
    }

    .modal .modal-body form .form-group {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .modal .modal-body form .store-information .store-name, .modal .modal-body form .store-information .store-id {
        max-width: 100% !important;
    }

    .modal form .button-container {
        flex-wrap: wrap;
        margin-top: 30px !important;
    }

        .modal form .button-container .button-wrapper {
            flex-wrap: wrap;
        }

    .pagination {
        flex-wrap: wrap;
        gap: 10px;
    }
}


.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0;
}
.pagination ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background-color: var(--white);
}
.pagination ul li {
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  margin: 5px 3px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.pagination .dots {
  cursor: default;
  color: #909090;
}
.pagination span {
  display: block;
}

.pagination .num,
.pagination .prev,
.pagination .next{
  color: #909090;
  font-family: var(--font-family);
  font-size: var(--secondary-font-size);
  line-height: var(--secondary-line-height);
  font-weight: var(--font-weight-medium);
}
.pagination .prev,
.pagination .next {
  background-color: var(--white);
  border: 1px solid var(--border-color-dasboard);
  padding: 8px 16px;
  box-shadow: 0px 1px 2px 0px rgba(27,36,44, 0.2);
  border-radius: 7px;
}
.pagination .num {
  border-radius: 7px;
  width: 40px;
  height: 40px;
  padding: 5px;
}
.pagination ul .active,
.pagination ul .num:hover,
.pagination ul .btn:hover {
  background-color: var(--dashboard-fonts-secondary);
  color: var(--white);
}
.pagination ul .btn:hover{
  color: var(--white);
}
.pagination ul .num:hover {
  color: var(--white);
}
.pagination .btn.prev{
  padding-left: 40px;
}
.pagination .btn.next{
  padding-right: 40px;
}
.pagination .btn.prev, .pagination .btn.next{
  position: relative;
  height: 40px;
}
.pagination .btn.prev::before, .pagination .btn.next::before{
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
}
.pagination .btn.prev::before{
  background-image: url('../lib/images/arrow-right.svg');
  left: 20px;
  background-position: left center;
  transform: translate(-50%, -50%) rotate(-180deg);
}
.pagination .btn.next::before{
  background-image: url('../lib/images/arrow-right.svg');
  right: 0;
  background-position: right center;
}


body.modal-open{
  overflow: hidden;
}
.modal {
  display: none;
  position: fixed;
  z-index: 9;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(3px);
  animation-name: fadeIn;
  animation-duration: 0.4s;
}
.modal-dialog {
    margin: 0 1rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
}
@media (min-width: 576px) {
  .modal-dialog {
      max-width: 500px;
      margin: auto;
  }
  
}
@media (max-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: auto;
    }

    .otp-inputs {
        gap: 10px !important;
        margin: 30px 0 !important;
    }

        .otp-inputs input {
            width: 30px !important;
            height: 40px !important;
            font-size: 16px !important;
            padding: 5px !important;
            margin-bottom: 10px !important;
        }

    .timer-text {
        flex-wrap: wrap;
        align-items: center;
        text-align: center;
        gap: 6px;
    }

    .heading-title {
        font-size: 20px;
    }

    h6, .timer-text {
        font-size: 14px;
    }

    .btn-cta {
        font-size: 16px;
        padding: 10px;
    }

    .resend-container p {
        font-size: 13px;
    }

    .page_loader_login img {
        width: 120px;
        height: 120px;
    }

    .sign-bg {
        padding: 15px;
    }
}
.modal-content{
  background-color: var(--white);
  border: 1px solid var(--border-color-dasboard);
  border-radius: 12px;
  box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.078);
  animation-name: zoomFadeIn;
  animation-duration: 0.4s;
}

.modal .modal-header{
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--white);
  z-index: 1;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  padding: 24px;
}
.modal .modal-header .modal-title{
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 26px;
  color: var(--dashboard-fonts-primary);
  font-weight: var(--font-weight-bold);
}
.modal .modal-body{
  max-height: 480px;
  overflow: auto;
  padding: 20px 24px 0;
}
.modal-footer{
  justify-content: space-between;
  flex-wrap: wrap;
  position: sticky;
  width: 100%;
  left: 0;
  background-color: #fff;
  z-index: 1;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  padding: 24px 24px 14px 24px;
}
.modal-footer a{
  margin: 0 0 10px 0;
  max-width: calc(50% - 10px);
  flex: 0 0 calc(50% - 10px);
}
.modal.edit-product-modal .modal-body{
  max-height: 610px;
}
.modal .modal-body form .form-group{
  flex: 0 0 25%;
  padding: 0 15px;
}
.modal .modal-body form .form-group.required label{
  position: relative;
}
.modal .modal-body form .form-group.required label::before{
  content: '*';
  position: absolute;
  color: red;
  font-size: 17px;
  line-height: 1;
  right: -9px;
  top: 3px;
}
.modal .modal-body form{
  margin: 0 -15px;
}
.modal .modal-body form .store-information, .modal .modal-body form .product-name-description{
  width: 100%;
}
.modal .modal-body form .store-information .store-name{
  max-width: 70%;
  flex: 0 0 70%;
}
.modal .modal-body form .store-information .user-name {
    max-width: 75%;
    flex: 0 0 75%;
}
.modal .modal-body form .store-information .store-id{
  max-width: calc(100% - 70%);
  flex: 0 0 calc(100% - 70%);
}

.modal .modal-body form .product-name-description .product-name{
  max-width: 100%;
  flex: 0 0 100%;
}
.modal .modal-body form input:disabled, .modal .modal-body form select:disabled{
  background-color: #e8e8e8;
}
.modal form .button-container {
  width: 100%;
  margin: 0 -15px;
  margin-top: 12px;
}
.modal form .button-container .button-wrapper{
  padding: 0 15px;
}
.modal form .button-container .button-wrapper .btn-cta{
  min-width: 165px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.modal form .button-container .button-wrapper .btn-cancel{
  background: rgba(0, 46, 98, 0.102);
  color: var(--dashboard-fonts-secondary);
  margin-right: 16px;
}
.modal form .button-container .button-wrapper .btn-store{
  background-color: transparent;
  border-color: var(--dashboard-fonts-secondary);
  color: var(--dashboard-fonts-secondary);
}
.modal form .button-container .button-wrapper .btn-store:hover{
  background-color: var(--dashboard-fonts-secondary);
  color: var(--white);
}
.modal form .button-container .button-wrapper .btn-submit{
  background-color: var(--dashboard-fonts-secondary);
  color: var(--white);
}
.modal form .button-container .button-wrapper .btn-submit:hover{
  background-color: var(--white);
  color: var(--dashboard-fonts-secondary);
}

.modal .modal-body::-webkit-scrollbar {
  width: 14px;
}

.modal .modal-body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 14px 14px transparent;
  border: solid 5px transparent;
}
 
.modal .modal-body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 14px 14px #919FB6;
  border: solid 5px transparent;
}

.close {
  color: var(--grey-placeholder);
  position: absolute;
  font-size: 28px;
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family);
  right: 24px;
  top: 24px;
  transition: all .3s ease-in;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: var(--dashboard-fonts-primary);
  text-decoration: none;
  cursor: pointer;
  transition: all .3s ease-in;
}

.confirmation-modal .modal-content {
    max-width: 400px;
    width: 100%;
    height: auto;
    /*  min-height: 240px;*/
    overflow: auto;
}
.confirmation-modal .modal .modal-body{
  max-height: auto;
  padding: 0;
}

.confirmation-modal .modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 0;
  border-radius: 12px;
}
.confirmation-modal .modal-wrapper{
  text-align: center;
  padding: 24px;
}
.confirmation-modal .modal-wrapper img{
  height: 172px;
}

.confirmation-modal .icon-wrapper{
  position: relative;    
  width: 240px;
  height: 172px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 50%;
  position: relative;
  margin: 0 auto 20px;
  z-index: 0;
}
.confirmation-modal .icon-wrapper:hover{
  cursor: pointer;
}

.confirmation-modal .modal-wrapper .child-heading{
  font-size: 18px;
  line-height: 26px;
  font-family: var(--font-family);
  font-weight: 500;
  color: var(--dashboard-fonts-primary);
  margin-bottom: 8px;
  text-align: center;
}
.confirmation-modal .modal-wrapper p{
  font-size: var(--secondary-font-size);
  line-height: var(--secondary-line-height);
  font-family: var(--font-family);
  font-weight: var(--font-weight-medium);
  color: var(--dark-grey-bg);
  margin-bottom: 0;
  text-align: center;
}
.confirmation-modal .modal-wrapper .modal-btn-wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 20px;
}
.confirmation-modal .modal-wrapper .modal-btn-wrapper .modal-cta{
  max-width: calc(50% - 5px);
  flex: 0 0 calc(50% - 5px);
  margin: 10px 0 0 0;
}
.confirmation-modal .modal-wrapper .modal-btn-wrapper .modal-cta.btn-no{
  border-color: var(--dashboard-fonts-secondary);
  color: var(--dashboard-fonts-secondary);
  background-color: var(--white);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}
.confirmation-modal .modal-wrapper .modal-btn-wrapper .modal-cta.btn-no:hover{
  background-color: var(--dashboard-fonts-secondary);
  color: var(--white);
}

.confirmation-modal .modal-wrapper .modal-btn-wrapper .modal-cta.btn-yes{
  border-color: var(--dashboard-fonts-secondary);
  color: var(--white);
  background-color: var(--dashboard-fonts-secondary);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}
.confirmation-modal .modal-wrapper .modal-btn-wrapper .modal-cta.btn-yes:hover{
  color: var(--dashboard-fonts-secondary);
  background-color: var(--white);
}

@keyframes zoomFadeIn {
  from {scale: 0.7; opacity: 0;}
  to {scale: 1; opacity: 1;}
}


@keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeOut {
  from {opacity: 1;} 
  to {opacity: 0;}
}

.modal.fadeOut {
  animation-name: fadeOut;
  animation-duration: 0.4s;
}

.edit-product-modal .modal-dialog{
  max-width: 877px;
}
.edit-product-modal .modal-content{
  max-width: 100%;
}
.edit-product-modal .modal-wrapper{
  text-align: start;
}
.edit-product-modal .modal-wrapper h2{
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;
  color: var(--dashboard-fonts-primary);
}

.custom-select-container {
  position: relative;
}

.custom-select-container .custom-select {
  position: relative;
  margin: 0 0 20px 0;
}

.custom-select-container #mainInput {
  padding-right: 40px;
  cursor: pointer;
  margin: 0;
  font-family: var(--font-family);
  font-size: var(--secondary-font-size);
  line-height: var(--secondary-line-height);
  color: var(--dashboard-fonts-primary);
  font-weight: var(--font-weight-normal);
}

.custom-select-container .chevron {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
  height: 8px;
  transition: all .4s ease-in;
}

.custom-select-container .custom-select.active .chevron{
  transform: translateY(-50%) rotate(180deg);
}

.custom-select-container .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border-color-dasboard);
  border-radius: 8px;
  padding: 10px;
  margin-top: 10px;
  z-index: 1;
}

.custom-select-container #searchInput {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  font-family: var(--font-family);
  font-size: var(--secondary-font-size);
  line-height: var(--secondary-line-height);
  color: var(--dashboard-fonts-primary);
  font-weight: var(--font-weight-normal);
}

.custom-select-container #optionsList {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 220px;
  overflow-y: auto;
}

.custom-select-container #optionsList::-webkit-scrollbar {
  width: 14px;
}

.custom-select-container #optionsList::-webkit-scrollbar-track {
  box-shadow: inset 0 0 14px 14px transparent;
  border: solid 5px transparent;
}
 
.custom-select-container #optionsList::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 14px 14px #919FB6;
  border: solid 5px transparent;
}

.custom-select-container #optionsList li {
  padding: 12px 10px;
  cursor: pointer;
  border-radius: 8px;
  font-family: var(--font-family);
  font-size: var(--secondary-font-size);
  line-height: var(--secondary-line-height);
  color: var(--dashboard-fonts-primary);
  font-weight: var(--font-weight-normal);
  transition: all .3s ease-in;
}
.custom-select-container #optionsList li > ul{
  margin-top: 10px;
}
.custom-select-container #optionsList li.highlighted{
  background-color: var(--purple-color);
  color: var(--white);
}
.custom-select-container #optionsList li.highlighted:hover, .custom-select-container #optionsList li[data-value].highlighted:hover{
  background-color: var(--purple-bg);
  color: var(--dashboard-fonts-primary);
}
.custom-select-container #optionsList li[data-value]:hover {
  background-color: var(--grey-bg);
  color: var(--dashboard-fonts-primary);
}
.filter-div-wrapper .filter-inner-box-wrapper{
  min-height: 320px;
}



.pagination {
    display: flex;
    justify-content: center; 
    align-items: center;
    margin-top: 20px;
}

.pagination ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination .num {
    margin: 0 5px;
    cursor: pointer;
}

.pagination .active {
    font-weight: bold;
}

.pagination .btn {
    cursor: pointer;
}

.pagination #totalRecord {
    margin-left: 20px;
    font-weight: bold;
    display: inline-block;
    text-align: right;
    width: 150px; 
}

.nav-items.active a {
    background-color: #d3d3d3; 
    color: #000; 
    border-left: none;
}

.nav-items.hover a {
    background-color: #e0e0e0; 
}



.otp-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    margin-top: 50px;
}

    .otp-inputs input {
        width: 50px;
        height: 60px;
        text-align: center;
        font-size: 28px;
        border: 2px solid #ddd;
        border-radius: 5px;
        transition: border-color 0.3s;
    }

        .otp-inputs input:focus {
            border-color: #002E62;
            outline: none;
        }

.otp-actions {
    font-size: 14px;
}

.resend-container {
    text-align: center;
    margin-top: 20px;
}

    .resend-container p {
        font-size: 14px;
        color: #6c757d;
    }

.resend-link {
    color: #002E62;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

    .resend-link:hover {
        text-decoration: underline;
    }


.timer-text {
    font-size: 16px;
    color: #6c757d;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-inline: 10px;
    display: flex;
    justify-content: center;
}

.timer {
    color: #FF0000;
    font-weight: bold;
}


.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8); 
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; 
}

.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    border-top: 4px solid #002E62;
    border-right: 4px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    position: relative;
}

    .loader::after {
        content: '';
        box-sizing: border-box;
        position: absolute;
        left: 0;
        top: 0;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border-left: 4px solid white; 
        border-bottom: 4px solid transparent;
        animation: rotation 0.5s linear infinite reverse;
    }

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



#advancedSearchModal {
    display: none;
    position: fixed;
    z-index: 9;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
}

    #advancedSearchModal .modal-dialog {
        width: 100%;
        max-width: 500px;
        margin: auto;
        display: flex;
        flex-direction: column;
    }

    #advancedSearchModal .modal-content {
        display: flex;
        flex-direction: column;
        max-height: 80vh;
        overflow: hidden;
        background-color: var(--white);
        border-radius: 12px;
        box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.078);
        animation: zoomFadeIn 0.4s;
        height: 60vh;
    }

    #advancedSearchModal .modal-header {
        position: sticky;
        top: 0;
        background-color: var(--white);
        z-index: 2;
        padding: 20px;
        border-bottom: 1px solid #ddd;
    }

    #advancedSearchModal .modal-title {
        font-family: var(--font-family);
        font-size: 18px;
        color: var(--dashboard-fonts-primary);
        font-weight: var(--font-weight-bold);
    }

#closeAdvancedSearchBtn {
    font-size: 24px;
    cursor: pointer;
}

#advancedSearchModal .modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    max-height: 55vh;
}

#advancedSearchForm .form-group {
    width: 100%;
    margin-bottom: 15px;
}

#advancedSearchForm .form-control {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#advancedSearchForm select[multiple] {
    min-height: 100px;
}

#dateRange {
    cursor: pointer;
}

#advancedSearchModal .modal-footer {
    position: sticky;
    bottom: 0;
    background-color: #fff;
    z-index: 2;
    padding: 20px;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
}

#cancelSearchBtn,
#advancedSearchModal .btn-primary {
    min-width: 150px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    padding: 10px;
}

#cancelSearchBtn {
    background: rgba(0, 46, 98, 0.102);
    color: var(--dashboard-fonts-secondary);
}

    #cancelSearchBtn:hover {
        background-color: #bbb;
    }

#advancedSearchModal .btn-primary {
    background-color: var(--dashboard-fonts-secondary);
    color: var(--white);
    border: 1px solid var(--dashboard-fonts-secondary);
}

    #advancedSearchModal .btn-primary:hover {
        background-color: var(--white);
        color: var(--dashboard-fonts-secondary);
    }

#advancedSearchModal .modal-body::-webkit-scrollbar {
    width: 8px;
}

#advancedSearchModal .modal-body::-webkit-scrollbar-thumb {
    background-color: #919FB6;
    border-radius: 5px;
}

#advancedSearchModal .modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#advancedSearchForm select[multiple] {
    border: 1px solid var(--border-color-dasboard);
    border-radius: 8px;
    background-color: var(--white);
    outline: none;
    cursor: pointer;
}

    #advancedSearchForm select[multiple] option {
        padding: 8px;
        font-size: 14px;
        color: var(--dashboard-fonts-primary);
        background-color: var(--white);
        border-bottom: 1px solid #ddd;
    }

        #advancedSearchForm select[multiple] option:hover {
            background-color: rgba(0, 46, 98, 0.1);
        }

        #advancedSearchForm select[multiple] option:checked {
            background-color: var(--dashboard-fonts-secondary);
            color: var(--white);
        }

    
    #advancedSearchForm select[multiple]::-webkit-scrollbar {
        width: 8px;
    }

    #advancedSearchForm select[multiple]::-webkit-scrollbar-thumb {
        background-color: #919FB6;
        border-radius: 5px;
    }

    #advancedSearchForm select[multiple]::-webkit-scrollbar-track {
        background: #f1f1f1;
    }


.choices__inner {
    display: flex !important;
    vertical-align: top !important;
    width: 100% !important;
    background-color: #f9f9f9 !important;
    padding: 7.5px 7.5px 3.75px !important;
    border: 1px solid #ddd !important;
    border-radius: 2.5px !important;
    font-size: 14px !important;
    min-height: 44px !important;
    overflow: hidden !important;
    height: 55px !important;
}

.button-container-custom {
    width: 100%;
    margin: auto;
    margin-top: 12px;
    padding: 0 15px;
}

.choices__list--dropdown .choices__list, .choices__list[aria-expanded] .choices__list {
    position: relative !important;
    max-height: 200px !important;
    overflow: auto !important;
    -webkit-overflow-scrolling: touch !important;
    will-change: scroll-position !important;
}

div#ApplyLabel {
    flex: 0 0 75%;
    max-width: 75%;
}


.choices__inner {
    max-height: 150px !important; 
    overflow-y: auto !important; 
    overflow-x: hidden !important; 
    padding-right: 10px !important; 
    border: 1px solid #ced4da !important;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.1) !important; 
}


.form .form-newgroup {
    max-width: none !important;
}

.modal .modal-body form .form-newgroup {
    flex: none !important;
    padding: 0 15px !important;
}

.profit-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
/*    background: linear-gradient(135deg, #99abc0, #ffffff);*/
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0px 0px 11px 2px rgb(0 0 0 / 15%);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .profit-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    }

.profit-label {
    font-size: 1rem;
    font-weight: bold;
    color: #555;
}

.profit-value {
    font-size: 1rem;
    font-weight: bold;
    color: #198754; 
}

@media (max-width: 576px) {
    .profit-box {
        padding: 20px 15px;
    }
    #qrScannerModal {
        background-color: rgb(0 0 0 / 76%);
    }
    #qrScannerModal .modal-content {
        max-width: 400px;
        width: 100%;
        height: 400px;
    }
    #qrScannerModal .icon-wrapper {
        width: 100%;
        height:80%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 5px;
        border-radius: 50%;
        position: relative;
        margin: 0 auto 20px;
        z-index: 0;
    }
        #qrScannerModal .modal-wrapper {
            height: 100%;
        }
    #qrScannerModal .close {
        right: 9px;
        top: 0px;
    }
        #qrScannerModal #scanner {
           height: 100%;
        }
    #qrScannerModal video#scanner-video {
        border-radius: 12px;
            width: 100%;
    height: 100% !important;
    object-fit: cover;
    }
}


/* Optional: match search input styling */
.camera-btn {
    margin: 0 0 10px 16px;
    background-color: white;
    border-color: #ced4da;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    line-height: 2.1 !important;
}

    .camera-btn i {
        color: #6c757d; /* icon color */
        font-size: 1.1rem;
    }

    .camera-btn:hover {
        background-color: #f8f9fa;
    }




#scanner {
    position: relative;
    overflow: hidden;
}

    #scanner video {
        display: block;
        width: 100%;
        height: auto;
    }

.scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, rgba(255,0,0,0.5), transparent);
    animation: scan-animation 2.5s linear infinite;
}

@keyframes scan-animation {
    0% {
        top: 0;
    }

    50% {
        top: calc(100% - 3px);
    }

    100% {
        top: 0;
    }
}