:root {
  scroll-behavior: smooth;
   scrollbar-width: thin;
  scrollbar-color: #c0c0c0 transparent;

}

body {
  font-family: "Inter", sans-serif;
  background: #fff;
  color: #444444;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
  margin-top: 60px;
  padding: 20px 30px;
  transition: all 0.3s;
  height: 100%;
}

@media (max-width: 1199px) {
  #main {
    padding: 20px;
  }
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

input[type="number"] {
    -ms-appearance: none;
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
  margin-bottom: 24px;
}
@media (max-width: 1600px) {
.pagetitle {
  margin-bottom: 8px;
}
}
.pagetitle h1 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 600;
  color: #000;
}
@media (max-width: 1600px) {
.pagetitle h1{
 font-size: 20px;
}
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
  border-radius: 4px;
  padding: 10px 0;
  animation-name: dropdown-animate;
  animation-duration: 0.2s;
  animation-fill-mode: both;
  border: 0;
  box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
  text-align: center;
  font-size: 15px;
  padding: 10px 25px;
}

.dropdown-menu .dropdown-footer a {
  color: #444444;
  text-decoration: underline;
}

.dropdown-menu .dropdown-footer a:hover {
  text-decoration: none;
}

.dropdown-menu .dropdown-divider {
  color: #a5c5fe;
  margin: 0;
}

.dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
  cursor: pointer;
}

.dropdown-menu .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #ffcdcf52;
}

.dropdown-menu .dropdown-item.selected {
  background-color: #ffcdcf52;
}

@media (min-width: 768px) {
  .dropdown-menu-arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    right: 20px;
    transform: rotate(45deg);
    border-top: 1px solid #eaedf1;
    border-left: 1px solid #eaedf1;
  }
}

@keyframes dropdown-animate {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}

.bg-primary {
  background: #d32229 !important;
}

/* Card */
.card {
  margin-bottom: 30px;
  border: none;
  border-radius: 5px;
}

.card-header,
.card-footer {
  border-color: #ebeef4;
  background-color: #fff;
  color: #798eb3;
  padding: 15px;
}

.card-title {
  padding: 20px 0 15px 0;
  font-size: 18px;
  font-weight: 500;
  color: #012970;
}
.card-body {
    padding: 0;
    border: 1px solid #e6e4e7;
    border-radius: 6px;
}

.card-title span {
  color: #899bbd;
  font-size: 14px;
  font-weight: 400;
}

.card-img-overlay {
  background-color: rgba(255, 255, 255, 0.6);
}

/* Close Button */
.btn-close {
  background-size: 40%;
}

.btn-close:focus {
  outline: 0;
  box-shadow: none;
}

/* Breadcrumbs */
.breadcrumb {
  font-size: 14px;
  color: #899bbd;
  font-weight: 600;
}

.breadcrumb a {
  color: #d32229;
  transition: 0.3s;
   font-weight: 600;

}

.breadcrumb a:hover {
  color: #51678f;
}

.breadcrumb .breadcrumb-item::before {
  color: #899bbd;
}

.breadcrumb .active {
  color: #a1a1a1;

}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.logo {
  line-height: 1;
}

.logo img {
  margin-right: 6px;
  width: 260px;
}
@media (max-width: 1199px) {
  .logo img {
    width: 186px;
  }
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 60px;
  border-bottom: 1px solid #e6e4d7;
  background-color: #fff;
  margin-left: 270px;
  /* Toggle Sidebar Button */
  /* Search Bar */
}
.header-logo {
  display: none;
}
@media (max-width: 1199px) {
  .header {
    margin-left: 0;
    padding: 20px;
  }
  .header-logo {
    display: flex;
  }
}

.search-bar {
  min-width: 274px;
  padding: 0 20px;
}

@media (max-width: 1199px) {
  .header .search-bar {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: 0px 0px 10px 0px rgba(1, 41, 112, 0.1);
    background: white;
    z-index: 9999;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
  }

  .header .search-bar-show {
    top: 60px;
    visibility: visible;
    opacity: 1;
  }
}

.search-form {
  width: 100%;
}

.search-form input {
  border: 0;
  font-size: 14px;
  color: #444444;
  border: 1px solid #d4d4d4;
  padding: 7px 38px 7px 8px;
  border-radius: 5px;
  transition: 0.3s;
  width: 100%;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

#search-input {
  padding-right: 20px; /* Space for the clear icon */
}

.clear-icon {
  position: absolute;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
  color: #898989;
  display: none; /* Initially hidden */
}

.search-box input:not(:placeholder-shown) + .clear-icon {
  display: block; /* Show when input is not empty */
}

.search-form input:focus,
.search-form input:hover {
  outline: none;
  box-shadow: 0px 0px 12px 0px #ffcdcf52;
  border: 1px solid #d32229;
}

.search-form button {
  border: 0;
  padding: 0;
  margin-left: -30px;
  background: none;
}

.search-form button i {
  color: #757575;
}

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
  list-style: none;
}

.header-nav > ul {
  margin: 0;
  padding: 0;
}

.header-nav .nav-icon {
  font-size: 22px;
  color: #000;
  margin-right: 25px;
  position: relative;
}

.header-nav .nav-profile {
  color: #000;
}

.header-nav .nav-profile img {
  max-height: 36px;
}

.header-nav .nav-profile span {
  font-size: 14px;
  font-weight: 600;
}

.header-nav .badge-number {
  position: absolute;
  inset: -2px -5px auto auto;
  font-weight: normal;
  font-size: 12px;
  padding: 3px 6px;
}

.header-nav .notifications {
  inset: 8px -15px auto auto !important;
}

.header-nav .notifications .notification-item {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .notifications .notification-item i {
  margin: 0 20px 0 10px;
  font-size: 24px;
}

.header-nav .notifications .notification-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.header-nav .notifications .notification-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .notifications .notification-item:hover {
  background-color: #ffcdcf52;
}

.header-nav .messages {
  inset: 8px -15px auto auto !important;
}

.header-nav .messages .message-item {
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .messages .message-item a {
  display: flex;
}

.header-nav .messages .message-item img {
  margin: 0 20px 0 10px;
  max-height: 40px;
}

.header-nav .messages .message-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #444444;
}

.header-nav .messages .message-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .messages .message-item:hover {
  background-color: #f6f9ff;
}

.header-nav .profile {
  min-width: 240px;
  padding-bottom: 0;
  top: 8px !important;
}

.header-nav .profile .dropdown-header h6 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
  color: #444444;
}

.header-nav .profile .dropdown-header span {
  font-size: 14px;
}

.header-nav .profile .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.header-nav .profile .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.header-nav .profile .dropdown-item:hover {
  background-color: #ffcdcf52;
  color: #d32229;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 270px;
  z-index: 996;
  transition: all 0.3s;
  padding: 20px;
  overflow-y: auto;
  background-color: #f6f5ef;
  border-right: 1px solid #e6e4d7;
}
.sidebar .sidebar-logo {
  display: flex;
  padding: 0 0 16px 14px;
}

.sidebar .sidebar-logo a img {
  width: 178px;
}

.toggle-sidebar .sidebar.show {
  left: 0;
  top: 0px;
}
.toggle-sidebar .sidebar.show .sidebar-logo {
  display: block;
}

@media (max-width: 1199px) {
  .sidebar {
    left: -300px;
  }
}

.toggle-sidebar-btn {
  font-size: 32px;
  padding-left: 10px;
  cursor: pointer;
  display: none;
}
@media (max-width: 1199px) {
  .toggle-sidebar-btn {
    display: block;
  }
}

