@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
[x-cloak] {
  display: none !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hidden {
  display: none !important;
}

.translucent {
  opacity: 0 !important;
}

.full-width {
  max-width: 100% !important;
  width: 100% !important;
}

.full-height {
  max-height: 100% !important;
  height: 100% !important;
}

.no-padding {
  padding: 0 !important;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  width: 100%;
  min-height: 100vh;
  overflow-y: scroll;
  scrollbar-gutter: stable;
  color: #1e3a8a;
  background-color: #f3f4f6;
}

.mb-5 {
  margin-bottom: 5px;
}

.mt-5 {
  margin-top: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mt-10 {
  margin-top: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mt-15 {
  margin-top: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mt-25 {
  margin-top: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mt-35 {
  margin-top: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mt-45 {
  margin-top: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mt-50 {
  margin-top: 50px;
}

.page-wrapper {
  position: relative;
  display: flex;
  min-height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
}
.page-wrapper .left-col-nav {
  position: sticky;
  top: 100px;
  align-self: flex-start;
  margin: 100px 0 30px 30px;
  width: 250px;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  flex-shrink: 0;
}
@media only screen and (max-width: 1023.9px) {
  .page-wrapper .left-col-nav {
    display: none;
  }
}
.page-wrapper .left-col-nav__env {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
}
.page-wrapper .left-col-nav__env i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1rem;
}
.page-wrapper .left-col-nav__env--local {
  color: #dc2626;
}
.page-wrapper .left-col-nav__env--local i {
  background: rgba(220, 38, 38, 0.12);
  color: #dc2626;
}
.page-wrapper .left-col-nav__env--dev {
  color: #16a34a;
}
.page-wrapper .left-col-nav__env--dev i {
  background: rgba(22, 163, 74, 0.12);
  color: #16a34a;
}
.page-wrapper .left-col-nav__env-text {
  display: flex;
  flex-direction: column;
}
.page-wrapper .left-col-nav__env-label {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #003e75;
}
.page-wrapper .left-col-nav__env-value {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.25px;
}
.page-wrapper .left-col-nav__menu {
  flex: 1;
  padding: 25px 0;
  overflow-y: auto;
}
.page-wrapper .left-col-nav__menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-wrapper .left-col-nav__menu li {
  margin: 0;
  padding: 0;
}
.page-wrapper .left-col-nav__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: #4b5563;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
  outline: none;
  border-left: 3px solid transparent;
}
.page-wrapper .left-col-nav__link:focus, .page-wrapper .left-col-nav__link:active {
  outline: none;
  box-shadow: none;
}
.page-wrapper .left-col-nav__link i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #003e75;
  color: #ffffff;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.page-wrapper .left-col-nav__link span {
  flex: 1;
}
.page-wrapper .left-col-nav__link:not(.page-wrapper .left-col-nav__link--active):hover {
  background: rgba(229, 231, 235, 0.4);
  color: #111827;
}
.page-wrapper .left-col-nav__link--active {
  background: rgba(229, 231, 235, 0.4);
  color: #003e75;
  font-weight: 600;
  border-left-color: #ef4444;
}
.page-wrapper .left-col-nav__divider {
  height: 1px;
  background: #e5e7eb;
  margin: 10px 20px;
}
.page-wrapper .right-col-page {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.page-wrapper .right-col-page .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1100;
  height: 70px;
  background: #003e75;
}
.page-wrapper .right-col-page .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 30px;
}
.page-wrapper .right-col-page .header__logo {
  display: flex;
  align-items: center;
}
.page-wrapper .right-col-page .header__logo a {
  display: block;
}
.page-wrapper .right-col-page .header__logo img {
  height: 55px;
  width: auto;
}
@media only screen and (max-width: 299.9px) {
  .page-wrapper .right-col-page .header__logo img {
    height: 40px;
  }
}
@media only screen and (max-width: 1023.9px) {
  .page-wrapper .right-col-page .header .avatar-menu__name {
    display: none;
  }
}
.page-wrapper .right-col-page .header__search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f3f4f6;
  border-radius: 8px;
  padding: 10px 15px;
  flex: 1;
  max-width: 400px;
}
.page-wrapper .right-col-page .header__search i {
  color: #cacfd6;
}
.page-wrapper .right-col-page .header__search-input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.9rem;
  color: #374151;
  width: 100%;
}
.page-wrapper .right-col-page .header__search-input::placeholder {
  color: #cacfd6;
}
.page-wrapper .right-col-page .header__user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-wrapper .right-col-page .header__user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #003e75;
  color: #ffffff;
  font-size: 1rem;
  flex-shrink: 0;
}
.page-wrapper .right-col-page .header__user-name {
  font-weight: 500;
  color: #374151;
  font-size: 0.9rem;
}
.page-wrapper .right-col-page main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  padding-top: 100px;
  width: 100%;
}
@media only screen and (max-width: 1023.9px) {
  .page-wrapper .right-col-page main {
    padding: 20px;
    padding-top: 90px;
  }
}
@media only screen and (max-width: 499.9px) {
  .page-wrapper .right-col-page main {
    padding: 15px;
    padding-top: 85px;
  }
}
.page-wrapper .right-col-page main section.row {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.page-wrapper .right-col-page main section.row .content-header-section {
  width: 100%;
}
.page-wrapper .right-col-page main section.row .content-header-section .page-title-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  margin-bottom: 2rem;
  padding: 1.5rem 2rem;
}
@media only screen and (max-width: 1023.9px) {
  .page-wrapper .right-col-page main section.row .content-header-section .page-title-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
  }
}
.page-wrapper .right-col-page main section.row .content-header-section .page-title-card .page-title {
  flex: 1;
  min-width: 0;
  width: 100%;
}
.page-wrapper .right-col-page main section.row .content-header-section .page-title-card .page-title__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #ef4444;
}
.page-wrapper .right-col-page main section.row .content-header-section .page-title-card .page-title h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #003e75;
  margin: 0;
  letter-spacing: -0.02em;
}
@media only screen and (max-width: 1023.9px) {
  .page-wrapper .right-col-page main section.row .content-header-section .page-title-card .page-title h1 {
    font-size: 1.625rem;
  }
}
.page-wrapper .right-col-page main section.row .content-header-section .page-title-card .page-title .page-subtitle {
  margin: 0.75rem 0 0 0;
  font-size: 0.9375rem;
  color: #6b7280;
  font-weight: 400;
}
@media only screen and (max-width: 1023.9px) {
  .page-wrapper .right-col-page main section.row .content-header-section .page-title-card .page-title .page-subtitle {
    font-size: 0.875rem;
  }
}
.page-wrapper .right-col-page main section.row .content-header-section .page-title-card .page-title-actions {
  flex-shrink: 0;
}
@media only screen and (max-width: 1023.9px) {
  .page-wrapper .right-col-page main section.row .content-header-section .page-title-card .page-title-actions {
    width: 100%;
  }
  .page-wrapper .right-col-page main section.row .content-header-section .page-title-card .page-title-actions .btn {
    width: 100%;
  }
}
.page-wrapper .right-col-page main section.row .content-body-section {
  width: 100%;
}
.page-wrapper .right-col-page main section.row .content-footer-section {
  width: 100%;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}
.page-wrapper .right-col-page .footer {
  width: 100%;
  padding: 20px 30px;
  margin-top: auto;
  text-align: center;
}
.page-wrapper .right-col-page .footer__inner {
  text-align: center;
}
.page-wrapper .right-col-page .footer__inner p {
  margin: 0;
  font-size: 0.85rem;
  color: #6b7280;
}

.auth-wrapper {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}
.auth-wrapper main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  width: 100%;
  min-height: 100vh;
}
.auth-wrapper main .auth-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 20px 25px -5px rgba(0, 0, 0, 0.05);
  padding: 3rem;
  width: 100%;
  max-width: 480px;
}
.auth-wrapper main .auth-card .auth-card__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 2rem;
}
.auth-wrapper main .auth-card .auth-card__header h1 {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: #003e75;
  margin: 0 0 0.5rem 0;
}
@media only screen and (max-width: 399.9px) {
  .auth-wrapper main .auth-card .auth-card__header h1 {
    font-size: 1.5rem;
  }
}
.auth-wrapper main .auth-card .auth-card__header p {
  text-align: center;
  color: #003e75;
  font-size: 0.9375rem;
  margin: 0;
}
.auth-wrapper main .auth-card .auth-card__header .logo {
  margin-bottom: 1.5rem;
  height: 48px;
  width: auto;
}
.auth-wrapper main .auth-card .auth-card__body {
  width: 100%;
}
.auth-wrapper main .auth-card .auth-card__body .form-group label {
  color: #003e75;
}
.auth-wrapper main .auth-card .auth-card__body .form-actions {
  margin-top: 2rem;
}
.auth-wrapper main .auth-card .auth-card__body .form-actions .btn {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  border-radius: 12px;
}
.auth-wrapper main .auth-card .auth-card__body .auth-links {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9375rem;
  color: #003e75;
}
.auth-wrapper main .auth-card .auth-card__body .auth-links a {
  color: #1d4ed8;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.auth-wrapper main .auth-card .auth-card__body .auth-links a:hover {
  color: #1e3a8a;
  text-decoration: underline;
}
.auth-wrapper main .auth-card .auth-card__footer {
  width: 100%;
}
.auth-wrapper main .auth-card--no-border {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  max-width: 480px;
}
.auth-wrapper main .auth-card--no-border .auth-card__header {
  width: 100%;
}
.auth-wrapper main .auth-card--no-border .auth-card__body {
  width: 100%;
}
.auth-wrapper main .auth-card--no-border .auth-card__footer {
  width: 100%;
}

