/* Reset and base styles */



@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  font-family: Poppins;
}

/* Header and Navigation */
header {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: #333333;
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #2563eb;
}

.auth-buttons {
  display: flex;
  gap: 1rem;
}

.login-btn,
.get-started-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-btn {
  background: transparent;
  border: 1px solid #2563eb;
  color: #2563eb;
  border-radius: 12px;
  text-decoration: none;
}

.get-started-btn {
  background: #635bff;
  border: none;
  color: white;
  border-radius: 12px;
}

.login-btn:hover {
  background: #2563eb;
  color: white;
}

.get-started-btn:hover {
  background: #453fb2;
}

/* Hero Section */
.hero {
  padding: 4rem 2% 4rem;
  background: white;
  min-height: 80vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.hero-image img {
  max-width: 100%;
  height: auto;
}

.hero h1 {
  letter-spacing: -1px;
  font-size: 4rem;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 20px;
  font-family: 'Poppins';
  color: #080527;
}

.hero p {
  font-size: 19px;
  color: #64748b;
  margin-bottom: 2rem;
  font-family: 'Poppins';
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.cta-button {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  background: #6366f1;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-weight: 600;
}

.secondary-button {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  background: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.cta-button:hover {
  background: #1d4ed8;
}

.secondary-button:hover {
  background: #2563eb;
  color: white;
}

/* Stats Section */
.stats {
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  padding: 2rem 5%;
  background: white;
}

.stat-item {
  text-align: center;
  background: #f3f4f6;
  padding: 1rem;
  border-radius: 10px;
}

.stat-item h2 {
  font-size: 2rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.stat-item p {
  color: #64748b;
  font-size: 1rem;
}

/* Features Section */
.features {
  padding: 6rem 5%;
  text-align: center;
  background: #f8fafc;
}

.feature-content {
  max-width: 800px;
  margin: 0 auto;
}

.features h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: #1e293b;
  font-weight: 700;
}

.features p {
  color: #64748b;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.learn-more-btn {
  padding: 1rem 2.5rem;
  background: transparent;
  border: 2px solid #2563eb;
  color: #2563eb;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.learn-more-btn:hover {
  background: #2563eb;
  color: white;
}

/* Benefits Section */
.benefits {
  padding: 6rem 5%;
  text-align: center;
  background: white;
}

.benefits h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: #1e293b;
  font-weight: 700;
}

.benefits p {
  color: #64748b;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-item {
  padding: 2.5rem;
  border-radius: 10px;
  background: #f8fafc;
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-item i {
  font-size: 3rem;
  color: #2563eb;
  margin-bottom: 1.5rem;
}

.benefit-item h3 {
  color: #1e293b;
  font-size: 1.3rem;
}

/* Steps Section */
.steps {
  padding: 6rem 5%;
  text-align: center;
  background: #f8fafc;
}

.steps h2 {
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: #1e293b;
  font-weight: 700;
}

.steps-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.step {
  flex: 1;
  max-width: 300px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #2563eb;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
}

.step h3 {
  color: #1e293b;
  font-size: 1.3rem;
}

/* Footer */
footer {
  background: #1e293b;
  color: white;
  padding: 4rem 5% 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h4 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: white;
}

.footer-section a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #334155;
  color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .stats {
    flex-direction: column;
    gap: 2rem;
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
  }

  .step {
    max-width: 100%;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
  a.btn.btn-secondary.tenant-btn-background.download-invoice-btn {
    font-size: 9px;
}
}

/* New Sections */
.manage-rentals,
.automated-reminders,
.control-income,
.renew-leases,
.important-events,
.start-using {
  padding: 4rem 5%;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.manage-rentals .content,
.automated-reminders .content,
.control-income .content,
.renew-leases .content,
.important-events .content,
.start-using .content {
  max-width: 50%;
}

.manage-rentals h2,
.automated-reminders h2,
.control-income h2,
.renew-leases h2,
.important-events h2,
.start-using h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1e293b;
  font-weight: 800;
}

.manage-rentals p,
.start-using ol {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 2rem;
}

.start-using ol {
  list-style: none;
  padding: 0;
}

.start-using ol li {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: #1e293b;
}

.start-using .cta-button {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  background: #6366f1;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-weight: 600;
}

/* Section Images */
.manage-rentals .image,
.automated-reminders .image,
.control-income .image,
.renew-leases .image,
.important-events .image,
.start-using .image {
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.manage-rentals .image img,
.automated-reminders .image img,
.control-income .image img,
.renew-leases .image img,
.important-events .image img,
.start-using .image img {
  max-width: 100%;
  height: auto;
}




/* p css */


.login_section .form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.login_section .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #495057;
  font-weight: 500;
  font-size: 0.95rem;
}

.login_section .form-group input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border: 1px solid #ced4da;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}


.login_section .form-group i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #adb5bd;
  pointer-events: none;
}

.login_section .toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #adb5bd;
  pointer-events: auto;
}



.login_section .forgot-password {
  display: block;
  text-align: right;
  color: #622DFA;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}

.login_section .forgot-password:hover {
  text-decoration: underline;
}

.login_section .login-btn {
  width: 100%;
  padding: 0.75rem;
  background-color: #6c63ff;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.login_section .login-btn:hover {
  background-color: #5a54e6;
}

.login_section .divider {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
  color: #6c757d;
  font-size: 0.9rem;
}


.login_section .mand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
}



.login_section .divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #dee2e6;
}

.login_section .divider span {
  padding: 0 1rem;
}

.login_section .social-login {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.login_section .social-btn {
  width: 100%;
  padding: 0.75rem;
  border-radius: 6px;
  border: 1px solid #dee2e6;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: white;
  font-size: 0.95rem;
  font-weight: 500;
}

.login_section svg.MuiSvgIcon-root.MuiSvgIcon-fontSizeMedium.meaningless-key-1jd0aau {
  width: 19px;
}




.login_section .signup-link a:hover {
  text-decoration: underline;
}

.login_section .fa-eye:before {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #adb5bd;
  pointer-events: none;
}



.login_section .toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
}

.login_section .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.login_section .slider {
  position: absolute;
  cursor: pointer;
  top: 12px;
  left: -6px;
  right: 7px;
  bottom: -10px;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 30px;
}

.login_section .slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}


@media (max-width: 767px) {
  .login_section .logo {
    font-size: 20px;
    font-weight: bold;
    color: #333333;
  }

  .login_section p.MuiTypography-root.MuiTypography-body1.meaningless-key-ylgn82 {
    font-size: 12px;
  }

  .login_section .toggle-switch {
    width: 50px;
    height: 29px;
  }

  .nav-tabs {
    margin-top: 10px;
  }

  .month-labels {
    width: 100%;
    max-width: 100% !important;
    flex-wrap: wrap;
  }


}


form#loginForm {
  margin-top: 21px;
}


.logo_inner p {
  margin-bottom: 0px;
}

section.login_section {
  padding-top: 30px;
  height: 100vh;
  display: flex;
  align-items: center;
}

.login_wrap h3 {
  background: #622dfa;
  color: #fff;
  padding: 9px 20px;
  margin: 15px auto;
  max-width: max-content;
  border-radius: 5px;
  font-size: 13px !important;
}


