/* line 2, app/assets/stylesheets/customer/profile_panel.scss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* line 8, app/assets/stylesheets/customer/profile_panel.scss */
:root {
  /* Brand Colors */
  --primary-green: #08af86;
  --primary-green-hover: #06946f;
  --primary-green-light: #e6f8f5;
  /* Chinese Black Colors */
  --chinese-black: #161616;
  --text-333333: #333333;
  /* Navy/Dark Colors */
  --navy-dark: #1b3765;
  --text-dark: #102348;
  --text-medium: #666666;
  --text-light: #999999;
  /* Neutral Colors */
  --border-color: #e0e0e0;
  --bg-light: #f5f5f5;
  --bg-lighter: #fafafa;
  --white: #ffffff;
  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xlg: 20px;
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* line 46, app/assets/stylesheets/customer/profile_panel.scss */
body {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-lighter);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 57, app/assets/stylesheets/customer/profile_panel.scss */
.sticky-header {
  position: sticky;
  top: 0px;
  background-color: white;
  z-index: 9999;
  border-bottom: 1.03px solid #e5e7eb;
  padding: 15px;
  font-family: Work Sans;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 18px;
  letter-spacing: 0px;
  /* text-align: center; */
  color: #0a0a0a;
}

/* line 73, app/assets/stylesheets/customer/profile_panel.scss */
.nav-container {
  background-color: var(--nav-bg);
  /* border:0.8px solid var(--nav-border); */
  border: 0.8px solid #e5e7eb;
}

/* line 78, app/assets/stylesheets/customer/profile_panel.scss */
.crumbs {
  color: #717182;
  font-size: 0.92rem;
}

/* line 82, app/assets/stylesheets/customer/profile_panel.scss */
.crumbs a {
  color: #717182;
  text-decoration: none;
}

/* line 86, app/assets/stylesheets/customer/profile_panel.scss */
.breadcrumb-item + .breadcrumb-item::before {
  content: ">" !important;
}

/* line 89, app/assets/stylesheets/customer/profile_panel.scss */
.topbar {
  background: #fff;
  border-bottom: 1px solid var(--stroke);
  top: 0px;
  z-index: 99999;
  position: sticky;
}

/* line 96, app/assets/stylesheets/customer/profile_panel.scss */
.card-container {
  background: #ffffff;
  border: 1.03px solid #e5e7eb;
  box-shadow: 0px 2px 8px 0px #00000014;
  width: 100%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
}

/* line 108, app/assets/stylesheets/customer/profile_panel.scss */
.edit-details-btn {
  padding: 10px 24px;
  background: var(--primary-green);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: "Work Sans", sans-serif;
  white-space: nowrap;
}

/* line 122, app/assets/stylesheets/customer/profile_panel.scss */
.edit-details-btn:hover {
  background: var(--primary-green-hover);
  transform: translateY(-1px);
}

/* line 126, app/assets/stylesheets/customer/profile_panel.scss */
.logout-details-btn {
  background-color: #ffffff;
  border: 1.03px solid #d1d5dc;
  padding: 10px 24px;
  /* background: var(--primary-green); */
  color: #364153;
  /* border: none; */
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: "Work Sans", sans-serif;
  white-space: nowrap;
}

/* line 141, app/assets/stylesheets/customer/profile_panel.scss */
.text-label {
  font-family: Work Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  letter-spacing: 0.3px;
  text-align: center;
  text-transform: uppercase;
  color: #6a7282;
}

/* line 151, app/assets/stylesheets/customer/profile_panel.scss */
.text-val {
  font-family: Work Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  letter-spacing: 0px;
  text-align: center;
  color: #555;
}

/* line 161, app/assets/stylesheets/customer/profile_panel.scss */
.name-text {
  font-family: Work Sans;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 20px;
  color: #222;
  letter-spacing: 0px;
  text-align: center;
}

/* Modal custom */
/* line 172, app/assets/stylesheets/customer/profile_panel.scss */
.modal-content {
  border-radius: 12px;
}

/* line 175, app/assets/stylesheets/customer/profile_panel.scss */
.profile-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #eaf6f1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px auto;
}

/* line 185, app/assets/stylesheets/customer/profile_panel.scss */
.field-icon {
  width: 18px;
  height: 18px;
  opacity: 0.6;
  margin-right: 8px;
}

/* line 192, app/assets/stylesheets/customer/profile_panel.scss */
.required-star {
  color: #d31b1b;
  margin-left: 4px;
  font-weight: 600;
}

/* small helpers */
/* line 199, app/assets/stylesheets/customer/profile_panel.scss */
.muted {
  color: var(--muted);
}