@media only screen and (max-width: 519.9px) {
  .auth-wrapper main {
    padding: 1rem;
  }
  .auth-wrapper main .auth-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }
}
h1, h2, h3, h4, h5, h6 {
  color: #1e3a8a;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

h2 {
  font-size: 1.5rem;
  padding-bottom: 0.15rem;
}

h3 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #374151;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #003e75;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
a:hover {
  color: #1d4ed8;
}
a:focus {
  outline: 2px solid #003e75;
  outline-offset: 2px;
}

ul, ol {
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
li:last-child {
  margin-bottom: 0;
}

.list-unstyled {
  list-style: none;
  padding-left: 0;
}
.list-unstyled li {
  position: relative;
  padding-left: 1.5rem;
}
.list-unstyled li:before {
  content: "•";
  color: #1d4ed8;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

strong {
  font-weight: 600;
  color: #1f2937;
}

em {
  font-style: italic;
  color: #374151;
}

code {
  background: #f3f4f6;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.9em;
  color: #1f2937;
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-muted {
  color: #6b7280;
}

.text-small {
  font-size: 0.875rem;
}

.field-error {
  display: block;
  color: #ef4444;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

.has-error label {
  color: #ef4444 !important;
}
.has-error input, .has-error textarea, .has-error select {
  border-color: #ef4444 !important;
  background: rgba(239, 68, 68, 0.02) !important;
}
.has-error input:focus, .has-error textarea:focus, .has-error select:focus {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.08) !important;
}
.has-error input:hover, .has-error textarea:hover, .has-error select:hover {
  border-color: #ef4444 !important;
}

.form-actions {
  margin-top: 2.5rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.9375rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.2s ease;
  background: #f9fafb;
  color: #111827;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: #003e75;
  box-shadow: 0 0 0 4px rgba(0, 62, 117, 0.08);
  background: #ffffff;
}
.form-group input:hover:not(:focus), .form-group textarea:hover:not(:focus), .form-group select:hover:not(:focus) {
  border-color: #d1d5db;
  background: #ffffff;
}
.form-group input::placeholder, .form-group textarea::placeholder, .form-group select::placeholder {
  color: #cacfd6;
}
.form-group input[readonly], .form-group textarea[readonly], .form-group select[readonly] {
  background: #f3f4f6;
  border-color: #e5e7eb;
  color: #4b5563;
  cursor: not-allowed;
}
.form-group input[readonly]:hover, .form-group textarea[readonly]:hover, .form-group select[readonly]:hover {
  border-color: #e5e7eb;
  background: #f3f4f6;
}
.form-group input[readonly]:focus, .form-group textarea[readonly]:focus, .form-group select[readonly]:focus {
  border-color: #d1d5db;
  box-shadow: 0 0 0 4px rgba(209, 213, 219, 0.08);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.input-group {
  display: flex;
  align-items: stretch;
}
.input-group__prefix, .input-group__suffix {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  font-size: 1rem;
  font-weight: 600;
  color: #4b5563;
}
.input-group__prefix {
  border-right: none;
  border-radius: 12px 0 0 12px;
}
.input-group__suffix {
  border-left: none;
  border-radius: 0 12px 12px 0;
}
.input-group input {
  flex: 1;
  border-radius: 0;
}
.input-group input:first-child {
  border-radius: 12px 0 0 12px;
}
.input-group input:last-child {
  border-radius: 0 12px 12px 0;
}
.input-group .input-group__prefix + input {
  border-radius: 0 12px 12px 0;
}

.rating-element-fields {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.rating-element-field .form-group {
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn i {
  font-size: 0.875rem;
  color: inherit;
}
.btn:hover {
  text-decoration: none;
}
.btn:hover i {
  color: inherit;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn--loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}
.btn--loading > * {
  visibility: hidden;
}
.btn--loading::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  color: #ffffff;
}

.btn-primary {
  background: #003e75;
  color: #ffffff;
}
.btn-primary:hover:not(:disabled) {
  background: #1d4ed8;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 62, 117, 0.35);
  transform: translateY(-1px);
}
.btn-primary:active:not(:disabled) {
  background: #1e3a8a;
  color: #ffffff;
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 62, 117, 0.25);
}

.btn-secondary {
  background: #f3f4f6;
  color: #374151;
  border: 1px solid #e5e7eb;
}
.btn-secondary:hover:not(:disabled) {
  background: #e5e7eb;
  border-color: #d1d5db;
  transform: translateY(-1px);
}
.btn-secondary:active:not(:disabled) {
  background: #d1d5db;
  transform: translateY(0);
}

.btn-outline {
  background: #ffffff;
  color: #374151;
  border: 1px solid #d1d5db;
}
.btn-outline:hover:not(:disabled) {
  background: #f9fafb;
  border-color: #cacfd6;
  color: #1f2937;
  transform: translateY(-1px);
}
.btn-outline:active:not(:disabled) {
  background: #f3f4f6;
  transform: translateY(0);
}
.btn-outline--danger {
  color: #ef4444;
  border-color: #ef4444;
}
.btn-outline--danger:hover:not(:disabled) {
  background: hsl(0, 84.236453202%, 105.1960784314%);
  border-color: #ef4444;
  color: #ef4444;
}
.btn-outline--danger:active:not(:disabled) {
  background: hsl(0, 84.236453202%, 100.1960784314%);
}

.btn-ghost {
  background: transparent;
  color: #4b5563;
}
.btn-ghost:hover:not(:disabled) {
  background: #f3f4f6;
  color: #374151;
}
.btn-ghost:active:not(:disabled) {
  background: #e5e7eb;
}

.btn-sm {
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  border-radius: 10px;
}

.btn-lg {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  border-radius: 14px;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loading-spinner {
  color: #ffffff;
  font-size: 3rem;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.alert {
  padding: 1rem 2.5rem 1rem 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  margin-bottom: 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  opacity: 1;
  transition: opacity 0.3s ease-out;
  width: 100%;
  position: relative;
}
.alert > i {
  flex-shrink: 0;
  font-size: 1.125rem;
  margin-top: 0.125rem;
}
.alert .alert-content {
  flex: 0 1 auto;
}
.alert .alert-dismiss {
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
}
.alert .alert-dismiss:hover {
  opacity: 1;
}

.alert-info {
  background-color: rgb(199.75, 244, 250.75);
  border-color: #22d3ee;
  color: #0891b2;
}
.alert-info i {
  color: #06b6d4;
}

.alert-success {
  background-color: rgb(224.9721, 249.5253, 233.9307);
  border-color: #4ade80;
  color: #16a34a;
}
.alert-success i {
  color: #22c55e;
}

.alert-warning {
  background-color: rgb(253.7444, 234.9104, 186.2559);
  border-color: #fbbf24;
  color: #d97706;
}
.alert-warning i {
  color: #ffa100;
}

.alert-danger {
  background-color: rgb(253.9899, 234.5094, 234.5094);
  border-color: #f87171;
  color: #dc2626;
}
.alert-danger i {
  color: #ef4444;
}

.alert-no-border {
  border: 0;
}

.alert-fading {
  opacity: 0;
}

.alert-sm {
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
}
.alert-sm i {
  font-size: 0.875rem;
}

.alert-lg {
  padding: 1.5rem 1.75rem;
  font-size: 1rem;
}
.alert-lg i {
  font-size: 1.5rem;
}

.alert-toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 400px;
  width: calc(100% - 2rem);
  pointer-events: none;
}
.alert-toast-container .alert {
  pointer-events: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 0;
  animation: alertToastSlideIn 0.3s ease-out;
}
.alert-toast-container .alert-fading {
  animation: alertToastSlideOut 0.3s ease-out forwards;
}

@keyframes alertToastSlideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes alertToastSlideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}
.alert-dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1rem;
  transition: background-color 0.3s ease;
  backdrop-filter: blur(0px);
}
.alert-dialog-overlay--visible {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}
.alert-dialog-overlay--visible .alert-dialog {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.alert-dialog {
  background: linear-gradient(145deg, #ffffff 0%, #f9fafb 100%);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem 2rem;
  max-width: 380px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.alert-dialog__icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
}
.alert-dialog__icon::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  animation: alertDialogIconPulse 2s ease-in-out infinite;
}
.alert-dialog__icon i {
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
}
.alert-dialog__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}
.alert-dialog__message {
  font-size: 1rem;
  color: #6b7280;
  margin: 0 0 2rem;
  line-height: 1.6;
}
.alert-dialog__action-container {
  display: flex;
  justify-content: center;
}
.alert-dialog__action-container--confirm {
  gap: 0.75rem;
}
.alert-dialog__cancel {
  min-width: 100px;
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
}
.alert-dialog__cancel:hover {
  transform: translateY(-2px);
}
.alert-dialog__cancel:active {
  transform: translateY(0);
}
.alert-dialog__action {
  min-width: 140px;
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 62, 117, 0.3);
}
.alert-dialog__action:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 62, 117, 0.4);
}
.alert-dialog__action:active {
  transform: translateY(0);
}
.alert-dialog__redirecting {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #6b7280;
  font-size: 0.9375rem;
  font-weight: 500;
  min-height: 48px;
}
.alert-dialog__redirecting .spinner {
  width: 20px;
  height: 20px;
  border: 2px solid #e5e7eb;
  border-top-color: #003e75;
  border-radius: 50%;
  animation: alertDialogSpin 0.8s linear infinite;
}
.alert-dialog--success .alert-dialog__icon {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.05) 100%);
}
.alert-dialog--success .alert-dialog__icon::before {
  border-color: rgba(34, 197, 94, 0.3);
}
.alert-dialog--success .alert-dialog__icon i {
  color: #22c55e;
}
.alert-dialog--danger .alert-dialog__icon {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.05) 100%);
}
.alert-dialog--danger .alert-dialog__icon::before {
  border-color: rgba(239, 68, 68, 0.3);
}
.alert-dialog--danger .alert-dialog__icon i {
  color: #ef4444;
}
.alert-dialog--warning .alert-dialog__icon {
  background: linear-gradient(135deg, rgba(255, 161, 0, 0.15) 0%, rgba(255, 161, 0, 0.05) 100%);
}
.alert-dialog--warning .alert-dialog__icon::before {
  border-color: rgba(255, 161, 0, 0.3);
}
.alert-dialog--warning .alert-dialog__icon i {
  color: #ffa100;
}
.alert-dialog--info .alert-dialog__icon {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(6, 182, 212, 0.05) 100%);
}
.alert-dialog--info .alert-dialog__icon::before {
  border-color: rgba(6, 182, 212, 0.3);
}
.alert-dialog--info .alert-dialog__icon i {
  color: #06b6d4;
}

@keyframes alertDialogIconPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
}
@keyframes alertDialogSpin {
  to {
    transform: rotate(360deg);
  }
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: 20px;
}
.badge--xs {
  padding: 0.125rem 0.375rem;
  font-size: 0.6875rem;
  gap: 0.125rem;
}
.badge--sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  gap: 0.25rem;
}
.badge--md {
  padding: 0.375rem 0.75rem;
  font-size: 0.8125rem;
  gap: 0.375rem;
}
.badge--lg {
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  gap: 0.5rem;
}
.badge--primary {
  background: #eff6ff;
  color: #003e75;
  border: 1px solid #bfdbfe;
}
.badge--gray {
  background: #f3f4f6;
  color: #4b5563;
  border: 1px solid #e5e7eb;
}
.badge--teal {
  background: #99f6e4;
  color: #0d9488;
  border: 1px solid rgba(13, 148, 136, 0.3);
}
.badge--amber {
  background: #fde68a;
  color: #d97706;
  border: 1px solid rgba(217, 119, 6, 0.3);
}
.badge--purple {
  background: #e9d5ff;
  color: #7c3aed;
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: 100px;
  text-transform: capitalize;
}
.status-badge--draft, .status-badge--request {
  background: #f3f4f6;
  color: #4b5563;
}
.status-badge--submitted {
  background: #99f6e4;
  color: #0d9488;
}
.status-badge--in_review {
  background: #e9d5ff;
  color: #7c3aed;
}
.status-badge--quoted {
  background: #fde68a;
  color: #d97706;
}
.status-badge--bound {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
}
.status-badge--declined {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}
.status-badge--processing {
  background: #dbeafe;
  color: #1d4ed8;
}
.status-badge--error {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

.env-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.env-badge--local {
  background: rgba(220, 38, 38, 0.15);
  color: #dc2626;
}
.env-badge--dev {
  background: rgba(22, 163, 74, 0.15);
  color: #16a34a;
}

.card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card__action-link {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #003e75;
  text-decoration: none;
  transition: color 0.15s ease;
}
.card__action-link:hover {
  color: #1e3a8a;
}
.card__action-link i {
  font-size: 0.75rem;
}

.card__header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}
@media only screen and (max-width: 767.9px) {
  .card__header {
    padding: 1rem;
  }
}
.card__header h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}
.card__header h2 i {
  color: #003e75;
}

.card__body {
  padding: 1.5rem;
}
@media only screen and (max-width: 767.9px) {
  .card__body {
    padding: 1.25rem;
  }
}

.card__body--flush {
  padding: 0;
}

.card--padded-sm {
  padding: 1rem;
}