.logo_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.btn-secondary {
  background: #453FB2;
}



.sidebar_section .sidebar {
  height: 100vh;
  background-color: #e1e1f6;
  transition: width 0.3s;
  overflow: hidden;
}

.sidebar_section .sidebar.collapsed {
  width: 80px;
}

.sidebar_section .sidebar.expanded {
  width: 240px;
}

.sidebar_section .sidebar .nav-link {
  color: #333;
  white-space: nowrap;
}

.sidebar_section .sidebar .nav-link .text {
  display: inline-block;
  transition: opacity 0.3s;
}

.sidebar_section .sidebar.collapsed .text {
  opacity: 0;
  width: 0;
  overflow: hidden;
}

.sidebar_section .toggle-btn {
  position: absolute;
  top: 10px;
  right: 0;
  z-index: 100;
  color: #000;
  border: none;
  border-radius: 5px;
  padding: 4px 8px;
  cursor: pointer;
  left: 188px;
  width: 3%;
  background: transparent;
}

.sidebar_section .toggle-btn i {
  font-size: 20px;
}

.sidebar_section .collapsed button {
  left: 35px;
}

.sidebar_section .main-content {
  padding: 20px;
  flex: 1;
}

.sidebar_section .profile-card {
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

.sidebar_section .nav-link:hover {
  background-color: #dcdfff;
  border-radius: 8px;
}

.download_btn a.tenant-btn-background {
  padding: 7px 10px;
  font-size: 12px;
}

.common_div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .sidebar_section .sidebar.expanded {
    position: absolute;
    z-index: 999;
    height: 100%;
  }

  .sidebar_section .toggle-btn {
    right: -40px;
  }

  .tabs li .nav-link {
    padding: 2px 44px;
  }

  .nav-tabs {
    margin-top: 10px;
  }

  .month-labels {
    width: 100%;
    max-width: 100% !important;
    flex-wrap: wrap;
  }
}


.sidebar_section .user-card {
  display: flex;
  align-items: center;
  background-color: #f5f4fd;
  border-radius: 16px;
  padding: 16px 20px;
  width: 220px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.sidebar_section .user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.sidebar_section .user-avatar::before {
  content: "\f255";
  font-size: 18px;
  font-family: remixicon !important;
  color: #9699AB;
}

.sidebar_section .user-info {
  flex-grow: 1;
}

.sidebar_section .user-name {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 2px;
  color: #000000;
}

.sidebar_section .user-role {
  font-size: 14px;
  color: #6366f1;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 400;
}

.sidebar_section .user-role::after {
  content: "▾";
  font-size: 10px;
  margin-left: 6px;
}

.sidebar_section .arrow-icon {
  font-size: 18px;
  color: #6c5ce7;
  margin-left: auto;
}

.sidebar_section .sidebar {
  padding: 20px 6px;
  width: 250px;
}

.sidebar_section .menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 16px;
  color: #000;
  cursor: pointer;
}

.sidebar_section .menu-item i {
  margin-right: 10px;
  font-size: 18px;
}

.sidebar_section .menu-text {
  display: flex;
  align-items: center;
  flex: 1;
}

.sidebar_section .dropdown-content {
  display: none;
  padding-left: 30px;
  font-size: 14px;
  margin-top: 5px;
}

.sidebar_section .dropdown-content a {
  display: block;
  color: #000;
  text-decoration: none;
  margin: 5px 0;
}

.sidebar_section .dropdown-content a:hover {
  text-decoration: underline;
}

.sidebar_section .drpicn {
  margin-right: 45px !important;
}

.sidebar_section .btn-wrap {
  position: absolute;
  bottom: 20px;
}

.sidebar_section .grot {
  font-size: 20px;
}



.profile_section .msnbv {
  background: #fff;
  border-radius: 10px;
  padding: 20px 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

.profile_section .sec-tab {
  width: 600px;
}

.profile_section .sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  flex-shrink: 0;
}

.profile_section .profile-card {

  display: flex;
  align-items: center;
  justify-content: space-between;

}

.profile_section .sdrmn {
  display: flex;
  align-items: center;
}

.profile_section .avatarss {
  width: 60px;
  height: 60px;
  background: #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #94a3b8;
  margin-right: 20px;
}

.profile_section .name-email {
  display: flex;
  flex-direction: column;
}

.profile_section .name-email h2 {
  margin: 0;
  font-size: 20px;
  color: #0f172a;
}

.profile_section .name-email p {
  margin: 2px 0 0 0;
  color: #64748b;
  font-size: 14px;
}

.profile_section .actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.profile_section .actions a.logout {
  color: #0f172a;
}

.profile_section .divider {
  width: 1px;
  height: 20px;
  background: #e2e8f0;
}

.profile_section .tabs-container {
  display: flex;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 10px;
  margin-top: 20px;
}

.profile_section .tab {
  padding: 7px 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
  color: #0d0d20;
  font-weight: 500;
  justify-content: center;
  width: 100%;
}

.profile_section .tab i {
  margin-right: 8px;
}

.profile_section .tab.active {
  background: #e8e9fd;
  border-radius: 50px;
  color: #0d0d20;
  padding-top: 20px;
  padding-bottom: 20px;
}

.profile_section .tab-content {
  /* background: #fff; */
  padding: 30px;
  border-radius: 20px;
  width: 800px;
  display: none;
}

.profile_section .tab-content.active {
  display: block;
  width: 100%;
}


.profile_section .form-group {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 25px;
}

.profile_section .field {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
}

.profile_section .field.half {
  flex: 1 1 calc(50% - 10px);
}

.profile_section label {
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 500;
}

.profile_section .form-group h4 {
  color: #9699ab;
  font-size: 17px;
  font-weight: 400;
}

.profile_section input,
.profile_section select {
  padding: 7px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.profile_section .actions {
  margin-top: 20px;
}

.profile_section .actions button {
  padding: 10px 15px;
  margin-right: 10px;
  border: none;
  background-color: #eee;
  border-radius: 5px;
  cursor: pointer;
}

.profile_section .field button {
  border: 0;
  padding: 10px 30px;
  width: 162px;
  background: #fafafa;
  margin-top: 14px;
}

.profile_section .doc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  border-bottom: 1px solid #eee;
  padding-bottom: 16px;
}

.profile_section .doc-row:last-child {
  border-bottom: none;
}

.profile_section .doc-label {
  font-weight: 600;
  color: #9ca3af;
  font-size: 15px;
}

.profile_section .file-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px dashed #c4b5fd;
  border-radius: 8px;
  background-color: #f9f9ff;
  color: #7c3aed;
  cursor: pointer;
  width: 200px;
  position: relative;
}