.sidebar::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #fff;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: #aab7cf;
}

@media (min-width: 1200px) {
  #main,
  #footer {
    margin-left: 270px;
  }
}

/* @media (max-width: 1199px) {
  .toggle-sidebar .sidebar {
    left: 0;
  }
} */

@media (min-width: 1200px) {
  .toggle-sidebar .sidebar {
    left: -300px;
  }
}
.toggle-sidebar .sidebar {
  left: -300px;
}

.sidebar-nav {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-item, .sidebar-nav .nav-dropDown {
  margin-bottom: 5px;
}


.sidebar-nav .nav-heading {
  font-size: 11px;
  text-transform: uppercase;
  color: #899bbd;
  font-weight: 600;
  margin: 10px 0 5px 15px;
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: normal;
  color: #686868;
  transition: 0.3s;
  padding: 10px 15px;
  border-radius: 4px;
}

.sidebar-nav .nav-link i {
  font-size: 16px;
  margin-right: 10px;
}

.sidebar-nav .nav-link.active {
  color: #d32229;
}

.sidebar-nav .nav-link.active i {
  color: #d32229;
}

.sidebar-nav .nav-link:hover {
  color: #d32229;
}

.sidebar-nav .nav-link:hover i {
  color: #d32229;
}


.sidebar-nav .nav-content {
  padding: 5px 0 0 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-content a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #012970;
  transition: 0.3;
  padding: 10px 0 10px 40px;
  transition: 0.3s;
}

.sidebar-nav .nav-content a i {
  font-size: 6px;
  margin-right: 8px;
  line-height: 0;
  border-radius: 50%;
}

.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content a.active {
  color: #d32229;
  background-color: #f4b2b48f;
}

.sidebar-nav .nav-content a.active i {
  background-color: #d32229;
}
 
/* Navbar Dropdown */
.nav-dropDown .nav-link {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  cursor: pointer;
}

.nav-dropDown .nav-link .dropdown-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-dropDown .nav-link .dropdown-arrow {
  margin-left: auto !important;
  margin-right: 0 !important;
  transition: transform 0.2s ease;
}

.dropdown-arrow.arrow-rotate {
  transform: rotate(180deg) !important;
}

/* Global dropdown section styling */
.dropdown-section {
  display: none;
}

.dropdown-section .nav-item {
  margin-left: 20px;
}

/* End Navbar DropDown */

/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
/* Filter dropdown */
/* .dashboard {
  padding: 20px;
  background: white;
  box-shadow: 0px 0 10px rgba(1, 41, 112, 0.1);
  border-radius: 5px;
} */

.dashboard .filter .icon {
  color: #012970;
  padding-right: 20px;
  padding-bottom: 5px;
  transition: 0.3s;
  font-size: 16px;
}

.dashboard .filter .icon:hover,
.dashboard .filter .icon:focus {
  color: #d32229;
}

.dashboard .filter .dropdown-header {
  padding: 8px 15px;
}

.dashboard .filter .dropdown-header h6 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #aab7cf;
  margin-bottom: 0;
  padding: 0;
}

.dashboard .filter .dropdown-item {
  padding: 8px 15px;
}

/* Info Cards */
.dashboard .info-card {
  padding-bottom: 10px;
}

.dashboard .info-card h6 {
  font-size: 28px;
  color: #012970;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.dashboard .card-icon {
  font-size: 32px;
  line-height: 0;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  flex-grow: 0;
}

.dashboard .sales-card .card-icon {
  color: #4154f1;
  background: #f6f6fe;
}

.dashboard .revenue-card .card-icon {
  color: #2eca6a;
  background: #e0f8e9;
}

.dashboard .customers-card .card-icon {
  color: #ff771d;
  background: #ffecdf;
}

/* Activity */
.dashboard .activity {
  font-size: 14px;
}

.dashboard .activity .activity-item .activite-label {
  color: #888;
  position: relative;
  flex-shrink: 0;
  flex-grow: 0;
  min-width: 64px;
}

.dashboard .activity .activity-item .activite-label::before {
  content: "";
  position: absolute;
  right: -11px;
  width: 4px;
  top: 0;
  bottom: 0;
  background-color: #eceefe;
}

.dashboard .activity .activity-item .activity-badge {
  margin-top: 3px;
  z-index: 1;
  font-size: 11px;
  line-height: 0;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid #fff;
  flex-grow: 0;
}

.dashboard .activity .activity-item .activity-content {
  padding-left: 10px;
  padding-bottom: 20px;
}

.dashboard .activity .activity-item:first-child .activite-label::before {
  top: 5px;
}

.dashboard .activity .activity-item:last-child .activity-content {
  padding-bottom: 0;
}

/* News & Updates */
.dashboard .news .post-item + .post-item {
  margin-top: 15px;
}

.dashboard .news img {
  width: 80px;
  float: left;
  border-radius: 5px;
}

.dashboard .news h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
  margin-bottom: 5px;
}

.dashboard .news h4 a {
  color: #012970;
  transition: 0.3s;
}

.dashboard .news h4 a:hover {
  color: #4154f1;
}

.dashboard .news p {
  font-size: 14px;
  color: #777777;
  margin-left: 95px;
}

/* Recent Sales */
.dashboard .recent-sales {
  font-size: 14px;
}

.dashboard .recent-sales .table thead {
  background: #f6f6fe;
}

.dashboard .recent-sales .table thead th {
  border: 0;
}

.dashboard .recent-sales .dataTable-top {
  padding: 0 0 10px 0;
}

.dashboard .recent-sales .dataTable-bottom {
  padding: 10px 0 0 0;
}

/* Top Selling */
.dashboard .top-selling {
  font-size: 14px;
}

.dashboard .top-selling .table thead {
  background: #f6f6fe;
}

.dashboard .top-selling .table thead th {
  border: 0;
}

.dashboard .top-selling .table tbody td {
  vertical-align: middle;
}

.dashboard .top-selling img {
  border-radius: 5px;
  max-width: 60px;
}

/*--------------------------------------------------------------
# Icons list page
--------------------------------------------------------------*/
.iconslist {
  display: grid;
  max-width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  padding-top: 15px;
}

.iconslist .icon {
  background-color: #fff;
  border-radius: 0.25rem;
  text-align: center;
  color: #012970;
  padding: 15px 0;
}

.iconslist i {
  margin: 0.25rem;
  font-size: 2.5rem;
}

.iconslist .label {
  font-family: var(--bs-font-monospace);
  display: inline-block;
  width: 100%;
  overflow: hidden;
  padding: 0.25rem;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #666;
}

/*--------------------------------------------------------------
# Profie Page
--------------------------------------------------------------*/
.profile .profile-card img {
  max-width: 120px;
}

.profile .profile-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #2c384e;
  margin: 10px 0 0 0;
}

.profile .profile-card h3 {
  font-size: 18px;
}

.profile .profile-card .social-links a {
  font-size: 20px;
  display: inline-block;
  color: rgba(1, 41, 112, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}

.profile .profile-card .social-links a:hover {
  color: #012970;
}

.profile .profile-overview .row {
  margin-bottom: 20px;
  font-size: 15px;
}

.profile .profile-overview .card-title {
  color: #012970;
}

.profile .profile-overview .label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit img {
  max-width: 120px;
}

/*--------------------------------------------------------------
# F.A.Q Page
--------------------------------------------------------------*/
.faq .basic h6 {
  font-size: 18px;
  font-weight: 600;
  color: #4154f1;
}

.faq .basic p {
  color: #6980aa;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  padding: 28px 30px;
}

.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: #4154f1;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #012970;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #4154f1;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #4154f1;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #5969f3;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
  padding: 30px;
}