.card--padded-md {
  padding: 1.5rem;
}
@media only screen and (max-width: 767.9px) {
  .card--padded-md {
    padding: 1.25rem;
  }
}
@media only screen and (max-width: 499.9px) {
  .card--padded-md {
    padding: 1rem;
  }
}

.card--padded-lg {
  padding: 2rem;
}
@media only screen and (max-width: 767.9px) {
  .card--padded-lg {
    padding: 1.5rem;
  }
}
@media only screen and (max-width: 499.9px) {
  .card--padded-lg {
    padding: 1rem;
  }
}

.card--rounded-sm {
  border-radius: 12px;
}

.card--rounded-lg {
  border-radius: 20px;
}
@media only screen and (max-width: 767.9px) {
  .card--rounded-lg {
    border-radius: 16px;
  }
}

.card--dashed {
  border: 2px dashed #d1d5db;
  box-shadow: none;
}

.card--interactive {
  text-decoration: none;
  transition: all 0.2s ease;
  outline: none;
}
.card--interactive:hover, .card--interactive:focus {
  border-color: #1d4ed8;
  box-shadow: 0 4px 16px rgba(0, 62, 117, 0.15);
  transform: translateY(-2px);
  outline: none;
}
.card--interactive:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 62, 117, 0.15);
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  width: 100%;
}
@media only screen and (max-width: 767.9px) {
  .empty-state {
    padding: 2rem 1.5rem;
  }
}
.empty-state__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #003e75;
  color: #ffffff;
  font-size: 2rem;
  flex-shrink: 0;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 767.9px) {
  .empty-state__icon {
    width: 64px;
    height: 64px;
  }
  .empty-state__icon i {
    font-size: 1.5rem;
  }
}
.empty-state__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #374151;
  margin: 0 0 0.5rem 0;
}
@media only screen and (max-width: 767.9px) {
  .empty-state__title {
    font-size: 1.25rem;
  }
}
.empty-state__description {
  font-size: 1rem;
  color: #6b7280;
  margin: 0 0 1.5rem 0;
  max-width: 400px;
}
.empty-state--compact {
  padding: 2rem 1.5rem;
  border: 2px dashed #d1d5db;
  border-radius: 0.5rem;
  background: #f9fafb;
}
@media only screen and (max-width: 767.9px) {
  .empty-state--compact {
    padding: 1.5rem 1rem;
  }
}
.empty-state--compact .empty-state__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
}
.empty-state--compact .empty-state__icon i {
  font-size: 1.25rem;
}
.empty-state--compact .empty-state__title {
  font-size: 1.125rem;
  margin-bottom: 0.375rem;
}
.empty-state--compact .empty-state__description {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer-card {
  width: 100%;
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}
.data-table tr {
  border-bottom: 1px solid #f3f4f6;
}
.data-table tr:last-child {
  border-bottom: none;
}
.data-table th {
  width: 140px;
  padding: 0.625rem 1.25rem;
  text-align: left;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6b7280;
  vertical-align: top;
  white-space: nowrap;
}
@media only screen and (max-width: 767.9px) {
  .data-table th {
    width: 120px;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
}
.data-table td {
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
  color: #1f2937;
  word-break: break-word;
}
@media only screen and (max-width: 767.9px) {
  .data-table td {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
}

.data-pre {
  margin: 0;
  padding: 0.5rem 0.75rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  font-size: 0.75rem;
  line-height: 1.5;
  overflow-x: auto;
  white-space: pre-wrap;
}

body.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.modal--open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.modal__dialog {
  position: relative;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal--sm .modal__dialog {
  width: 100%;
  max-width: 400px;
}

.modal--md .modal__dialog {
  width: 100%;
  max-width: 600px;
}

.modal--lg .modal__dialog {
  width: 100%;
  max-width: 800px;
}

.modal--xl .modal__dialog {
  width: 100%;
  max-width: 1140px;
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.modal__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e3a8a;
}

.modal__title-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #003e75;
  font-size: 1.125rem;
}

.modal__close {
  background: none;
  border: none;
  padding: 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem 0;
  cursor: pointer;
  color: #cacfd6;
  font-size: 1.25rem;
  line-height: 1;
  transition: color 0.15s ease;
}
.modal__close:hover {
  color: #4b5563;
}

.modal__body {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
}

.modal__status {
  display: none;
  padding: 0.5rem 1rem;
  background: #f3f4f6;
  border-top: 1px solid #e5e7eb;
  font-size: 0.75rem;
  color: #4b5563;
  border-radius: 0 0 8px 8px;
}
.modal__status .progress-bar {
  margin: 0;
}
.modal__status .progress-bar__header {
  margin-bottom: 0.25rem;
}
.modal__status .progress-bar__label, .modal__status .progress-bar__percentage {
  font-size: 0.75rem;
}
.modal__status .progress-bar__track {
  height: 4px;
}

.modal--show-status .modal__status {
  display: block;
}

.modal--draggable .modal__dialog {
  position: absolute;
}

.modal--draggable .modal__header {
  cursor: grab;
  user-select: none;
}
.modal--draggable .modal__header--dragging {
  cursor: grabbing;
}

.modal--dragging .modal__backdrop {
  background-color: rgba(0, 0, 0, 0.1);
}

.modal--dragging .modal__dialog {
  opacity: 0.85;
}

.modal__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background-color: #f9fafb;
}
.modal__footer > :only-child {
  width: 100%;
  justify-content: center;
}
.modal__footer .btn-ghost {
  background-color: #e5e7eb;
}
.modal__footer .btn-ghost:hover:not(:disabled) {
  background-color: #d1d5db;
}
.modal__footer a {
  text-align: center;
  text-decoration: none;
  color: #ffffff;
}

@media (max-width: 576px) {
  .modal__dialog {
    margin: 1rem;
    max-height: calc(100vh - 2rem);
  }
  .modal--sm .modal__dialog,
  .modal--md .modal__dialog,
  .modal--lg .modal__dialog,
  .modal--xl .modal__dialog {
    max-width: calc(100% - 2rem);
  }
}
.progress-bar {
  opacity: 0.2;
  transition: opacity 0.3s ease;
}
.progress-bar--active {
  opacity: 1;
}
.progress-bar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.progress-bar__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #374151;
}
.progress-bar__percentage {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #003e75;
}
.progress-bar__track {
  width: 100%;
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  overflow: hidden;
}
.progress-bar__bar {
  height: 100%;
  background: #003e75;
  border-radius: 3px;
  transition: width 0.3s ease;
  width: 0;
}
.progress-bar--success .progress-bar__bar {
  background: #22c55e;
}
.progress-bar--success .progress-bar__percentage {
  color: #22c55e;
}
.progress-bar--warning .progress-bar__bar {
  background: #ffa100;
}
.progress-bar--warning .progress-bar__percentage {
  color: #ffa100;
}
.progress-bar--danger .progress-bar__bar {
  background: #ef4444;
}
.progress-bar--danger .progress-bar__percentage {
  color: #ef4444;
}
.progress-bar--info .progress-bar__bar {
  background: #06b6d4;
}
.progress-bar--info .progress-bar__percentage {
  color: #06b6d4;
}
.progress-bar--sm .progress-bar__label,
.progress-bar--sm .progress-bar__percentage {
  font-size: 0.75rem;
}
.progress-bar--sm .progress-bar__track {
  height: 4px;
}
.progress-bar--lg .progress-bar__label,
.progress-bar--lg .progress-bar__percentage {
  font-size: 0.9375rem;
}
.progress-bar--lg .progress-bar__track {
  height: 8px;
}

.file-uploader {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.file-uploader__input {
  display: none;
}
.file-uploader__dropzone {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px dashed #d1d5db;
  border-radius: 12px;
  padding: 3rem 2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #f9fafb;
}
.file-uploader__dropzone-icon {
  font-size: 4rem;
  color: #cacfd6;
  margin-bottom: 1.5rem;
  transition: color 0.2s ease;
}
.file-uploader__dropzone-text {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 0.5rem;
}
.file-uploader__dropzone-text strong {
  color: #003e75;
}
.file-uploader__dropzone-hint {
  font-size: 0.875rem;
  color: #cacfd6;
}
.file-uploader__dropzone:hover {
  border-color: #1d4ed8;
  background: #eff6ff;
}
.file-uploader__dropzone:hover .file-uploader__dropzone-icon {
  color: #1d4ed8;
}
.file-uploader--dragging .file-uploader__dropzone {
  border-color: #003e75;
  background: #eff6ff;
  border-width: 3px;
}
.file-uploader__files {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  min-height: 0;
  border-bottom: 1px solid #f3f4f6;
}
.file-uploader__file {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: default;
  width: 100%;
  flex-shrink: 0;
}
.file-uploader__file:hover {
  border-color: #d1d5db;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.file-uploader__file-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.file-uploader__file-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #003e75;
  border-radius: 8px;
  color: #ffffff;
  font-size: 50px;
  flex-shrink: 0;
}
.file-uploader__file-icon--image {
  background: #06b6d4;
}
.file-uploader__file-icon--document {
  background: #003e75;
}
.file-uploader__file-icon--generic {
  background: #cacfd6;
}
.file-uploader__file-details {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
}
.file-uploader__file-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #374151;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.3;
}
.file-uploader__file-meta {
  font-size: 0.8125rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.file-uploader__file-meta span {
  display: flex;
  align-items: center;
}
.file-uploader__file-meta span:not(:last-child)::after {
  content: "•";
  margin-left: 0.5rem;
  color: #cacfd6;
}
.file-uploader__file-progress {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--upload-progress, 0%);
  background: rgba(0, 62, 117, 0.15);
  border-radius: 8px 0 0 8px;
  transition: width 0.3s ease;
  pointer-events: none;
  z-index: 0;
}
.file-uploader__file-error {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 8px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #ef4444;
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 1;
  pointer-events: none;
}
.file-uploader__file--uploading {
  pointer-events: none;
}
.file-uploader__file--success {
  border-color: #22c55e;
}
.file-uploader__file--success .file-uploader__file-icon {
  background: #22c55e;
}
.file-uploader__file--success .file-uploader__file-remove {
  display: none;
}
.file-uploader__file--success .file-uploader__file-success {
  display: flex;
}
.file-uploader__file--success .file-uploader__file-meta {
  color: #22c55e;
  gap: 0.375rem;
}
.file-uploader__file--success .file-uploader__file-meta i {
  font-size: 0.75rem;
}
.file-uploader__file--success .file-uploader__file-progress {
  background: rgba(34, 197, 94, 0.15);
  width: 100%;
  border-radius: 8px;
}
.file-uploader__file--error {
  border-color: #ef4444;
}
.file-uploader__file--error .file-uploader__file-icon {
  background: #ef4444;
}
.file-uploader__file--error .file-uploader__file-meta {
  color: #ef4444;
  gap: 0.375rem;
}
.file-uploader__file--error .file-uploader__file-meta i {
  font-size: 0.75rem;
}
.file-uploader__file--error .file-uploader__file-progress {
  background: rgba(239, 68, 68, 0.15);
  width: 100%;
  border-radius: 8px;
}
.file-uploader__file--hide-progress .file-uploader__file-progress {
  display: none;
}
.file-uploader__file-success {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 1.75rem;
  height: 1.75rem;
  display: none;
  align-items: center;
  justify-content: center;
  background: #22c55e;
  border: 2px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.875rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.file-uploader__file-remove {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  color: #4b5563;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.file-uploader__file-remove:hover {
  background: #ef4444;
  border-color: #ef4444;
  color: #ffffff;
  transform: scale(1.1);
}

.file-uploader--compact .file-uploader__dropzone {
  padding: 1.5rem 1rem;
  border-radius: 6px;
}
.file-uploader--compact .file-uploader__dropzone-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.file-uploader--compact .file-uploader__dropzone-text {
  font-size: 0.9375rem;
}
.file-uploader--compact .file-uploader__dropzone-hint {
  font-size: 0.8125rem;
}
.file-uploader--compact .file-uploader__files {
  padding: 0.75rem 0 0 0;
  border-bottom: none;
  gap: 0.75rem;
}
.file-uploader--compact .file-uploader__file {
  padding: 0.75rem;
}
.file-uploader--compact .file-uploader__file-icon {
  width: 48px;
  height: 48px;
  font-size: 24px;
}
.file-uploader--compact .file-uploader__file-header {
  gap: 0.75rem;
}
.file-uploader--compact .file-uploader__file-name {
  font-size: 0.875rem;
}
.file-uploader--compact .file-uploader__file-meta {
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .file-uploader__dropzone {
    padding: 2rem 1rem;
  }
  .file-uploader__files {
    gap: 0.75rem;
  }
  .file-uploader__file {
    width: 100%;
  }
}
.avatar-menu {
  position: relative;
}
.avatar-menu__trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}
.avatar-menu__trigger:hover {
  background: rgba(255, 255, 255, 0.1);
}
.avatar-menu__trigger--active {
  background: rgba(255, 255, 255, 0.15);
}
.avatar-menu__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #003e75;
  font-size: 1rem;
  flex-shrink: 0;
}
.avatar-menu__name {
  font-weight: 500;
  color: #ffffff;
  font-size: 0.9rem;
}
.avatar-menu__chevron {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}
.avatar-menu__chevron--open {
  transform: rotate(180deg);
}
.avatar-menu__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 280px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.avatar-menu__dropdown--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.avatar-menu__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #e5e7eb;
}
.avatar-menu__header-logo {
  width: 100%;
  height: auto;
  margin-bottom: 12px;
}
.avatar-menu__header-name {
  font-weight: 600;
  color: #1f2937;
  font-size: 0.95rem;
  margin: 0 0 2px 0;
  text-align: center;
}
.avatar-menu__header-email {
  color: #6b7280;
  font-size: 0.85rem;
  margin: 0;
  text-align: center;
}
.avatar-menu__body {
  padding: 8px 0;
}
.avatar-menu__nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.avatar-menu__nav-item {
  margin: 0;
  padding: 0;
}
.avatar-menu__nav-item--divider {
  height: 1px;
  background: #e5e7eb;
  margin: 8px 16px;
}
.avatar-menu__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  color: #4b5563;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.avatar-menu__link i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #003e75;
  color: #ffffff;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.avatar-menu__link span {
  flex: 1;
}
.avatar-menu__link:hover {
  background: #f9fafb;
  color: #1f2937;
}
.avatar-menu__footer {
  padding: 8px 0;
  border-top: 1px solid #f3f4f6;
}
.avatar-menu__logout {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  color: #6b7280;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  width: 100%;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.avatar-menu__logout i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f3f4f6;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.avatar-menu__logout span {
  flex: 1;
}
.avatar-menu__logout:hover {
  background: rgba(239, 68, 68, 0.08);
  color: #dc2626;
}
.avatar-menu__logout:hover i {
  background: rgba(239, 68, 68, 0.15);
  color: #dc2626;
}