.profile_section .file-box input[type="file"] {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.profile_section .add-button {
  margin-top: 20px;
  display: inline-block;
  background-color: #f9f9ff;
  color: #000;
  font-weight: 600;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.profile_section .add-button::before {
  content: "+ ";
  color: #7c3aed;
}

.profile_section .btnnrt {
  border-top: 1px solid #ccccccbf;
  padding: 15px 0 0 15px;
}

.profile_section .btnnrt a {
  padding: 10px 70px;
}

.profile_section .userd h5 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.profile_section .actions a .setting_icon i {
  color: #635BFF;
  font-size: 24px;
}

.profile_section .actions a {
    background: #f8f8ff;
    padding: 2px 10px;
    color: #000;
    border-radius: 5px;
}

.profile_section .actions a:hover {
  background: #f8f8ff;
  padding: 2px 10px;
  color: #000;
  border-radius: 5px;
}

.profile_section .actions a {
  text-decoration: none;
  color: #000;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  padding: 2px 10px;
}



.profile_section .modal {
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.profile_section .modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  width: 500px;
  position: relative;
}

.profile_section .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.profile_section form div {
  margin-bottom: 15px;
}

.profile_section input[type="password"] {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
}

.profile_section button[type="submit"] {
  padding: 10px 40px;
  background: #6366f1;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.profile_section .input-group {
  margin: 0;
}

.profile_section .input-wrapper {
  position: relative;
  width: 100%;
}

.profile_section .input-wrapper input {
  width: 100%;
  padding: 10px 40px 10px 40px;
  /* Extra space for icons */
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.profile_section .input-wrapper .left-icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  font-size: 18px;
  color: gray;
  pointer-events: none;
}

.profile_section .input-wrapper .toggle-password {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  font-size: 18px;
  color: gray;
  cursor: pointer;
}

.profile_section .cncle {
  border: 1px solid #000;
  padding: 10px 40px;
  border-radius: 5px;
}

.profile_section .modal-content h2 {
  font-size: 23px;
}


.profile_section .form-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
}

.profile_section .form-card .card-header {
  border-bottom: none;
  background-color: #6366f1 !important;
}

.profile_section .form-card .card-title {
  font-size: 1.2rem;
  font-weight: 600;
}

.profile_section .form-label {
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.profile_section .input-group {
  border-radius: 8px;
  overflow: hidden;
}

.profile_section .input-group-text {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  color: #6366f1 !important;
}

.profile_section .form-control {
  border: 1px solid #dee2e6;
  padding: 0.6rem;
  background-color: #f8f9fa;
  color: #2c3e50;
  font-size: 0.95rem;
}

.profile_section .form-control:read-only {
  background-color: #f8f9fa;
  cursor: default;
}

.profile_section .btn-primary {
  background-color: #6366f1;
  border: none;
  padding: 12px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.profile_section .btn-primary:hover {
  background-color: #6366f1;
  transform: translateY(-2px);
}

.profile_section .page-title {
  color: #2c3e50;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

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

.country-select {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  font-size: 14px;
}

.country-select option {
  padding: 8px;
  font-size: 14px;
}


/*-----------------=============== This css for sidebar toggle ----------------------------*/

/* Sidebar default width */
.offcanvas {
  width: 292px !important;
  position: relative !important;
  transform: none !important;
  visibility: visible !important;
}

/* Minimized Sidebar */
.offcanvas.minimized {
  width: 80px !important;
  overflow: hidden;
}

/* Main content wrapper */
.main-content {
  transition: all 0.2s linear;
  width: calc(100% - 292px);
  margin-left: auto !important;
  margin-right: 0;
  background: #e9e9fb;
  height: 100%;
  min-height: 100vh;
}


/* Optional: adjust padding/margin if needed */
body.sidebar-minimized .main-content {
  transition: all 0.2s linear;
  width: calc(100% - 72px);

}


/* -----------------------------------------new sidebar css------------------- */


.offcanvas-start {
  top: 0;
  left: 0;
  width: 292px;
  border-right: 1px solid rgba(0, 0, 0, .2);
  transform: none;
}

.offcanvas {
  transition: none;
  min-width: 292px;
  visibility: unset !important;
  background: #e1e1f6 !important;
}

.profle_wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.profle_inr {
  background: #cccccc61;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.profle_cnt h4 {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.profle_cnt h5 {
  font-size: 14px;
  font-weight: 400;
  color: #635bff;
}

.profle_inr i {
  font-size: 25px;
  color: #959595;
}

.profle_main {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  background: #F3F3FB;
  padding: 15px;
  border-radius: 20px;
}

.profle_arrow i {
  font-size: 25px;
  color: #635bff;
}

.lases_list {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  color: #000;
  border-radius: 10px;
  text-decoration: none;
}


.offcanvas-title {
  font-size: 20px;
  font-weight: 700;
}

.lases_list:hover {
  background: #d8d8f1;
  color: #000;
}


.lases_list.active .drp_dn h5,
.lases_list.active .lass_cnt h5 {
  font-weight: 600;
}

.lases_list.active {
  background: #d8d8f1;
}


.drp_dn h5 {
  font-size: 15px;
  margin: 0;
  font-weight: 400;
  font-family: Poppins;
}


.profle_list {
  padding-top: 30px;
}

.lass_icn i {
  font-size: 18px;
  font-weight: 500;
}

.lass_cnt h5 {
  font-size: 16px;
  margin-bottom: 0px;
  font-weight: 400;
  font-family: Poppins;
}

.profle_list {
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.arrow-icon {
  transition: transform 0.3s ease;
}

a[aria-expanded="true"] .arrow-icon {
  transform: rotate(180deg);
  /* Flips arrow up */
}

.bnt-rop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}


.lases_drops {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
}

.lases_reqst {
  text-decoration: none;
  color: #000;
  padding: 0 10px;
}

.arrow-icon i {
  font-size: 23px;
}

.bnt-rop:hover {
  background: #d8d8f1;
  border-radius: 10px;
}

.profle_logout {
  position: absolute;
  bottom: 20px;
  width: 95%;
  padding-left: 16px;
}

.profile_link {
  text-decoration: none;
}


/*------------------------ Sidebar toggle css------------------------------ */

/* Toggle minimized view */
.sidebar-custom {
  width: 292px;
  background: #e1e1f6;
  height: 100vh;
  transition: width 0.3s ease;
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  z-index: 1040;
  border-right: 1px solid rgba(0, 0, 0, .2);
}

.sidebar-custom.minimized {
  width: 80px;
}

/* Hiding text and unnecessary content when minimized */
.sidebar-custom.minimized .offcanvas-title,
.sidebar-custom.minimized .profle_cnt,
.sidebar-custom.minimized .lass_cnt,
.sidebar-custom.minimized .arrow-icon,
.sidebar-custom.minimized .profle_arrow,
.sidebar-custom.minimized .collapse,
.sidebar-custom.minimized h5:not(.keep-show) {
  display: none !important;
}

.sidebar-custom.minimized .offcanvas-header {

  justify-content: center;
  font-size: 25px;
}

.sidebar-custom.minimized .profle_main {
  padding: 8px 7px;
  justify-content: center;
  border-radius: 10px;
}

.sidebar-custom.minimized .profle_inr {
  width: 40px;
  height: 40px;
}

.sidebar-custom.minimized .profle_inr,
.sidebar-custom.minimized .lass_icn,
.sidebar-custom.minimized .lases_drops {
  margin: 0 auto;
  justify-content: center;
}

.offcanvas-start {
  position: relative !important;
  transform: none !important;
  visibility: visible !important;
}


.svg_color svg * {
  stroke: #635bff;
}

.curser-pointer {
  cursor: pointer;
}

a.dashboard_link {
  color: #000;
  text-decoration: none;
}

a.dashboard_link:hover {
  color: #000;
}


/*----------------------------------------- Dashboard Css ---------------------- */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-left: 15px;
  padding-top: 10px;
}

.page-title {
  font-size: 24px;
  font-weight: 600;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.dashboard-card {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.card-title {
  font-weight: 600;
  display: flex;
  align-items: center;
}

.info-icon {
  color: #9ca3af;
  margin-left: 5px;
}

.tab-group {
  display: flex;
  background-color: #f3f4f6;
  border-radius: 5px;
  padding: 3px;
}

.tab {
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
}

.tab.active {
  background-color: white;
}

.income-summary {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

.income-item {
  text-align: center;
  flex: 1;
}

.income-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.income-value {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.income-label {
  font-size: 14px;
  color: #6b7280;
}

.no-data {
  text-align: center;
  margin-top: 30px;
  color: #4b5563;
}

.chart-container {
  height: 150px;
  margin-top: 20px;
  display: flex;
  align-items: flex-end;
}

.bar {
  flex: 1;
  margin: 0 3px;
  background-color: #9ca3af;
  border-radius: 3px 3px 0 0;
}

.month-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.month {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: #6b7280;
}

.month.active {
  color: #6366f1;
}

.lease-filters {
  display: flex;
  margin-bottom: 15px;
}

.filter-btn {
  padding: 10px 20px;
  border-radius: 20px;
  background-color: #f3f4f6;
  margin-right: 5px;
  font-size: 14px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.filter-btn.active {
  background-color: #e0e7ff;
  color: #6366f1;
}

.filter-btn .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 5px;
}

.dot.active {
  background-color: #6366f1;
}

.dot.inactive {
  background-color: #9ca3af;
}

.dot.draft {
  background-color: #10b981;
}

.search-bar {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 15px;
  background-color: white;
}

.search-icon {
  margin-right: 10px;
  color: #9ca3af;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
}

.results-info {
  font-size: 14px;
  color: #6b7280;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.sort-dropdown {
  display: flex;
  align-items: center;
}

.sort-label {
  margin-right: 5px;
}

.sort-value {
  font-weight: 600;
  display: flex;
  align-items: center;
}

.view-toggles {
  display: flex;
}

.view-toggle {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background-color: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  cursor: pointer;
}

.lease-card {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  border-left: 4px solid #10b981;
}

.lease-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.lease-number {
  font-weight: 600;
}

.property-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px;
  background-color: #f9fafb;
  border-radius: 5px;
}

.property-icon {
  margin-right: 10px;
  color: #6b7280;
}

.property-number {
  font-weight: 600;
  margin-bottom: 3px;
}

.tenant-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.rent-info {
  margin-bottom: 15px;
}

.rent-label {
  color: #6b7280;
  margin-bottom: 3px;
}

.progress-bar {
  height: 10px;
  background-color: #e5e7eb;
  border-radius: 5px;
  margin-top: 15px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background-color: #10b981;
  width: 20%;
}


.mncnt {
  display: flex;
  flex: 1 1 0%;
  padding-left: 12px;
  padding-right: 12px;
  padding-bottom: 20px;
  -webkit-box-pack: justify;
  justify-content: space-between;
  flex-direction: column;
  overflow: hidden auto;
  position: relative;
  height: 90vh;
}

.nav-tabs {
  border-bottom: 0;
  background: #dcdcf4 !important;
  width: max-content;
  padding: 5px;
  border-radius: 10px;
}

.tabs li .nav-link {
  padding: 2px 60px;
  border-radius: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
  color: #000;
  border: 0;
}

.tabs li .nav-link i {
  font-size: 10px;
  color: #818181;
}


.inrbox {
  border: 1px solid #13d116;
  padding: 20px;
  border-radius: 15px;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 450px;
}

.manhdr h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.icbnhd h6,
.icbnhd p {
  margin: 0;
}

.icnbx {
  padding: 9px 20px;
  background: #f8f9fa52;
  width: max-content;
  border-radius: 50px;
}

.inricn i {
  font-size: 25px;
}

.icnbpgr .progress {
  width: 100%;
  background: #dadada;
  height: unset !important;
  display: block !important;
  overflow: unset;
}

.icnbpgr .progress-bar {
  background: #004bff;
}

.menu-item a {
  color: #000;
}

.seninr a {
  color: #000;
  text-decoration: none;
}




.contract-details {
  padding: 10px;
  background: #f8f9fa52;
  border-radius: 8px;
  margin-bottom: 15px;
}

.detail-item {
  margin-bottom: 10px;
  padding: 8px;
  border-bottom: 1px solid #eee;
}

.nwtb .container-fluid {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
}

.detail-label {
  font-weight: 600;
  color: #6b7280;
  min-width: 140px;
}

.detail-value {
  color: #374151;
}

.inrbox {
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.manhdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-content {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.modal-header {
  background: #622dfa;
  border-radius: 10px 10px 0 0;
  padding: 15px 20px;
}

.modal-body {
  padding: 20px;
}

.modal-title {
  color: #ffffff;
  font-weight: 600;
}

.modal .contract-details {
  background: #fff;
  box-shadow: none;
  padding: 0;
}

.modal .detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 8px;
  border: none;
}

.modal .detail-label {
  color: #6b7280;
  font-weight: 600;
  min-width: 140px;
}

.modal .detail-value {
  color: #374151;
  flex: 1;
}

.modal-footer {
  border-top: 1px solid #eee;
  padding: 15px 20px;
}

.modal-footer .btn-secondary {
  background: #6b7280;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
}

.modal-footer .btn-secondary:hover {
  background: #4b5563;
}


/* Dropdown styling */
.btn-link.dropdown-toggle::after {
  display: none;
}

.btn-link:hover {
  opacity: 0.7;
}

.dropdown-menu {
  min-width: 160px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
  padding: 8px 16px;
}

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

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.show {
  display: block;
}

.dropdown button {
  border: none;
  background-color: unset;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-content li {
  padding: 0px 12px 0px 12px;
}

.dropdown-content li:hover {
  background-color: #f1f1f1;
}

.dropdown-content.show {
  display: block;
}

/* Add this at the top with other styles */
.modal,
.modal-backdrop {
  transition: none !important;
}

.icon_div {
  display: none;
}


.space {
  padding: 0 1rem;
}

.profile_space {
  padding: 1.5rem;
}

.row .g-4 .main_sec {
  padding-left: 0 !important;
  padding-right: 0 !important;
  ;
  margin-top: 0 !important;
  ;
}

button.lases_list {
  border: none;
  background: #e1e1f6;
  padding-left: 14px;
  width: 100%;
}

.logout_list {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  color: #000;
  border-radius: 10px;
  border: navajowhite;
  background-color: #E1E1F6;
}

.logout_list:hover {
  background: #d8d8f1;
  color: #000;
}

.container-fluid.row {
  margin-top: 0 !important;
}


/* ------------------ Forget Password page ------------------------------------ */

.forpass_maindiv {
  background-color: #fff;
  color: #1e1e1e;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.weblogo {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  width: 400px;
}

.forget_pass {
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.forget_pass h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: start;
}

.forget_pass p {
  font-size: 1rem;
  color: #7a7a8c;
  margin-bottom: 24px;
  line-height: 1.5;
  text-align: start;
}

.forinpt {
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 4px 12px;
  margin-bottom: 30px;
  background: #fff;
  margin-top: 30px;
}

.forinpt i {
  color: #7a7a8c;
  margin-right: 10px;
  font-size: 18px;
}

.forinpt input {
  border: none;
  outline: none;
  height: 30px;
  width: 100%;
  height: 40px;
  font-size: 14px;
  background: transparent;
}

.forbtn {
  width: 100%;
  padding: 12px;
  background-color: #622dfa;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(108, 92, 231, 0.25);
}

.forback-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: #1e1e1e;
  text-decoration: none;
  margin-bottom: 40px;
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 10px 10px;
  background: #fafafa;

}

.forback-link:hover {
  background: #fafafa;
}

.forback-link i {
  margin-right: 6px;
}

.footer_forget_pass {
  font-size: 12px;
  color: #7a7a8c;
  text-align: center;
  max-width: 320px;
  line-height: 1.5;
}

.footer_forget_pass a {
  color: #6c5ce7;
  text-decoration: none;
  margin: 0 2px;
}

.forinpt:hover {
  border-color: #635BFF;
}

/* -------------------------------------------- reset password---------------------------------- */

.reset_maindiv {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.reset_con {
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.logorest {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: start;
}

.headingreset {
  font-size: 1.4993rem;
  font-weight: 600;
  text-align: start;
}

.subtextreset {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
  text-align: start;
  margin-top: 6px;
}

.code-inputsreset {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.code-inputsreset input {
  width: 45px;
  height: 45px;
  text-align: center;
  font-size: 18px;
  border: 1px solid #ddd;
  border-radius: 6px;
  transition: 0.3s ease;
}

.code-inputsreset input:focus {
  border: 1px solid #624bff;
  outline: none;
}

.form-groupreset {
  position: relative;
  margin-bottom: 15px;
}

.form-groupreset input {
  width: 100%;
  padding: 12px 40px 12px 40px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: 0.3s ease;
}

.form-groupreset input:focus {
  border: 1px solid #624bff;
  outline: none;
}

.form-groupreset i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 12px;
  color: #aaa;
  font-size: 1rem;
}

.form-groupreset .toggle {
  right: 12px;
  left: auto;
  cursor: pointer;
}

.btnreset {
  background-color: #624bff;
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(98, 75, 255, 0.2);
  transition: 0.3s ease;
  margin-bottom: 10px;
}

.btnreset:hover {
  background-color: #523fe6;
}

.back-linkreset {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  font-size: 14px;
  cursor: pointer;
  color: #000;
  font-weight: 500;
}

.back-linkreset i {
  margin-right: 6px;
}

.footer-textreset {
  font-size: 12px;
  color: #666;
  margin-top: 30px;
  line-height: 1.5;
}

.footer-textreset a {
  color: #624bff;
  text-decoration: none;
}

/* Chrome, Safari, Edge, Opera */
.no-spinner::-webkit-outer-spin-button,
.no-spinner::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
/* .no-spinner {
     -moz-appearance: textfield;
 } */

div.profile_preview_img {
  text-align: end;
  margin-bottom: 15px;
}



/*---------------------------------- responsive------------------------------------------- */

@media (max-width: 767px) {

  .icon_div {
    display: block;
  }

  .main-content {
    width: calc(100% - 0px);
  }

  .sidebar-custom {
    width: 0;
  }

  .header {
    justify-content: space-between;
    padding: 10px 16px;
    margin-bottom: 0px;
    background-color: rgb(255, 255, 255);
    border-bottom: 1px solid rgb(232, 236, 238);
  }

  .sdibr {
    margin-top: 10px;
  }

  .page-title {
    font-size: 20px;
  }


  body.sidebar-minimized .main-content {
    transition: all 0.2s linear;
    width: calc(100% - 0px);
  }

  .sidebar-custom.minimized {
    width: 292px;
    height: 100%;
    min-height: 100vh;
    overflow-y: auto;
  }

  .sidebar-minimized .main-content::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #040f2c80;
    z-index: 1;
  }

  body.sidebar-minimized {
    overflow: hidden;
    touch-action: none;
    position: fixed;
    width: 100%;
  }


  .sidebar-custom.minimized .offcanvas-title,
  .sidebar-custom.minimized .profle_cnt,
  .sidebar-custom.minimized .lass_cnt,
  .sidebar-custom.minimized .arrow-icon,
  .sidebar-custom.minimized .profle_arrow,
  .sidebar-custom.minimized .collapse,
  .sidebar-custom.minimized h5:not(.keep-show) {
    display: block !important;
  }

  .sidebar-custom.minimized .offcanvas-header {
    justify-content: space-between;
  }

  .sidebar-custom.minimized .profle_main {

    justify-content: space-between;

  }

  .sidebar-custom.minimized .profle_inr,
  .sidebar-custom.minimized .lass_icn,
  .sidebar-custom.minimized .lases_drops {
    margin: 0;
  }

  /*======= dashboard page css======= */

  .dashboard-grid {
    display: block;
  }

  .dashboard-card {
    margin-bottom: 25px;
  }

  .space {
    padding: 0 0rem !important;
  }

  div#user {
    width: 100%;
  }

  .profile_space {
    padding: 0 !important;
  }

  /* .profile_section .profile-card {
    display: block;

  } */

  .profile_section .actions {
    display: block;
    text-align: end;
    margin-top: 0;
  }

  /* a#openPasswordModal {
    display: none;
  } */

  /* span.pass_set {
    display: none;
  } */


  .profile_head {
    height: 52px;
    padding-inline: 16px !important;
    padding-block: 0 !important;
  }

  .header .h4 {
    margin: 0;
  }

  .container-fluid {
    padding: 0 !important;
  }

  section.main_sec {
    padding: 0 !important;
  }

  .row {
    margin: 0 !important
  }

  .msnbv {
    margin-top: 10px !important;
  }

  .profle_logout {

    bottom: unset;

  }

  li.nav-item {
    width: 50%;
  }

  .tabs li .nav-link {
    padding: unset;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  ul#myTab {
    width: 100%;
  }

  .dropdown-content {
    right: -10px;
  }

  .profile_section .doc-row {
    display: block;
  }

  .modal .detail-item {
    display: block;

  }

  .proname {
    margin-top: 15px;
  }

  .unit {
    margin-top: 15px;
  }

  .profile_section .modal-content {
    width: 333px;
  }

  .profile_section .cncle {
    padding: 7px 22px;
  }

  .profile_section button[type="submit"] {
    padding: 7px 29px;
  }

  .profile_section .file-box {
    width: 100%;
    margin-top: 5px;
  }

  .pagination {
    margin-bottom: 10px;
  }

  .icnbx {
    width: 100%;
  }

  .alert-info {
    margin-top: 12px;
  }

  /* ------------------------- forget password css ------------------------------ */

  .weblogo {
    font-size: 30px;
    margin-bottom: 30px;
    width: 100%;
  }

  .forget_pass h2 {
    font-size: 20px;
  }

  .forget_pass p {
    font-size: 13px;
  }

  .forbtn {
    font-size: 14px;
    padding: 11px;
  }

  .forinpt input {
    font-size: 13px;
  }

  .footer_forget_pass {
    font-size: 11px;
  }

  /*-- reset password css----- */

  .code-inputsreset input {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .form-groupreset input {
    padding-left: 36px;
    padding-right: 36px;
  }

  .form-groupreset i {
    font-size: 16px;
  }

  .form-groupreset .toggle {
    font-size: 16px;
  }



}

.sidebar-custom .offcanvas-body {
  height: 72%;
}

.sidebar-custom .offcanvas-body {
  height: 72%;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sidebar-custom .offcanvas-body::-webkit-scrollbar {
  display: none;
}

.backlist {
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 5px;
  gap: 5px;
  background: #453FB2;
}






.counter-container {
  display: flex;
  gap: 20px;
}

.counter-box {
  border-left: 1px solid #ddd;
  padding: 0 20px;
}

.counter {
  font-size: 45px;
  font-weight: 600;
  color: #0b0b23;
  font-family: Poppins;
}




.counter-box {
  width: 180px;
  /* fixed width to avoid layout shift */
  text-align: center;
  border-left: 1px solid #ddd;
  padding: 0 20px;
}

.counter {
  display: inline-block;
  min-width: 80px;
  /* reserve enough space for final value */
  font-size: 45px;
  font-weight: 600;
  color: #0b0b23;
  font-family: Poppins;
}

.label {
  font-size: 16px;
  color: #666;
  margin-top: 5px;
  font-family: 'Poppins';
}

.count {
  padding: 40px 0px 0px 0px;
}



section.pro-sec {
  padding: 40px 0px;
  background: #F7FAFF;
}

.pro-hd h2 {
  font-size: 30px;
  font-weight: 400;
  font-family: 'Poppins';
  line-height: 40px;
}

.pro-img img {
  width: 181px;
}

section.sign-sec {
  padding: 50px 0px;
}

.sig-con span {
  display: inline-block;
  background: #eef6ff;
  padding: 12px 16px;
  border-radius: 24px;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 22px;
  color: #080527;
  font-family: 'Poppins';
}

.sig-con h2 {
  font-size: 50px;
  font-weight: 600;
  font-family: 'Poppins';
}

.sig-con p {
  font-size: 20px;
  font-family: 'Poppins';
  color: #080527bf;
  margin: 35px 0px;
}

.sig-con a.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 35px;
  border: 1.8px solid #6c5ce7;
  border-radius: 8px;
  background: transparent;
  color: #6c5ce7;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.sign-img img {
  max-width: 420px;
}


.card {
  background: #F7FAFF !important;
  border: none !important;
  border-radius: 30px !important;
}

.card-hbd {
  padding: 20px 20px 0;
}

.card-hbd h2,
.card-hbd span {
  font-size: 34px;
  font-weight: 600;
  font-family: 'Poppins';
}

.card-hbd span {
  color: #635bff;
}


.faq-section {
  padding: 120px 0px;
}

.faq-title {
  font-size: 36px;
  font-weight: 800;
  color: #0b0b33;
  margin-bottom: 30px;
}

.faq-box {
  background: #fdfdff;
  border-radius: 12px;
  box-shadow: 0 2px 15px #635bff14;
  margin-bottom: 16px;
  padding: 20px 24px;
  cursor: pointer;
  transition: 0.3s ease;
  position: relative;
}

.faq-question {
  font-size: 20px;
  font-weight: 500;
  color: #0b0b33;
  margin: 0;
  font-family: 'Poppins';
}

.faq-icon {
  position: absolute;
  right: 24px;
  top: 7px;
  font-size: 31px;
  color: #6c5ce7;
  transition: transform 0.3s ease;
  font-weight: 700;
}

.faq-answer {
  display: none;
  color: #080527bf;
  font-size: 18px;
  line-height: 1.5;
  margin: 20px 0px;
  font-family: 'Poppins';
}

.active .faq-answer {
  display: block;
}

.active .faq-icon {
  transform: rotate(45deg);
}

.faq-title {
  font-size: 55;
  font-weight: 600;
  color: #0b0b33;
  margin-bottom: 30px;
  font-family: 'Poppins';
}

.more-faq-btn {
  text-align: center;
  margin-top: 60px;
}

.more-faq-link {
  font-size: 24px;
  color: #6c5ce7;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
  font-family: 'Poppins';
}

.more-faq-link:hover {
  color: #4a3ed1;
}

.leg-gd {
  text-align: center;
  margin-bottom: 30px;
}

.leg-gd h3,
.leg-gd span {
  font-size: 80px;
  font-weight: 600;
  font-family: 'Poppins';
}

.leg-gd h3 span,
.sig-imgss span {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(98.71deg, #5d62fd, #635bff 37%, #2a9aed 74%);
  -webkit-background-clip: text;
  background-clip: text;
}

.leg-btn {
  text-align: center;
}

.leg-btn a {
  padding: 16px 24px;
  background: #635bff;
  border: none;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Poppins';
  color: #fff;
  border-radius: 12px;
}

.leg-btn a:hover {
  background: #453fb2;
  color: #fff;
}

section.leg-sec {
  padding-bottom: 100px;
}

.footer {
  padding: 50px 0px 30px 0px;
  border-top: 1px solid #e0dfe9;
}

.foot-logo ul {
  list-style: none;
  padding: 0px;
  display: flex;
  gap: 15px;
  margin-top: 35px;
}

.foot-logo ul li {
  background: #000;
  border-radius: 50px;
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 25px;
}

.foot-logo ul li a i {
  color: #fff;
  font-size: 15px;
}

.foot-con h4 {
  font-size: 20px;
  font-weight: 500;
  font-family: 'Poppins';
  margin-bottom: 16px;
}

.foot-con ul {
  list-style: none;
  padding: 0px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.foot-con ul li a {
  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-family: 'Poppins';
}

.ftr-btm {
  margin-top: 40px;
  text-align: center;
}

.ftr-btm span {
  font-size: 14px;
  color: #080527bf;
  font-weight: 300;
  font-family: 'Poppins';
}

.foot-logo ul li a {
  text-decoration: none;
}


section.pri-sec {
  padding: 100px 0px 50px 0px;
}

.pri-con span {
  color: #6f6c90;
  font-size: 28px;
  font-weight: 600;
  font-family: 'Poppins';
}

.pri-con h3 {
  font-size: 46px;
  font-weight: 600;
  font-family: 'Poppins';
  margin: 22px 0px;
}

.pri-con p {
  font-size: 20px;
  font-family: 'Poppins';
  color: #080527bf;
}

.pr-cn p {
  font-size: 18px;
  font-family: 'Poppins';
  color: #080527bf;
}

.pri-con a {
  padding: 0px;
  font-size: 24px;
  color: #635bff;
  font-family: 'Poppins';
  font-weight: 500;
}

.pri-con a:hover {
  color: #635bff;
}

.pr-cn h3 {
  font-size: 28px;
  font-weight: 600;
  font-family: 'Poppins';
  margin: 0px !important;
}

.pr-cn {
  padding: 32px 0px;
}

.pri-con {
  padding-top: 30px;
}

.pri-cmn {
  margin-top: 30px;
  background: #F7FAFF;
  padding: 30px;
  text-align: center;
  border-radius: 22px;
}

.signn-con a {
  padding: 0px !important;
  font-size: 24px !important;
  color: #635bff;
  font-family: 'Poppins';
  font-weight: 500 !important;
  border: none !important;
}

.signn-con h2 {
  font-size: 34px;
  font-weight: 600;
  font-family: 'Poppins';
}

.signn-con p {
  font-size: 20px;
  font-family: 'Poppins';
}

.signn-con span {
  font-size: 20px;
  color: #080527bf;
  font-family: 'Poppins';
  display: block;
  margin-bottom: 46px;
}

.signn-cosn input {
  max-width: 60%;
  height: 55px;
  border-color: #cccccc36;
  border-radius: 9px;
}

.signn-cosn {
  background: #F7FAFF;
  padding: 35px;
  border-radius: 15px;
}


a.btnsb {
  padding: 13px 100px;
  background: #635bff;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
}

.sig-imgss h2 {
  font-size: 28px;
  font-weight: 600;
}

.abo-img img {
  border-radius: 30px;
  height: 380px;
  width: 100%;
  object-fit: cover;
}

.abo-pre {
  margin-top: 40px;
}

.abo-pre p {
  font-size: 20px;
  font-family: 'Poppins';
  margin-bottom: 30px;
}

section.vis-sec {
  background: #F7FAFF;
  padding-bottom: 50px;
}

.card-hb span {
  color: #635bff;
}

.card-hb h2,
.card-hb span {
  font-size: 46px;
  font-weight: 600;
  font-family: 'Poppins';
}

.card-hb {
  padding: 10px 0px 40px 0px;
}

.vls-con h3 {
  font-size: 34px;
  font-weight: 600;
  font-family: 'Poppins';
  margin-bottom: 6px;
}

.vls-con p {
  font-size: 20px;
  font-family: 'Poppins';
}

.vls-con {
  margin-bottom: 30px;
}

section.prd-sec {
  padding: 120px 0px;
}

.pr-img {
  padding: 12px;
}

.pr-img img {
  height: 90px;
  object-fit: cover;
}

.feature-section {
  padding: 0px 0px 70px 0px;
}

.feature-card {
  text-align: center;
  padding: 0 20px;
  border-left: 1px solid #e5e5e5;
}

.feature-text {
  color: #080527bf;
  font-size: 19px;
  font-family: 'Poppins';
}

.feature-icon img {
  width: 36px;
  height: 36px;
}

.feature-card {
  text-align: left;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 32px !important;
}

.feature-title {
  font-weight: 500;
  font-size: 28px;
  font-family: 'Poppins';
  margin: 13px 0px;
}

.sig-con ul {
  list-style: none;
  padding: 0px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sig-con ul li i {
  color: #0BBF90;
  font-size: 20px;
  padding-right: 5px;
}

.sig-con ul li {
  font-family: 'Poppins';
  color: #080527bf;
  font-size: 18px;
}

.ten-hdd h3 {
  font-size: 50px;
  font-weight: 600;
  font-family: 'Poppins';
}

.ten-hdd p {
  font-size: 20px;
  font-family: 'Poppins';
  color: #080527bf;
}

.hcbd h2,
.hcbd span {
  font-size: 30px;
  font-weight: 600;
  font-family: 'Poppins';
  line-height: 40px;
}

.ten-hdd {
  padding: 33px 0px;
}

.live {
  background: #F7FAFF;
  border-radius: 30px;
  padding: 40px 40px 0px 40px;
}

.vlr {
  color: #635bff;
  font-size: 33px !important;
}

.hcbd h3 {
  font-size: 33px !important;
  font-weight: 600;
  font-family: 'Poppins';
}

.swi-gd h3,
.swi-gd span {
  font-size: 55px;
  font-weight: 600;
  font-family: 'Poppins' !important;
}

.swi-gd {
  text-align: center;
  margin-bottom: 30px;
}

.swi-gd h3 span,
.swi-gd span {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(98.71deg, #5d62fd, #635bff 37%, #2a9aed 74%);
  -webkit-background-clip: text;
  background-clip: text;
}

.levg-btn {
  text-align: center;
}

.levg-btn a {
  padding: 16px 30px;
  background: #635bff;
  border: none;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Poppins';
  color: #fff;
  border-radius: 12px;
}

.levg-btn a:hover {
  background: #453fb2;
  color: #fff;
}

section.leg-sec {
  padding-bottom: 100px;
}

.crd-bxx .card-img {
  width: 60px;
  height: 60px;
}

.crd-bxx .card-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.crd-bxx {
  padding: 0px 20px 20px;
}

.echt {
  height: 300px;
  display: flex;
  justify-content: space-between;
}

.tstim-sec {
  padding: 0 0 100px;
}

.hcbd p {
  font-size: 18px;
  font-family: 'Poppins';
  font-weight: 400;
}

.crd-bd-hd p {
  font-family: 'Poppins';
}


.dropdown-toggle::after {
  display: none !important;
}

.dropdown-toggle i {
  font-size: 14px;
  margin-left: 5px;
  vertical-align: middle;
}

.dropdown-menu a {
  display: block;
  padding: 8px 15px;
  text-decoration: none;
  color: #000;
}

.dropdown-menu a:hover {
  background-color: #f8f9fa;
}






.faq-tabs .nav-link {
  border-radius: 8px;
  padding: 6px 16px;
  color: #333;
  background: #fff;
  border: 1px solid #ddd;
  margin: 0 5px;
  font-size: 17px;
  font-weight: 400;
  font-family: 'Poppins';
}

.faq-tabs .nav-link.active {
  background: #6c63ff;
  color: white;
  border-color: #6c63ff;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 2px 15px #635bff14;
}

.faq-item h6 {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
  font-family: 'Poppins';
}

.faq-item i {
  font-size: 18px;
  color: #6c63ff;
  transition: transform 0.3s;
}

.faq-item.open i {
  transform: rotate(45deg);
}

.faq-content {
  display: none;
  padding: 4px 5px 0 5px;
  color: #080527bf;
  font-size: 18px;
  font-family: 'Poppins';
}



section.faq-tbs {
  padding-top: 80px;
}

.search-box {
  position: relative;
  max-width: 500px;
  margin-bottom: 35px;
}


.search-box input {
  border-radius: 12px;
  padding: 10px 40px 10px 15px;
  border: 1px solid #ddd;
  box-shadow: none;
  font-size: 18px;
  font-family: 'Poppins';
}

.search-box i {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #555;
  cursor: pointer;
}



.nav-item a:hover {
  box-shadow: 0 2px 5px #0003;
  color: #000;
}


.contact-section p {
  font-size: 19px;
  font-family: 'Poppins';
  color: #080527;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.contact-item i {
  font-size: 26px;
  color: #000000;
  margin-right: 10px;
}

.contact-item a {
  color: #6c63ff;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-item span {
  font-size: 19px;
  font-family: 'Poppins';
}


.contact-form {
  background: #f8faff;
  padding: 20px;
  border-radius: 12px;
  max-width: 400px;
  margin: auto;
}

.form-control,
.form-select {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 10px;
  box-shadow: none;
}

.file-upload {
  border: 1px solid #6c63ff;
  color: #6c63ff;
  padding: 6px 15px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 14px;
}

.file-upload input {
  display: none;
}

.send-btn {
  background: #6c63ff;
  border: none;
  border-radius: 8px;
  padding: 10px;
  color: white;
  width: 100%;
  font-weight: 500;
  margin-top: 10px;
}

.send-btn:hover {
  background: #5a54e7;
}

.max-size-text {
  font-size: 18px;
  color: #000000;
  margin-left: 10px;
  font-family: 'Poppins';
}

.frm-dv {
  padding: 30px;
  background: #F7FAFF;
  border-radius: 30px;
}

.frm-dv input,
.frm-dv select {
  height: 55px;
  border-color: #ebebeb;
  border-radius: 15px;
  font-family: 'Poppins';
  font-size: 18px;
}

.frm-dv textarea {
  border-color: #ebebeb;
  border-radius: 15px;
}

.Terms-sec {
  padding: 100px 0;
}









.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.tab {
  padding: 8px 16px;
  border-radius: 8px;
  /* border: 1px solid #dcdcdc; */
  background: white;
  color: #333;
  cursor: pointer;
  font-weight: 400;
  font-family: 'Poppins';
  font-size: 18px;
}

.tab:hover {
  /* box-shadow: 0 2px 5px #0003; */
  color: #000;
}

.tab.active {
  background: #6c5ce7;
  color: white;
  border: none;
}

.tab-content {
  margin-top: 10px;
}

.faq-box {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(96, 97, 112, 0.1);
  padding: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-header h3 {
  font-size: 20;
  font-weight: 500;
  color: #1f1f1f;
  margin: 0;
  font-family: 'Poppins';
}

.icon {
  width: 32px;
  height: 32px;
  background-color: #6c5ce7;
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 32px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.faq-body {
  margin-top: 12px;
  font-size: 16px;
  color: #555;
}

.faq-body p {
  padding: 4px 5px 0 5px;
  color: #080527bf;
  font-size: 18px;
  font-family: 'Poppins';
}


.Terms-sec h1 {
  font-size: 46px;
  font-family: 'Poppins';
  font-weight: 600;
}

.version-date {
  font-size: 20px;
  font-family: 'Poppins';
}

.Terms-sec p {
  font-size: 20px;
  font-family: 'Poppins';
}

.Terms-sec h2 {
  padding-left: 30px;
  font-weight: 400;
  font-size: 28px;
  font-family: 'Poppins';
}

.Terms-sec h3 {
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins';
}

.Terms-sec ul li {
  font-size: 20px;
  font-family: 'Poppins';
}

.Terms-sec h4 {
  font-size: 28px;
  font-family: 'Poppins';
  font-weight: 600;
  margin: 20px 0px;
}



.pagination button {
  background: #622DFA;
  border-color: #622DFA;
}



@media (max-width:349px) {
    .detail-value {
    color: #374151;
    font-size: 10px;
}

.inrbox {
    width: 100% !important;
    max-width: 100% !important;
}
.tab-content {
    margin-top: 10px;
    width: 100% !important;
}
.detail-label {
    min-width: 90px !important;
    font-size: 10px !important;
}
.dt-buttons button {
    font-size: 13px !important;
}
.table-striped th {
    font-size: 7px !important;
}
.table-striped td {
    font-size: 7px !important;
}
.profile_section .avatarss {
    width: 35px !important;
    height: 35px !important;
    font-size: 15px !important;
    margin-right: 8px !important;
}
.profile_section .name-email p {
    font-size: 9px !important;
}
.profile_section .name-email h2 {
    font-size: 14px !important;
}
body .tenant-text-style {
    font-size: 11px !important;
}

.profile_section .divider {
    height: 0px !important;
}

span.pass_set {
    font-size: 11px !important;
}

.profile_section .actions button {
    padding: 4px 15px;
}
.profile_section .tab {
    font-size: 13px !important;
}
.profile_section label {
    font-size: 13px !important;
}

.country-select {
    font-size: 13px !important;
}
select#country {
    font-size: 13px !important;
}

.profile_section .modal-content {
    width: 290px !important;
}

.profile_section .modal-content {
    padding: 16px !important;
}
.profile_section .modal-content h2 {
    font-size: 15px !important;
}

.profile_section .input-wrapper input {
    font-size: 14px !important;
}

}




@media(max-width:767px) {

  .inrbox {
    width: 100% !important;
  }

  .clbdr h3 {
    font-size: 20px;
  }

  .inrbox {
    padding: 10px !important;
  }

  .icnbx {
    padding: 0px !important;
  }

  .contract-details {
    padding: 0px !important;
  }

  .manhdr h3 {
    font-size: 20px !important;
  }

  body .minsts {
    margin-bottom: 20px !important;
  }

  .nwtb .col-lg-6.col-sm-12 {
    padding-bottom: 20px;
  }

  .uncdt {
    display: none;
}

.table-striped th {
    font-size: 9px;
}

.table-striped td {
    font-size: 9px;
}
.table>:not(caption)>*>* {
    padding: .3rem .3rem;
}
.form-control, .form-select {
    padding: 4px;
}
.profile_section .msnbv {
    padding: 15px 15px;
}
.profile_section .avatarss {
    width: 42px;
    height: 42px;
    justify-content: center;
    font-size: 18px;
    margin-right: 11px;
}
.profile_section .name-email h2 {
    font-size: 16px;
}
.profile_section .name-email p {
    font-size: 12px;
}

.profile_section .tab {
    font-size: 15px;
}
.profile_section .tab.active {
    padding-top: 10px;
    padding-bottom: 10px;
}
.profile_section .tab-content {
    padding: 20px 10px;
}
body .tenant-text-style {
  font-size: 14px;
}

body .tenant-blue-text {
  font-size: 14px;
}
.profile_section .actions button {
    padding: 7px 15px;
    margin-right: 6px;
}
.offcanvas-header {
    padding: 0px 10px;
}
.offcanvas-body {
    padding: 0px 10px;
}

.minimized .dashboard_link{
  display:  block !important;
}




}


@media(min-width: 768px) and (max-width: 1023px) {
  .dashboard-grid {
    display: unset;
  }

  .dashboard-card {
    margin-bottom: 20px;
  }

  .inrbox {
    width: 100% !important;
  }

  .manhdr h3 {
    font-size: 22px;
  }

  .dropdown-content {
    left: -270px;
  }
  
}

@media(min-width: 1024px) and (max-width: 1200px) {

  .tabs li .nav-link {
    padding: 2px 40px;
  }

  .inrbox {
    width: 331px !important;
  }
  .contract-details {
    padding: 10px;
    margin-bottom: 0;
}
.inrbox {
    padding: 10px !important;
    gap: 0px !important;
}
.inrcnvs {
    height: 453px !important;
}






}

@media(min-width: 2500px) and (max-width: 2700px) {

  .tabs {
    display: flex;
    flex-direction: column;
  }
}


.actions .tenant-text-style {
  color: #fff !important;
}

.actions .tenant-blue-text {
  color: #fff !important;
}

.sidebar-minimized .dashboard_link{
  display: none;
}

.sidebar-minimized .inrbox {
    width: 600px;
}


.sidebar-minimized .inrcnvs {
    height: 500px !important;
}

.minsts {
    margin-bottom: 40px;
}