.error-404 h1 {
  font-size: 180px;
  font-weight: 700;
  color: #4154f1;
  margin-bottom: 0;
  line-height: 150px;
}

.error-404 h2 {
  font-size: 24px;
  font-weight: 700;
  color: #012970;
  margin-bottom: 30px;
}

.error-404 .btn {
  background: #51678f;
  color: #fff;
  padding: 8px 30px;
}

.error-404 .btn:hover {
  background: #3e4f6f;
}

@media (min-width: 992px) {
  .error-404 img {
    max-width: 50%;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  padding: 20px 0;
  font-size: 14px;
  transition: all 0.3s;
  border-top: 1px solid #cddfff;
}

.footer .copyright {
  text-align: center;
  color: #012970;
}

.footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #012970;
}

.btn-primary {
  background-color: #d32229;
  border: 1px solid #d32229;
}
.btn-primary:hover {
  background-color: #c02227;
  border-color: #c02227;
}
.btn-primary.btn-check:checked + .btn,
.btn-primary.active,
.btn-primary.show,
.btn-primary:first-child:active,
:not(.btn-check) + .btn-primary:active {
  background-color: #c02227;
  border-color: #c02227;
  box-shadow: none;
}
.btn-primary:focus-visible {
  background-color: #c02227;
  border-color: #c02227;
  box-shadow: none;
}

.btn-secondary {
  background: #fff;
  color: #d32229;
  border: 1px solid #d32229;
}
.btn-secondary:focus-visible,
.btn-secondary:hover {
  background: #d32229;
  color: #fff;

  border: 1px solid #d32229;
}
.btn-secondary:first-child:active:focus-visible {
  box-shadow: none;
}
.btn-secondary:first-child:active {
  background: #d32229;
  color: #fff;
}

.form-control {
  font-size: 14px;
  border: 1px solid #d4d4d4;
  height: 40px;

}

.form-control:focus {
  box-shadow: none;
  border: 1px solid #d32229;
}
.banner-img {
  max-width: 820px;
}
@media screen and (max-width: 768px) {
  .banner-img {
    display: none;
  }
}
.banner-img img {
  object-fit: cover;
}
.forgot-passwrd {
  color: #d32229;
}
.forgot-passwrd:hover {
  color: #c02227;
}
.form-container {
  max-width: 500px;
}

.form-container h3 {
  font-weight: 600;
  font-size: 22px;
  color: black;
}

.form-container .password-wrapper .eye-password{
    position: absolute;
    right: 15px;
    top: 36px;
}

.io-wrapper .search-bar {
  min-width: 250px;
}

.action-dropdown .dropdown-menu {
  min-width: 145px;
}
.action-dropdown .dropdown-menu .dropdown-item {
  padding: 6px 16px;
}
.table > tbody {
  vertical-align: middle;
}
.modal-header {
  border-bottom: none;
}
.modal-footer {
  border-top: none;
}

/* Steps form css */