.floating-action-button {
  --fab-bg: #003e75;
  --fab-fg: #ffffff;
  --fab-bg-hover: #1d4ed8;
  position: fixed;
  bottom: 3rem;
  right: max(3rem, (100vw - 1200px) / 2 + 3rem);
  width: 70px;
  height: 70px;
  background: var(--fab-bg);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fab-fg);
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease;
  z-index: 100;
  border: none;
  outline: none;
  cursor: pointer;
}
.floating-action-button i {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}
.floating-action-button:hover {
  background: var(--fab-bg-hover);
  color: var(--fab-fg);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.floating-action-button:hover i {
  color: inherit;
}
.floating-action-button:active {
  transform: scale(1.05);
}

@media only screen and (max-width: 767.9px) {
  .floating-action-button {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
  }
  .floating-action-button i {
    width: 20px;
    height: 20px;
  }
}
.autocomplete {
  position: relative;
}

.autocomplete__dropdown {
  position: fixed;
  z-index: 10001;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-top: none;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-height: 240px;
  overflow-y: auto;
  display: none;
}
.autocomplete__dropdown.is-visible {
  display: block;
}

.autocomplete__item {
  padding: 0.75rem;
  cursor: pointer;
  border-bottom: 1px solid #f3f4f6;
  transition: background-color 0.15s ease;
}
.autocomplete__item:last-child {
  border-bottom: none;
}
.autocomplete__item:hover, .autocomplete__item.is-selected {
  background-color: #f9fafb;
}

.autocomplete__item-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1f2937;
}

.autocomplete__item-description {
  display: block;
  font-size: 0.8125rem;
  color: #6b7280;
  margin-top: 0.125rem;
}

.autocomplete__item-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #cacfd6;
  background-color: #f3f4f6;
  padding: 0.0625rem 0.375rem;
  border-radius: 3px;
  margin-left: 0.375rem;
  vertical-align: middle;
  letter-spacing: 0.01em;
}

.autocomplete__status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  color: #6b7280;
}
.autocomplete__status i {
  font-size: 0.875rem;
}
.autocomplete__status--loading {
  color: #003e75;
}
.autocomplete__status--error {
  color: #991b1b;
}
.autocomplete__status--empty {
  color: #cacfd6;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.625rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
}
.filter-bar .filter-bar__input-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  max-width: 400px;
}
.filter-bar .filter-bar__input-wrap > i {
  color: #cacfd6;
  font-size: 0.8125rem;
}
.filter-bar .filter-bar__input-wrap input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.8125rem;
  color: #1f2937;
  outline: none;
}
.filter-bar .filter-bar__input-wrap input::placeholder {
  color: #cacfd6;
}
.filter-bar .filter-bar__clear {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border: none;
  background: transparent;
  color: #cacfd6;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.625rem;
  transition: background 0.15s ease, color 0.15s ease;
}
.filter-bar .filter-bar__clear:hover {
  background: #cacfd6;
  color: #ffffff;
}
.filter-bar .filter-bar__stats {
  font-size: 0.75rem;
  color: #cacfd6;
  white-space: nowrap;
}

.feedback-modal .feedback-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.feedback-modal .feedback-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.feedback-modal .feedback-form__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}
.feedback-modal .feedback-form__select,
.feedback-modal .feedback-form__textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.9375rem;
  color: #1f2937;
  background-color: #ffffff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.feedback-modal .feedback-form__select:focus,
.feedback-modal .feedback-form__textarea:focus {
  outline: none;
  border-color: #003e75;
  box-shadow: 0 0 0 3px rgba(0, 62, 117, 0.1);
}
.feedback-modal .feedback-form__select::placeholder,
.feedback-modal .feedback-form__textarea::placeholder {
  color: #cacfd6;
}
.feedback-modal .feedback-form__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  padding-right: 2.5rem;
}
.feedback-modal .feedback-form__textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}
.feedback-modal .feedback-context {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 1rem;
}
.feedback-modal .feedback-context__title {
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.feedback-modal .feedback-context__row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.feedback-modal .feedback-context__row:last-child {
  margin-bottom: 0;
}
.feedback-modal .feedback-context__label {
  font-size: 0.8125rem;
  color: #6b7280;
  min-width: 50px;
  flex-shrink: 0;
}
.feedback-modal .feedback-context__value {
  font-size: 0.8125rem;
  color: #374151;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
}

.quote-request-modal .quote-request-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.quote-request-modal .quote-request-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.quote-request-modal .quote-request-form__group--hidden {
  display: none;
}
.quote-request-modal .quote-request-form__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}
.quote-request-modal .quote-request-form__select,
.quote-request-modal .quote-request-form__input,
.quote-request-modal .quote-request-form__textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.9375rem;
  color: #1f2937;
  background-color: #ffffff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.quote-request-modal .quote-request-form__select:focus,
.quote-request-modal .quote-request-form__input:focus,
.quote-request-modal .quote-request-form__textarea:focus {
  outline: none;
  border-color: #003e75;
  box-shadow: 0 0 0 3px rgba(0, 62, 117, 0.1);
}
.quote-request-modal .quote-request-form__select::placeholder,
.quote-request-modal .quote-request-form__input::placeholder,
.quote-request-modal .quote-request-form__textarea::placeholder {
  color: #cacfd6;
}
.quote-request-modal .quote-request-form__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  padding-right: 2.5rem;
}
.quote-request-modal .quote-request-form__textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}
.quote-request-modal .quote-request-attachments {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.quote-request-modal .quote-request-attachments__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

@keyframes addLocationFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.add-location-modal .zip-entry {
  margin: -1.5rem -1.5rem 1.5rem;
  padding: 2rem 1.5rem;
  min-height: 175px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}
.add-location-modal .zip-entry__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #003e75;
  color: #ffffff;
  font-size: 2rem;
  flex-shrink: 0;
  margin-bottom: 1rem;
}
.add-location-modal .zip-entry__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 1rem;
}
.add-location-modal .zip-entry__bar {
  position: relative;
  width: 100%;
  max-width: 360px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #ffffff;
  border: 2px solid #d1d5db;
  border-radius: 35px;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease;
}
.add-location-modal .zip-entry__bar:focus-within {
  border-color: #003e75;
  box-shadow: 0 0 0 4px rgba(0, 62, 117, 0.1);
}
.add-location-modal .zip-entry__search-icon {
  color: #cacfd6;
  font-size: 1rem;
  flex-shrink: 0;
}
.add-location-modal .zip-entry__input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1.125rem;
  font-weight: 500;
  color: #1f2937;
  outline: none;
  min-width: 0;
  letter-spacing: 0.05em;
  padding: 0.375rem 0;
}
.add-location-modal .zip-entry__input::placeholder {
  color: #cacfd6;
  font-weight: 400;
  letter-spacing: normal;
}
.add-location-modal .zip-entry__manual-link {
  margin-top: 1rem;
  font-size: 0.875rem;
}
.add-location-modal .add-location-form {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.add-location-modal .add-location-form__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.add-location-modal .add-location-form__row .add-location-form__group {
  flex: 1 1 calc(50% - 0.375rem);
  min-width: 200px;
}
.add-location-modal .add-location-form__row--address {
  flex-wrap: nowrap;
}
.add-location-modal .add-location-form__row--address .add-location-form__group {
  min-width: 0;
}
.add-location-modal .add-location-form__row--city-state-zip {
  flex-wrap: nowrap;
}
.add-location-modal .add-location-form__row--city-state-zip .add-location-form__group {
  min-width: 0;
}
.add-location-modal .add-location-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.add-location-modal .add-location-form__group--full {
  width: 100%;
}
.add-location-modal .add-location-form__group--address1 {
  flex: 2 1 0;
}
.add-location-modal .add-location-form__group--address2 {
  flex: 1 1 0;
}
.add-location-modal .add-location-form__group--city {
  flex: 2 1 0;
}
.add-location-modal .add-location-form__group--state {
  flex: 1 1 0;
}
.add-location-modal .add-location-form__group--zip {
  flex: 1 1 0;
}
.add-location-modal .add-location-form__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #6b7280;
}
.add-location-modal .add-location-form__optional {
  font-weight: 400;
  color: #cacfd6;
}
.add-location-modal .add-location-form__input {
  width: 100%;
  padding: 0.9375rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-size: 1rem;
  color: #1f2937;
  background-color: #ffffff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.add-location-modal .add-location-form__input:focus {
  outline: none;
  border-color: #003e75;
  box-shadow: 0 0 0 3px rgba(0, 62, 117, 0.1);
}
.add-location-modal .add-location-form__input::placeholder {
  color: #cacfd6;
}
.add-location-modal .add-location-form__input--with-icon {
  padding-left: 2.5rem;
}
.add-location-modal .add-location-form__input-icon-wrap {
  position: relative;
}
.add-location-modal .add-location-form__input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #cacfd6;
  font-size: 0.875rem;
  pointer-events: none;
  z-index: 1;
}
.add-location-modal .add-location-form__fields {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.add-location-modal--step-zip .zip-entry {
  background: transparent;
  margin: 0;
  border-bottom: none;
  padding: 2.5rem 1.5rem;
}
.add-location-modal--step-zip .add-location-form {
  display: none;
}
.add-location-modal--step-zip #add-location-submit {
  display: none;
}
.add-location-modal--step-address .zip-entry {
  display: none;
}
.add-location-modal--step-address .add-location-form {
  animation: addLocationFadeIn 0.2s ease;
}
.add-location-modal--step-address #add-location-submit {
  animation: addLocationFadeIn 0.2s ease;
}

