.login-container {
  display: flex;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
}

/* Left Panel - Login Form */
.login-left-panel {
  flex: 1;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  box-sizing: border-box;
  height: 100vh;
  overflow: hidden;
}

.login-content {
  width: 100%;
  max-width: 450px;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.login-content::-webkit-scrollbar {
  width: 6px;
}

.login-content::-webkit-scrollbar-track {
  background: transparent;
}

.login-content::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.login-content::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* Header Section */
.login-header {
  text-align: center;
  margin-bottom: 28px;
}

.login-logo-image {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
  margin: 0 auto 14px;
}

.login-subtitle {
  font-size: 16px;
  color: #666;
  margin: 0;
  font-weight: 400;
}

/* Login Form Section */
.login-form-section {
  width: 100%;
}

.login-title {
  font-size: 26px;
  font-weight: 600;
  color: #333;
  margin: 0 0 28px 0;
}

.login-form {
  width: 100%;
}

.input-wrapper {
  position: relative;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 16px;
  z-index: 1;
  pointer-events: none;
}

.login-input {
  width: 100%;
  padding: 14px 48px 14px 48px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #fff;
  box-sizing: border-box;
}

/* Password input without left icon */
.input-wrapper.password-input-only .login-input {
  padding: 16px 48px 16px 16px;
}

.password-toggle-btn {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: #666;
  transition: color 0.3s ease;
}

.password-toggle-btn:hover {
  color: #1973b2;
}

.password-toggle-btn svg {
  width: 20px;
  height: 20px;
}

.login-input:focus {
  outline: none;
  border-color: #1973b2;
  box-shadow: 0 0 0 3px rgba(25, 115, 178, 0.1);
}

.login-input::placeholder {
  color: #999;
}

.forget-password-wrapper {
  text-align: right;
  margin-bottom: 16px;
  margin-top: -8px;
}

.forget-password-link {
  color: #1973b2;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.forget-password-link:hover {
  color: #1565a0;
  text-decoration: underline;
}

.login-next-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #1973b2 0%, #1565a0 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 6px;
  box-shadow: 0 4px 12px rgba(25, 115, 178, 0.3);
}

.login-next-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(25, 115, 178, 0.4);
}

.login-next-btn:active {
  transform: translateY(0);
}