.form-outer {
  width: 100%;
  overflow: hidden;
  max-width: 844px;
  margin: 0 auto;
}
.form-outer form {
  display: flex;
  width: calc(100% * var(--stepNumber));
}
.form-outer form .page {
  width: 100%;
  transition: margin-left 0.3s ease-in-out;
  height: calc(100vh - 320px);
  display: flex;
  flex-direction: column;
}
.form-outer form .summary-page .route-details-container {
  display: flex;
  gap: 18px;
  margin-bottom: 12px;
}
.form-outer form .summary-page .detail-text {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  line-height: 21px;
  letter-spacing: 0.1px;
  margin-bottom: 0;
  span {
    font-weight: 500;
    color: #686868;
  }
}
.form-outer form .summary-page .schedule-details {
  display: flex;
  gap: 18px;
  padding-inline: 18px;
}
.form-outer form .summary-page .summary-table-wrapper {
  border: 1px solid #e1e1e1;
  padding: 12px;
  height: calc(100% - 36px);
}
@media (max-width: 1600px) {
.form-outer form .summary-page .summary-table-wrapper {
  height: calc(100% - 34px);
  }
}
.form-outer form .summary-page .summary-table-wrapper .account-counts {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

@media (max-width: 1600px) {
  .form-outer form .route-schedule-page {
    height: calc(100vh - 262px);
  }
}

.form-outer form .page .form-wrapper {
  flex-grow: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding-inline: 16px;
}

.form-outer form .page .field {
  padding-inline:16px;
  margin-bottom: 8px;
}

.form-outer form .page .field button{
  height: 45px;
}

form .page .btns button.next {
  margin-left: 3px;
}
/* Base styles */
.progress-bar {
  display: flex;
  margin: 16px auto 25px;
  user-select: none;
  flex-direction: row;
}
.progress-bar .step {
  text-align: center;
  position: relative;
  display: flex;
  align-items: end;
}
.progress-bar .step:not(first-child) {
  margin-left: 20px;
}
.progress-bar .step p {
  font-weight: 600;
  font-size: 16px;
  color: grey;
  margin-bottom: 8px;
  padding: 0 10px;
  background-color: white;
}
.progress-bar .step .bullet {
  height: 40px;
  width: 40px;
  border: 2px solid grey;
  display: inline-block;
  border-radius: 50%;
  transition: 0.2s;
  font-weight: 500;
  font-size: 17px;
  line-height: 36px;
}
.progress-bar .step .bullet span {
  transform: translateX(-50%);
  color: grey;
}
.progress-bar .step .check {
  position: absolute;
  font-size: 26px;
  transform: translate(26%, 3%);
  display: none;
  color: #fff;
}

.progress-bar .step .check-completed{
    display: block;
    color: #fff;
}

/* Progress line styles */
.progress-bar .step .line {
  min-width: 108px;
  height: 2px;
  transform: translateY(-17px);
  background: grey;
}

.progress-bar .step.active .line {
  transform: scaleX(0);
  transform-origin: left;
  animation: animate 0.3s linear forwards;
}

/* Active state styles */
.progress-bar .step .bullet.active {
  border-color: #d32229;
  background: #fff;
}
.progress-bar .step .bullet.active span {
  color: #d32229;
}
.progress-bar .step .check.active {
  display: block;
  color: #fff;
}
.progress-bar .step p.active {
  color: #d32229;
}
.progress-bar .step .line.active {
  background: grey;
}
/* Completed state styles */
.progress-bar .step .bullet.completed {
  border-color: green;
  background: green;
}
.progress-bar .step .bullet.completed span {
  display: none;
}
.progress-bar .step p.completed {
  color: green;
}
.progress-bar .step .line.completed {
  background-color: green;
}

@keyframes animate {
  100% {
    transform: scaleX(1);
  }
}

/* Responsive styles */
@media (max-width: 991px) {
  .progress-bar .step .line {
    min-width: 38px;
  }
}

@media screen and (max-width: 660px) {
  .progress-bar .step p {
    display: none;
  }
  .progress-bar .step .bullet:before,
  .progress-bar .step .bullet:after {
    display: none;
  }
  .progress-bar .step .bullet {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.form-select {
  font-size: 14px;
  border: 1px solid #d4d4d4;
  cursor: pointer;
  min-height: 40px;
}
.form-select:hover,
.form-select:focus {
  border: 1px solid #d32229;
  box-shadow: none;
}

.hidden {
  display: none !important;
}
.datatable-wrapper {
  position: relative;
}
.datatable-wrapper .datatable-top {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.datatable-wrapper .datatable-bottom .datatable-info {
  user-select: none;
}
.datatable-wrapper .datatable-bottom .datatable-pagination {
  margin: 2px 190px 0 0;
}

.datatable-wrapper .datatable-top .datatable-search {
  display: none;
}

.datatable-top .datatable-selector {
  color: #fff;
  background-color: #d32229;
  padding: 6px 8px 6px 6px;
  border-color: #d4d4d4;
  border-radius: 5px;
}

.datatable-wrapper
  .datatable-bottom
  .datatable-pagination
  .datatable-active
  button {
  background: #d32229;
  color: #fff;
}
.datatable-pagination button {
  margin-left: 6px;
}
.datatable-pagination button:hover {
  color: #d32229;
  background-color: #ffcdcf52;
}
.datatable-wrapper .datatable-container {
  overflow-x: auto;
  max-height: calc(100vh - 230px) !important;
}
.datatable-wrapper .datatable-container .datatable-sorter::before,
.datatable-wrapper .datatable-container .datatable-sorter::after {
  display: none;
}
.avatar {
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
  background-color: #2c303a;
  border: 2px solid #fff;
  img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

.avatar-group {
  display: flex;
  align-items: center;

  .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #d32229; /* Example background color */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -10px; /* Adjust for overlap */
    transition: transform 0.3s ease;
    cursor: pointer;
    font-weight: bold;
&:hover:not(:last-of-type) {
      transform: translate(-10px);
    }
  }

  .avatar p{
    margin-top: 15px;
  }

  .hidden-avatars {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #d32229; /* Updated background color */
    color: #fff; /* Updated text color */
    transform: translate(-15px);
    cursor: pointer;
    font-weight: bold;
    border: 1px solid white;
  }
}

.collapse-content .permission-title {
    border-bottom: 1px solid #e6e4d7;
    padding: 12px 12px 0 12px;
    margin-bottom: 12px;
    background: #f6f5ef;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
.collapse-content .handheld {
  border-top: 1px solid #b2b2b2;
}
.permission-btn {
  max-width: 150px;
  width: 100%;
}
.statements {
  display: flex;
  gap: 24px;
  max-width: 540px;
  width: 100%;
  justify-content: center;
}
.emailed-statements {
  max-width: 592px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 4px;
}
.steps-card {
  padding: 20px;
  background: white;
  border-radius: 5px;
  border: 1px solid #e1e1e1;
}
@media (max-width: 1600px) {
  .route-card {
    overflow: auto;

  }
}

.datatable-wrapper.no-footer .datatable-container {
  border-bottom: none;
}

.primaryTable .primary-table-head .tableHead {
  font-size: 14px;
  color: #686868;
  font-weight: 600;
}
.primaryTable {
  border: 1px solid #e6e4d7;
}
table.primaryTable tbody tr:last-child {
  border-bottom-color: #e6e4d7;
}

table.primaryTable tbody tr:last-child td {
  border-bottom-color: #fff;
}

table.primaryTable .permission-table tbody tr:last-child td {
  border-bottom: 0px;
}

table.groupTable tbody tr:last-child td {
  border-bottom-color: #e6e4d7;
}

table.primaryTable .collapse-row {
  border-bottom: 0px solid #e6e4d7;
  padding: 2px 20px 0 20px;
}

.primaryTable > thead {
  background: #f6f5ef;
}
.datatable-table th button {
  padding: 0;
}
.primaryTable > thead tr th {
  background-color: transparent;
  font-size: 14px;
  color: #686868;
  font-weight: 600;
  height: 50px;
  padding-inline: 20px;
  vertical-align: middle;
}
.primaryTable > tbody tr {
  font-size: 14px;
}
.primaryTable > tbody tr td {
  padding: 12px 20px;
  vertical-align: middle;
}
.action-link{
  vertical-align: middle;
  font-size: 18px;
  text-decoration: none;
  color: #000;
}
.action-link:hover i{
  color: #d32229;
}

#selected-badge{
  background-color: #fff;
  border: 2px solid #d32229;
  color: #d32229;
}

.active-status {
  font-size: 14px;
  color: #11843c;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-inline: 4px;
}
.active-status .active {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #11843c;
}
.inactive-status {
  color: #ab570a;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-inline: 4px;
}
.inactive-status .inactive {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ab570a;
}
.draft-status {
  color: #484848;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-inline: 4px;
}
.draft-status .draft {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #484848;
}
.form-label {
  color: #323232;
  font-size: 14px;
}
.groupBtnWrapper {
  display: flex;
  justify-content: end;
  max-width: 774px;
  width: 100%;
  margin: 0 auto;
}
.generateReportBtn {
  font-size: 14px;
}
.invoiceTable > thead tr th {
  font-size: 14px;
}
.invoiceTable > tbody tr td {
  font-size: 14px;
}
table.invoiceTable tbody tr:last-child td {
  border-bottom-color: #e6e4d7;
}

.invoiceTable > tbody tr .invoiceTotalData {
  border-top: 1px solid;
  text-align: end;
}
.invoiceTable > thead tr .sales {
  width: 120px;
  text-align: end;
}
.invoiceTable > thead tr .refund {
  width: 120px;
  text-align: center;
}
.invoiceTable > thead tr .customerPrice {
  width: 120px;
  text-align: center;
}
.invoiceTable > thead tr .unitsold {
  width: 120px;
  text-align: end;
}
.productsTotal {
  max-width: 378px;
  width: 100%;
  padding: 12px;
}
.productsTotal p {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 12px;
  font-weight: 400;
  font-size: 14px;
}
.productsTotal p:last-child {
  border-bottom: 0;
}

.salesInfo {
  max-width: 440px;
  width: 100%;
  padding: 12px;
}
.salesInfo p {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 12px;
  font-weight: 400;
  font-size: 14px;
}
.salesInfo p:last-child {
  border-bottom: 0;
}
.detailsWrapper {
  border-bottom: 1px solid #e3e3e3;
  margin-bottom: 28px;
}

.users-model{
    max-width: 470px;
}

.switch-2fa{
    width: 32px;
    height: 18px
}

.adduser-wrapper {
  max-width: 1000px;
}
.user-permission {
  font-size: 14px;
  font-weight: 600
}

.form-check-input {
  width: 20px;
  height: 20px;
  border-color: #d4d4d4;
}
.form-check-input:checked {
  background-color: #d32229;
  border: 1px solid #d32229;
}
.form-check-input:focus {
  border: 1px solid #d32229;
  box-shadow: none;
}
.form-switch {
  display: flex;
  flex-direction: row;
  justify-content: start;
  gap: 16px;
  padding-left: 0;
}
.form-switch .form-check-input{
  margin-left: 0;
}
.form-switch .form-check-input:focus{
  background-blend-mode: luminosity;
}

table.permission-table tbody tr:nth-last-child(2) td {
  /* border-bottom-color: #fff; */
  border-bottom: 0;
}
table.primaryTable .collapse-row {
  /* border-bottom: 1px solid #e6e4d7; */
  border-bottom: 0;
  padding: 2px 20px 0 20px;
}
.hidden-border {
  border-bottom: 0;
}
.permission-heading{
  min-height: 24px;
  height: 100%;
  padding-top: 2px;
}
.hide{
display: None;
}

table.userEmailTable tbody tr:last-child td {
  border-bottom: 0;
}
table.userEmailTable tbody tr td {
  max-width: 240px;
  word-break: break-word;
}
.usersDetailsContent {
  height: 600px;
  overflow: hidden;
}
.usersDetailsContent .modal-body {
  overflow-y: auto;
}
.disabledbutton {
    pointer-events: none;
    opacity: 0.4;
}
.disabledbutton:hover{
    cursor: not-allowed !important;
}

/* primarytable css */
.primaryTable {
  white-space: nowrap;
}
.datatable-wrapper .datatable-container {
  max-height: calc(100vh - 220px);
}
.primaryTable thead tr th:last-child {
  position: sticky;
  right: 0;
  background: #f6f5ef;
}
.primaryTable tbody tr td:last-child {
  position: sticky;
  right: 0;
  z-index: 0;
}
.primaryTable tbody tr td:has(.dropdown-menu.show) {
  z-index: 1;
}

.permissionsTable thead tr th:last-child {
  position: sticky;
  right: 0;
  background: transparent;
}
.permissionsTable > tbody tr td {
  padding: 8px 8px;
}
table > caption {
  font-size: 16px;
  font-weight: 600;
  padding-left: 8px;
  background: #f6f5ef;
}

/* css for pagination */

.page-item:not(:first-child) .page-link {
  margin-left: 6px;
}

.page-link {
  border: 0;
  margin-left: 6px;
  padding: 6px 12px;
  height: 36px;
  text-align: center;
  color: #444444;
}
.page-link:focus {
  box-shadow: none;
}
.page-link:hover {
  background: #ffcdcf52;
  color: #d32229;
  border: 0;
}
.page-item:first-child .page-link {
  border-radius: 0;
}
.page-item:last-child .page-link {
  border-radius: 0;
}
.datatable-top,
.datatable-bottom {
  display: none;
}
.table-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}
.pagination-form .pagination-select {
  /* padding: 6px 8px 6px 6px; */
  border-color: #d4d4d4;
  border-radius: 5px;
  color: #fff;
  background-color: #d32229;
}
.form-check label{
    padding-top: 2px;
}
.cross-icon-wrapper{
    position: absolute;
    right: 12px;
    top: 5px;
    cursor:pointer;
}
.btn.show{
    border: 1px solid transparent;
}

/* multiselect css */
#carousel {
  display: flex;
  overflow: hidden;
  gap: 12px;
  width: 100%;
  height: calc(100% - 64px);
}
@media (max-width: 1600px) {
  #carousel {
    height: calc(100% - 43px);
  }
}

.square {
  max-width: 436px;
  margin-right: 12px;
  flex-shrink: 0;
  border-radius: 4px;
  width: 100%;
  height: 100%;
}

.title-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
@media (max-width: 1600px) {
.title-wrapper {
 margin-bottom: 8px;
}

}
.title-wrapper p {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}
.title-wrapper .buttons {
  display: flex;
  gap: 12px;
}
.title-wrapper .buttons button {
  width: 32px;
  height: 32px;
  color: #d32229;
  background-color: #fbe9ea;
  border-radius: 4px;
  border: 1px solid #d32229;
}

.day-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid #e6e4e7;
  background: #f6f5ef;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}
.dropdown-container {
  border: 1px solid #e6e4e7;
  border-top: 0;
  border-radius: 0 0 4px 4px;
  height: calc(100% - 57px);
}
.addaccount-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.addaccount-wrapper p{
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 16px;
}
.addaccount-wrapper .btn{
  height: 32px;
  padding: 3px 11px;
}
.day-title p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
  color: #000000;
}
.day-title .cta-btn {
  border: 1px solid #d32229;
  min-width: 52px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  line-height: 16px;
  color: #d32229;
  background-color: transparent;
  height: 26px;
  transition: all 0.4s;
  display: none;
}
.day-title .cta-btn:hover {
  background-color: #d32229;
  color: #fff;
}