@media only screen and (max-width: 575.9px) {
  .add-location-modal .add-location-form__row .add-location-form__group {
    flex: 1 1 100%;
  }
  .add-location-modal .add-location-form__row--address {
    flex-wrap: wrap;
  }
  .add-location-modal .add-location-form__row--address .add-location-form__group--address1,
  .add-location-modal .add-location-form__row--address .add-location-form__group--address2 {
    flex: 1 1 100%;
  }
  .add-location-modal .add-location-form__row--city-state-zip {
    flex-wrap: wrap;
  }
  .add-location-modal .add-location-form__row--city-state-zip .add-location-form__group--city {
    flex: 1 1 100%;
  }
  .add-location-modal .add-location-form__row--city-state-zip .add-location-form__group--state,
  .add-location-modal .add-location-form__row--city-state-zip .add-location-form__group--zip {
    flex: 1 1 calc(50% - 0.375rem);
  }
}
.new-quote-modal .new-quote-details {
  padding: 0.5rem 0;
}
.new-quote-modal .new-quote-details__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}
.new-quote-modal .new-quote-details__item {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.new-quote-modal .new-quote-details__item--full {
  grid-column: 1/-1;
}
.new-quote-modal .new-quote-details__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.5;
}
.new-quote-modal .new-quote-details__value {
  font-size: 1rem;
  font-weight: 500;
  color: #1f2937;
  line-height: 1.5;
  white-space: pre-line;
}

.pw-auth-login main .auth-card .auth-card__body .forgot-password {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.9375rem;
  color: #6b7280;
}
.pw-auth-login main .auth-card .auth-card__body .forgot-password a {
  color: #1d4ed8;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.pw-auth-login main .auth-card .auth-card__body .forgot-password a:hover {
  color: #1e3a8a;
  text-decoration: underline;
}

.pw-auth-register main .auth-card {
  max-width: 520px;
}
.pw-auth-register main .auth-card .auth-card__body .form-group {
  margin-bottom: 1rem;
}
.pw-auth-register main .auth-card .auth-card__body .form-group label {
  margin-bottom: 0.375rem;
}
.pw-auth-register main .auth-card .auth-card__body .form-group input {
  padding: 0.8125rem 1rem;
}
.pw-auth-register main .auth-card .auth-card__body .form-actions {
  margin-top: 1.75rem;
}
.pw-auth-register main .auth-card .auth-card__body .auth-links {
  margin-top: 1.5rem;
}

.pw-auth-verify-code main .auth-card .auth-card__body input.code {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 64px;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #f9fafb;
  transition: all 0.2s ease;
  color: #111827;
}
.pw-auth-verify-code main .auth-card .auth-card__body input.code:focus {
  outline: none;
  border-color: #003e75;
  box-shadow: 0 0 0 4px rgba(0, 62, 117, 0.08);
  background: #ffffff;
}
.pw-auth-verify-code main .auth-card .auth-card__body input.code:hover:not(:focus) {
  border-color: #d1d5db;
  background: #ffffff;
}
.pw-auth-verify-code main .auth-card .auth-card__body input.code::placeholder {
  text-align: center !important;
  opacity: 0.35;
  font-weight: 400 !important;
  letter-spacing: 0.3rem;
}
.pw-auth-verify-code main .auth-card .auth-card__body .resend-code {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9375rem;
  color: #6b7280;
}
.pw-auth-verify-code main .auth-card .auth-card__body .resend-code button {
  background: none;
  border: none;
  color: #1d4ed8;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  padding: 0;
  font-size: inherit;
  transition: color 0.2s ease;
}
.pw-auth-verify-code main .auth-card .auth-card__body .resend-code button:hover {
  color: #1e3a8a;
  text-decoration: underline;
}
.pw-auth-verify-code main .auth-card .auth-card__body .resend-code button:disabled {
  color: #cacfd6;
  cursor: not-allowed;
  text-decoration: none;
}
.pw-auth-verify-code main .auth-card .auth-card__body .code-expiry {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
}
.pw-auth-verify-code main .auth-card .auth-card__body .code-expiry.expiring-soon {
  color: #ffa100;
  font-weight: 600;
}