/* line 202, app/assets/stylesheets/customer/profile_panel.scss */
.form-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

@media (min-width: 700px) {
  /* line 209, app/assets/stylesheets/customer/profile_panel.scss */
  .modal-dialog {
    max-width: 520px;
    margin: 1.75rem auto;
  }
}

/* line 214, app/assets/stylesheets/customer/profile_panel.scss */
.custom-lable {
  font-family: Work Sans;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  letter-spacing: 0px;
  color: #222;
}

/* ================================
      Desktop slide-in profile panel styles
      (Does not apply on small screens)
  ================================ */
@media (min-width: 768px) {
  /* line 229, app/assets/stylesheets/customer/profile_panel.scss */
  .profile-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 360px;
    max-width: 100%;
    background: #ffffff;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.25);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 300ms ease;
    overflow-y: auto;
    border-left: 1px solid var(--border-color);
    z-index: 999999;
  }
  /* line 245, app/assets/stylesheets/customer/profile_panel.scss */
  .profile-panel.open {
    transform: translateX(0);
  }
}

@media (max-width: 767.98px) {
  /* line 250, app/assets/stylesheets/customer/profile_panel.scss */
  .profile-panel {
    display: none;
  }
  /* ensure mobile modal is used instead */
}

/* line 255, app/assets/stylesheets/customer/profile_panel.scss */
.profile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

/* line 264, app/assets/stylesheets/customer/profile_panel.scss */
.profile-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* line 269, app/assets/stylesheets/customer/profile_panel.scss */
.avatar-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #e6f2ec;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #2b7a5a;
  margin: 0 auto;
}

/* line 281, app/assets/stylesheets/customer/profile_panel.scss */
.edit-action {
  cursor: pointer;
  color: #08af86;
  text-decoration: none;
  font-family: Work Sans;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  letter-spacing: 0px;
  /* text-align: center; */
}

/* line 293, app/assets/stylesheets/customer/profile_panel.scss */
.field-label {
  font-size: 0.85rem;
  color: #6c757d;
  letter-spacing: 0.2px;
}

/* line 298, app/assets/stylesheets/customer/profile_panel.scss */
.panel-header {
  border-bottom: 1px solid #e9ecef;
  padding: 18px;
}

/* line 302, app/assets/stylesheets/customer/profile_panel.scss */
.panel-body {
  padding: 18px;
}

/* line 305, app/assets/stylesheets/customer/profile_panel.scss */
.btn-logout {
  width: 100%;
  background-color: #08af86;
  border-radius: 10px;
  padding: 10px;
}

/* line 311, app/assets/stylesheets/customer/profile_panel.scss */
.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* line 319, app/assets/stylesheets/customer/profile_panel.scss */
.custom-label-web {
  font-family: Work Sans;
  font-weight: 500;
  font-style: Medium;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #6a7282;
}

/* line 328, app/assets/stylesheets/customer/profile_panel.scss */
.custom-label-web-text {
  font-family: Work Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  letter-spacing: 0px;
  color: #101828;
}

/* line 337, app/assets/stylesheets/customer/profile_panel.scss */
.btn-sm {
  background-color: #08af86;
  border-radius: 8px;
  border: none;
  /* padding:10px; */
}

/* line 343, app/assets/stylesheets/customer/profile_panel.scss */
.cancel-btn-sm {
  background-color: #f3f4f6;
  border-radius: 8px;
  font-family: Work Sans;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  letter-spacing: 0px;
  text-align: center;
  color: #101828;
  border: none;
}

/* app/assets/stylesheets/customer/profile_panel.css */
/* Mobile Profile Styles */
/* line 360, app/assets/stylesheets/customer/profile_panel.scss */
.mobile-profile-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  z-index: 100000;
  overflow-y: auto;
}

/* When profile is active, hide the body scroll */
/* line 373, app/assets/stylesheets/customer/profile_panel.scss */
body.mobile-profile-active {
  overflow: hidden;
}

/* The sticky header for profile should be at the very top */
/* line 378, app/assets/stylesheets/customer/profile_panel.scss */
.mobile-profile-wrapper .sticky-header {
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 1000;
  border-bottom: 1.03px solid #e5e7eb;
  padding: 15px;
  font-family: Work Sans;
  font-weight: 600;
  font-size: 18px;
  color: #0a0a0a;
}

/* Ensure modal is on top of everything */
/* line 392, app/assets/stylesheets/customer/profile_panel.scss */
#mobileEditProfileModal.modal {
  z-index: 100001 !important;
}

/* line 396, app/assets/stylesheets/customer/profile_panel.scss */
#mobileEditProfileModal .modal-backdrop {
  z-index: 100000 !important;
}