.steps-wrapper {
  max-width: 1360px;
}
.content-wrapper {
  max-width: 1400px;
}
.multi-select-wrapper {
  width: 100%;
  height: 100%;
  overflow-x: auto;
  padding-inline: 4px;
  max-width: 1360px;
}

.selected-options {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0px 12px;
  background: #fff;
  overflow-y: auto;
  border-radius: 0 0 4px 4px;
}

.selected-options .schedule-account-wrapper:not(:last-child) {
  border-bottom: 1px solid #e6e4d7;
}
@media (max-width: 1399px) {
  .selected-options .schedule-account-wrapper:not(:last-child) {
    border-bottom: none;
  }
}

.selected-option {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 100%;
  padding: 14px;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  border-bottom: 1px solid #e6e4d7;
}

.selected-option:last-child {
  border-bottom: 0;
}
.selected-option .remove-option {
  margin-left: 8px;
  cursor: pointer;
}
.multi-select-dropdown {
  border-radius: 0 0 4px 4px;
  height: 100%;
  padding: 16px 16px 0 16px;
  display: none;
  background: white;
}
.multi-select-dropdown input[type="text"] {
  width: 100%;
  padding: 12px;
  padding-left: 36px;
  border-radius: 8px;
  border: 1px solid #d4d4d4;
}
.multi-select-dropdown input[type="text"]::placeholder{
  font-weight: 400;
  font-size: 12px;
  color: #686868;
}
.multi-select-dropdown .search-wrapper{
  position: relative;
  margin-bottom: 10px;
}
.multi-select-dropdown .search-wrapper button{
  position: absolute;
  color: #686868;
  top: 0;
  background: transparent;
  border: none;
  top: 8px;
  left: 8px;
}
.multi-select-dropdown .dropdown-options-wrapper {
  height: calc(100% - 48px);
  overflow-y: auto;
  padding-bottom: 6px;
}
.multi-select-dropdown .form-check {
  color: #212519;
  padding: 8px 28px;
  margin-bottom: 0;
  border-radius: 4px;
  cursor: pointer;
}
.multi-select-dropdown .form-check:hover {
  background-color: #f6f5ef;
}
.option-container {
  cursor: pointer;
  color: #686868;
  font-size: 12px;
  line-height: 17px;
  font-weight: 400;
  padding-left: 4px;
  width: 100%;
}
.id-number{
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 4px;
  width: 100%;
}
.multi-select-dropdown.hide {
  display: none;
}

#saveGroup:disabled {
  background-color: #6c757d; /* Gray color */
  cursor: not-allowed; /* Change cursor to not-allowed */
}

.percentage-input-container {
    position: relative;
}

.percentage-input-container .percentage-suffix {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #495057;
}

.percentage-input-container input {
    padding-right: 25px;
}

.dollar-input-container {
    position: relative;
}
.dollar-input-container .dollar-prefix {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #495057;
}
.dollar-input-container input {
    padding-left: 20px;
}
.invalid-feedback {
    display: block;
    color: #d32229;
    font-size: 14px;
    margin-top: 5px;
}
.add-account-container{
    height: 525px;
}
.add-account-wrapper{
    height: calc(100% - 104px);
}
.add-account-options{
    height: 100%
}

/* alert message*/
.alert {
  position: fixed;
  top: 70px;
  right: 28px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 450px;
  transform: translateX(calc(100% + 30px));
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.25, 1.35);
}

.alert.show {
  transform: translateX(0);
}