.pw-dashboard-home main section.row .content-header-section .user-name {
  color: #ef4444;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget {
  flex: 1 1 calc(50% - 0.75rem);
  overflow: hidden;
}
@media only screen and (max-width: 899.9px) {
  .pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget {
    flex: 1 1 100%;
  }
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget .widget-header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget .widget-header .widget-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget .widget-header .widget-title i {
  color: #003e75;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget .widget-header .widget-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget .widget-body {
  padding: 1.5rem;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--search {
  flex: 1 1 100%;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--search .quick-search-form {
  display: flex;
  gap: 0.75rem;
}
@media only screen and (max-width: 399.9px) {
  .pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--search .quick-search-form {
    flex-direction: column;
  }
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--search .quick-search-form .quick-search-input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 0.9375rem;
  color: #374151;
  transition: all 0.2s ease;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--search .quick-search-form .quick-search-input::placeholder {
  color: #cacfd6;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--search .quick-search-form .quick-search-input:focus {
  outline: none;
  border-color: #003e75;
  box-shadow: 0 0 0 3px rgba(0, 62, 117, 0.1);
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--search .quick-search-form .quick-search-btn {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 10px;
  background: #003e75;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media only screen and (max-width: 399.9px) {
  .pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--search .quick-search-form .quick-search-btn {
    width: 100%;
  }
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--search .quick-search-form .quick-search-btn i {
  font-size: 1rem;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--search .quick-search-form .quick-search-btn:hover {
  background: #1d4ed8;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--stats {
  display: flex;
  flex-direction: column;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--stats .widget-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--stats .stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  flex: 1;
  align-content: stretch;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--stats .stats-grid .stat-item {
  flex: 1 1 calc(50% - 0.5rem);
  text-align: center;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--stats .stats-grid .stat-item .stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #003e75;
  line-height: 1.2;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--stats .stats-grid .stat-item .stat-label {
  display: block;
  font-size: 0.8125rem;
  color: #6b7280;
  margin-top: 0.25rem;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--session .session-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--session .session-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 10px;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--session .session-item .session-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  flex-shrink: 0;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--session .session-item .session-icon i {
  color: #6b7280;
  font-size: 1rem;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--session .session-item .session-content {
  flex: 1;
  min-width: 0;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--session .session-item .session-content .session-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--session .session-item .session-content .session-value {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1f2937;
  margin-top: 0.125rem;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--session .session-item .session-content .session-value-secondary {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #1f2937;
  opacity: 0.5;
  margin-top: 0.25rem;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--activity .activity-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--activity .activity-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: #cacfd6;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--activity .activity-empty i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--activity .activity-empty p {
  margin: 0;
  font-size: 0.875rem;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--activity .activity-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--activity .activity-item:hover {
  background: #f9fafb;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--activity .activity-item .activity-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--activity .activity-item .activity-icon--search {
  background: #e9d5ff;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--activity .activity-item .activity-icon--search i {
  color: #7c3aed;
  font-size: 0.75rem;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--activity .activity-item .activity-icon--quote {
  background: #eff6ff;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--activity .activity-item .activity-icon--quote i {
  color: #3b82f6;
  font-size: 0.75rem;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--activity .activity-item .activity-icon--feedback {
  background: #f0fdf4;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--activity .activity-item .activity-icon--feedback i {
  color: #22c55e;
  font-size: 0.75rem;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--activity .activity-item .activity-content {
  flex: 1;
  min-width: 0;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--activity .activity-item .activity-content .activity-text {
  display: block;
  font-size: 0.875rem;
  color: #374151;
}
.pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--activity .activity-item .activity-content .activity-time {
  display: block;
  font-size: 0.75rem;
  color: #cacfd6;
  margin-top: 0.125rem;
}
@media only screen and (max-width: 767.9px) {
  .pw-dashboard-home main section.row .content-body-section .dashboard-grid {
    gap: 1rem;
  }
  .pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget {
    border-radius: 12px;
  }
  .pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget .widget-header {
    padding: 1rem;
  }
  .pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget .widget-header .widget-title {
    font-size: 1rem;
  }
  .pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget .widget-header .widget-subtitle {
    font-size: 0.8125rem;
  }
  .pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget .widget-body {
    padding: 1.25rem;
  }
  .pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--stats .stats-grid .stat-item {
    padding: 0.75rem;
  }
  .pw-dashboard-home main section.row .content-body-section .dashboard-grid .dashboard-widget--stats .stats-grid .stat-item .stat-value {
    font-size: 1.5rem;
  }
}
.pw-search-home main {
  padding-bottom: 50px;
}
.pw-search-home main section.row .content-body-section .search-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  width: 100%;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.pw-search-home main section.row .content-body-section .search-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
}
.pw-search-home main section.row .content-body-section .search-card__content {
  flex: 1;
  min-width: 0;
}
.pw-search-home main section.row .content-body-section .search-card__content .search-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.25rem 0;
}
.pw-search-home main section.row .content-body-section .search-card__content .search-card__hint {
  font-size: 0.9375rem;
  color: #6b7280;
  margin: 0 0 1.25rem 0;
}
.pw-search-home main section.row .content-body-section .search-card__content .search-bar {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 35px;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  transition: all 0.2s ease;
}
.pw-search-home main section.row .content-body-section .search-card__content .search-bar:focus-within {
  border-color: #003e75;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 62, 117, 0.1);
}
.pw-search-home main section.row .content-body-section .search-card__content .search-bar .search-bar__icon {
  color: #cacfd6;
  font-size: 1rem;
  flex-shrink: 0;
}
.pw-search-home main section.row .content-body-section .search-card__content .search-bar .search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1rem;
  color: #1f2937;
  outline: none;
  min-width: 0;
}
.pw-search-home main section.row .content-body-section .search-card__content .search-bar .search-input::placeholder {
  color: #cacfd6;
}
.pw-search-home main section.row .content-body-section .search-card__content .search-bar .clear-search {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.375rem;
  color: #cacfd6;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease;
  flex-shrink: 0;
}
.pw-search-home main section.row .content-body-section .search-card__content .search-bar .clear-search:hover {
  color: #374151;
}
.pw-search-home main section.row .content-body-section .search-card__content .search-bar .search-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #003e75;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.pw-search-home main section.row .content-body-section .search-card__content .search-bar .search-button i {
  font-size: 1rem;
}
.pw-search-home main section.row .content-body-section .search-card__content .search-bar .search-button:hover {
  background: #1d4ed8;
  transform: scale(1.05);
}
.pw-search-home main section.row .content-body-section .search-card__content .recent-searches {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e5e7eb;
}
.pw-search-home main section.row .content-body-section .search-card__content .recent-searches .recent-searches__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.pw-search-home main section.row .content-body-section .search-card__content .recent-searches .recent-searches__header .recent-searches__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #cacfd6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pw-search-home main section.row .content-body-section .search-card__content .recent-searches .recent-searches__header .recent-searches__actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.pw-search-home main section.row .content-body-section .search-card__content .recent-searches .recent-searches__header .recent-searches__actions .recent-searches__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  color: #cacfd6;
  transition: all 0.15s ease;
}
.pw-search-home main section.row .content-body-section .search-card__content .recent-searches .recent-searches__header .recent-searches__actions .recent-searches__action-btn i {
  font-size: 0.75rem;
}
.pw-search-home main section.row .content-body-section .search-card__content .recent-searches .recent-searches__header .recent-searches__actions .recent-searches__action-btn:hover {
  background: #f3f4f6;
  color: #4b5563;
}
.pw-search-home main section.row .content-body-section .search-card__content .recent-searches .recent-searches__header .recent-searches__actions .recent-searches__action-btn--danger:hover {
  background: #fef2f2;
  color: #991b1b;
}
.pw-search-home main section.row .content-body-section .search-card__content .recent-searches .recent-searches__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pw-search-home main section.row .content-body-section .search-card__content .recent-searches .recent-searches__badges .recent-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.pw-search-home main section.row .content-body-section .search-card__content .recent-searches .recent-searches__badges .recent-badge:hover {
  background: #eff6ff;
  border-color: #bfdbfe;
}
.pw-search-home main section.row .content-body-section .search-card__content .recent-searches .recent-searches__badges .recent-badge:hover .recent-badge__query {
  color: #1e3a8a;
}
.pw-search-home main section.row .content-body-section .search-card__content .recent-searches .recent-searches__badges .recent-badge:hover .recent-badge__delete {
  opacity: 1;
}
.pw-search-home main section.row .content-body-section .search-card__content .recent-searches .recent-searches__badges .recent-badge .recent-badge__query {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #374151;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pw-search-home main section.row .content-body-section .search-card__content .recent-searches .recent-searches__badges .recent-badge .recent-badge__count {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #6b7280;
  background: #e5e7eb;
  padding: 0.125rem 0.375rem;
  border-radius: 10px;
  min-width: 20px;
  text-align: center;
}
.pw-search-home main section.row .content-body-section .search-card__content .recent-searches .recent-searches__badges .recent-badge .recent-badge__delete {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: all 0.15s ease;
  margin-left: -0.25rem;
}
.pw-search-home main section.row .content-body-section .search-card__content .recent-searches .recent-searches__badges .recent-badge .recent-badge__delete i {
  font-size: 0.625rem;
  color: #cacfd6;
}
.pw-search-home main section.row .content-body-section .search-card__content .recent-searches .recent-searches__badges .recent-badge .recent-badge__delete:hover {
  background: #d1d5db;
}
.pw-search-home main section.row .content-body-section .search-card__content .recent-searches .recent-searches__badges .recent-badge .recent-badge__delete:hover i {
  color: #374151;
}
.pw-search-home main section.row .content-body-section .quote-request-cta-card {
  width: 100%;
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
}
.pw-search-home main section.row .content-body-section .quote-request-cta-card .quote-request-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.pw-search-home main section.row .content-body-section .quote-request-cta-card .quote-request-cta__content {
  flex: 1;
  min-width: 0;
}
.pw-search-home main section.row .content-body-section .quote-request-cta-card .quote-request-cta__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 0.25rem 0;
}
.pw-search-home main section.row .content-body-section .quote-request-cta-card .quote-request-cta__title i {
  color: #6b7280;
  font-size: 0.875rem;
}
.pw-search-home main section.row .content-body-section .quote-request-cta-card .quote-request-cta__subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}
.pw-search-home main section.row .content-body-section .quote-request-cta-card .quote-request-cta__button {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.pw-search-home main section.row .content-body-section .search-results-card {
  width: 100%;
  overflow: hidden;
}
.pw-search-home main section.row .content-body-section .search-results-card .search-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: #f9fafb;
}
.pw-search-home main section.row .content-body-section .search-results-card .search-results-header .search-results-header__title h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}
.pw-search-home main section.row .content-body-section .search-results-card .search-results-header .search-results-header__title h2 i {
  color: #003e75;
}
.pw-search-home main section.row .content-body-section .search-results-card .search-results-header .search-results-header__actions {
  display: flex;
  gap: 0.5rem;
}
.pw-search-home main section.row .content-body-section .search-results-card .search-results {
  padding: 1.5rem;
  max-height: 600px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #003e75 #f3f4f6;
}
.pw-search-home main section.row .content-body-section .search-results-card .search-results::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.pw-search-home main section.row .content-body-section .search-results-card .search-results::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 8px;
}
.pw-search-home main section.row .content-body-section .search-results-card .search-results::-webkit-scrollbar-thumb {
  background: #003e75;
  border-radius: 8px;
}
.pw-search-home main section.row .content-body-section .search-results-card .search-results::-webkit-scrollbar-thumb:hover {
  background: #1d4ed8;
}
.pw-search-home main section.row .content-body-section .search-results-card .search-results .no-results {
  text-align: center;
  color: #6b7280;
  padding: 2rem;
  font-size: 1rem;
}
.pw-search-home main section.row .content-body-section .search-results-card .search-results .filter-bar {
  margin: -1.5rem -1.5rem 0 -1.5rem;
  padding: 0.75rem 1.5rem;
  background: #ffffff;
  position: sticky;
  top: -1.5rem;
  left: 0;
  z-index: 10;
}
.pw-search-home main section.row .content-body-section .search-results-card .search-results .results-table-wrapper {
  margin: 0 -1.5rem -1.5rem -1.5rem;
}
.pw-search-home main section.row .content-body-section .search-results-card .search-results .results-table-wrapper .results-table {
  width: 100%;
  min-width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.875rem;
}
.pw-search-home main section.row .content-body-section .search-results-card .search-results .results-table-wrapper .results-table .search-result-col-entity_name {
  width: 30%;
}
.pw-search-home main section.row .content-body-section .search-results-card .search-results .results-table-wrapper .results-table .search-result-col-address {
  width: 30%;
}
.pw-search-home main section.row .content-body-section .search-results-card .search-results .results-table-wrapper .results-table .search-result-col-entity_city {
  width: 15%;
}
.pw-search-home main section.row .content-body-section .search-results-card .search-results .results-table-wrapper .results-table .search-result-col-entity_state_abbreviated {
  width: 10%;
}
.pw-search-home main section.row .content-body-section .search-results-card .search-results .results-table-wrapper .results-table .search-result-col-entity_zip_code {
  width: 15%;
}
.pw-search-home main section.row .content-body-section .search-results-card .search-results .results-table-wrapper .results-table thead {
  position: sticky;
  top: 1.3125rem;
  z-index: 5;
}
.pw-search-home main section.row .content-body-section .search-results-card .search-results .results-table-wrapper .results-table thead th {
  background: #ffffff;
  color: #374151;
  font-weight: 600;
  text-align: left;
  padding: 0.875rem 1rem;
  white-space: nowrap;
  border-bottom: 2px solid #e5e7eb;
  /* sortable column styles */
}
.pw-search-home main section.row .content-body-section .search-results-card .search-results .results-table-wrapper .results-table thead th.sortable {
  cursor: pointer;
  user-select: none;
  transition: background-color 0.15s ease;
}
.pw-search-home main section.row .content-body-section .search-results-card .search-results .results-table-wrapper .results-table thead th.sortable:hover {
  background: #e5e7eb;
}
.pw-search-home main section.row .content-body-section .search-results-card .search-results .results-table-wrapper .results-table thead th.sortable .th-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pw-search-home main section.row .content-body-section .search-results-card .search-results .results-table-wrapper .results-table thead th.sortable .th-content .sort-icon {
  font-size: 0.75rem;
  color: #cacfd6;
  transition: color 0.15s ease;
}
.pw-search-home main section.row .content-body-section .search-results-card .search-results .results-table-wrapper .results-table thead th.sortable.sort-asc, .pw-search-home main section.row .content-body-section .search-results-card .search-results .results-table-wrapper .results-table thead th.sortable.sort-desc {
  background: #dbeafe;
}
.pw-search-home main section.row .content-body-section .search-results-card .search-results .results-table-wrapper .results-table thead th.sortable.sort-asc .sort-icon, .pw-search-home main section.row .content-body-section .search-results-card .search-results .results-table-wrapper .results-table thead th.sortable.sort-desc .sort-icon {
  color: #1d4ed8;
}
.pw-search-home main section.row .content-body-section .search-results-card .search-results .results-table-wrapper .results-table tbody tr {
  transition: background-color 0.15s ease;
}
.pw-search-home main section.row .content-body-section .search-results-card .search-results .results-table-wrapper .results-table tbody tr:not(:last-child) {
  border-bottom: 1px solid #e5e7eb;
}
.pw-search-home main section.row .content-body-section .search-results-card .search-results .results-table-wrapper .results-table tbody tr.clickable {
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.pw-search-home main section.row .content-body-section .search-results-card .search-results .results-table-wrapper .results-table tbody tr.clickable:hover {
  background-color: #f9fafb;
}
.pw-search-home main section.row .content-body-section .search-results-card .search-results .results-table-wrapper .results-table tbody tr td {
  padding: 1rem;
  color: #4b5563;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 250px;
}
.pw-search-home main section.row .content-body-section .search-results-card .search-results .results-table-wrapper .results-table tbody tr td.search-result-col-entity_name {
  font-weight: 600;
  color: #003e75;
}
.pw-search-home main section.row .content-body-section .search-results-card .search-results .results-table-wrapper .results-table tbody tr td .search-highlight {
  background-color: #fffb00;
  color: inherit;
  font-weight: bold;
  padding: 0.125rem 0.125rem;
  border-radius: 2px;
}
.pw-search-home main section.row .content-body-section .search-results-card .search-results .results-table-wrapper .results-table tbody tr td .filter-highlight {
  background-color: #70ff00;
  color: inherit;
  font-weight: bold;
  padding: 0.125rem 0.125rem;
  border-radius: 2px;
}
@media only screen and (max-width: 1023.9px) {
  .pw-search-home main section.row .search-card {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
  }
  .pw-search-home main section.row .search-card__content {
    width: 100%;
  }
  .pw-search-home main section.row .search-bar {
    flex-wrap: nowrap;
  }
  .pw-search-home main section.row .recent-searches {
    margin-top: 1rem;
    padding-top: 1rem;
  }
  .pw-search-home main section.row .quote-request-cta-card {
    padding: 1rem;
  }
  .pw-search-home main section.row .quote-request-cta-card .quote-request-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .pw-search-home main section.row .quote-request-cta-card .quote-request-cta__button {
    width: 100%;
    justify-content: center;
  }
  .pw-search-home main section.row .search-results-card .search-results-header {
    position: relative;
    padding-right: 4rem;
  }
  .pw-search-home main section.row .search-results-card .search-results-header__actions {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
  }
  .pw-search-home main section.row .search-results-card .search-results {
    padding: 1rem;
    max-height: 500px;
    overflow-y: auto;
    background: #ffffff;
  }
  .pw-search-home main section.row .search-results-card .search-results .filter-bar {
    position: relative;
    margin: -1rem -1rem 1rem -1rem;
    padding: 0.75rem 1rem;
    padding-right: 8rem;
    top: 0;
  }
  .pw-search-home main section.row .search-results-card .search-results .filter-bar .filter-bar__input-wrap {
    max-width: none;
  }
  .pw-search-home main section.row .search-results-card .search-results .filter-bar .filter-bar__stats {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
  }
  .pw-search-home main section.row .search-results-card .search-results .results-table-wrapper {
    margin: 0 -1rem -1rem -1rem;
  }
}
@media only screen and (max-width: 767.9px) {
  .pw-search-home main section.row .search-results-card .search-results .results-table {
    table-layout: auto;
  }
  .pw-search-home main section.row .search-results-card .search-results .results-table th, .pw-search-home main section.row .search-results-card .search-results .results-table td {
    width: 100% !important;
  }
  .pw-search-home main section.row .search-results-card .search-results .results-table thead {
    display: none;
  }
  .pw-search-home main section.row .search-results-card .search-results .results-table tbody {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.25rem;
  }
  .pw-search-home main section.row .search-results-card .search-results .results-table tbody tr {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    border: 1px solid #e5e7eb;
  }
  .pw-search-home main section.row .search-results-card .search-results .results-table tbody tr:not(:last-child) {
    border-bottom: 1px solid #e5e7eb;
  }
  .pw-search-home main section.row .search-results-card .search-results .results-table tbody tr:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
  .pw-search-home main section.row .search-results-card .search-results .results-table tbody td {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0.625rem 0;
    border-bottom: 1px solid #f3f4f6;
  }
  .pw-search-home main section.row .search-results-card .search-results .results-table tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
  }
  .pw-search-home main section.row .search-results-card .search-results .results-table tbody td.search-result-col-entity_name {
    display: block;
    font-size: 1.0625rem;
    padding-bottom: 0.875rem;
    margin-bottom: 0.375rem;
    border-bottom: 2px solid #e5e7eb;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .pw-search-home main section.row .search-results-card .search-results .results-table tbody td.search-result-col-entity_name::before {
    display: none;
  }
  .pw-search-home main section.row .search-results-card .search-results .results-table tbody td:last-child {
    border-bottom: none;
  }
}
.pw-quote-home main section.row .content-body-section .quote-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  width: 100%;
}
.pw-quote-home main section.row .content-body-section .quote-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 300px;
  min-width: 0;
  max-width: 100%;
  padding: 1.5rem;
}
.pw-quote-home main section.row .content-body-section .quote-card:hover .quote-card__action {
  color: #1d4ed8;
}
.pw-quote-home main section.row .content-body-section .quote-card:hover .quote-card__action i {
  transform: translateX(4px);
}
.pw-quote-home main section.row .content-body-section .quote-card__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #f3f4f6;
  min-width: 0;
  width: 100%;
}
.pw-quote-home main section.row .content-body-section .quote-card__info {
  flex: 1;
  min-width: 0;
  width: 0;
}
.pw-quote-home main section.row .content-body-section .quote-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.25rem 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pw-quote-home main section.row .content-body-section .quote-card__id {
  font-size: 0.8125rem;
  color: #6b7280;
  font-family: "Courier New", Courier, monospace;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  display: block;
}
.pw-quote-home main section.row .content-body-section .quote-card__status {
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: capitalize;
  flex-shrink: 0;
}
.pw-quote-home main section.row .content-body-section .quote-card__status--draft, .pw-quote-home main section.row .content-body-section .quote-card__status--pending {
  background: #f3f4f6;
  color: #4b5563;
}
.pw-quote-home main section.row .content-body-section .quote-card__status--processing, .pw-quote-home main section.row .content-body-section .quote-card__status--new, .pw-quote-home main section.row .content-body-section .quote-card__status--resubmitted {
  background: #eff6ff;
  color: #1e40af;
}
.pw-quote-home main section.row .content-body-section .quote-card__status--in-review, .pw-quote-home main section.row .content-body-section .quote-card__status--quoted {
  background: #dbeafe;
  color: #1d4ed8;
}
.pw-quote-home main section.row .content-body-section .quote-card__status--internal-hold, .pw-quote-home main section.row .content-body-section .quote-card__status--info-requested, .pw-quote-home main section.row .content-body-section .quote-card__status--expiring {
  background: #fffbeb;
  color: #92400e;
}
.pw-quote-home main section.row .content-body-section .quote-card__status--bound {
  background: #f0fdf4;
  color: #16a34a;
}
.pw-quote-home main section.row .content-body-section .quote-card__status--declined {
  background: #fef2f2;
  color: #991b1b;
}
.pw-quote-home main section.row .content-body-section .quote-card__status--expired, .pw-quote-home main section.row .content-body-section .quote-card__status--cancelled {
  background: #e5e7eb;
  color: #4b5563;
}
.pw-quote-home main section.row .content-body-section .quote-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.pw-quote-home main section.row .content-body-section .quote-card__detail {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: #4b5563;
}
.pw-quote-home main section.row .content-body-section .quote-card__detail i {
  width: 16px;
  color: #cacfd6;
  font-size: 0.8125rem;
  text-align: center;
}
.pw-quote-home main section.row .content-body-section .quote-card__footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid #f3f4f6;
}
.pw-quote-home main section.row .content-body-section .quote-card__action {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  transition: color 0.2s ease;
}
.pw-quote-home main section.row .content-body-section .quote-card__action i {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}
@media only screen and (max-width: 767.9px) {
  .pw-quote-home main section.row .content-body-section .quote-card {
    flex: 1 1 100%;
    min-width: 0;
    padding: 1.25rem;
  }
  .pw-quote-home main section.row .content-body-section .quote-card__header {
    flex-wrap: wrap;
  }
  .pw-quote-home main section.row .content-body-section .quote-card__status {
    order: -1;
    margin-left: auto;
  }
  .pw-quote-home main section.row .content-body-section .quote-card__title {
    font-size: 1rem;
  }
}
.pw-quote-edit main section.row .content-header-section .page-title-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.pw-quote-edit main section.row .content-header-section .page-title-card .page-title .title-with-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.pw-quote-edit main section.row .content-header-section .page-title-card .page-title .title-with-badge h1 {
  margin: 0;
}
.pw-quote-edit main section.row .content-body-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pw-quote-edit main section.row .content-body-section .info-cards {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.pw-quote-edit main section.row .content-body-section .info-cards__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  flex: 1;
  min-width: 180px;
}
.pw-quote-edit main section.row .content-body-section .info-cards__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #003e75;
  color: #ffffff;
  font-size: 1rem;
  flex-shrink: 0;
}
.pw-quote-edit main section.row .content-body-section .info-cards__content {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.pw-quote-edit main section.row .content-body-section .info-cards__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.5;
}
.pw-quote-edit main section.row .content-body-section .info-cards__value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1f2937;
}
.pw-quote-edit main section.row .content-body-section .detail-section {
  overflow: hidden;
}
.pw-quote-edit main section.row .content-body-section .detail-section__header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}
.pw-quote-edit main section.row .content-body-section .detail-section__title h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}
.pw-quote-edit main section.row .content-body-section .detail-section__title h2 i {
  color: #003e75;
}
.pw-quote-edit main section.row .content-body-section .detail-section__title p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}
.pw-quote-edit main section.row .content-body-section .detail-section__body {
  padding: 1.5rem;
}
.pw-quote-edit main section.row .content-body-section .locations {
  overflow: hidden;
}
.pw-quote-edit main section.row .content-body-section .locations__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}
.pw-quote-edit main section.row .content-body-section .locations__title h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}
.pw-quote-edit main section.row .content-body-section .locations__title h2 i {
  color: #003e75;
}
.pw-quote-edit main section.row .content-body-section .locations__title p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}
.pw-quote-edit main section.row .content-body-section .locations__legend {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1.5rem;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}
.pw-quote-edit main section.row .content-body-section .locations__legend-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: #6b7280;
}
.pw-quote-edit main section.row .content-body-section .locations__legend-item::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}
.pw-quote-edit main section.row .content-body-section .locations__legend-item--teal::before {
  background-color: #0d9488;
}
.pw-quote-edit main section.row .content-body-section .locations__legend-item--purple::before {
  background-color: #7c3aed;
}
.pw-quote-edit main section.row .content-body-section .locations__legend-item--gray::before {
  background-color: #cacfd6;
}
.pw-quote-edit main section.row .content-body-section .locations__add-btn {
  flex-shrink: 0;
}
.pw-quote-edit main section.row .content-body-section .locations__body .empty-state {
  margin: 1.5rem;
}
.pw-quote-edit main section.row .content-body-section .locations .location-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.15s ease;
  border-bottom: 1px solid #f3f4f6;
}
.pw-quote-edit main section.row .content-body-section .locations .location-card:last-child {
  border-bottom: none;
}
.pw-quote-edit main section.row .content-body-section .locations .location-card--clickable {
  cursor: pointer;
}
.pw-quote-edit main section.row .content-body-section .locations .location-card--clickable:hover {
  background-color: #f9fafb;
}
.pw-quote-edit main section.row .content-body-section .locations .location-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}
.pw-quote-edit main section.row .content-body-section .locations .location-card__header {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.pw-quote-edit main section.row .content-body-section .locations .location-card__street {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111827;
}
.pw-quote-edit main section.row .content-body-section .locations .location-card__locality {
  font-size: 0.8125rem;
  color: #cacfd6;
}
.pw-quote-edit main section.row .content-body-section .locations .location-card__badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.25rem;
}
.pw-quote-edit main section.row .content-body-section .locations .location-card__badge-divider {
  width: 1px;
  height: 1rem;
  background: #d1d5db;
  margin: 0 0.125rem;
}
.pw-quote-edit main section.row .content-body-section .locations .location-card__chevron {
  color: #d1d5db;
  flex-shrink: 0;
  font-size: 0.75rem;
}
.pw-quote-edit main section.row .content-body-section .detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
.pw-quote-edit main section.row .content-body-section .detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.pw-quote-edit main section.row .content-body-section .detail-item--full {
  grid-column: 1/-1;
}
.pw-quote-edit main section.row .content-body-section .detail-item__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.5;
}
.pw-quote-edit main section.row .content-body-section .detail-item__value {
  font-size: 1rem;
  font-weight: 500;
  color: #1f2937;
  line-height: 1.5;
}
.pw-quote-edit main section.row .content-body-section .detail-item__value a {
  color: #1d4ed8;
  text-decoration: none;
}
.pw-quote-edit main section.row .content-body-section .detail-item__value a:hover {
  text-decoration: underline;
}
.pw-quote-edit main section.row .content-footer-section .actions-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  width: 100%;
}
.pw-quote-edit main section.row .content-footer-section .actions-bar__left, .pw-quote-edit main section.row .content-footer-section .actions-bar__right {
  display: flex;
  gap: 0.75rem;
}