.login-divider {
  display: flex;
  align-items: center;
  margin: 18px 0;
  gap: 16px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

.divider-text {
  color: #999;
  font-size: 14px;
  font-weight: 500;
}

.social-login {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.google-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  background: #4285F4;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.google-btn:hover {
  background: #357ae8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.twitter-btn {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  flex-shrink: 0;
}

.twitter-btn:hover {
  background: #333333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.twitter-btn svg {
  width: 20px;
  height: 20px;
}

.register-link-wrapper {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 6px;
  flex-shrink: 0;
}

.register-text {
  color: #666;
  font-size: 14px;
  margin: 0;
}

.register-link {
  color: #1973b2;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.register-link:hover {
  color: #1565a0;
  text-decoration: underline;
}

.login-footer {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  z-index: 10;
  padding: 0 20px;
  box-sizing: border-box;
}

.login-footer-text {
  text-align: center;
  color: #999;
  font-size: 14px;
  margin: 0;
  transition: color 0.3s ease;
}

/* Password rules list (used in PasswordUpdate) */
.password-rules {
  list-style: none;
  margin: 6px 0 12px;
  padding: 0 0 0 4px;
  font-size: 12px;
  animation: slideDownFadeIn 0.3s ease-out;
  overflow: hidden;
}

@keyframes slideDownFadeIn {
  from {
    opacity: 0;
    max-height: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  to {
    opacity: 1;
    max-height: 200px;
    margin-top: 8px;
    margin-bottom: 16px;
  }
}

.password-rule-item {
  display: flex;
  align-items: center;
  margin-bottom: 3px;
  color: #777;
  animation: fadeInItem 0.3s ease-out;
  animation-fill-mode: both;
}

.password-rule-item:nth-child(1) {
  animation-delay: 0.05s;
}

.password-rule-item:nth-child(2) {
  animation-delay: 0.1s;
}

.password-rule-item:nth-child(3) {
  animation-delay: 0.15s;
}

.password-rule-item:nth-child(4) {
  animation-delay: 0.2s;
}

.password-rule-item:nth-child(5) {
  animation-delay: 0.25s;
}

@keyframes fadeInItem {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.password-rule-item .password-rule-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  margin-right: 6px;
  font-size: 11px;
  transition: transform 0.2s ease;
}

.password-rule-item.passed .password-rule-icon {
  animation: checkmarkPop 0.3s ease-out;
}

@keyframes checkmarkPop {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.password-rule-item.passed {
  color: #0a8a1f;
  transition: color 0.3s ease;
}

.password-rule-item.passed .password-rule-icon {
  color: #0a8a1f;
}

.footer-link {
  color: #1973b2;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #1565a0;
  text-decoration: underline;
}

/* Right Panel - Image (Desktop) */
.login-right-panel {
  flex: 1;
  background: transparent;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  height: 100vh;
  width: 100%;
}

.desktop-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.login-right-panel .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.login-right-panel .login-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0;
  padding: 0;
}

/* Mobile Image Section */
.mobile-image {
  display: none;
  width: 100%;
  background: transparent;
  position: relative;
  overflow: hidden;
}

/* Responsive Design */
@media (max-width: 1366px) and (max-height: 768px) {
  .login-container {
    height: 100vh;
    overflow: hidden;
  }

  .login-left-panel {
    padding: 20px 30px;
    align-items: flex-start;
  }

  .login-content {
    max-width: 400px;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .login-header {
    margin-bottom: 20px;
  }

  .login-logo-image {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
  }

  .login-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .input-wrapper {
    margin-bottom: 14px;
  }

  .login-input {
    padding: 12px 12px 12px 42px;
    font-size: 14px;
  }

  .forget-password-wrapper {
    margin-bottom: 14px;
    margin-top: -6px;
  }

  .forget-password-link {
    font-size: 13px;
  }

  .login-next-btn {
    padding: 12px;
    font-size: 15px;
  }

  .login-divider {
    margin: 16px 0;
  }

  .social-login {
    margin-bottom: 14px;
  }

  .google-btn {
    padding: 12px 16px;
    font-size: 14px;
  }

  .register-link-wrapper {
    margin-top: 12px;
    margin-bottom: 4px;
  }

  .register-text {
    font-size: 13px;
  }

  .login-footer {
    bottom: 12px;
  }

  .login-footer-text {
    font-size: 12px;
  }

  /* Fix image to fill entire right panel */
  .login-right-panel {
    height: 100vh;
    overflow: hidden;
  }

  .login-right-panel .image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
  }

  .login-right-panel .login-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 968px) {
  .login-container {
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
  }

  /* Hide desktop image on mobile */
  .desktop-image {
    display: none;
  }

  /* Show mobile image on mobile */
  .mobile-image {
    display: block;
    width: 100%;
    position: relative;
    flex-shrink: 0;
  }

  .mobile-image .image-wrapper {
    width: 100%;
    position: relative;
    padding-top: 2%;
    overflow: hidden;
  }

  .mobile-image .login-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .login-left-panel {
    padding: 10px 10px 20px;
    width: 100%;
    height: auto;
    flex: 1;
    overflow: hidden;
    min-height: 0;
  }

  .login-content {
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
  }

  .login-form-section {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .login-header {
    margin-bottom: 10px;
  }

  .login-logo-image {
    width: 55px;
    height: 55px;
  }

  .login-subtitle {
    font-size: 14px;
  }

  .login-title {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .input-wrapper {
    margin-bottom: 12px;
  }

  .login-input {
    padding: 14px 14px 14px 44px;
    font-size: 15px;
  }

  .forget-password-wrapper {
    margin-bottom: 12px;
    margin-top: -6px;
  }

  .forget-password-link {
    font-size: 13px;
  }

  .login-next-btn {
    padding: 12px;
    font-size: 16px;
  }

  .login-divider {
    margin: 14px 0;
  }

  .social-login {
    flex-direction: row;
    gap: 10px;
    margin-bottom: 12px;
  }

  .google-btn {
    padding: 12px 16px;
    font-size: 14px;
    gap: 8px;
  }

  .google-btn svg {
    width: 18px;
    height: 18px;
  }

  .twitter-btn {
    width: 50px;
    height: 50px;
  }

  .twitter-btn svg {
    width: 18px;
    height: 18px;
  }

  .register-link-wrapper {
    margin-top: 12px;
    margin-bottom: 2px;
  }

  .register-text {
    font-size: 13px;
  }

  .login-footer {
    bottom: 10px;
  }

  .login-footer-text {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .login-left-panel {
    padding: 10px 10px 90px;
  }

  .login-content {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    overflow-x: hidden;
  }

  .login-header {
    margin-bottom: 10px;
  }

  .login-logo-image {
    width: 48px;
    height: 48px;
  }

  .login-subtitle {
    font-size: 13px;
  }

  .login-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .input-wrapper {
    margin-bottom: 10px;
  }

  .login-input {
    padding: 10px 10px 10px 36px;
    font-size: 14px;
    border-radius: 10px;
  }

  .forget-password-wrapper {
    margin-bottom: 10px;
    margin-top: -4px;
  }

  .forget-password-link {
    font-size: 12px;
  }

  .input-icon {
    left: 12px;
    width: 18px;
    height: 18px;
  }

  .login-next-btn {
    padding: 10px;
    font-size: 14px;
    border-radius: 10px;
  }

  .login-divider {
    margin: 12px 0;
    gap: 8px;
  }

  .divider-text {
    font-size: 12px;
  }

  .social-login {
    gap: 8px;
    margin-bottom: 10px;
  }

  .google-btn {
    padding: 11px 14px;
    font-size: 13px;
    border-radius: 10px;
    gap: 6px;
  }

  .google-btn svg {
    width: 16px;
    height: 16px;
  }

  .twitter-btn {
    width: 46px;
    height: 46px;
    border-radius: 10px;
  }

  .twitter-btn svg {
    width: 16px;
    height: 16px;
  }

  .register-link-wrapper {
    margin-top: 10px;
    margin-bottom: 2px;
  }

  .register-text {
    font-size: 12px;
  }

  .login-footer {
    bottom: 8px;
  }

  .login-footer-text {
    font-size: 11px;
  }

  .mobile-image .image-wrapper {
    padding-top: 100%;
  }
}
  
:root {
    --white: #ffffff;
     --black: #000000;
     --primary: #012663;
     --lightprimary: #043d9e;
     --blue:#1199B2;
     --lightblue:#59B8C9;
     --cream: #D9BD88;
     --cream1:#b89a64;
     --grey:#ede9e9;
     --grey1: #f4f4f4;
     --grey2: #bbb6b6;
     --orange:#FFA22D;
     --green:#0aa34a;
     --yellow:#ffb21d;
 
     font-size: 14px;
 
     --f_sz11:0.786rem; 
     --f_sz12:0.86rem; 
     --f_sz13:0.929rem;
     --f_sz14:1rem;
     --f_sz15:1.071rem; 
     --f_sz16:1.143rem; 
     --f_sz17:1.214rem;
     --f_sz18:1.286rem; 
     --f_sz19:1.357rem; 
     --f_sz20:1.429rem;
     --f_sz21:1.5rem;
     --f_sz22:1.571rem;
     --f_sz24:1.714rem; 
     --f_sz26:1.857rem; 
     --f_sz28:2rem; 
     --f_sz30:2.142rem;
 
 }
 
 
 .accent-custom { font-family: 'Poppins', sans-serif; font-weight: 400; font-size: 14px; color: #000000; }
 
 
 .f_sz11 { font-size:0.786rem; }
 .f_sz12 { font-size:0.86rem; }
 .f_sz13 { font-size:0.929rem !important; }
 .f_sz14 { font-size:1rem !important; }
 .f_sz15 { font-size:1.071rem; }
 .f_sz16 { font-size:1.143rem; }
 .f_sz17 { font-size:1.214rem; }
 .f_sz18 { font-size:1.286rem !important; }
 .f_sz19 { font-size:1.357rem; }
 .f_sz20 { font-size:1.429rem !important; }
 .f_sz21 { font-size:1.5rem!important; }
 .f_sz22 { font-size:1.571rem; }
 .f_sz24 { font-size:1.714rem; }
 .f_sz26 { font-size:1.857rem; }
 .f_sz28 { font-size:2rem; }
 .f_sz30 { font-size:2.142rem; }
 
 .f_primary { color: var(--primary); }
 .f_lgtprimary { color: var(--lightprimary); }
 .f_black { color: var(--black); }
 .f_white { color: var(--white); }
 .f_red { color: var(--red); }
 .f_green { color: var(--green); }
 .f_yellow { color: var(--yellow); }
 .f_orange { color: var(--orange); }
 .f_cream { color: var(--cream); }
 .f_cream1 { color: var(--cream1); }
 .f_grey1 { color: var(--grey1); }
 .f_grey2 { color: var(--grey2); }
 .f_blue { color: var(--blue); }
 
 .border_radius4 { border-radius: 4px; -moz-border-radius: 4px; -webkit-border-radius: 4px; }
 
 
 
 .bg_primary { background-color: var(--primary); }
 .bg_lightprimary { background-color: var(--lightprimary); }
 .bg_cream { background-color: var(--cream); }
 
 .flex_flow_rowwrap { flex-flow: row wrap; }
 .align_items_cntr { align-items: center; }
 .crsr_pntr { cursor: pointer; }
 
 
 .fwt_400 { font-weight: 400; }
 .fwt_500 { font-weight: 500; }
 .fwt_600 { font-weight: 600; }
 .fwt_800 { font-weight: 800; }
 
 .accent-custom  .badge-warning {
     color:var(--white);
     background-color: #ffc107;
 }
 
 .accent-custom .login-box.login_div { max-width: 515px; width: 96%; }
 
 
 /* .accent-custom.login-page .card-primary.card-outline { border-top: 8px solid #0070BC; } */
 
 .accent-custom.login-page .card-primary.card-outline .card-header { /*border-bottom:3px solid #8DC73D;*/ padding: 1.50rem 1.25rem; background-color: var(--white); border-radius: .25rem .25rem 0 0; -moz-border-radius: .25rem .25rem 0 0; -webkit-border-radius: .25rem .25rem 0 0; }
 
 .accent-custom .btn { border-radius: 35px; -moz-border-radius: 35px; -webkit-border-radius: 35px; padding: .375rem 1.75rem; }
 
 .accent-custom .btn-primary { color:var(--white) !important;  background-color:var(--black); border-color: var(--black); }
 .accent-custom .btn-primary:hover, .accent-custom .btn-primary:focus, .accent-custom .btn-primary.focus { color:var(--white) !important; background-color: var(--primary); border-color: var(--primary); }
 .accent-custom .btn-primary:not(:disabled):not(.disabled).active, 
 .accent-custom .btn-primary:not(:disabled):not(.disabled):active,
 .accent-custom .show>.btn-primary.dropdown-toggle { background-color: var(--black); border-color: var(--black); }
 
 
 .accent-custom .btn-cream, .accent-custom .btn-cream:hover, .accent-custom .btn-cream:focus, .accent-custom .btn-cream.focus, .accent-custom .btn-cream.active, .accent-custom .btn-cream:active { background-color: var(--cream); border-color: var(--cream); color: var(--white);  }
 
 
 .accent-custom .btn-blue { color:var(--white) !important;  background-color:var(--blue); border-color: var(--blue); }
 .accent-custom .btn-blue:hover, .accent-custom .btn-blue:focus, .accent-custom .btn-blue.focus { color:var(--white) !important; background-color: var(--lightblue); border-color: var(--lightblue); }
 .accent-custom .btn-blue:not(:disabled):not(.disabled).active, 
 .accent-custom .btn-blue:not(:disabled):not(.disabled):active,
 .accent-custom .show>.btn-blue.dropdown-toggle { background-color: var(--blue); border-color: var(--blue); }
 
 
 
 .accent-custom .btn-danger:hover, .accent-custom .btn-danger:focus { color:var(--white); }
 
 .txt_lft { text-align: left; }
 .txt_rgt { text-align: right; }
 
 .txtarea_hgt { height: 150px !important; resize: none; }
 .txtarea_hgt_50 { height: 50px !important; resize: none; }
 
 .accent-custom .dashlogo { max-width: 95px; max-height: 80px; }
 
 .accent-custom .frmwdth_cntr { max-width: 1024px; width: 96%; margin: 0 auto; }
 .accent-custom .frmwdth_cntr_640 { max-width: 640px; width: 96%; margin: 0 auto; }
 
 .accent-custom a { color:var(--primary); }
 .accent-custom a:hover, .accent-custom a:focus, .accent-custom a.focus, .accent-custom a:active, .accent-custom a.active { color:var(--primary); }
 
 .accent-custom .dropdown-item { color:var(--black); }
 .accent-custom .dropdown-item.active, .accent-custom .dropdown-item:active { background-color: var(--blue); color: var(--white); }
 
 .accent-custom .input-group-text { background-color: var(--primary); }
 .accent-custom .input-group-text i { color:var(--white);  }
 
 .accent-custom .login-logo img, .accent-custom .register-logo img { max-width:90px;  } 
 .accent-custom .login_lftimg img { max-width: 100%; max-height: 300px; }
 .accent-custom .multifactor_lftimg img { max-width: 100%; max-height: 400px; }
 .accent-custom .frgtpwd_lftimg img { max-width: 100%; max-height: 400px; }
 .accent-custom .resetpwd_lftimg img { max-width: 100%; max-height: 300px; }
 
 .accent-custom .navbar { padding:1.45rem .5rem; }
 .accent-custom .nav-pills .nav-link.active, .accent-custom .nav-pills .show>.nav-link { background-color: #6dcf00; }
 
 .accent-custom .brand-link .brand-image-xs { left:90px;  max-height: 60px; }
 
 .accent-custom [class*=sidebar-dark-] { background-color:var(--primary); }
 
 .accent-custom [class*=sidebar-dark] .brand-link, .accent-custom [class*=sidebar-dark] .brand-link .pushmenu { background-color:var(--white); padding: 1.75rem .5rem; }
 
 .accent-custom .logo-xs.brand-image-xl { left: 5px; top: 15px; max-height: 50px; }
 
 .accent-custom .user_div { position: relative;  }
 .accent-custom .usercharacter { width:32px; height: 32px; display: inline-block; line-height: 32px; text-align: center; font-size: var(--f_sz22); background-color:var(--blue); color: #ffffff; border-radius: 50%; -moz-border-radius: 50%; -webkit-border-radius: 50%;  }
 
 .accent-custom .sidebar-dark-primary .nav-sidebar>.nav-item>.nav-link { text-align: left; color: var(--white); }
 
 .accent-custom .nav-sidebar .nav-link p, .accent-custom .nav-sidebar .nav-item>.nav-link { text-align: left; }
 
 .accent-custom .sidebar-dark-primary .nav-sidebar>.nav-item>.nav-link.active, 
 .accent-custom [class*=sidebar-dark-] .nav-sidebar>.nav-item:hover>.nav-link
 
 { background-color: var(--blue); color:var(--white); text-decoration: none; }
 
 .accent-custom [class*=sidebar-dark-] .nav-sidebar>.nav-item.menu-open>.nav-link  { background-color: var(--lightprimary); color:var(--white); text-decoration: none; }
 .accent-custom [class*=sidebar-dark-] .nav-sidebar>.nav-item.menu-open>.nav-link.active  { background-color: var(--blue); color:var(--white); text-decoration: none; }
 
 /* .accent-custom [class*=sidebar-dark-] .nav-treeview>.nav-item>.nav-link.active, 
 .accent-custom [class*=sidebar-dark-] .nav-treeview>.nav-item>.nav-link.active:focus, 
 .accent-custom [class*=sidebar-dark-] .nav-treeview>.nav-item>.nav-link.active:hover { background-color:var(--lightprimary); color: var(--white); } */
 
 /* .accent-custom [class*=sidebar-dark-] .nav-sidebar>.nav-item.menu-open>.nav-link.active .nav-item .nav-treeview>.nav-item.menu-open>.nav-treeview .nav-item .nav-link.active, 
  { background-color:var(--white) !important; color: var(--white); } */
 
 .menu-divider {
     height: 0;
     margin: 0.5rem 0;
     overflow: hidden;
     border-top: 1px solid #696a6a;
 }
 
 .accent-custom .alert-success { color: #155724; background-color: #d4edda; border-color: #c3e6cb; }
 .accent-custom .alert-danger { color: #721c24; background-color: #f8d7da; border-color: #f8d7da; }
 
 .accent-custom .footer_logotxt { text-align: left; }
 .accent-custom .footer_copyrgt { text-align: right; }
 
 .accent-custom .table thead th { background-color: var(--primary); color:var(--white); font-weight: 600;  }
 .accent-custom .table a { color: var(--blue); }
 .accent-custom .page-item.active .page-link {  background-color: var(--primary); border-color: var(--primary); }
 
 
 .accent-custom .dashboard_dsply { max-width: 98%; margin: 0 auto; display: flex; flex-flow: row wrap;  }
 .accent-custom .dashboard_boxes { display: flex; justify-items: center; }
 
 .accent-custom .small-box .icon>i { font-size: 40px; opacity: 0.4; }
 
 .accent-custom .dash_icon svg, .accent-custom .dash_icon img  { position: absolute; right: 15px; top:20px; width: 50px; opacity: 0.8;  }
 
 .multifactor_div_cntr { max-width: 960px; width: 96%; margin: 0 auto;  }
 .qrcode_img img { max-width: 100%; }
 
 .accent-custom .card-primary.card-outline { border-top: 3px solid var(--blue); }
 
 .accent-custom .card-title { font-weight: 500; font-size: var(--f_sz16); color: var(--primary); }
 
 
 .accent-custom .col-form-label, .accent-custom label { font-weight: 600 !important; }
 
 .accent-custom .txtdsply  {  padding-top: calc(0.375rem + 1px); padding-bottom: calc(0.375rem + 1px); }
 
 
 .accent-custom .icheck-primary>input:first-child:checked+input[type=hidden]+label::before, 
 .accent-custom .icheck-primary>input:first-child:checked+label::before {
     background-color: var(--blue);
     border-color: var(--blue); 
 }
 
 
 .accent-custom .icheck-primary > input:first-child:not(:checked):not(:disabled):hover + label::before,
 .accent-custom .icheck-primary > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
     border-color: var(--blue); 
 }
 
 
 .accent-custom .subtitle { border-bottom: 1px solid var(--grey);   }
 .accent-custom .subtitle  h4 { border-radius: 4px 4px 0 0; -moz-border-radius: 4px 4px 0 0; -webkit-border-radius: 4px 4px 0 0;  background-color:var(--primary); color: var(--white); padding: 8px; display: inline-block; }
 
 .accent-custom .login_logo img { max-height: 85px; }
 
 .accent-custom .s_profileupld .btn-bs-file { padding: 5px 15px; display: inline-block; border-radius: 35px; -moz-border-radius: 35px; -webkit-border-radius: 35px; }
 .accent-custom .s_profileupld i { font-size: 20px; }
 
 /***************File Upload***************/
 .accent-custom .btn-bs-file{
     position:relative;
   cursor:pointer;
   }
   .accent-custom .btn-bs-file input[type="file"]{
     position: absolute;
     top: -9999999;
     filter: alpha(opacity=0); 
     opacity: 0;
     width:0;
     height:0;
     outline: none;
     cursor: inherit;
   }
   
   /***************File Upload***************/
 
 
 .accent-custom .product_imgdiv { width: 100%; display: flex; flex-flow:row wrap; justify-content: center; position: relative; border: 1px solid #ced4da; border-radius: .375rem; -moz-border-radius: .375rem; -webkit-border-radius: .375rem; padding: 10px; }
 .accent-custom .product_imgdiv img { max-width: 100%; max-height: 400px; }
 .accent-custom .product_imgdel { position: absolute; right: -10px; top:-15px; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; background-color: #db0b00;  border-radius: 50%; -moz-border-radius: 50%; -webkit-border-radius: 50%; padding: 10px; font-size:16px; color:#ffffff; } 
 
 .accent-custom .prodlist_img img { max-height: 100px; }
 .accent-custom .brand_img img { max-height: 45px; }
 
 .accent-custom .multiselectdiv .multiselect-container>li>a>label { padding: 3px 10px 3px 10px; }
 .accent-custom .multiselectdiv .multiselect-container>li>a { color:var(--black); }
 .accent-custom .multiselectdiv .dropdown-menu { min-width:220px; }
 
 .accent-custom .viewimages_wrapper img { max-width: 100%; }
 .accent-custom .store_imgdiv { width: 100%;  display: flex; flex-flow:row wrap; position: relative; border: 1px solid #ced4da; border-radius: .375rem; -moz-border-radius: .375rem; -webkit-border-radius: .375rem; padding: 10px; justify-content: center; }
 .accent-custom .storeimg { height: 195px; width: 100%; display: flex; align-items: center; justify-content: center; }
 .accent-custom .store_imgdiv img { max-width: 100%; margin-bottom: 5px; max-height: 180px; }
 .accent-custom .store_imgdel { position: absolute; right: -10px; top:-15px; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; background-color: #db0b00;  border-radius: 50%; -moz-border-radius: 50%; -webkit-border-radius: 50%; padding: 10px; font-size:16px; color:#ffffff; }  
 
 .accent-custom .tp-product-rating-icon span { font-size: var(--f_sz14); }
 
 
 .accent-custom .qrcode_scandiv img { max-width: 100%; max-height: 150px; }
 
 .accent-custom .nocontent_div { width: 100%; display: inline-block; text-align: center; background-color: var(--white); padding: 35px 15px;}
 
 .accent-custom .community_imgwrapper { position: relative; }
 .accent-custom .community_icon { width: 150px; height: 150px; display: flex; justify-content:center; align-items: center; border: 1px solid var(--grey2);  }
 .accent-custom .community_icon img { max-width: 100px; max-height: 100px; }
 .accent-custom .community_delicon { position: absolute; top:-10px; right: -10px; background-color: var(--white); }
 .accent-custom .community_delicon i { font-size: var(--f_sz26); }
 
 .accent-custom .community_banner { width: 100%; height: 150px; display: flex; justify-content: center; align-items: center; border: 1px solid var(--grey); padding: 10px; }
 .accent-custom .community_banner img { max-width: 100%; max-height: 150px; }
 
 .accent-custom .search_suggestion_div { position: absolute; top:35px;  width: 100%; display: flex; flex-flow: row wrap;  background-color: var(--white); border-radius: .375rem; -moz-border-radius: .375rem; -webkit-border-radius: .375rem; border:1px solid #E0E2E3; padding: 15px; }
 
 .accent-custom .search_suggest_list { width: 100%; display: flex; flex-flow:row wrap; max-height: 190px; overflow-y: auto; }
 .accent-custom .search_suggest_item { width: 100%; display: flex; flex-flow:row wrap; font-size: 16px; padding: 5px; }
 .accent-custom .search_suggest_item:hover { background-color: #f5f5f5; }
 
 .accent-custom .community_categories { width: 100%; display: flex; flex-flow: row wrap; }
 .accent-custom .community_categories .commu_catgry { padding: 5px 10px; background-color: var(--primary); color: var(--white); display: inline-flex; justify-content: center; align-items: center; }
 .accent-custom .community_categories .commu_catgry i { font-size: var(--f_sz18); }
 
 
 .accent-custom .socialmedia_network a { display: inline-block; width: 30px; height: 30px; line-height: 28px; text-align: center; border: 1px solid var(--grey2); border-radius: 50%; -moz-border-radius: 50%; -webkit-border-radius: 50%; margin: 2px;  }
 
 .accent-custom .description-clamp { display: -webkit-box; -webkit-line-clamp: 5;  -webkit-box-orient: vertical;  overflow: hidden;  text-overflow: ellipsis;  white-space: normal; line-height: 1.4em;  max-height: 7em; /* 5 lines * 1.4em */
   cursor: help; }
 
 .accent-custom .subcategory_div { width: 100%; display: flex; flex-flow: row wrap; align-items: center;  border-radius: .25rem; -moz-border-radius: .25rem; -webkit-border-radius: .25rem; }
 
 .accent-custom .subcategory_div1 { width: 100%; display: flex; flex-flow: row wrap; border: 1px solid var(--grey); padding: 10px; border-radius: .25rem; -moz-border-radius: .25rem; -webkit-border-radius: .25rem; }
 
 .accent-custom .add_childcat { width: 100%; display: flex; flex-flow: row wrap; border-top: 1px dashed var(--grey2); font-size: var(--f_sz12); justify-content: end; padding: 5px; text-decoration: underline; }
 
 .accent-custom .view_childcat { width: 100%; display: flex; flex-flow: row wrap; border-top: 1px dashed var(--grey2); }
 .accent-custom .view_childcat_listitem { width: 100%; display: flex; flex-flow: row wrap; border-bottom: 1px dashed var(--grey2);  }
 
 
 .accent-custom .top_products_categoriesdesc { min-width: 300px; background-color: var(--white); z-index: 2; border: 1px solid var(--grey); padding: 15px; max-height: 520px; overflow-y: auto; scrollbar-width: thin; padding-right: 10px; }
 
 .accent-custom .tp-shop-widget-checkbox ul { margin-left: -35px; }
 
 .accent-custom .tp-shop-widget-checkbox ul li ul  { margin-left: -15px; }
 
 .accent-custom .tp-shop-widget-checkbox label { margin-bottom: 0; }
 
 .accent-custom .tp-shop-widget-categories { height: auto; overflow: auto; overscroll-behavior-y: contain; scrollbar-width: thin; padding-right: 10px; }
 
 .accent-custom .tp-shop-widget-categories ul li { list-style: none; width: 100%; }
 
 .accent-custom .tp-shop-widget-categories ul li:not(:last-child) { margin-bottom: 10px; }
 
 .accent-custom .tp_categories .tp-shop-widget-checkbox .tp-shop-widget-brand-item { width: 100%; margin-bottom: 0; }
 
 .accent-custom .innerbox { width: 100%; display: flex; flex-flow: row wrap; border: 1px solid var(--grey); padding: 10px; border-radius: .25rem; -moz-border-radius: .25rem; -webkit-border-radius: .25rem; }
 
 .accent-custom .search_autosuggestdiv { width: 100%; display: flex; padding: 10px; border-radius: .25rem; -moz-border-radius: .25rem; -webkit-border-radius: .25rem; border: 1px solid var(--grey); }
 
 .accent-custom .select2-container .select2-selection--single { height:34px !important; }
 .accent-custom .select2-container--default .select2-selection--single{ border: 1px solid #ccc !important;  border-radius: .25rem; -moz-border-radius: .25rem; -webkit-border-radius: .25rem;    }
 
 .accent-custom .categorymapping_page .page-link { padding: 1rem 1.25rem; }
 
 /************switch toggle button style****************/
 .accent-custom .toggle-off.btn-xs { padding-left: 1.5rem; }
 .accent-custom .toggle-on.btn-xs { padding-left: 0.15rem; }
 .accent-custom .toggle-handle {     padding: .375rem 0.75rem .375rem  1.5rem; }
 /************switch toggle button style****************/
 
 .accent-custom .benefits_img img { max-height: 45px; }
 
 
 @media (max-width: 767px) {
 .accent-custom .footer_logotxt { text-align: center; }
 .accent-custom .footer_copyrgt { text-align: center; }
 }