.alert.hide {
  transform: translateX(calc(100% + 30px));
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.25, 1.35);
}
.alert-dismissible .btn-close{
  font-size: 26px;
  top: 8px;
  right: 5px;
  padding: 8px 6px;
}
.no-options {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* css for user profile page */
.nav-tabs-bordered {
  border-bottom: 2px solid #e6e4d7;
  padding: 14px 14px 0;
}

.nav-tabs-bordered .nav-link {
  margin-bottom: -2px;
  border: none;
  color: #2c384e;
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
  color: #d32229;
}

.nav-tabs-bordered .nav-link.active {
  background-color: #fff;
  color: #d32229;
  border-bottom: 2px solid #d32229;
}
.profile-container {
  border: 1px solid #e6e4d7;
  border-radius: 4px;
}

.tab-content {
  padding: 16px;
}
.profile .profile-overview h5 {
  color: #000;
  padding: 12px 0 15px 0;
  font-size: 18px;
  font-weight: 500;
}

.profile .profile-overview .label {
  font-weight: 500;
  color: #22232499;
  font-size: 14px;
}
.profile .profile-overview .detail {
  color: #212529;
  font-size: 14px;
  word-wrap: break-word;
}

.profile .profile-edit label {
  font-weight: 500;
  color: #22232499;
  font-size: 14px;
}
.profile .profile-password label {
  font-weight: 500;
  color: #22232499;
  font-size: 14px;
}
/* weekly statements status */
.generated-status {
  border: 1px solid #067647;
  border-radius: 8px;
  height: 32px;
  padding: 0 12px;
  color: #067647;
  font-size: 12px;
  font-weight: 600;
  background-color: #ecfdf3;
  max-width: 150px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ready-to-status {
  border: 1px solid #dc6803;
  border-radius: 8px;
  height: 32px;
  padding: 0 12px;
  color: #dc6803;
  font-size: 12px;
  font-weight: 600;
  background-color: #fffaeb;
  max-width: 150px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pending-status {
  border: 1px solid #b42318;
  border-radius: 8px;
  height: 32px;
  padding: 0 12px;
  color: #b42318;
  font-size: 12px;
  font-weight: 600;
  background-color: #fef3f2;
  max-width: 150px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* add account screen css*/
.delete-btn {
  border: 1px solid #d4d4d4;
  color: #d32229;
  border-left-color: transparent;
}
.delete-btn:hover {
  background-color: #d32229;
  color: #fff;
  border-color: #d32229;
}
.input-group {
  max-width: 415px;
}
.noDataText {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 490px);
  font-size: 20px;
}

#accountFieldsContainer {
  max-height: calc(100vh - 452px);
  overflow-y: auto;
}

.add-account-route{
    height: calc(100% - 54px);
}

.square-width{
    max-width: 100%;
}

.route-add-account-container{
    height: calc(100vh - 492px);
}
@media (max-width: 1600px){
.route-add-account-container{
    height: calc(100vh - 492px);
}
}
.route-dropdown-options-wrapper{
    padding-left: 8px;
}

.schedule-model {
    max-width:800px;
}

.schedule-model .usersDetailsContent .user-modal-header{
    align-items: flex-start;
}

.schedule-model .usersDetailsContent .user-modal-header .modal-header-wrapper{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.schedule-model .usersDetailsContent .user-modal-header .modal-header-wrapper p{
    font-size:14px;
    margin-bottom:0;
}

.schedule-table thead tr th:last-child {
    position: relative;
}

.schedule-table tbody tr td:last-child {
    position: relative;
}

.schedule-table tbody tr td {
    text-wrap: wrap;
}

/* Upload file modal */

.upload-modal .upload-file {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: none;
  padding: 16px;
  min-height: 350px;
  height: 100%;
  justify-content: center;
  background: repeating-linear-gradient(
        160deg,
        #d1d1d1,
        #d1d1d1 8px,
        transparent 8px,
        transparent 13px,
        #d1d1d1 13px
      )
      0 0 / 2px 100% no-repeat,
    repeating-linear-gradient(
        250deg,
        #d1d1d1,
        #d1d1d1 8px,
        transparent 8px,
        transparent 13px,
        #d1d1d1 13px
      )
      0 0 / 100% 2px no-repeat,
    repeating-linear-gradient(
        -20deg,
        #d1d1d1,
        #d1d1d1 8px,
        transparent 8px,
        transparent 13px,
        #d1d1d1 13px
      )
      100% 0 / 2px 100% no-repeat,
    repeating-linear-gradient(
        70deg,
        #d1d1d1,
        #d1d1d1 8px,
        transparent 8px,
        transparent 13px,
        #d1d1d1 13px
      )
      0 100% / 100% 2px no-repeat;
}
.upload-modal .upload-file h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 24px;
}
.upload-modal .upload-file .upload-required-file {
  font-size: 16px;
  font-weight: 400;
  color: #323232;
  margin-bottom: 16px;
}
.upload-modal .upload-file .or-text {
  font-size: 14px;
  color: #686868;
  margin-bottom: 16px;
}

.square-width {
  max-width: 100%;
}
.form-check-input:disabled {
  border-color: #a9a9a9;
}
.schedule-account-search {
  max-width: 254px;
  position: relative;
  width: 100%;
}
.schedule-account-search input {
  font-size: 14px;
  color: #444444;
  border: 1px solid #d4d4d4;
  padding: 7px 38px 7px 8px;
  border-radius: 5px;
  transition: 0.3s;
  width: 100%;
}

.schedule-account-search input:focus,
.schedule-account-search input:hover {
  outline: none;
  box-shadow: 0px 0px 12px 0px #ffcdcf52;
  border: 1px solid #d32229;
}

.schedule-account-search button {
  border: 0;
  padding: 0;
  position: absolute;
  background: none;
  top: 6px;
  right: 14px;
}

.schedule-account-search button i {
  color: #757575;
}
.schedule-table-container {
  height: calc(100% - 58px);
}
@media (max-width: 1600px) {
.schedule-table-container {
  height: calc(100% - 42px);
  }
}
.schedule-account-table {
  border: 1px solid #e6e4d7;
  box-shadow: none;
}
.schedule-account-table > thead {
  background: #f6f5ef;
}
.schedule-account-table > thead tr th {
  background-color: transparent;
  font-size: 14px;
  color: #686868;
  font-weight: 600;
  height: 50px;
  padding-inline: 20px;
  vertical-align: middle;
  letter-spacing: 0.1px;
}
@media (max-width: 1600px) {
.schedule-account-table > thead tr th {
  height: 40px;
  }
}
.schedule-account-table > tbody tr {
  font-size: 14px;
}
.schedule-account-table > tbody tr td {
  padding: 12px 20px;
  vertical-align: middle;
}
@media (max-width: 1600px) {
.schedule-account-table >  tbody tr td {
   padding: 7px 16px;
  }
}
table.schedule-account-table tbody tr:last-child {
  position: sticky;
  bottom: 0;
}
table.schedule-account-table tbody tr:last-child td {
  position: relative;
  font-weight: 600;
  background: #f7f7f7;
}


/*Error Account Upload Modal */

.error-account-upload {
  max-width: 800px;
}
.error-account-upload .modal-content {
  height: 475px;
  overflow: hidden;
}
.error-account-upload .modal-content .modal-body {
  overflow: auto;
}
.error-field-table thead tr th:last-child {
  position: relative;
}
.error-field-table tbody tr td:last-child {
  position: relative;
}
.error-field-table tbody tr:last-child td {
  border-bottom: 0;
}
.file-details {
  padding: 6px 24px;
  background: repeating-linear-gradient(
        160deg,
        #d1d1d1,
        #d1d1d1 8px,
        transparent 8px,
        transparent 13px,
        #d1d1d1 13px
      )
      0 0 / 2px 100% no-repeat,
    repeating-linear-gradient(
        250deg,
        #d1d1d1,
        #d1d1d1 8px,
        transparent 8px,
        transparent 13px,
        #d1d1d1 13px
      )
      0 0 / 100% 2px no-repeat,
    repeating-linear-gradient(
        -20deg,
        #d1d1d1,
        #d1d1d1 8px,
        transparent 8px,
        transparent 13px,
        #d1d1d1 13px
      )
      100% 0 / 2px 100% no-repeat,
    repeating-linear-gradient(
        70deg,
        #d1d1d1,
        #d1d1d1 8px,
        transparent 8px,
        transparent 13px,
        #d1d1d1 13px
      )
      0 100% / 100% 2px no-repeat;
}

.file-details span {
    font-size: 14px;
    font-weight: 500;
}
#accounts-list{
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
}
.default-account-view{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    height: 100%;
}
@media (max-width: 1600px) {
  .default-account-view {
    min-height: 60px;
  }
}

.route-number-check{
    padding-top: 34px;
    margin-left: -12px;
}

.route-number-check i{
    color:#d32229;
    font-size: 24px;
    cursor:pointer;
}

#loadingScreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column; /* Ensure message is stacked below spinner */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Blurred Transparent Background */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Transparent black background */
  backdrop-filter: blur(5px); /* Blurring effect */
  z-index: 0; /* Ensure it is behind other elements */
}