@media only screen and (max-width: 767.9px) {
  .pw-quote-edit main section.row .page-title-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .pw-quote-edit main section.row .page-title-card .page-title .title-with-badge {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .pw-quote-edit main section.row .content-body-section .info-cards {
    flex-direction: column;
  }
  .pw-quote-edit main section.row .content-body-section .info-cards__item {
    min-width: auto;
  }
  .pw-quote-edit main section.row .content-body-section .detail-section__header {
    padding: 1rem;
  }
  .pw-quote-edit main section.row .content-body-section .detail-section__title h2 {
    font-size: 1rem;
  }
  .pw-quote-edit main section.row .content-body-section .detail-section__title p {
    font-size: 0.8125rem;
  }
  .pw-quote-edit main section.row .content-body-section .detail-section__body {
    padding: 1rem;
  }
  .pw-quote-edit main section.row .content-body-section .detail-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .pw-quote-edit main section.row .content-body-section .locations__header {
    flex-wrap: wrap;
    padding: 1rem;
  }
  .pw-quote-edit main section.row .content-body-section .locations__title h2 {
    font-size: 1rem;
  }
  .pw-quote-edit main section.row .content-body-section .locations__title p {
    font-size: 0.8125rem;
  }
  .pw-quote-edit main section.row .content-body-section .locations__add-btn {
    width: 100%;
    justify-content: center;
  }
  .pw-quote-edit main section.row .content-body-section .location-card {
    padding: 1.25rem 1.25rem;
  }
  .pw-quote-edit main section.row .content-footer-section .actions-bar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .pw-quote-edit main section.row .content-footer-section .actions-bar__left, .pw-quote-edit main section.row .content-footer-section .actions-bar__right {
    width: 100%;
    flex-direction: column;
  }
  .pw-quote-edit main section.row .content-footer-section .actions-bar__left .btn, .pw-quote-edit main section.row .content-footer-section .actions-bar__right .btn {
    width: 100%;
    justify-content: center;
  }
}
.pw-location-edit main section.row .content-body-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pw-location-edit main section.row .content-body-section .detail-section {
  overflow: hidden;
}
.pw-location-edit main section.row .content-body-section .detail-section__header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}
.pw-location-edit main section.row .content-body-section .detail-section__title h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}
.pw-location-edit main section.row .content-body-section .detail-section__title h2 i {
  color: #003e75;
}
.pw-location-edit main section.row .content-body-section .detail-section__title p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}
.pw-location-edit main section.row .content-body-section .detail-section__body {
  padding: 1.5rem;
}
.pw-location-edit main section.row .location-edit-form {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.pw-location-edit main section.row .location-edit-form__fields {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pw-location-edit main section.row .location-edit-form__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.pw-location-edit main section.row .location-edit-form__row .location-edit-form__group {
  flex: 1 1 calc(50% - 0.375rem);
  min-width: 200px;
}
.pw-location-edit main section.row .location-edit-form__row--address {
  flex-wrap: nowrap;
}
.pw-location-edit main section.row .location-edit-form__row--address .location-edit-form__group {
  min-width: 0;
}
.pw-location-edit main section.row .location-edit-form__row--city-state-zip {
  flex-wrap: nowrap;
}
.pw-location-edit main section.row .location-edit-form__row--city-state-zip .location-edit-form__group {
  min-width: 0;
}
.pw-location-edit main section.row .location-edit-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.pw-location-edit main section.row .location-edit-form__group--full {
  width: 100%;
}
.pw-location-edit main section.row .location-edit-form__group--address1 {
  flex: 2 1 0;
}
.pw-location-edit main section.row .location-edit-form__group--address2 {
  flex: 1 1 0;
}
.pw-location-edit main section.row .location-edit-form__group--city {
  flex: 2 1 0;
}
.pw-location-edit main section.row .location-edit-form__group--state {
  flex: 1 1 0;
}
.pw-location-edit main section.row .location-edit-form__group--zip {
  flex: 1 1 0;
}
.pw-location-edit main section.row .location-edit-form__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #6b7280;
}
.pw-location-edit main section.row .location-edit-form__optional {
  font-weight: 400;
  color: #cacfd6;
}
.pw-location-edit main section.row .location-edit-form__input {
  width: 100%;
  padding: 0.9375rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-size: 1rem;
  color: #1f2937;
  background-color: #ffffff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.pw-location-edit main section.row .location-edit-form__input:focus {
  outline: none;
  border-color: #003e75;
  box-shadow: 0 0 0 3px rgba(0, 62, 117, 0.1);
}
.pw-location-edit main section.row .location-edit-form__input::placeholder {
  color: #cacfd6;
}
.pw-location-edit main section.row .location-edit-form__input--with-icon {
  padding-left: 2.5rem;
}
.pw-location-edit main section.row .location-edit-form__input-icon-wrap {
  position: relative;
}
.pw-location-edit main section.row .location-edit-form__input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #cacfd6;
  font-size: 0.875rem;
  pointer-events: none;
  z-index: 1;
}
.pw-location-edit main section.row .lob-card {
  overflow: hidden;
}
.pw-location-edit main section.row .lob-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}
.pw-location-edit main section.row .lob-card__title-group {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.pw-location-edit main section.row .lob-card__icon {
  width: 36px;
  height: 36px;
  background: rgba(153, 246, 228, 0.6);
  border: 1px solid rgba(13, 148, 136, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d9488;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.pw-location-edit main section.row .lob-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
}
.pw-location-edit main section.row .lob-card__rg-count {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #cacfd6;
}
.pw-location-edit main section.row .lob-card__meta {
  display: flex;
  padding: 0 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}
.pw-location-edit main section.row .lob-card__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  padding: 0.625rem 1.5rem 0.625rem 0;
  position: relative;
}
.pw-location-edit main section.row .lob-card__meta-item + .pw-location-edit main section.row .lob-card__meta-item {
  padding-left: 1.5rem;
}
.pw-location-edit main section.row .lob-card__meta-item + .pw-location-edit main section.row .lob-card__meta-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.875rem;
  bottom: 0.875rem;
  width: 1px;
  background: #e5e7eb;
}
.pw-location-edit main section.row .lob-card__meta-label {
  font-size: 0.625rem;
  font-weight: 600;
  color: #cacfd6;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.pw-location-edit main section.row .lob-card__meta-value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111827;
}
.pw-location-edit main section.row .lob-card__meta-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.375rem;
  border-radius: 10px;
  background: rgba(153, 246, 228, 0.6);
  color: #0d9488;
  font-size: 0.6875rem;
  font-weight: 700;
}
.pw-location-edit main section.row .lob-card__rg-list {
  list-style: none;
  background: #f9fafb;
}
.pw-location-edit main section.row .lob-card__rg-item {
  border-bottom: 1px solid #f3f4f6;
}
.pw-location-edit main section.row .lob-card__rg-item:last-child {
  border-bottom: none;
}
.pw-location-edit main section.row .lob-card__rg-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem 0.75rem 1.5rem;
  cursor: pointer;
  user-select: none;
  transition: background 0.12s ease;
}
.pw-location-edit main section.row .lob-card__rg-header:hover {
  background: #f3f4f6;
}
.pw-location-edit main section.row .lob-card__rg-header-left {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-width: 0;
}
.pw-location-edit main section.row .lob-card__rg-preview {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  transition: opacity 0.15s ease;
}
.pw-location-edit main section.row .lob-card__rg-preview--hidden {
  opacity: 0;
  pointer-events: none;
}
.pw-location-edit main section.row .lob-card__rg-preview-item {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
}
.pw-location-edit main section.row .lob-card__rg-preview-label {
  font-size: 0.6875rem;
  font-weight: 500;
  color: #cacfd6;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.pw-location-edit main section.row .lob-card__rg-preview-value {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #4b5563;
  white-space: nowrap;
}
.pw-location-edit main section.row .lob-card__rg-chevron {
  font-size: 0.6875rem;
  color: #cacfd6;
  transition: transform 0.2s ease;
}
.pw-location-edit main section.row .lob-card__rg-chevron--open {
  transform: rotate(90deg);
}
.pw-location-edit main section.row .lob-card__rg-name {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #111827;
}
.pw-location-edit main section.row .lob-card__rg-fields {
  padding: 0.25rem 1.5rem 1rem 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.pw-location-edit main section.row .lob-card__rg-fields .location-edit-form__group {
  flex: 1 1 calc(33.333% - 0.5rem);
  min-width: 160px;
}
.pw-location-edit main section.row .content-footer-section .actions-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  width: 100%;
}
.pw-location-edit main section.row .content-footer-section .actions-bar__left, .pw-location-edit main section.row .content-footer-section .actions-bar__right {
  display: flex;
  gap: 0.75rem;
}