/* Spinner */
.spinner {
  border: 4px solid rgba(255, 255, 255, 0.3); /* Light grey background */
  border-radius: 50%;
  border-top: 4px solid #d32229; /* Spinner color */
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  z-index: 1; /* Ensure the spinner is above the overlay */
}

.loading-message {
  margin-top: 20px;
  font-size: 18px;
  color: white;
  text-align: center;
  z-index: 1; /* Ensure the message is above the overlay */
}

/* Spinner Animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Error pages css */
.error-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.error-content {
  font-size: 150px;
  color: #d32229;
  font-weight: 600;
}
.error-code {
  font-size: 96px;
  color: #000000;
  font-weight: 700;
  margin-bottom: 0;
}
.error-message {
  font-size: 18px;
  font-weight: 500;
  color: #686868;
  margin-bottom: 32px;
  max-width: 360px;
}

/* Route view button css  */
.view-route-summary-data {
  display: flex;
  gap: 18px;
  margin: 12px 0;
  }
 .view-route-summary-data p {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  line-height: 21px;
  letter-spacing: 0.1px;
  margin-bottom: 0;
  span {
    font-weight: 500;
    color: #686868;
  }
}

@media (max-width: 1600px) {
.view-route-summary-data p{
font-size: 14px;
}
}

 .view-summary-wrapper {
  border: 1px solid #e1e1e1;
  padding: 12px;
  height: calc(100% - 36px);
}
@media (max-width: 1600px) {
.view-summary-wrapper {
  height: calc(100% - 34px);
  }
}
.view-summary-wrapper .account-counts {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.view-summary-wrapper .account-counts .schedule-details {
  display: flex;
  gap: 18px;
  padding-inline: 18px;
}

.view-summary-container{
height: calc(100vh -  248px);
}

/* filter customisation css  */

.filter-panel {
  display: none;
  width: 100%;
  background-color: #fff;
  border: 1px solid #e1e1e1;
  padding: 10px 12px 8px 12px;
  margin-bottom: 10px;
  position: relative;
  border-radius: 6px;
}

.filter-panel-header {
  position: absolute;
  right: 6px;
  top: 2px;
}

.close-icon {
  cursor: pointer;
}

.filter-selects {
  display: flex;
  gap: 16px;
  align-items: end;
  flex-wrap: wrap;
}
.filter-selects .select-container .form-select {
  min-height: 36px;
}
.filter-selects .select-container {
  width: 100%;
  max-width: 225px;
}

.report-select{
  max-width: 280px !important;
}

.filter-panel .reset-btn {
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 6px;
  height: 36px;
  font-weight: 500;
  flex-shrink: 0;
}
.filter-panel .apply-filter-btn {
  font-size: 14px;
  height: 36px;
  flex-shrink: 0;
  font-weight: 500;
  line-height: 16px;
}
.filter-selects .reset-btn:active {
  color: #fff;

  background-color: #d32229;
}

/* multiselct filter fields css */

.select-container .multiselect-wrapper .form-check-label.ellipsis {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.selected-fields {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 8px;
  border: 1px solid #d4d4d4;
  border-radius: 6px;
  height: 36px;
  position: relative;
  cursor: pointer;
}
.selected-fields:hover {
  border-color: #d32229;
}
.selected-fields .field-container {
  overflow-x: auto;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  display: flex;
  gap: 3px;
  max-width: 175px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.selected-fields .field-container::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: transparent;
}
.selected-fields .field-container span {
  font-size: 14px;
  color: #212529;
}
.selected-fields .selected-filter {
  display: flex;
  gap: 3px;
  border-radius: 4px;
  background-color: #ededed;
  font-size: 12px;
  font-weight: 500;
  align-items: center;
  color: #000;
  padding: 3px 6px;
}
.multiselect-options-container .form-check {
  color: #212519;
  padding: 5px 10px 5px 28px;
  margin-bottom: 0;
  border-radius: 4px;
  cursor: pointer;
}
.multiselect-options-container .form-check:hover {
  background-color: #f6f5ef;
}

.selected-fields .selected-filter .option-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  max-width: 60px;
}
.chevron-down {
  cursor: pointer;
  position: absolute;
  right: 10px;
  bottom: 7px;
}
.chevron-down i {
  font-size: 12px;
}
.chevron-down i::before {
  font-weight: 700 !important;
}
.multiselect-options-container {
  max-height: 200px;
  overflow-y: auto;
  position: absolute;
  /* top: 60%; */
  background-color: white;
  border: 1px solid #d4d4d4;
  z-index: 1000;
  padding: 10px 8px 6px 8px;
  border-radius: 6px;
}

.multiselect-options-container.hidden {
  display: none;
}
.multiselect-wrapper .multiselect-options-container .form-check-label.ellipsis {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  max-width: 200px;
}

.multiselect-wrapper{
  position:relative !important;
}

.select-container .date-range-picker {
  height: 36px;
  border: 1px solid #d4d4d4;
  border-radius: 6px;
  font-size: 14px;
  padding: 6px;
  width: 100%;
  cursor: pointer;
}
.select-container .date-range-picker:hover {
  border-color: #d32229;
}
.select-container .date-range-picker:focus-visible {
  outline: none;
}
.daterangepicker td.in-range {
  background-color: #e35a6021;
}
.daterangepicker td.active,
.daterangepicker td.active:hover {
  background-color: #d32229;
}

/* range slider */
.range_container {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
  padding-inline: 8px;
}

.sliders_control {
  position: relative;
  height: 100%;
  margin-bottom: 20px;
}

.slider-tooltip {
  position: absolute;
  top: -4rem;
  left: 0;
  width: fit-content;
  background-color: #f6f6f6;
  color: #d32229;
  font-size: 16px;
  border-radius: 4px;
  padding: 3px 8px;
  text-align: center;
  translate: -50% 0;
}

.slider-tooltip::before {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  translate: -50% 0;
  width: 0.5rem;
  height: 0.5rem;
  rotate: 45deg;
  z-index: -1;
  background-color: inherit;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 10px;
  height: 10px;
  background-color: #d32229;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #d32229;
  cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 10px;
  height: 10px;
  background-color: #d32229;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #d32229;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb:hover {
  background: #f7f7f7;
}

input[type="range"]::-webkit-slider-thumb:active {
  box-shadow: inset 0 0 3px #d32229, 0 0 9px #d32229;
  -webkit-box-shadow: inset 0 0 3px #d32229, 0 0 9px #d32229;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  width: 100%;
  position: absolute;
  background-color: #d32229;
  pointer-events: none;
}

#fromSlider {
  height: 0;
  z-index: 1;
}