@media only screen and (max-width: 767.9px) {
  .pw-location-edit main section.row .content-body-section .detail-section__header {
    padding: 1rem;
  }
  .pw-location-edit main section.row .content-body-section .detail-section__title h2 {
    font-size: 1rem;
  }
  .pw-location-edit main section.row .content-body-section .detail-section__body {
    padding: 1rem;
  }
  .pw-location-edit main section.row .location-edit-form__row .location-edit-form__group {
    flex: 1 1 100%;
  }
  .pw-location-edit main section.row .location-edit-form__row--address {
    flex-wrap: wrap;
  }
  .pw-location-edit main section.row .location-edit-form__row--address .location-edit-form__group--address1,
  .pw-location-edit main section.row .location-edit-form__row--address .location-edit-form__group--address2 {
    flex: 1 1 100%;
  }
  .pw-location-edit main section.row .location-edit-form__row--city-state-zip {
    flex-wrap: wrap;
  }
  .pw-location-edit main section.row .location-edit-form__row--city-state-zip .location-edit-form__group--city {
    flex: 1 1 100%;
  }
  .pw-location-edit main section.row .location-edit-form__row--city-state-zip .location-edit-form__group--state,
  .pw-location-edit main section.row .location-edit-form__row--city-state-zip .location-edit-form__group--zip {
    flex: 1 1 calc(50% - 0.375rem);
  }
  .pw-location-edit main section.row .lob-card__header {
    padding: 1rem;
  }
  .pw-location-edit main section.row .lob-card__meta {
    padding: 0 1.25rem;
  }
  .pw-location-edit main section.row .lob-card__rg-header {
    padding: 0.75rem 1rem 0.75rem 1.25rem;
  }
  .pw-location-edit main section.row .lob-card__rg-preview {
    display: none;
  }
  .pw-location-edit main section.row .lob-card__rg-fields {
    padding: 0.25rem 1.25rem 1rem 2.5rem;
  }
  .pw-location-edit main section.row .lob-card__rg-fields .location-edit-form__group {
    flex: 1 1 100%;
  }
  .pw-location-edit main section.row .content-footer-section .actions-bar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .pw-location-edit main section.row .content-footer-section .actions-bar__left, .pw-location-edit main section.row .content-footer-section .actions-bar__right {
    width: 100%;
    flex-direction: column;
  }
  .pw-location-edit main section.row .content-footer-section .actions-bar__left .btn, .pw-location-edit main section.row .content-footer-section .actions-bar__right .btn {
    width: 100%;
    justify-content: center;
  }
}