.scale {
  display: flex;
  justify-content: space-between;

  position: relative;
  width: calc(100% - 10px);
  /* margin-inline: auto; */
  font-size: 12px;
}

.scale div {
  position: absolute;
  translate: -50% 0;
  color: #585858;
}

.scale div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -125%;
  width: 1px;
  height: 10px;
  background-color: #666;
}

.date-range-picker {
  width: 208px;
  height: 36px;
  border: 1px solid #d4d4d4;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 0.375rem;
  color: #212529;
  font-size: 14px;
}
.date-range-picker:hover,
.date-range-picker:focus-visible {
  border: 1px solid #d32229;
  outline: none;
}
.date-range-picker::placeholder {
  color: #212529;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  visibility: visible;
}
.flatpickr-day.hidden {
  display: inline-block !important;
  visibility: visible !important;
}
.flatpickr{
position: relative;
}



.flatpickr span{
position: absolute;
bottom: 6px;
right: 8px;
}

.clear-date-icon{
  position: absolute;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
  color: #898989;
  bottom: 4px !important;
}


/* Terms condtitons page css */
.terms-conditions_wrapper {
  padding: 16px;
}
.terms-conditions_wrapper .company_content {
  margin-bottom: 32px;
  h1 {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    color: #070708;
    margin-bottom: 4px;
  }
  p {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #303136;
    margin-bottom: 0;
  }
}
.terms-conditions_wrapper .instructions_container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.terms-conditions_wrapper .sub_heading {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #070708;
  margin-bottom: 0;
}
.terms-conditions_wrapper .instructions_container .instruction_heading {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #070708;
  margin-bottom: 4px;
}
.terms-conditions_wrapper .instructions_container ol {
  margin-bottom: 0;
  padding-left: 16px;
  li {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #303136;
    margin-bottom: 4px;
  }
}

.message-container{
  color: #d32229;
  margin-bottom: 0px;
  font-weight: 700;
  height: 100%;
  padding: 8px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* report page css */

.report-data {
  min-width: 180px;
  border-radius: 6px;
  background: white;
  padding: 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid #eeeeee;
}
.report-data h6 {
  font-weight: 400;
  font-size: 14px;
  color: black;
  text-align: left;
  line-height: 18px;
}
.report-data p {
  text-align: left;
  font-weight: 600;
  font-size: 28px;
  color: #d32229;
  line-height: 40px;
}

/* reportTable class to undo last head non-sticky */

/* .reportTable thead tr th:last-child {
  position: static;
}
.reportTable tbody tr td:last-child {
  position: static;
} */

/*  custom select css */

.form-group {
  position: relative;
}

.form-arrow {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 10;
  color: #212529;
}

.custom-dropdown {
  position: relative;
}
.form-group .dropdown {
  border: 1px solid #d4d4d4;
  border-radius: 6px;
  height: 36px;
}
.form-group .dropdown-select {
  position: relative;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
  user-select: none;
  width: 100%;
  height: 100%;
  padding: 6px 36px 6px 12px;
  border: none;
  outline: none;
  border-radius: 0.25rem;
  color: #212529;
  transition: all 0.3s ease-in-out;
}

.form-group .dropdown-menu {
  position: absolute;
  display: none;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 10;
  border-radius: 6px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  box-shadow: none;
  border: 1px solid #d4d4d4;
  padding: 10px 8px 6px 8px;
}

.form-group .dropdown-menu-inner {
  max-height: 16rem;
  overflow-y: scroll;
  overflow-x: hidden;
}

.form-group .dropdown-menu-item {
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  padding: 6px 2px 6px 6px;
  background-color: #fff;
  transition: all 0.2s ease-in-out;
  border-radius: 4px;
}

.form-group .dropdown-menu-item:hover {
  color: #212519;
  background-color: #f6f5ef;
}

.form-group .dropdown-menu-item.is-select,
.dropdown-menu-item.is-select:hover {
  color: #212519;
  background-color: #f6f5ef;
}

.form-group .dropdown-menu-search {
  display: block;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
  width: 100%;
  height: auto;
  padding: 6px 12px;
  border: 1px solid #d4d4d4;
  color: #212519;
  border-radius: 6px;
  margin-bottom: 10px;
}

.report-date-picker{
  height: 38px !important;
  max-width: 210px;
}

/* Global sticky table headers */
table thead th {
  position: sticky;
  top: 0;
  background-color: rgb(246, 245, 239) !important;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border-bottom: 1px solid #dee2e6 !important;
}

/* Ensure proper background for dark headers */
table thead th.bg-dark,
table thead th.table-dark {
  background-color: #343a40 !important;
}

table thead th.bg-primary,
table thead th.table-primary {
  background-color: #007bff !important;
}

/* Additional styling for better mobile experience */
@media (max-width: 768px) {
  table thead th {
    font-size: 0.875rem;
    padding: 0.5rem 0.25rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  }
}



/* Hover Menu for Selected Filters */
.hoverMenu{
  position:absolute;
  top: 34px;
  left: 0;
  z-index: 1000;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  background-color: white;
  border: 1px solid #d4d4d4;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 6px;
  padding: 10px 8px 6px 8px;
  display: none;
}

.hoverMenu .selected-filter{
  justify-content: space-between;
  font-size: 1rem;
}
.hoverMenu .selected-filter .option-name{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  max-width: 100%;
}

.showHoverMenu{
  display: flex;
  flex-direction: column;
  gap:6px;
}


/* Invoice Bulk Acknowledge Popup */
.bulk-confirm-btn{
  background : #d32229;
  color: white;
  border: 2px solid #d32229;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: 600;
  margin-right: 3px;
}
.bulk-cancel-btn {
  background-color: transparent;
  color: #d32229;
  border: 2px solid #d32229;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: 600;
  margin-left: 3px;
  transition: all 0.3s ease;
}

.bulk-cancel-btn:hover {
  background-color: #d32229;
  color: white;
}

/* Style to handle Over flow of error modal*/
.modal-body{
  overflow-y: auto;
}

/*Ellipsis for long text in input fields*/
.ellipsis-input{
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* Product Profile Form Input */
.profile-form-control {
  font-size: 14px;
  border: 1px solid #d4d4d4;
  height: 40px;
  transition: border-color 0.3s;
}

.profile-form-control:focus {
  box-shadow: none;
  border: 1px solid #d32229;
}

#select-product-label{
  display: flex;
  align-items: flex-end;     /* Vertically aligns content at the bottom */
  justify-content: flex-start;
  gap:10px;
}

/* Shake animation */
@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
  100% { transform: translateX(0); }
}

.profile-error {
  border-color: #d32229;
  animation: shake 0.3s;
}

/*User roles Not applicable boxes*/
.not-applicable{
  border:1px solid #ECECEC;
  border-radius:3px;
  background-color:  #ECECEC;
  color:#d3222859;
  font-weight: 800;
  text-align: center;
  line-height: 18px;
}


#exportInfo{
  font-size: clamp(0.75rem, 2vw, 0.875rem);
}
