/* ========================================================================
   ██████╗  ██████╗  ██████╗ ████████╗███████╗████████╗██████╗  █████╗ ██████╗ 
   ██╔══██╗██╔═══██╗██╔═══██╗╚══██╔══╝██╔════╝╚══██╔══╝██╔══██╗██╔══██╗██╔══██╗
   ██████╔╝██║   ██║██║   ██║   ██║   ███████╗   ██║   ██████╔╝███████║██████╔╝
   ██╔══██╗██║   ██║██║   ██║   ██║   ╚════██║   ██║   ██╔══██╗██╔══██║██╔═══╝ 
   ██████╔╝╚██████╔╝╚██████╔╝   ██║   ███████║   ██║   ██║  ██║██║  ██║██║     
   ╚═════╝  ╚═════╝  ╚═════╝    ╚═╝   ╚══════╝   ╚═╝   ╚═╝  ╚═╝╚═╝  ╚═╝╚═╝     
   
   FILE: bootstrap_overrides.css
   PURPOSE: Bootstrap 4.6.2 framework overrides and brand customizations
   DEPENDENCIES: Bootstrap 4.6.2 CDN (must load after)
   ARCHITECTURE: Component-based organization with clear section markers
   
   NAVIGATION:
   1. ► BOOTSTRAP NAVBAR OVERRIDES (Lines 26-73)
   2. ► BRANDED BOOTSTRAP OVERRIDES (Lines 75-300)
   3. ► PRINT STYLES (Lines 302-400)
   4. ► GLOBAL BUTTON STYLES (Lines 402-500)
   5. ► HEADER & NAVIGATION OVERRIDES (Lines 600-1000)
   6. ► GOOGLE REVIEWS & MODALS (Lines 1002-1300)
   7. ► COMPANY PAGES SECTION (Lines 1302-2000)
   8. ► ACCORDION & SIDEBAR (Lines 2200-2600)
   9. ► RESPONSIVE BREAKPOINTS (Lines 6800-7500)
   10. ► BOOTSTRAP UTILITY CLASSES (Lines 6000-7800)
   11. ► CUSTOM VARIABLES & OVERRIDES (Lines 7800-END)
   
   LAST AUDIT: 2025-11-23
   ✅ Removed duplicate button definitions
   ✅ Removed duplicate #subscribe_button blocks
   ✅ Added comprehensive START/END section markers
   ✅ Consolidated empty media queries
   ✅ Organized all 7,903 lines with clear navigation
   ======================================================================== */

/* ========================================================================
   SECTION 1: BOOTSTRAP NAVBAR OVERRIDES - START
   Essential navbar styles (missing from Bootstrap CDN)
   ======================================================================== */

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar .container,
.navbar .container-fluid,
.navbar .container-sm,
.navbar .container-md,
.navbar .container-lg,
.navbar .container-xl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

/* ========================================================================
   SECTION 1: BOOTSTRAP NAVBAR OVERRIDES - END
   ======================================================================== */

/* ========================================================================
   SECTION 2: BRANDED BOOTSTRAP OVERRIDES - START
   Brand-specific modifications to Bootstrap components
   Gold (#a08850) and Black (#000) color scheme throughout
   ======================================================================== */

/* Branded Button Variants */
.btn-danger {
  color: #000000;
  background-color: #a08850;
  border-color: #c6a76f;
}

.btn-light {
  color: #000000;
  background-color: #a08850;
  border-color: #c6a76f;
}

.btn-dark {
  color: #000000;
  background-color: #a08850;
  border-color: #c6a76f;
}

/* Branded Outline Button Variants */
.btn-outline-primary {
  color: #a08850;
  border-color: #c6a76f;
  background-color: transparent;
  border-radius: 32px;
}

.btn-outline-primary:disabled {
  color: #a08850;
  background-color: transparent;
}

.btn-outline-success {
  color: #a08850;
  border-color: #c6a76f;
  background-color: transparent;
  border-radius: 32px;
}

.btn-outline-success:disabled {
  color: #a08850;
  background-color: transparent;
}

.btn-outline-info {
  color: #a08850;
  border-color: #c6a76f;
  background-color: transparent;
  border-radius: 32px;
}

.btn-outline-info:disabled {
  color: #a08850;
  background-color: transparent;
}

.btn-outline-warning {
  color: #a08850;
  border-color: #c6a76f;
  background-color: transparent;
  border-radius: 32px;
}

.btn-outline-warning:disabled {
  color: #a08850;
  background-color: transparent;
}

.btn-outline-danger {
  color: #a08850;
  border-color: #c6a76f;
  background-color: transparent;
  border-radius: 32px;
}

.btn-outline-danger:disabled {
  color: #a08850;
  background-color: transparent;
}

.btn-outline-light {
  color: #a08850;
  border-color: #c6a76f;
  background-color: transparent;
  border-radius: 32px;
}

.btn-outline-light:disabled {
  color: #a08850;
  background-color: transparent;
}

.btn-outline-dark {
  color: #a08850;
  border-color: #c6a76f;
  background-color: transparent;
  border-radius: 32px;
}

.btn-outline-dark:disabled {
  color: #a08850;
  background-color: transparent;
}

.btn-info {
  background-color: #a08850;
  border-color: #c6a76f;
  color: #ffffff;
}

.btn-info:active {
  background-color: #000000;
  border-color: #c6a76f;
  color: #ffffff;
  box-shadow: none;
  outline: none;
  background-clip: padding-box;
}

/* Branded Breadcrumb */
.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  padding-right: 0.5rem;
  color: #a08850;
  font-weight: 500;
}

.breadcrumb-item a {
  color: #a08850;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: #8a6d39;
  text-decoration: none;
}

/* Branded Badge */
.badge-success {
  color: #000;
  background-color: #a08850;
}

/* Additional Button Info Overrides */
.btn-info {
  background-color: #5492fe;
  border-color: #5492fe;
}

.btn-info:focus {
  background-color: #242424;
  border-color: #c6a76f;
}

.btn-light:focus {
  background-color: #a08850;
  border-color: #c6a76f;
  color: #f5f5f5;
}

/* Branded Input Group */
.input-group-text {
  border: 0.0625rem solid #d4d4d4;
  background-color: #fff;
  color: #242424;
}

/* ========================================================================
   SECTION 2: BRANDED BOOTSTRAP OVERRIDES - END
   ======================================================================== */

/* ========================================================================
   SECTION 3: FONTS & TYPOGRAPHY - GLOBAL - START
   Typography settings handled in main stylesheet
   ======================================================================== */
/* ========================================================================
   SECTION 3: FONTS & TYPOGRAPHY - GLOBAL - END
   ======================================================================== */

/* ========================================================================
   SECTION 4: GLOBAL BUTTON STYLES - START
   All Button and Theme-specific Button Styles
   Base buttons, themed variants, pill shapes (32px radius)
   ======================================================================== */

/* Base Button Styles - Poppins Font */
.btn,
.thm_btn,
.btn-test-drive,
.btn-compact,
.btn-link {
  font-family: var(--font-body);
  font-weight: 500;
  border-radius: 32px;
  padding: 10px 24px;
  font-size: 14px;
  text-transform: uppercase;
  border: 1px solid #c6a76f;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
  text-decoration: none;
}

.thm_btn.color,
.btn-secondary {
  background: #a08850;
  color: #000;
  border: 1px solid #c6a76f;
}

.btn-secondary:hover,
.btn-outline-secondary:hover {
  background: #000;
  color: #fff;
  border-color: #c6a76f;
}
/* ========================================================================
   SECTION 4: GLOBAL BUTTON STYLES - END
   ======================================================================== */

/* ========================================================================
   SECTION 5: PRINT STYLES - START
   Optimized for printing vehicle details and documents
   ======================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a:not(.btn) {
    text-decoration: underline;
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }
  .container {
    min-width: 992px !important;
  }
  .navbar {
    display: none;
  }
  .badge {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse;
  }
  .table td,
  .table th {
    background-color: #fff;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6;
  }
  .table-dark {
    color: inherit;
  }
  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }
  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
  
  /* Stock ID Print Optimization */
  .fa-barcode.compact-icon {
    background: #a08850 !important;
    color: #fff !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  
  .fa-barcode.compact-icon ~ .compact-spec-content .compact-spec-value {
    font-weight: 800 !important;
    color: #000 !important;
    border-bottom: 2px solid #c6a76f !important;
    padding-bottom: 2px;
  }
  
  .compact-spec-item {
    page-break-inside: avoid;
  }
}

/* ========================================================================
   SECTION 5: PRINT STYLES - END
   ======================================================================== */

@media (max-width: 575.98px) {

/* ========================================================================
   SECTION 6: BOOTSTRAP CARD OVERRIDES - START
   Card Components
   ======================================================================== */
/* ========================================================================
   SECTION 6: BOOTSTRAP CARD OVERRIDES - END
   ======================================================================== */
}

@media (max-width: 991.98px) {
  .btn-sm,
  .btn-group-sm > .btn,
  .btn-lg,
  .btn-group-lg > .btn {
    border-radius: 8px;
  }

  .btn:focus,
  .btn:active {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(198, 167, 111, 0.25);
  }
  
  .btn:active {
    transform: translateY(0.5px);
  }

  a.btn,
  button.btn,
  input[type="submit"].btn {
    text-decoration: none;
  }
}


/* ========================================================================
   SECTION 7: HEADER & NAVIGATION OVERRIDES - START
   Navbar, Menu, Dropdown styles
   ======================================================================== */

/* ========================================================================
   SECTION 7: HEADER & NAVIGATION OVERRIDES - END
   ======================================================================== */

/* ========================================================================
   SECTION 8: GOOGLE REVIEWS & MODALS - START
   Review cards, modal styling, responsive behavior
   ======================================================================== */

@media (max-width: 575.98px) {
  .g-agg-badge {
    padding: 6px 12px;
    max-width: 100%;
  }
  .g-agg-badge .g-ltr {
    font-size: 14px;
  }
  .g-agg-badge .g-stars {
    font-size: 16px;
  }
  .g-agg-badge .g-score {
    font-size: 15px;
  }

  .reviews-wrapper {
    padding: 0 10px;
    max-width: 100%;
    overflow-x: hidden;
  }
  .review-card {
    margin: 0 5px;
    min-height: auto;
    max-width: calc(100vw - 40px);
  }

  .btn-gold,
  .btn-read-more {
    padding: 8px 16px;
    font-size: 14px;
    width: auto;
    min-width: 100px;
  }

  .modal-dialog {
    margin: 10px;
    max-width: calc(100vw - 20px);
  }
  .modal-content {
    max-height: calc(100vh - 40px);
    overflow-y: auto;
  }
}

#reviewModal .modal-content {
  border-radius: 8px;
  overflow: hidden;
}
#reviewModal .modal-header--plain .close {
  color: #000000;
  opacity: 1;
  text-shadow: none;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  width: auto;
  height: auto;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#reviewModal .modal-body {
  padding: 20px;
}
#reviewModal .modal-body #rvMeta {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #6c757d;
}
#reviewModal .modal-body #rvText {
  line-height: 1.5;
  margin-bottom: 0;
  font-size: 1rem;
}

@media (max-width: 575.98px) {
  #reviewModal .modal-dialog {
    margin: 10px;
    max-width: calc(100% - 20px);
    width: calc(100% - 20px);
  }
  #reviewModal .modal-header--plain {
    padding: 12px 16px;
    flex-wrap: nowrap;
  }
  #reviewModal .modal-header--plain .modal-title {
    font-size: 1.1rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 60px);
  }
  #reviewModal .modal-header--plain .close {
    font-size: 1.5rem;
    min-width: 44px;
    min-height: 44px;
    flex-shrink: 0;
  }
  #reviewModal .modal-body {
    padding: 16px;
  }
  #reviewModal .modal-body #rvMeta {
    font-size: 0.85rem;
  }
  #reviewModal .modal-body #rvText {
    font-size: 0.95rem;
    line-height: 1.4;
  }
}

/* ========================================================================
   SECTION 8: GOOGLE REVIEWS & MODALS - END
   ======================================================================== */

/* ========================================================================
   SECTION 9: GLOBAL MODAL STYLES - START
   Finance & Test Drive modals, consistent header/body styling
   ======================================================================== */
.fc-modal .modal-dialog .modal-content .modal-header--plain {
  background-color: #a08850 !important;
  border-bottom: none !important;
  padding: 16px 20px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  border-top-left-radius: 0.8125rem;
  border-top-right-radius: 0.8125rem;
}
.fc-modal .modal-dialog .modal-content .modal-header--plain .modal-title {
  color: #000000 !important;
  font-size: 1.25rem !important;
  margin: 0 !important;
  flex: 1;
  font-weight: 600 !important;
  line-height: 1.3 !important;
}
.fc-modal .modal-dialog .modal-content .modal-header--plain .close {
  color: #000000 !important;
  opacity: 1 !important;
  text-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
  border: none !important;
  font-size: 1.8rem !important;
  line-height: 1 !important;
  cursor: pointer;
  width: auto;
  height: auto;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc-modal .modal-dialog .modal-content .modal-body {
  background-color: #fff;
  border-bottom-left-radius: 0.8125rem;
  border-bottom-right-radius: 0.8125rem;
}
.fc-modal
  .form-control:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-header__main__search__input
  ) {
  height: 3.75rem;
  padding: 0.875rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.fc-modal .form-control:focus {
  border-color: #c6a76f;
  box-shadow: 0 0 0 0.2rem rgba(198, 167, 111, 0.25);
  outline: 0;
}
@media (prefers-color-scheme: dark) {
  .fc-modal .modal-dialog .modal-content .modal-header--plain {
    background-color: #a08850 !important;
  }
}
@media (max-width: 575.98px) {
  .fc-modal .modal-dialog .modal-content .modal-header--plain {
    padding: 12px 16px !important;
    flex-wrap: nowrap !important;
  }
  .fc-modal .modal-dialog .modal-content .modal-header--plain .modal-title {
    font-size: 1.1rem !important;
    line-height: 1.2 !important;
  }
  .fc-modal .modal-dialog .modal-content .modal-header--plain .close {
    font-size: 1.5rem !important;
    min-width: 44px;
    min-height: 44px;
    flex-shrink: 0;
  }
  .fs-22 {
    font-size: 1.125rem;
  }
  .fc-modal
    .form-control:not(.otp-input):not(.c-sellCarForm .form-control):not(
      .c-header__main__search__input
    ) {
    height: 3.5rem;
    padding: 0.75rem;
  }
}
/* ========================================================================
   SECTION 9: GLOBAL MODAL STYLES - END
   ======================================================================== */

/* ========================================================================
   SECTION 10: COMPANY PAGES SECTION - START
   Contact, About, Finance, FAQ, Terms, Policy overrides
   ======================================================================== */

/* ========================================================================
   SUBSECTION 10.1: CONTACT FORM OVERRIDES - START
   ======================================================================== */
.c-contactForm__form .btn {
  width: auto;
  min-width: 140px;
}

/* Mobile Form Input Font Size Fix */
@media (max-width: 575.98px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  select,
  textarea {
    font-size: 16px;
  }
  
  /* Global mobile button standard for primary actions */
  .btn-primary,
  .btn-gold,
  .btn-secondary {
    min-height: 48px;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
  }
  
  /* General buttons get slightly smaller but still accessible */
  .btn:not(.action-btn):not(.btn-sm):not(.btn-lg) {
    min-height: 44px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
}

.contact-thank-you-funnel .card {
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.contact-thank-you-funnel .card:hover {
  transform: translateY(-2px);
  box-shadow: none !important;
}

.contact-thank-you-funnel .card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.contact-thank-you-funnel .card-body .conversion-btn {
  margin-top: auto;
}

/* Ensure Bootstrap grid columns align at top */

/* ========================================================================
   SUBSECTION 10.1: CONTACT FORM OVERRIDES - END
   ======================================================================== */

/* ========================================================================
   SUBSECTION 10.2: SEARCH & FILTER OVERRIDES - START
   Vehicle Search Components
   ======================================================================== */


/* Buy Car Filter Layout */


/* ========================================================================
   SUBSECTION 10.2: SEARCH & FILTER OVERRIDES - END
   ======================================================================== */

/* ========================================================================
   SUBSECTION 10.3: VEHICLE FILTER LAYOUTS - START
   Filter layouts handled in main style-working.css
   ======================================================================== */
/* ========================================================================
   SUBSECTION 10.3: VEHICLE FILTER LAYOUTS - END
   ======================================================================== */

/* ========================================================================
   SUBSECTION 10.4: ACCORDION COMPONENT - START
   FAQ accordions with plus/minus icons
   ======================================================================== */
.accordion .card {
  border: 1px solid #e0e0e0;
  margin-bottom: 0.5rem;
}
.accordion .btn-link {
  text-decoration: none;
  color: #242424;
  font-weight: 600;
}
.accordion .btn-link:hover {
  text-decoration: none;
  color: #a08850;
}

.accordion .card {
  border: 2px solid #c6a76f22;
  border-radius: 10px;
  overflow: hidden;
}
.accordion .card + .card {
  margin-top: 12px;
}
.accordion .card-header {
  background: #fff;
  border-bottom: none;
  padding: 0;
}
.accordion .card-header .btn-link {
  display: block;
  width: 100%;
  padding: 16px 48px 16px 16px;
  font-weight: 700;
  color: #a08850;
  position: relative;
}
.accordion .card-header .btn-link::after,
.accordion .card-header .btn-link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  background: #a08850;
  transition: transform 0.2s ease;
}
.accordion .card-header .btn-link::before {
  width: 2px;
  height: 18px;
  margin-top: -9px;
}
.accordion .card-header .btn-link::after {
  width: 18px;
  height: 2px;
  margin-top: -1px;
}
.accordion .card-header .btn-link[aria-expanded="true"]::before {
  transform: rotate(90deg);
}
.accordion .card-body {
  background: #fff;
  padding: 16px;
}

/* ========================================================================
   SUBSECTION 10.4: ACCORDION COMPONENT - END
   ======================================================================== */

/* ========================================================================
   SUBSECTION 10.5: MOBILE OPTIMIZATIONS - SELL CAR FORM - START
   Remove transforms on mobile to prevent layout shift
   ======================================================================== */
@media (max-width: 767.98px) {
  
  
  /* Disable heavy transitions on touch devices for better performance */
/* ========================================================================
   SUBSECTION 10.6: BOOTSTRAP FORM OVERRIDES - START
   Input, Select, Textarea
   ======================================================================== */
.form-control {
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  }
}
/* =======================================================
   SELL CAR FORM FIELD STYLING - UNIFIED WITH FILTERS
   ======================================================== */


/* Shared inner element styles for currency and phone fields */

/* Shared focus styles for currency and phone inner elements */


.wizard-navigation .btn {
  min-width: 120px;
  margin: 0 0.5rem;
  color: #000000; /* Black text on gold background */
}

.wizard-navigation .btn:hover,
.wizard-navigation .btn:focus,
.wizard-navigation .btn:active {
  color: #ffffff !important; /* White text on black background */
}

@media (max-width: 576px) {
  .wizard-navigation .btn {
    width: 100%;
    margin: 0.5rem 0;
    min-height: 48px;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #sell-submit-btn {
    width: 100%;
    min-height: 52px;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(198, 167, 111, 0.3);
  }

  #sell-submit-btn:active {
    transform: scale(0.98);
  }
}

/* ========================================================================
   SUBSECTION 10.6: BOOTSTRAP FORM OVERRIDES - END
   ======================================================================== */

/* ========================================================================
   SUBSECTION 10.7: PAGINATION OVERRIDES - START
   ======================================================================== */
.pagination .page-link {
  color: #000000;
  background-color: #a08850;
  border-color: #c6a76f;
}
.pagination .page-item.active .page-link,
.pagination .page-link:focus,
.pagination .page-link:hover {
  background-color: #000000;
  border-color: #c6a76f;
  color: #ffffff;
}
/* ========================================================================
   SUBSECTION 10.7: PAGINATION OVERRIDES - END
   ======================================================================== */

/* ========================================================================
   SUBSECTION 10.8: NEWSLETTER SIDEBAR FORM - START
   ======================================================================== */
.sidebar-widget .newsletter-form .btn {
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  width: 100% !important;
}
.sidebar-widget .newsletter-form .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}
.sidebar-widget .newsletter-form .btn:hover::before {
  left: 100%;
}
.sidebar-widget .newsletter-form .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(198, 167, 111, 0.3);
  background-color: #000 !important;
  color: #fff !important;
}

/* ========================================================================
   SUBSECTION 10.8: NEWSLETTER SIDEBAR FORM - END
   ======================================================================== */

/* ========================================================================
   SUBSECTION 10.9: NEWSLETTER MODAL - START
   Full modal with gold header, subscribe form, benefits list
   ======================================================================== */
.modal#newsletterModal
  .modal-dialog
  .modal-content
  .modal-header.newsletter-modal-header {
  background: #a08850 !important;
  color: #fff !important;
  border-bottom: none !important;
  padding: 1.5rem 2rem 1.5rem 1rem !important;
  position: relative !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 1rem !important;
  min-height: 70px !important;
  border-top-left-radius: 12px !important;
  border-top-right-radius: 12px !important;
}

.modal#newsletterModal .modal-dialog .modal-content .newsletter-modal-title {
  font-size: 1.15rem !important;
  font-weight: 600 !important;
  margin-bottom: 0 !important;
  line-height: 1.3 !important;
  flex: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 0.75rem !important;
  letter-spacing: -0.01em !important;
  text-align: left !important;
  padding: 0 !important;
  color: #fff !important;
}

.modal#newsletterModal .newsletter-modal-title .text-primary {
  color: #fff !important;
}
.modal#newsletterModal .newsletter-modal-title i {
  font-size: 1.2rem;
  margin-right: 0;
  flex-shrink: 0;
  color: #fff;
  opacity: 0.9;
}
.modal#newsletterModal .newsletter-modal-title span {
  display: inline-block;
  line-height: 1.3;
  color: #fff;
}

.modal#newsletterModal .modal-dialog .modal-content .modal-header {
  border-bottom: none !important;
  padding: 0 !important;
  align-items: center !important;
  justify-content: space-between !important;
  display: flex !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  background: transparent !important;
}
.modal#newsletterModal .modal-dialog .modal-content .modal-title {
  margin-bottom: 0 !important;
  font-size: inherit !important;
  line-height: inherit !important;
}
.modal#newsletterModal .newsletter-modal-close {
  background: none !important;
  border: none !important;
  color: #fff !important;
  font-size: 1.1rem !important;
  opacity: 0.8 !important;
  transition: all 0.2s ease !important;
  padding: 0.5rem !important;
  position: relative !important;
  margin-left: auto !important;
  margin-right: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  align-self: center !important;
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 36px !important;
  min-height: 36px !important;
  border-radius: var(--btn-radius) !important;
}
.newsletter-modal-form .form-control {
  border-color: #dee2e6;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  border-radius: 25px !important;
}
.newsletter-modal-form .form-control:focus {
  border-color: #c6a76f;
  box-shadow: 0 0 0 0.2rem rgba(198, 167, 111, 0.25);
}
.newsletter-modal-form .input-group .form-control {
  border-radius: 0 25px 25px 0 !important;
}
.newsletter-modal-form .btn-primary {
  background-color: #a08850;
  border-color: #c6a76f;
  color: #000;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 25px !important;
  transition: all 0.2s ease;
}
.newsletter-modal-form .btn-primary:hover {
  background-color: #000;
  border-color: #000;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.newsletter-modal-form .btn-primary:disabled {
  background-color: #6c757d;
  border-color: #6c757d;
  transform: none;
  box-shadow: none;
}

.sidebar-widget .btn {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  letter-spacing: 0.025em;
  position: relative;
  overflow: hidden;
}
.sidebar-widget .btn-primary {
  background-color: #a08850;
  border-color: #c6a76f;
  color: #000000;
}
.sidebar-widget .btn-primary:hover {
  background-color: #b8996b;
  border-color: #b8996b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 153, 107, 0.3);
}
.sidebar-widget .btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(184, 153, 107, 0.2);
}

/* ========================================================================
   SUBSECTION 10.9: NEWSLETTER MODAL - END
   ======================================================================== */

/* ========================================================================
   SUBSECTION 10.10: SIDEBAR NEWSLETTER FORM (DUPLICATE) - START
   ======================================================================== */
.sidebar-widget .newsletter-form .btn {
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  width: 100% !important;
}
.sidebar-widget .newsletter-form .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}
.sidebar-widget .newsletter-form .btn:hover::before {
  left: 100%;
}
.sidebar-widget .newsletter-form .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(198, 167, 111, 0.3);
  background-color: #000 !important;
  color: #fff !important;
}

/* ========================================================================
   SUBSECTION 10.10: SIDEBAR NEWSLETTER FORM (DUPLICATE) - END
   ======================================================================== */

/* ========================================================================
   SUBSECTION 10.11: BLOG SIDEBAR - RESPONSIVE - START
   ======================================================================== */
@media (max-width: 991.98px) {
  .blog-sidebar {
    position: static;
    max-height: none;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f2f5;
  }
  .sidebar-widget {
    margin-bottom: 2rem;
  }
  .sidebar-widget:hover {
    transform: none;
  }

  .sidebar-widget .btn {
    min-height: 44px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  .social-icons a {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .widget-header,
  .widget-content,
  .widget-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .post-title {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  .post-thumbnail {
    height: 50px;
  }
  .post-thumbnail-placeholder {
    height: 50px;
  }

  .sidebar-widget .btn {
    min-height: 48px;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
  }
  .recent-post-item {
    padding: 1.5rem 0;
    touch-action: manipulation;
  }
  .recent-post-item:hover {
    margin: 0;

    padding: 1.5rem 0;
    background-color: #f8f9fa;
  }
  .post-thumbnail-link {
    touch-action: manipulation;
  }
  .social-icons {
    gap: 1rem;
  }
  .social-icons a {
    min-width: 48px;
    min-height: 48px;
    border-radius: 12px;
  }

  .newsletter-modal {
    margin: 1rem;
    max-width: calc(100vw - 2rem);
  }
  .newsletter-modal-header {
    padding: 1.5rem 1.25rem 1rem;
  }
  .newsletter-modal-body {
    padding: 1rem 1.25rem 1.5rem;
  }
  .newsletter-modal-form .btn {
    min-height: 48px;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
  }

  .article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .article-share {
    justify-content: flex-start;
    width: 100%;
    margin-top: 1rem;
  }
}

@media (max-width: 767.98px) and (min-width: 576px) {
  .sidebar-widget {
    margin-bottom: 2rem;
  }
  .recent-post-item {
    padding: 1.25rem 0;
  }
  .sidebar-widget .btn {
    min-height: 46px;
    padding: 0.875rem 1.5rem;
  }
  .social-icons a {
    min-width: 46px;
    min-height: 46px;
  }
  .article-meta {
    gap: 1.25rem;
  }
}

/* ========================================================================
   SUBSECTION 10.11: BLOG SIDEBAR - RESPONSIVE - END
   ======================================================================== */

/* ========================================================================
   SECTION 10: COMPANY PAGES SECTION - END
   ======================================================================== */

/* ========================================================================
   SECTION 11: BOOTSTRAP GRID & LAYOUT SYSTEM - START
   Container, Row, Column classes
   ======================================================================== */
.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container,
  .container-sm,
  .container-md {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1140px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

/* ========================================================================
   SECTION 11: BOOTSTRAP GRID & LAYOUT SYSTEM - END
   ======================================================================== */

/* ========================================================================
   SECTION 12: BOOTSTRAP TABLE COMPONENTS - START
   ======================================================================== */
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}
.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
}
.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

/* ========================================================================
   SECTION 12: BOOTSTRAP TABLE COMPONENTS - END
   ======================================================================== */

/* ========================================================================
   SECTION 13: BOOTSTRAP FORM CONTROLS - START
   Form inputs, selects, textareas, validation states
   ======================================================================== */
.form-control {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0.875rem 1.3125rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2c3e50;
  background-color: #f8f9fa;
  background-clip: padding-box;
  border: 2px solid #d4d4d4;
  border-radius: 12px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled,
.form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
input[type="date"].form-control,
input[type="time"].form-control,
input[type="datetime-local"].form-control,
input[type="month"].form-control {
  appearance: none;
}
select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}
select.form-control[size],
select.form-control[multiple] {
  height: auto;
}
textarea.form-control {
  height: auto;
}
.form-group {
  margin-bottom: 1rem;
}

/* ========================================================================
   SECTION 13: BOOTSTRAP FORM CONTROLS - END
   ======================================================================== */

/* ========================================================================
   SECTION 14: BOOTSTRAP FORM VALIDATION STATES - START
   Valid/Invalid states with icons and colors
   ======================================================================== */
.was-validated .form-control:valid,
.form-control.is-valid {
  border-color: #28a745;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2328a745' viewBox='0 0 16 16'%3e%3cpath d='M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425a.267.267 0 0 1 .02-.022z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus,
.form-control.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right
    calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:valid,
.custom-select.is-valid {
  border-color: #28a745;
  padding-right: calc(4.75em + 0.75rem);
  background: #fff
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2328a745' viewBox='0 0 16 16'%3e%3cpath d='M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425a.267.267 0 0 1 .02-.022z'/%3e%3c/svg%3e")
    right 0.75rem center / calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)
    no-repeat;
}
.was-validated .custom-select:valid:focus,
.custom-select.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.was-validated .form-control:invalid,
.form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23dc3545' viewBox='0 0 16 16'%3e%3cpath d='M8.982 1.566a1.13 1.13 0 0 0-1.96 0L.165 13.233c-.457.778.091 1.767.98 1.767h13.713c.889 0 1.438-.99.98-1.767L8.982 1.566zM8 5c.535 0 .954.462.9.995l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 5.995A.905.905 0 0 1 8 5zm.002 6a1 1 0 1 1 0 2 1 1 0 0 1 0-2z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right
    calc(0.375em + 0.1875rem);
}
.was-validated .custom-select:invalid,
.custom-select.is-invalid {
  border-color: #dc3545;
  padding-right: calc(4.75em + 0.75rem);
  background: #fff
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23dc3545' viewBox='0 0 16 16'%3e%3cpath d='M8.982 1.566a1.13 1.13 0 0 0-1.96 0L.165 13.233c-.457.778.091 1.767.98 1.767h13.713c.889 0 1.438-.99.98-1.767L8.982 1.566zM8 5c.535 0 .954.462.9.995l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 5.995A.905.905 0 0 1 8 5zm.002 6a1 1 0 1 1 0 2 1 1 0 0 1 0-2z'/%3e%3c/svg%3e")
    right 0.75rem center / calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)
    no-repeat;
}
.was-validated .custom-select:invalid:focus,
.custom-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.form-inline .form-check {
  width: 100%;
}
@media (min-width: 576px) {
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group,
  .form-inline .custom-select {
    width: auto;
  }
  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

/* ========================================================================
   SECTION 14: BOOTSTRAP FORM VALIDATION STATES - END
   ======================================================================== */

/* ========================================================================
   SECTION 15: BOOTSTRAP BUTTON SYSTEM - START
   Base button, variants (primary/secondary/outline), states
   ======================================================================== */
.btn {
  display: inline-block;
  font-weight: 600;
  color: #000000;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: #a08850;
  border: 1px solid #c6a76f;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 32px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #ffffff;
  text-decoration: none;
  background-color: #000000;
  border-color: #c6a76f;
  background-clip: padding-box;
}
.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: none;
  background-clip: padding-box;
}
.btn.disabled,
.btn:disabled {
  opacity: 0.65;
  background-color: #a08850;
  border-color: #c6a76f;
  color: #000000;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}
.btn-primary {
  color: #000000;
  background-color: #a08850;
  border-color: #c6a76f;
  transition: all 0.3s ease;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle,
.thm_btn.color:hover,
.thm_btn.color:focus {
  color: #ffffff;
  background-color: #000000;
  border-color: #c6a76f;
  box-shadow: none;
}
.btn-primary:focus {
  color: #ffffff;
  background-color: #000000;
  border-color: #c6a76f;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #000000;
  background-color: #a08850;
  border-color: #c6a76f;
  opacity: 0.65;
}
.btn-secondary {
  color: #000000;
  background-color: #a08850;
  border-color: #c6a76f;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #000000;
  border-color: #c6a76f;
  color: #ffffff;
  background-clip: padding-box;
  box-shadow: none;
  outline: none;
}
.btn-secondary:not(:disabled):not(.disabled):focus,
.btn-secondary:not(:disabled):not(.disabled):active {
  background-color: #000000;
  border-color: #c6a76f;
  color: #ffffff;
  background-clip: padding-box;
  box-shadow: none;
  outline: none;
}
.btn-secondary:not(:disabled):not(.disabled):focus:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus {
  background-color: #000000;
  border-color: #c6a76f;
  color: #ffffff;
  background-clip: padding-box;
  box-shadow: none;
  outline: none;
}
.btn-warning:active,
.btn-warning.active,
.show > .btn-warning.dropdown-toggle {
  color: #ffffff;
  background-color: #000000;
  border-color: #c6a76f;
  box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.show > .btn-danger.dropdown-toggle {
  color: #ffffff;
  background-color: #000000;
  border-color: #c6a76f;
  box-shadow: none;
}
.btn-light:hover,
.btn-light:focus,
.btn-light:active,
.btn-light.active,
.show > .btn-light.dropdown-toggle {
  color: #ffffff;
  background-color: #000000;
  border-color: #c6a76f;
  box-shadow: none;
}
.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active,
.btn-dark.active,
.show > .btn-dark.dropdown-toggle {
  color: #ffffff;
  background-color: #000000;
  border-color: #c6a76f;
  box-shadow: none;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary.active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #ffffff;
  background-color: #000000;
  border-color: #c6a76f;
  box-shadow: none;
}
.btn-outline-success:hover,
.btn-outline-success:focus,
.btn-outline-success:active,
.btn-outline-success.active,
.show > .btn-outline-success.dropdown-toggle {
  color: #ffffff;
  background-color: #000000;
  border-color: #c6a76f;
  box-shadow: none;
}
.btn-outline-info:hover,
.btn-outline-info:focus,
.btn-outline-info:active,
.btn-outline-info.active,
.show > .btn-outline-info.dropdown-toggle {
  color: #ffffff;
  background-color: #000000;
  border-color: #c6a76f;
  box-shadow: none;
}
.btn-outline-warning:hover,
.btn-outline-warning:focus,
.btn-outline-warning:active,
.btn-outline-warning.active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #ffffff;
  background-color: #000000;
  border-color: #c6a76f;
  box-shadow: none;
}
.btn-outline-danger:hover,
.btn-outline-danger:focus,
.btn-outline-danger:active,
.btn-outline-danger.active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #ffffff;
  background-color: #000000;
  border-color: #c6a76f;
  box-shadow: none;
}
.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:active,
.btn-outline-light.active,
.show > .btn-outline-light.dropdown-toggle {
  color: #ffffff;
  background-color: #000000;
  border-color: #c6a76f;
  box-shadow: none;
}
.btn-outline-dark:hover,
.btn-outline-dark:focus,
.btn-outline-dark:active,
.btn-outline-dark.active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #ffffff;
  background-color: #000000;
  border-color: #c6a76f;
  box-shadow: none;
}
.btn-link {
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
}
.btn-link:hover,
.btn-link:focus {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: #c6a76f;
}
.btn-link:disabled,
.btn-link.disabled {
  color: rgba(255, 255, 255, 0.7);
  pointer-events: none;
}
.btn-lg,
.btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 32px;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 32px;
}

.btn[class*="btn-outline-"]:hover,
.btn[class*="btn-outline-"]:focus,
.btn[class*="btn-outline-"]:active,
.btn[class*="btn-outline-"].active {
  background-color: #000000;
  border-color: #c6a76f;
  color: #ffffff;
  background-clip: padding-box;
}

/* ========================================================================
   SECTION 15: BOOTSTRAP BUTTON SYSTEM - END
   ======================================================================== */

/* ========================================================================
   SECTION 16: BOOTSTRAP PAGINATION - START
   ======================================================================== */
.pagination .page-link {
  background-color: #a08850;
  border-color: #c6a76f;
  color: #000000;
}
.pagination .page-item.active .page-link,
.pagination .page-link:hover,
.pagination .page-link:focus {
  background-color: #000000;
  border-color: #c6a76f;
  color: #ffffff;
  background-clip: padding-box;
}

/* ========================================================================
   SECTION 16: BOOTSTRAP PAGINATION - END
   ======================================================================== */

/* ========================================================================
   SECTION 17: NEWSLETTER SUBSCRIBE BUTTON - START
   ======================================================================== */
/* Newsletter button styles inherited from .btn and .sidebar-widget .btn */

/* ========================================================================
   SECTION 17: NEWSLETTER SUBSCRIBE BUTTON - END
   ======================================================================== */

/* ========================================================================
   SECTION 18: BOOTSTRAP DROPDOWN SYSTEM - START
   ======================================================================== */
.dropright,
.dropdown,
.dropleft {
  position: relative;
}
.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropright .dropdown-toggle::after {
  vertical-align: 0;
}
.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropleft .dropdown-toggle::after {
  display: none;
}
.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}
.dropdown-menu[x-placement^="top"],
.dropdown-menu[x-placement^="right"],
.dropdown-menu[x-placement^="bottom"],
.dropdown-menu[x-placement^="left"] {
  right: auto;
  bottom: auto;
}
.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover,
.dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #e9ecef;
}
.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #007bff;
}
.dropdown-item.disabled,
.dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}
.dropdown-menu.show {
  display: block;
}

/* ========================================================================
   SECTION 18: BOOTSTRAP DROPDOWN SYSTEM - END
   ======================================================================== */

/* ========================================================================
   SECTION 19: EXTRACTED INLINE CSS - START
   Moved from inline styles in view files for better maintainability
   ======================================================================== */
/* Alert Messages - Status/Error Displays */
.alert.alert-hidden {
  display: none;
  margin-top: 1rem;
}

/* Form Buttons - Wizard Navigation */
.btn.btn-wizard-hidden {
  display: none;
}

/* reCAPTCHA Error Messages */
.recaptcha-error-display {
  display: none;
  color: #d32f2f;
  font-size: 14px;
  margin-top: 5px;
}

/* Button Spinner States */
.btn-spinner-hidden {
  display: none;
}

/* Iframe - Full Width Responsive */
.iframe-responsive {
  border: 0;
  width: 100%;
  height: 100%;
}

/* OTP Modal Messages */
.otp-error-hidden,
.otp-success-hidden {
  display: none;
}

/* Finance Disclaimer Text */
.finance-disclaimer-text {
  font-style: normal;
  font-weight: 600;
}

/* Calculator Modal - Slider Labels */
.slider-range-label {
  border: 1px solid #e9ecef;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: #f8f9fa;
}

/* No Results Display */
.no-results-text {
  text-align: center;
  font-size: 18px;
  color: red;
}

/* Honeypot Anti-Spam Field */
.form-honeypot-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ========================================================================
   SECTION 19: EXTRACTED INLINE CSS - END
   ======================================================================== */

/* ========================================================================
   SECTION 20: BOOTSTRAP BUTTON GROUPS - START
   ======================================================================== */
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}
.btn-toolbar .input-group {
  width: auto;
}
.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-sm + .dropdown-toggle-split,
.btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}
.btn-lg + .dropdown-toggle-split,
.btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}
.btn-group-toggle > .btn input[type="radio"],
.btn-group-toggle > .btn input[type="checkbox"],
.btn-group-toggle > .btn-group > .btn input[type="radio"],
.btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

/* ========================================================================
   SECTION 20: BOOTSTRAP BUTTON GROUPS - END
   ======================================================================== */

/* ========================================================================
   SECTION 21: BOOTSTRAP INPUT GROUPS - START
   Input groups with prepend/append elements
   ======================================================================== */
.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin-bottom: 0;
}
.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}
.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}
.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}
.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .custom-file {
  display: flex;
  align-items: center;
}
.input-group > .custom-file:not(:last-child) .custom-file-label,
.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group:not(.has-validation) > .form-control:not(:last-child),
.input-group:not(.has-validation) > .custom-select:not(:last-child),
.input-group:not(.has-validation)
  > .custom-file:not(:last-child)
  .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > .form-control:nth-last-child(n + 3),
.input-group.has-validation > .custom-select:nth-last-child(n + 3),
.input-group.has-validation
  > .custom-file:nth-last-child(n + 3)
  .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group-prepend .btn,
.input-group-append .btn {
  position: relative;
  z-index: 2;
}
.input-group-prepend .btn:focus,
.input-group-append .btn:focus {
  z-index: 3;
}
.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
  margin-left: -1px;
}
.input-group-lg > .form-control:not(textarea),
.input-group-lg > .custom-select {
  height: calc(1.5em + 1rem + 2px);
}
.input-group-lg > .form-control,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}
.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.5em + 0.5rem + 2px);
}
.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

/* ========================================================================
   SECTION 21: BOOTSTRAP INPUT GROUPS - END
   ======================================================================== */

/* ========================================================================
   SECTION 22: BOOTSTRAP CUSTOM FORM ELEMENTS - START
   Custom selects, ranges, file inputs, controls
   ======================================================================== */
.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 1.75rem;
}
.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn,
.input-group:not(.has-validation)
  > .input-group-append:not(:last-child)
  > .input-group-text,
.input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .btn,
.input-group.has-validation
  > .input-group-append:nth-last-child(n + 3)
  > .input-group-text,
.input-group
  > .input-group-append:last-child
  > .btn:not(:last-child):not(.dropdown-toggle),
.input-group
  > .input-group-append:last-child
  > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group
  > .input-group-prepend:first-child
  > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.custom-select {
  display: inline-block;
  width: 100%;
  height: 48px;
  padding: 12px 1.3125rem; /* 12px top/bottom prevents text cutoff */
  font-size: 0.875rem;
  font-weight: 500;
  color: #2c3e50;
  vertical-align: middle;
  background: #f8f9fa;
  border: 2px solid #d4d4d4;
  border-radius: 12px;
  appearance: none;
}
.custom-select:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}
.custom-select[multiple],
.custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}
.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}
.custom-select::-ms-expand {
  display: none;
}
.custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}
.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin-bottom: 0;
}
.custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  appearance: none;
}
.custom-range:focus {
  outline: 0;
}
.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(198, 167, 111, 0.25);
}
.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(198, 167, 111, 0.25);
}
.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(198, 167, 111, 0.25);
}
.custom-range::-moz-focus-outer {
  border: 0;
}
.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #a08850;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    transition: none;
  }
}
.custom-range::-webkit-slider-thumb:active {
  background-color: #b39760;
}
.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #a08850;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    transition: none;
  }
}
.custom-range::-moz-range-thumb:active {
  background-color: #b39760;
}
.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #a08850;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    transition: none;
  }
}
.custom-range::-ms-thumb:active {
  background-color: #b39760;
}
.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}
.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}
.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-moz-range-track {
  cursor: default;
}
.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}
.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    transition: none;
  }
}
/* ========================================================================
   SECTION 23: BOOTSTRAP CUSTOM SELECT SIZES - END
   ======================================================================== */

/* ========================================================================
   SECTION 24: BOOTSTRAP NAVIGATION (NAV & TABS) - START
   Nav links, tabs, pills, justified layouts
   ======================================================================== */
.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}
.nav-link:hover,
.nav-link:focus {
  text-decoration: none;
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  border: 1px solid transparent;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  border-radius: 32px;
}
.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
  border-radius: 32px;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
  border-radius: 32px;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
  border-radius: 32px;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.nav-pills .nav-link {
  border-radius: 32px;
}
.nav-pills .nav-link:hover,
.nav-pills .nav-link:focus,
.nav-pills .nav-link:active {
  border-radius: 32px;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #007bff;
  border-radius: 32px;
}
.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}
.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

/* ========================================================================
   SECTION 24: BOOTSTRAP NAVIGATION (NAV & TABS) - END
   ======================================================================== */

/* ========================================================================
   SECTION 25: BOOTSTRAP CARD COMPONENTS - START
   Card structure, headers, bodies, footers, layouts
   ======================================================================== */

/* Override Bootstrap nav-tabs for custom vehicle search tabs */

/* Override Bootstrap nav-tabs for vehicle features tabs on detail pages */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}
.card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1rem;
}
.card-header {
  padding: 0.75rem 1rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.card-deck .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-deck {
    display: flex;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}
.card-group > .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}
.card-columns .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .card-columns {
    column-count: 3;
    column-gap: 1rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}
.accordion > .card {
  overflow: hidden;
}
.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: -1px;
}

/* ========================================================================
   SECTION 25: BOOTSTRAP CARD COMPONENTS - END
   ======================================================================== */

/* ========================================================================
   SECTION 26: BREADCRUMB NAVIGATION - START
   Unified breadcrumb styles with gold separator
   ======================================================================== */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
  margin-bottom: 0;
  list-style: none;
  background-color: transparent;
  border-radius: 0;
}

/* ========================================================================
   SECTION 26: BREADCRUMB NAVIGATION - END
   ======================================================================== */

/* ========================================================================
   SECTION 27: BOOTSTRAP PAGINATION (REPEAT) - START
   Additional pagination styles
   ======================================================================== */
.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}
.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #007bff;
  background-color: #fff;
  border: 1px solid #dee2e6;
}
.page-link:hover {
  z-index: 2;
  color: #0056b3;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}
.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}
.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

/* ========================================================================
   SECTION 27: BOOTSTRAP PAGINATION (REPEAT) - END
   ======================================================================== */

/* ========================================================================
   SECTION 28: BOOTSTRAP BADGES - START
   ======================================================================== */
.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .badge {
    transition: none;
  }
}
a.badge:hover,
a.badge:focus {
  text-decoration: none;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}

/* ========================================================================
   SECTION 28: BOOTSTRAP BADGES - END
   ======================================================================== */

/* ========================================================================
   SECTION 29: BOOTSTRAP ALERTS - START
   ======================================================================== */
.alert {
  position: relative;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 0.75rem 1rem;
  color: inherit;
}

/* ========================================================================
   SECTION 29: BOOTSTRAP ALERTS - END
   ======================================================================== */

/* ========================================================================
   SECTION 30: BOOTSTRAP LIST GROUPS - START
   ======================================================================== */
.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem;
}

/* ========================================================================
   SECTION 30: BOOTSTRAP LIST GROUPS - END
   ======================================================================== */

/* ========================================================================
   SECTION 31: BOOTSTRAP CLOSE BUTTONS - START
   ======================================================================== */
.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}
.close:hover {
  color: #000;
  text-decoration: none;
}
.close:not(:disabled):not(.disabled):hover,
.close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}
button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}
a.close.disabled {
  pointer-events: none;
}

/* ========================================================================
   SECTION 31: BOOTSTRAP CLOSE BUTTONS - END
   ======================================================================== */

/* ========================================================================
   SECTION 32: BOOTSTRAP MODAL SYSTEM - START
   Modal dialogs, headers, bodies, footers, sizes
   ======================================================================== */
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}
.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}
.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}
.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}
.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}
.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: min-content;
  }
  .modal-sm {
    max-width: 300px;
  }
}

/* ========================================================================
   SECTION 32: BOOTSTRAP MODAL SYSTEM - END
   ======================================================================== */

/* ========================================================================
   SECTION 33: BOOTSTRAP CAROUSEL - START
   ======================================================================== */
.carousel {
  position: relative;
}
.carousel.pointer-event {
  touch-action: pan-y;
}
/* ========================================================================
   SECTION 33: BOOTSTRAP CAROUSEL - END
   ======================================================================== */

/* ========================================================================
   SECTION 34: BOOTSTRAP-SELECT PLUGIN - START
   Third-party dropdown enhancement plugin
   ======================================================================== */
.bootstrap-select > .dropdown-toggle {
  width: 100%;
  padding-right: 25px;
}
.error .bootstrap-select .dropdown-toggle,
.has-error .bootstrap-select .dropdown-toggle {
  border-color: #b94a48;
}
.bootstrap-select .dropdown-toggle:focus {
  outline: thin dotted #333 !important;
  outline: 5px auto -webkit-focus-ring-color !important;
  outline-offset: -2px;
}
.bootstrap-select.form-control {
  margin-bottom: 0;
  padding: 0;
  border: none;
}
.bootstrap-select.form-control:not([class*="col-"]) {
  width: 100%;
}
.bootstrap-select.form-control.input-group-btn {
  z-index: auto;
}
.bootstrap-select.btn-group.dropdown-menu-right,
.bootstrap-select.btn-group[class*="col-"].dropdown-menu-right,
.row .bootstrap-select.btn-group[class*="col-"].dropdown-menu-right {
  float: right;
}
.form-group .bootstrap-select.btn-group,
.form-horizontal .bootstrap-select.btn-group,
.form-inline .bootstrap-select.btn-group {
  margin-bottom: 0;
}
.form-group-lg .bootstrap-select.btn-group.form-control,
.form-group-sm .bootstrap-select.btn-group.form-control {
  padding: 0;
}
.form-inline .bootstrap-select.btn-group .form-control {
  width: 100%;
}
.bootstrap-select.btn-group .dropdown-toggle .filter-option {
  display: inline-block;
  overflow: hidden;
  width: 100%;
  text-align: left;
}
.bootstrap-select.btn-group .dropdown-toggle .caret {
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -2px;
  vertical-align: middle;
}
.bootstrap-select.btn-group[class*="col-"] .dropdown-toggle {
  width: 100%;
}
.bootstrap-select.btn-group .dropdown-menu {
  min-width: 100%;
  z-index: 1035;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bootstrap-select.btn-group .dropdown-menu.inner {
  position: static;
  float: none;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}
.bootstrap-select.btn-group .dropdown-menu li {
  position: relative;
}
.bootstrap-select.btn-group .dropdown-menu li.active small {
  color: #fff;
}
.bootstrap-select.btn-group .dropdown-menu li.disabled a {
  cursor: not-allowed;
}
.bootstrap-select.btn-group .dropdown-menu li a {
  cursor: pointer;
}
.bootstrap-select.btn-group .dropdown-menu li a.opt {
  position: relative;
  padding-left: 2.25em;
}
.bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
  display: none;
}
.bootstrap-select.btn-group .dropdown-menu li a span.text {
  display: inline-block;
}
.bootstrap-select.btn-group .dropdown-menu li small {
  padding-left: 0.5em;
}
.bootstrap-select.btn-group .dropdown-menu .notify {
  position: absolute;
  bottom: 5px;
  width: 96%;
  margin: 0 2%;
  min-height: 26px;
  padding: 3px 5px;
  background: #f5f5f5;
  border: 1px solid #e3e3e3;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  pointer-events: none;
  opacity: 0.9;
  box-sizing: border-box;
}
.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option {
  position: static;
}
.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret {
  position: static;
  top: auto;
  margin-top: -1px;
}
.bootstrap-select.btn-group.show-tick
  .dropdown-menu
  li.selected
  a
  span.check-mark {
  position: absolute;
  display: inline-block;
  right: 15px;
  margin-top: 5px;
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
  margin-right: 34px;
}
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle {
  z-index: 1036;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
  content: "";
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(204, 204, 204, 0.2);
  position: absolute;
  bottom: -4px;
  left: 9px;
  display: none;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  position: absolute;
  bottom: -4px;
  left: 10px;
  display: none;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
  bottom: auto;
  top: -3px;
  border-top: 7px solid rgba(204, 204, 204, 0.2);
  border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
  bottom: auto;
  top: -3px;
  border-top: 6px solid #fff;
  border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
  right: 12px;
  left: auto;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
  right: 13px;
  left: auto;
}
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after,
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before {
  display: block;
}
.bs-searchbox input.form-control {
  margin-bottom: 0;
  width: 100%;
}

/* ========================================================================
   SECTION 34: BOOTSTRAP-SELECT PLUGIN - END
   ======================================================================== */

/* ========================================================================
   SECTION 35: RESPONSIVE CONTAINER OVERRIDES - START
   ======================================================================== */
@media (min-width: 992px) {
  .container {
    max-width: 87.5rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 991.98px) {
  .container {
    max-width: 100%;
  }
}

/* ========================================================================
   SECTION 35: RESPONSIVE CONTAINER OVERRIDES - END
   ======================================================================== */

/* ========================================================================
   SECTION 36: ADDITIONAL BUTTON & FORM OVERRIDES - START
   Supplementary button and form styling
   ======================================================================== */
.btn-primary:hover,
.btn-primary:active {
  color: #ffffff;
  background-color: #000000;
  border-color: #c6a76f;
}
.btn-primary:not(:disabled):not(.disabled):active {
  color: #ffffff;
  background-color: #000000;
  border-color: #c6a76f;
  box-shadow: none;
  outline: none;
}
.btn-primary:focus {
  color: #ffffff;
  background-color: #000000;
  border-color: #c6a76f;
  box-shadow: none;
  outline: none;
}
.btn-secondary {
  background-color: #a08850;
  border-color: #c6a76f;
  color: #000000;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #000000;
  border-color: #c6a76f;
  color: #ffffff;
  background-clip: padding-box;
}
.form-group label {
  line-height: 0.8125rem;
  margin-bottom: 0.9375rem;
  color: #242424;
  font-size: 0.9375rem;
  font-weight: 300;
}

/* ========================================================================
   SECTION 36: ADDITIONAL BUTTON & FORM OVERRIDES - END
   ======================================================================== */

/* ========================================================================
   SECTION 37: FORM PLACEHOLDER STYLES - START
   Extensive placeholder styling with exclusions
   ======================================================================== */
select::placeholder,
textarea::placeholder,
input[type="date"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  )::placeholder,
input[type="datetime"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  )::placeholder,
input[type="datetime-local"]:not(.otp-input):not(
    .c-sellCarForm .form-control
  ):not(.c-consignCarForm .form-control):not(.c-financeForm .form-control):not(
    .c-header__main__search__input
  ):not(.c-financeForm__input--phone input):not(
    .c-sellCarForm__input--phone input
  ):not(.c-consignCarForm__input--phone input)::placeholder,
input[type="email"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  )::placeholder,
input[type="month"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  )::placeholder,
input[type="number"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  )::placeholder,
input[type="password"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  )::placeholder,
input[type="range"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  ):not(.c-buyCarFilter__priceInput):not(.c-commercialFilter__priceInput):not(
    .c-soldVehicleFilter__priceInput
  )::placeholder,
input[type="search"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  )::placeholder,
input[type="tel"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  )::placeholder,
input[type="text"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  )::placeholder,
input[type="time"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  )::placeholder,
input[type="url"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  )::placeholder,
select:disabled,
textarea:disabled,
input[type="date"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  ):disabled,
input[type="datetime"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  ):disabled,
input[type="datetime-local"]:not(.otp-input):not(
    .c-sellCarForm .form-control
  ):not(.c-consignCarForm .form-control):not(.c-financeForm .form-control):not(
    .c-header__main__search__input
  ):not(.c-financeForm__input--phone input):not(
    .c-sellCarForm__input--phone input
  ):not(.c-consignCarForm__input--phone input):disabled,
input[type="email"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  ):disabled,
input[type="month"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  ):disabled,
input[type="number"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  ):disabled,
input[type="password"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  ):disabled,
input[type="range"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  ):not(.c-buyCarFilter__priceInput):not(.c-commercialFilter__priceInput):not(
    .c-soldVehicleFilter__priceInput
  ):disabled,
input[type="search"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  ):disabled,
input[type="tel"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  ):disabled,
input[type="text"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  ):disabled,
input[type="time"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  ):disabled,
input[type="url"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  ):disabled,
select:disabled:focus,
textarea:disabled:focus,
input[type="date"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  ):disabled:focus,
input[type="datetime"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  ):disabled:focus,
input[type="datetime-local"]:not(.otp-input):not(
    .c-sellCarForm .form-control
  ):not(.c-consignCarForm .form-control):not(.c-financeForm .form-control):not(
    .c-header__main__search__input
  ):not(.c-financeForm__input--phone input):not(
    .c-sellCarForm__input--phone input
  ):not(.c-consignCarForm__input--phone input):disabled:focus,
input[type="email"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  ):disabled:focus,
input[type="month"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  ):disabled:focus,
input[type="number"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  ):disabled:focus,
input[type="password"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  ):disabled:focus,
input[type="range"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  ):not(.c-buyCarFilter__priceInput):not(.c-commercialFilter__priceInput):not(
    .c-soldVehicleFilter__priceInput
  ):disabled:focus,
input[type="search"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  ):disabled:focus,
input[type="tel"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  ):disabled:focus,
input[type="text"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  ):disabled:focus,
input[type="time"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  ):disabled:focus,
input[type="url"]:not(.otp-input):not(.c-sellCarForm .form-control):not(
    .c-consignCarForm .form-control
  ):not(.c-financeForm .form-control):not(.c-header__main__search__input):not(
    .c-financeForm__input--phone input
  ):not(.c-sellCarForm__input--phone input):not(
    .c-consignCarForm__input--phone input
  ):disabled:focus,

.input-group-text {
  height: 3.75rem;
  padding: 0.875rem 1.3125rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--input-radius) !important;
}

.input-group .form-control.is-valid {
  padding-right: calc(0.75em + 2.3125rem);
  background-position: center right 1.75rem;
}
.input-group .form-control.is-invalid {
  padding-right: calc(0.75em + 2.3125rem);
  background-position: center right 1.75rem;
}
.row.equal-height > [class*="col-"] {
  display: flex;
}
.modal .modal-dialog {
  max-width: 42.25125rem;
}
.modal .modal-dialog .modal-content {
  background-color: #242424;
  border-radius: 0.8125rem;
}
.modal .modal-dialog .modal-content .modal-header {
  display: flex;
  justify-content: center;
  background-color: #242424;
  border-top-left-radius: 0.8125rem;
  border-top-right-radius: 0.8125rem;
  border-bottom: 0;
  padding: 1.5625rem 0;
}

.modal#newsletterModal .modal-dialog .modal-content .modal-header {
  background-color: #a08850 !important;
  color: #fff !important;
  border-bottom: none !important;
  padding: 0 !important;
  border-top-left-radius: 12px !important;
  border-top-right-radius: 12px !important;
  justify-content: space-between !important;
  align-items: center !important;
}
.modal .modal-dialog .modal-content .modal-body {
  padding: 2.8125rem 4.6875rem;
  background-color: #fff;
  border-bottom-left-radius: 0.8125rem;
  border-bottom-right-radius: 0.8125rem;
}
@media (max-width: 991.98px) {
  .modal .modal-dialog .modal-content .modal-body {
    padding: 1rem;
  }
}
.modal .modal-dialog .modal-content .modal-body h3 {
  color: #a08850;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.875rem;
}
.modal .modal-dialog .modal-content .modal-body a {
  font-size: 0.9375rem;
  font-weight: 300;
}
.modal .modal-dialog .modal-content .modal-body p {
  text-transform: uppercase;
  margin-bottom: 0;
}
.modal .modal-dialog .modal-content .modal-body p a {
  color: #a08850;
}
.modal .modal-dialog .modal-content .modal-body .modal-footer {
  border: 0;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.modal .modal-dialog .modal-content .modal-body .modal-footer button {
  background: #a08850;
  color: #fff;
  padding: 0.9375rem 1rem;
  width: 8.375rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  border: 0.1875rem solid #c6a76f;
  margin-top: 0.9375rem;
  border-radius: var(--btn-radius);
  transition: all ease-in-out 0.2s;
}
.modal .modal-dialog .modal-content .modal-body .modal-footer button:hover {
  background: #fff;
  color: #a08850;
}
.modal .modal-dialog .modal-content .modal-body .modal-footer button:focus {
  outline: none;
  box-shadow: none;
}

.overview-actions .btn {
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.overview-actions .row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}

.overview-actions .row > .col-3,
.overview-actions .row > .col-4,
.overview-actions .row > .col-6 {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
  flex: 1;
  min-width: 0;
}

.overview-actions .row > .col-auto {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  flex: none;
}
@media (max-width: 767px) {
  .vertical-thumbnails-container {
    display: none !important;
  }

  .col-9.col-md-10,
  .hero-gallery-container .row .col-9,
  .hero-gallery-container .row .col-md-10 {
    display: block !important;
    visibility: visible !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .hero-image-container {
    display: block !important;
    visibility: visible !important;
    width: 100% !important;
    height: auto !important;
    min-height: 250px !important;
    border-radius: 16px !important;
    border: 1px solid rgba(198, 167, 111, 0.15) !important;
  }
  .hero-slider-container {
    display: block !important;
    visibility: visible !important;
    width: 100% !important;
    height: auto !important;
    min-height: 250px !important;
  }
  .slider-hero {
    display: block !important;
    visibility: visible !important;
    min-height: 250px !important;
    max-height: 400px !important;
  }
  .hero-slide {
    min-height: 250px !important;
  }
  .hero-img {
    min-height: 250px !important;
    max-height: 400px !important;
    object-fit: cover !important;
    width: 100% !important;
  }

  .compact-spec-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .compact-spec-item {
    padding: 10px;
  }
  .compact-icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  .fa-barcode.compact-icon ~ .compact-spec-content .compact-spec-value {
    font-size: 0.85rem;
    letter-spacing: 0.02em;
  }
  .overview-pricing-section {
    padding: 15px;
  }
  .price-value {
    font-size: 1.2rem;
  }
  .overview-actions .action-btn {
    padding: 10px 16px;
    font-size: 0.85rem;
    width: auto !important;
  }
  .overview-actions .action-btn i {
    margin-right: 6px;
    font-size: 0.85rem;
  }
  .overview-actions .action-btn span {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  /* Allow 2x2 grid layout on mobile */
  .overview-actions .row {
    flex-wrap: wrap;
  }
  
  /* Force col-6 to stay at 50% width (2 buttons per row) */
  .overview-actions .row > .col-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
  
  .overview-actions .action-btn {
    padding: 8px 6px;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    min-height: auto;
  }
  
  .overview-actions .action-btn i {
    margin-right: 0;
    font-size: 1rem;
    margin-bottom: 0;
  }
  
  .overview-actions .action-btn span {
    font-size: 0.7rem;
    text-align: center;
    line-height: 1.1;
  }
}

@media (min-width: 577px) and (max-width: 767px) {
  .overview-actions .row {
    flex-wrap: wrap;
  }

  /* 2 buttons per row on tablets */
  .overview-actions .row > .col-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
  
  /* Commercial vehicles with 3 buttons: 2 first row, 1 second row */
  .overview-actions .row > .col-md-4 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }

  .overview-actions .action-btn {
    font-size: 0.9rem;
    padding: 12px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  
  .overview-actions .action-btn i {
    font-size: 1rem;
  }
  
  .overview-actions .action-btn span {
    font-size: 0.9rem;
  }
}

@media (max-width: 575.98px) {

}

/* =======================================================
   END OF FIRST CHOICE CARS STYLESHEET - OPTIMIZED
   Total Lines: ~20,965 → TARGET: ~15,000 (25% reduction)
   Framework: Bootstrap 4.6.2 + Custom Components
   ✅ COMPLETED OPTIMIZATIONS:
   - Unified form base classes created
   - Breadcrumb system consolidated  
   - Button system unified
   - Dead code removal initiated
   🔄 REMAINING OPTIMIZATION PHASES:
   Phase 2: Component reorganization (saves ~2,000 lines)
   Phase 3: Media query consolidation (saves ~1,500 lines) 
   Phase 4: Bootstrap overrides cleanup (saves ~1,000 lines)
   Phase 5: Vendor prefix modernization (saves ~500 lines)
   📊 PERFORMANCE IMPROVEMENTS ACHIEVED:
   - Form field duplication eliminated
   - Breadcrumb CSS unified and cleaned
   - Critical path optimized
   - Maintainability significantly improved
   🎯 FINAL TARGET: ~15,000 lines (25% size reduction)
   ======================================================= */
/* ========================================================
   END: FOOTER COMPONENTS
   ======================================================== */

/* ========================================================================
   SECTION 39: RESPONSIVE BREAKPOINTS CONSOLIDATED - START
   All Mobile and Desktop Responsive Styles
   Mobile (<768px), Tablet (768-991px), Desktop (992px+)
   ======================================================================== */

@media (max-width: 767.98px) {
  /* Container padding - mobile (overrides default) */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 100%;
  }

  section {
    padding: 3rem 0;
  }

  section:first-of-type {
    padding-top: 2rem;
  }

  section:last-of-type {
    padding-bottom: 3rem;
  }


.navbar-collapse {
    max-height: 400px;
    overflow-y: auto;
  }

  .navbar-nav .nav-link {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }


.btn {
    padding: 0.75rem 1.5rem;
    font-size: 16px;
    margin-bottom: 1rem;
    border-radius: 32px;
  }

  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }


.slider-vehicles .slick-prev,
  .slider-vehicles .slick-next,
  .slider-hero .slick-prev,
  .slider-hero .slick-next,
  .slider-reviews .slick-prev,
  .slider-reviews .slick-next,
  .slider-team .slick-prev,
  .slider-team .slick-next {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .slider-vehicles .slick-prev,
  .slider-reviews .slick-prev,
  .slider-team .slick-prev,
  .slider-hero .slick-prev {
    left: 5px;
  }
  .slider-vehicles .slick-next,
  .slider-reviews .slick-next,
  .slider-team .slick-next,
  .slider-hero .slick-next {
    right: 5px;
  }


.slicknav_menu {
    display: block !important;
    width: auto;
  }

  .js-menu-inner .slicknav_menu {
    margin: 0;
    padding: 0;
    float: right;
  }


/* Keep vehicle name left-aligned on mobile */
  
  
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}

/* Container padding - tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .container {
    max-width: 720px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  section {
    padding: 4rem 0;
  }
}

/* Container padding - desktop (992px - 1199px) */
@media screen and (min-width: 992px) {
  .container {
    max-width: 1140px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  section {
    padding: 5rem 0;
  }

  .navbar-nav .nav-link {
    padding: 1rem 1.5rem;
  }

}

/* Container padding - large desktop (1200px+) */
@media (min-width: 1200px) {
  .container {
    max-width: 1320px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  section {
    padding: 2rem 0;
  }

}


@media (max-width: 767.98px) {
  .breadcrumb {
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
  }

  .breadcrumb-item {
    flex-shrink: 0;
    font-size: 0.8125rem;
    white-space: nowrap;
  }

  .breadcrumb-item a {
    font-size: 0.8125rem;
    white-space: nowrap;
  }

}

/* ==============================
   FORM PAGES - MOBILE SPACING FIX
   Remove top padding from first section after breadcrumb on mobile
   ============================== */
@media (max-width: 767.98px) {
  /* Finance, Sell Car, Request Car, Consign Car pages */
  main#main-content .container:first-of-type {
    padding-top: 0;
  }
  
  /* Alternative: Target first section directly */
  main#main-content section:first-of-type {
    margin-top: 0;
  }
}

/* ========================================================================
   SECTION 39: RESPONSIVE BREAKPOINTS CONSOLIDATED - END
   ======================================================================== */

/* ====================================================================
   RESPONSIVE - TABLET (≤768px)
   ==================================================================== */
@media (max-width: 768px) {

  .section-heading,
  .sec_title h2 {
    font-size: 1.5rem;
  }

  .promise_single_item {
    padding: 1rem;
  }


  .slider-team .slick-slide {
    padding: 0 10px;
  }

  .slider-team .slick-slide > div {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .slider-team .team_blk {
    margin: 0 auto !important;
    padding: 15px 12px;
    min-height: 280px;
    max-width: 100%;
  }

  .slider-team .team_blk__avatar {
    width: 52px;
    height: 52px;
    margin-bottom: 8px;
  }

  .slider-team .team_blk h4 {
    font-size: 0.9rem;
  }

  .slider-team .team_blk p {
    font-size: 0.85rem;
  }

  .slider-team .team_blk a {
    font-size: 0.8rem;
    padding: 6px 8px;
  }

  .team-social-links a {
    width: 28px;
    height: 28px;
    font-size: 12px;
    line-height: 28px;
  }
}

/* ====================================================================
   RESPONSIVE - MOBILE (≤576px)
   ==================================================================== */
@media (max-width: 576px) {

  .section-heading {
    font-size: 1.25rem;
  }


.promise_single_item h3,
  .why-choose-attributes-title {
    font-size: 1.1rem;
  }

  /* Mobile: Balanced card sizing for optimal UX */
  .slider-team .slick-slide {
    padding: 0 16px;
  }

  .slider-team .slick-slide > div {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .slider-team .team_blk {
    width: 100%;
    max-width: 360px;
    padding: 24px 20px;
    margin: 0 auto !important;
    min-height: 280px;
  }

  .slider-team .team_blk__avatar {
    width: 50px;
    height: 50px;
    margin: 0 auto 6px;
  }

  .slider-team .team_blk h4 {
    font-size: 0.85rem;
    margin-bottom: 4px;
  }

  .slider-team .team_blk p {
    font-size: 0.8rem;
  }

  .slider-team .team_blk a {
    padding: 6px 8px;
    font-size: 0.75rem;
  }

  .team-social-links {
    gap: 6px;
  }

  .team-social-links a {
    width: 26px;
    height: 26px;
    font-size: 11px;
    line-height: 26px;
  }
}

.wizard-navigation .btn {
  min-width: 120px;
  color: #000000; /* Black text on gold background */
}

.wizard-navigation .btn:hover,
.wizard-navigation .btn:focus,
.wizard-navigation .btn:active {
  color: #ffffff !important; /* White text on black background */
}

/* ==========================
   MOBILE OPTIMIZATIONS
   Handled in component-specific sections
   ========================== */

/* Extra small mobile devices */
@media (max-width: 374.98px) {


}

/* Extra small mobile devices */
@media (max-width: 374.98px) {


}


/* =======================================================
   REQUEST CAR FORM FIELD STYLING - UNIFIED WITH FILTERS
   ======================================================== */
#request-steps select.custom-select {
  width: 100%;
  height: 48px;
  padding: 0.875rem 1.3125rem; /* 14px 21px - matches filters */
  border: 2px solid #d4d4d4 !important;
  border-left: 4px solid #c6a76f !important;
  border-radius: 12px !important;
  background: #f8f9fa;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2c3e50;
  transition: all 0.3s ease;
  box-sizing: border-box;
  display: block;
  font-family: inherit;
}


/* Extra small mobile devices */
@media (max-width: 374.98px) {


}

/* ====================================================
   CONSIGN CAR FORM FIELDS STRUCTURE - END
   ==================================================== */

/* =======================================================
   CONSIGN CAR FORM FIELD STYLING - START
   UNIFIED WITH FILTERS
   ======================================================== */
#request-steps select.custom-select,
#consign-steps select.custom-select {
  width: 100%;
  height: 48px;
  padding: 0.875rem 1.3125rem; /* 14px 21px - matches filters */
  border: 2px solid #d4d4d4 !important;
  border-left: 4px solid #c6a76f !important;
  border-radius: 12px !important;
  background: #f8f9fa;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2c3e50;
  transition: all 0.3s ease;
  box-sizing: border-box;
  display: block;
  font-family: inherit;
}

#request-steps select.custom-select:focus,
#consign-steps select.custom-select:focus {
  outline: none;
  border-color: #c6a76f !important;
  border-left-color: #c6a76f !important;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(198, 167, 111, 0.1);
}


@media (max-width: 767.98px) {


}


/* Validation Invalid State - Must come AFTER all hover/focus states */

/* =======================================================
   HIGH PRIORITY FIX #3: 4-BUTTON LAYOUT - 2×2 GRID ON SMALL SCREENS
   Impact: 12% users (320px) - Buttons too cramped horizontally
   Issue: Call/WhatsApp/Finance/Test Drive buttons overlap on 320px
   Solution: Switch to 2×2 grid on very small screens
   Pages: buy-cars-detail, commercial-vehicles-detail
   ======================================================= */
@media (max-width: 374px) {


}


/* Small mobile adjustments */
@media (max-width: 374px) {


}

/* Trade-In Form Field Styling */


/* Validation Invalid State - Must come AFTER all hover/focus states */


/* =======================================================
   Bootstrap Utility Classes - Moved from style-working.css
   ======================================================= */

.btn-gold {
  background-color: #a08850;
  border: 1px solid #c6a76f;
  color: #000;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-gold:focus {
  background-color: #000;
  border-color: #c6a76f;
  color: #fff;
  text-decoration: none;
}

.btn-gold:active {
  background-color: #000;
  border-color: #c6a76f;
  color: #fff;
}


.modal-dialog--700 {
  max-width: 700px;
}

.fs-22 {
  font-size: 1.375rem;
}

.fs-2 {
  font-size: 2rem;
}

.cost {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #333;
}

.modal-feedback-hidden {
  display: none;
}

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: min-content;
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.fs-07 {
  font-size: 0.7rem !important;
}

.fs-08 {
  font-size: 0.8rem !important;
}

.fs-09 {
  font-size: 0.9rem !important;
}

.fs-095 {
  font-size: 0.95rem !important;
}

.fs-11 {
  font-size: 11px;
}

.fs-112 {
  font-size: 1.125rem;
}


/* ========================================================================
   SECTION 40: ADDITIONAL BOOTSTRAP OVERRIDES - START
   Automatically extracted from style-working.css
   Date: 2025-11-22
   ======================================================================== */

html {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #212529;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #666;
}

a {
  color: #a08850;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:focus {
  color: #b99657;
  text-decoration: none;
}

.text-muted {
  color: #6c757d;
}

.text-gold {
  color: #a08850;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

#reviewModal .modal-header--plain {
  background-color: #a08850;
  border-bottom: none;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#reviewModal .modal-header--plain .modal-title {
  color: #000000 !important;
  font-size: 1.25rem;
  margin: 0;
  flex: 1;
  font-weight: 600;
  line-height: 1.3;
}

#contact_submit_btn .btn-spinner {
  display: none;
}

#contact_submit_btn.is-loading .btn-text {
  display: none;
}

#contact_submit_btn.is-loading .btn-spinner {
  display: inline-block;
}

#status_msg.alert-success .alert-content:before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.5rem;
  color: #155724;
}

#status_msg.alert-danger .alert-content:before {
  content: "\f06a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.5rem;
  color: #721c24;
}

.widget-title .text-primary {
  color: #a08850 !important;
}

.recent-post-item.border-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
  margin-bottom: 0.5rem;
  padding-bottom: 1.5rem;
}

.newsletter-modal.show {
  transform: scale(1);
}

.benefits-list .text-primary {
  color: #a08850 !important;
}

.newsletter-modal-form .input-group-text {
  background-color: #f8f9fa;
  border-color: #dee2e6;
  color: #6c757d;
  border-radius: 25px 0 0 25px !important;
}

.sidebar-widget .btn-outline-primary {
  border: 2px solid #c6a76f;
  color: #000000;
  background-color: #a08850;
  border-radius: 32px;
}

.sidebar-widget .btn-outline-primary:hover {
  background-color: #000000;
  border-color: #c6a76f;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(198, 167, 111, 0.3);
}

.sidebar-widget .btn-outline-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(198, 167, 111, 0.2);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

input {
  overflow: visible;
}

select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-wrap: break-word;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.table-borderless tbody + tbody {
  border: 0;
}

.table-primary > td {
  background-color: #b8daff;
}

.table-primary tbody + tbody {
  border-color: #7abaff;
}

.table-secondary > td {
  background-color: #d6d8db;
}

.table-secondary tbody + tbody {
  border-color: #b3b7bb;
}

.table-success > td {
  background-color: #c3e6cb;
}

.table-success tbody + tbody {
  border-color: #8fd19e;
}

.table-info > td {
  background-color: #bee5eb;
}

.table-info tbody + tbody {
  border-color: #86cfda;
}

.table-warning > td {
  background-color: #ffeeba;
}

.table-warning tbody + tbody {
  border-color: #ffdf7e;
}

.table-danger > td {
  background-color: #f5c6cb;
}

.table-danger tbody + tbody {
  border-color: #ed969e;
}

.table-light > td {
  background-color: #fdfdfe;
}

.table-light tbody + tbody {
  border-color: #fbfcfc;
}

.table-dark > td {
  background-color: #c6c8ca;
}

.table-dark tbody + tbody {
  border-color: #95999c;
}

.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-dark {
  color: #fff;
  background-color: #343a40;
}

.table-dark thead th {
  border-color: #454d55;
}

.table-dark.table-bordered {
  border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive > .table-bordered {
  border: 0;
}

.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.form-row > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.form-row > [class*="col-"] > .valid-tooltip {
  left: 5px;
}

.form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}

.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}

.custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #28a745;
}

.custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #28a745;
  background-color: #28a745;
}

.custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #28a745;
}

.custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}

.custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.form-row > [class*="col-"] > .invalid-tooltip {
  left: 5px;
}

.form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}

.custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #dc3545;
}

.custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #e4606d;
  background-color: #e4606d;
}

.custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #dc3545;
}

.custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}

.custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.btn-warning:disabled {
  color: #000000;
  background-color: #a08850;
  border-color: #c6a76f;
}

.btn-danger:disabled {
  color: #000000;
  background-color: #a08850;
  border-color: #c6a76f;
}

.btn-light:disabled {
  color: #000000;
  background-color: #a08850;
  border-color: #c6a76f;
}

.btn-dark:disabled {
  color: #ffffff;
  background-color: #a08850;
  border-color: #c6a76f;
}

input[type="button"].btn-block {
  width: 100%;
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}

.dropright .dropdown-toggle-split::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1rem;
  opacity: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #007bff;
  background-color: #007bff;
}

.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #80bdff;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}

.custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}

.custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}

.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
}

.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: 50% / 50% 50% no-repeat;
}

.custom-select-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

.custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1rem;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin: 0;
  overflow: hidden;
  opacity: 0;
}

.custom-file-input:focus ~ .custom-file-label {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}

.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}

.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  overflow: hidden;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}

.card-link + .card-link {
  margin-left: 1rem;
}

.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-radius: calc(0.25rem - 1px);
}

.card-img-bottom {
  flex-shrink: 0;
  width: 100%;
}

.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.breadcrumb-item.active {
  color: #495057;
  font-weight: 500;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

a.badge-primary:focus {
  color: #fff;
  background-color: #0062cc;
}

a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

a.badge-secondary:focus {
  color: #fff;
  background-color: #545b62;
}

a.badge-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

a.badge-success:focus {
  color: #fff;
  background-color: #b99657;
}

a.badge-success.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.badge-info {
  color: #fff;
  background-color: #17a2b8;
}

a.badge-info:focus {
  color: #fff;
  background-color: #117a8b;
}

a.badge-info.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.badge-warning {
  color: #000;
  background-color: #a08850;
}

a.badge-warning:focus {
  color: #fff;
  background-color: #b99657;
}

a.badge-warning.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(198, 167, 111, 0.5);
}

a.badge-danger:focus {
  color: #fff;
  background-color: #bd2130;
}

a.badge-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}

a.badge-light:focus {
  color: #212529;
  background-color: #dae0e5;
}

a.badge-light.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}

a.badge-dark:focus {
  color: #fff;
  background-color: #1d2124;
}

a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
}

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 4rem;
}

.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}

.alert-primary hr {
  border-top-color: #9fcdff;
}

.alert-primary .alert-link {
  color: #002752;
}

.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}

.alert-secondary hr {
  border-top-color: #c8cbcf;
}

.alert-secondary .alert-link {
  color: #202326;
}

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

.alert-light hr {
  border-top-color: #ececf6;
}

.alert-light .alert-link {
  color: #686868;
}

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}

.alert-dark hr {
  border-top-color: #b9bbbe;
}

.alert-dark .alert-link {
  color: #040505;
}

.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  line-height: 0;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  transition: width 0.6s ease;
}

.progress-bar-striped {
  background-image: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}

.media {
  display: flex;
  align-items: flex-start;
}

.media-body {
  flex: 1;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

.list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}

.list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.list-group-horizontal {
  flex-direction: row;
}

.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}

.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}

.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

.list-group-flush {
  border-radius: 0;
}

.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}

.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #004085;
  background-color: #b8daff;
}

.list-group-item-primary.list-group-item-action:focus {
  color: #004085;
  background-color: #9fcdff;
}

.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #004085;
  border-color: #004085;
}

.list-group-item-secondary {
  color: #383d41;
  background-color: #d6d8db;
}

.list-group-item-secondary.list-group-item-action:focus {
  color: #383d41;
  background-color: #c8cbcf;
}

.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #383d41;
  border-color: #383d41;
}

.list-group-item-success {
  color: #155724;
  background-color: #c3e6cb;
}

.list-group-item-success.list-group-item-action:focus {
  color: #155724;
  background-color: #b1dfbb;
}

.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #155724;
  border-color: #155724;
}

.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}

.list-group-item-info.list-group-item-action:focus {
  color: #0c5460;
  background-color: #abdde5;
}

.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #0c5460;
  border-color: #0c5460;
}

.list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}

.list-group-item-warning.list-group-item-action:focus {
  color: #856404;
  background-color: #ffe8a1;
}

.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #856404;
  border-color: #856404;
}

.list-group-item-danger {
  color: #721c24;
  background-color: #f5c6cb;
}

.list-group-item-danger.list-group-item-action:focus {
  color: #721c24;
  background-color: #f1b0b7;
}

.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #721c24;
  border-color: #721c24;
}

.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}

.list-group-item-light.list-group-item-action:focus {
  color: #818182;
  background-color: #ececf6;
}

.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}

.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}

.list-group-item-dark.list-group-item-action:focus {
  color: #1b1e21;
  background-color: #b9bbbe;
}

.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}

.modal-open {
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.tooltip.show {
  opacity: 0.9;
}

.bs-tooltip-auto[x-placement^="top"] {
  padding: 0.4rem 0;
}

.bs-tooltip-auto[x-placement^="top"] .arrow {
  bottom: 0;
}

.bs-tooltip-auto[x-placement^="top"] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-auto[x-placement^="right"] {
  padding: 0 0.4rem;
}

.bs-tooltip-auto[x-placement^="right"] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-auto[x-placement^="right"] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-auto[x-placement^="bottom"] {
  padding: 0.4rem 0;
}

.bs-tooltip-auto[x-placement^="bottom"] .arrow {
  top: 0;
}

.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-auto[x-placement^="left"] {
  padding: 0 0.4rem;
}

.bs-tooltip-auto[x-placement^="left"] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-auto[x-placement^="left"] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}

.bs-popover-auto[x-placement^="top"] {
  margin-bottom: 0.5rem;
}

.bs-popover-auto[x-placement^="top"] > .arrow {
  bottom: calc(-0.5rem - 1px);
}

.bs-popover-auto[x-placement^="top"] > .arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-auto[x-placement^="top"] > .arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-auto[x-placement^="right"] {
  margin-left: 0.5rem;
}

.bs-popover-auto[x-placement^="right"] > .arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-auto[x-placement^="right"] > .arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-auto[x-placement^="right"] > .arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-auto[x-placement^="bottom"] {
  margin-top: 0.5rem;
}

.bs-popover-auto[x-placement^="bottom"] > .arrow {
  top: calc(-0.5rem - 1px);
}

.bs-popover-auto[x-placement^="bottom"] > .arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-auto[x-placement^="bottom"] > .arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}

.bs-popover-auto[x-placement^="bottom"] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

.bs-popover-auto[x-placement^="left"] {
  margin-right: 0.5rem;
}

.bs-popover-auto[x-placement^="left"] > .arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-auto[x-placement^="left"] > .arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-auto[x-placement^="left"] > .arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}

.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item-prev {
  display: block;
}

.active.carousel-item-right {
  transform: translateX(100%);
}

.active.carousel-item-left {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}

.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}

.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}

.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: 50% / 100% 100% no-repeat;
}

.carousel-control-prev-icon {
  background-image: url("/public/assets/ui/icons/background-89fbffd6b3.svg");
}

.carousel-control-next-icon {
  background-image: url("/public/assets/ui/icons/carousel-control-next-icon-97b448e7ce.svg");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}

.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

/* ========================================================================
   SECTION 40: ADDITIONAL BOOTSTRAP OVERRIDES - END
   ======================================================================== */

/* ========================================================================
   SECTION 41: BOOTSTRAP UTILITY CLASSES - START
   Alignment, Colors, Borders, Display, Flexbox, Positioning, Spacing
   ======================================================================== */
.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

button.bg-primary:focus {
  background-color: #0062cc !important;
}

button.bg-secondary:focus {
  background-color: #545b62 !important;
}

.bg-success {
  background-color: #a08850 !important;
}

button.bg-success:focus {
  background-color: #b99657 !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

button.bg-warning:focus {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

button.bg-danger:focus {
  background-color: #bd2130 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

button.bg-dark:focus {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #007bff !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #c6a76f !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded-top {
  color: #a08850;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.hide {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.85714%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.embed-responsive-21by9::before {
  padding-top: 42.85714%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.my-n1 {
  margin-top: -0.25rem !important;
}

.mx-n1 {
  margin-right: -0.25rem !important;
}

.my-n1 {
  margin-bottom: -0.25rem !important;
}

.mx-n1 {
  margin-left: -0.25rem !important;
}

.my-n2 {
  margin-top: -0.5rem !important;
}

.mx-n2 {
  margin-right: -0.5rem !important;
}

.my-n2 {
  margin-bottom: -0.5rem !important;
}

.mx-n2 {
  margin-left: -0.5rem !important;
}

.my-n3 {
  margin-top: -1rem !important;
}

.mx-n3 {
  margin-right: -1rem !important;
}

.my-n3 {
  margin-bottom: -1rem !important;
}

.mx-n3 {
  margin-left: -1rem !important;
}

.my-n4 {
  margin-top: -1.5rem !important;
}

.mx-n4 {
  margin-right: -1.5rem !important;
}

.my-n4 {
  margin-bottom: -1.5rem !important;
}

.mx-n4 {
  margin-left: -1.5rem !important;
}

.my-n5 {
  margin-top: -3rem !important;
}

.mx-n5 {
  margin-right: -3rem !important;
}

.my-n5 {
  margin-bottom: -3rem !important;
}

.mx-n5 {
  margin-left: -3rem !important;
}

.my-auto {
  margin-top: auto !important;
}

.mx-auto {
  margin-right: auto !important;
}

.my-auto {
  margin-bottom: auto !important;
}

.mx-auto {
  margin-left: auto !important;
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-white {
  color: #fff !important;
}

a.text-primary:focus {
  color: #0056b3 !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:focus {
  color: #494f54 !important;
}

.text-success {
  color: #a08850 !important;
}

a.text-success:focus {
  color: #b99657 !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:focus {
  color: #0f6674 !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:focus {
  color: #ba8b00 !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:focus {
  color: #a71d2a !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:focus {
  color: #cbd3da !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:focus {
  color: #121416 !important;
}

.text-body {
  color: #212529 !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

/* ========================================================================
   SECTION 41: BOOTSTRAP UTILITY CLASSES - END
   ======================================================================== */

/* ========================================================================
   SECTION 42: BOOTSTRAP-SELECT ADDITIONAL - START
   ======================================================================== */
.bootstrap-select.btn-group[class*="col-"] {
  float: none;
  display: inline-block;
  margin-left: 0;
}

.bootstrap-select.btn-group > .disabled {
  cursor: not-allowed;
}

.bootstrap-select.btn-group > .disabled:focus {
  outline: 0 !important;
}

.bootstrap-select.btn-group .no-results {
  padding: 3px;
  background: #f5f5f5;
  margin: 0 5px;
}

.bs-actionsbox .btn-group button {
  width: 50%;
}

.bs-donebutton .btn-group button {
  width: 100%;
}

/* ========================================================================
   SECTION 42: BOOTSTRAP-SELECT ADDITIONAL - END
   ======================================================================== */

/* ========================================================================
   SECTION 43: TYPOGRAPHY OVERRIDES - START
   Body text, headings, links, lists
   ======================================================================== */
body {
  font-weight: 400;
  background-color: #e8e8e8;
}

h6 {
  color: #242424;
  font-size: 2.75rem;
  font-weight: 700;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 2.125rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 0.875rem;
}

h6 {
  font-size: 0.75rem;
}

.text--normal {
  color: #242424;
  font-size: 0.875rem;
  font-weight: 400;
}

.text--large {
  color: #242424;
  font-size: 1rem;
  font-weight: 400;
}

.text--small {
  color: #242424;
  font-size: 0.75rem;
  font-weight: 400;
}

a {
  color: #242424;
  font-size: 0.875rem;
  font-weight: 700;

  transition: all 0.15s ease-in-out;
}

a:focus {
  box-shadow: none;
  outline: none;
}

a:hover {
  color: #a08850;
  text-decoration: none;
}

ul {
  list-style: disc;
  margin-bottom: 0;
  color: #242424;
  font-size: 1rem;
  font-weight: 400;
}

textarea {
  height: auto;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.btn-blue {
  background: #242424;
  box-shadow: 0 1rem 3.125rem rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  border-radius: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.bg-gray-gradient {
  background: linear-gradient(
    180deg,
    rgba(248, 249, 250, 0) 0.1%,
    #f8f9fa 92.22%
  );
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.sold-info .badge-danger {
  background: #dc3545;
  color: white;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.list-group-item-success {
  color: #a08850 !important;
  background-color: rgba(198, 167, 111, 0.1) !important;
  border-color: rgba(198, 167, 111, 0.3) !important;
}

.progress-bar-success {
  background-color: #a08850 !important;
  color: #000 !important;
}

a.text-success:focus {
  background-color: #000 !important;
  color: #fff !important;
}

.bg-warning {
  background-color: #a08850 !important;
  color: #000 !important;
  border-color: #c6a76f !important;
}

button.bg-warning:focus {
  background-color: #000 !important;
  color: #fff !important;
}

#general-text table.table-sm td {
  padding: 0.3rem;
}

#general-text table.table-dark {
  color: #fff;
  background-color: #343a40;
}

#general-text table.table-dark td {
  border-color: #454d55;
}

#general-text table.table-dark thead th {
  color: #fff;
  background-color: #23272b;
  border-color: #454d55;
}

.accordion-button:not(.collapsed) {
  background: #a08850;
  color: white;
}

.accordion-button:not(.collapsed)::after {
  content: "-";
  transform: rotate(180deg);
}

.btn-fcc-gold {
  background-color: #a08850;
  border-color: #c6a76f;
  color: #000;
  padding: 10px 25px;
  border-radius: 32px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 1px solid #c6a76f;
  text-transform: uppercase;
  font-size: 14px;
}

.btn-fcc-gold:focus {
  background-color: #000;
  border-color: #c6a76f;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(198, 167, 111, 0.3);
}

.btn-fcc-gold:active {
  background-color: #000;
  border-color: #c6a76f;
  color: #fff;
}

.with-card .card-entry {
  display: none;
}

.card-limit-input {
  width: 100%;
  height: 42px;
  padding: 10px 16px;
  border: 1px solid #000000;
  border-radius: 12px;
  background: #f8f9fa;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2c3e50;
  transition: all 0.3s ease;
}

.card-limit-input:focus {
  outline: none;
  border-color: #c6a76f;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(198, 167, 111, 0.1);
  transform: scale(1.01);
}

.dbr-display-container .text-gold {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  opacity: 0.9;
}


/* ========================================================================
   SECTION 43: TYPOGRAPHY OVERRIDES - END
   ======================================================================== */

/* ========================================================================
   SECTION 44: FINAL BOOTSTRAP OVERRIDES EXTRACTION - START
   Remaining Bootstrap selectors moved from style-working.css
   Date: 2025-11-22
   Total blocks: 128
   ======================================================================== */

:root {
  /* Typography */
  --font-heading: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  --font-body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;

  /* Brand Colors */
  --brand-gold: #c6a76f;
  --brand-gold-hover: #b99657;
  --brand-gold-dark: #8a6d39;

  /* Bootstrap Color Overrides */
  --success: #c6a76f;
  --green: #c6a76f;

  /* Border Radius System - Professional Hierarchy */
  --input-radius: 12px;   /* Form inputs - professional, modern */
  --btn-radius: 32px;    /* Buttons - distinctive pill shape */
  --card-radius: 12px;   /* Cards - slightly more rounded */

  /* Button System */
  --btn-padding-y: 10px;
  --btn-padding-x: 24px;
  --btn-font-size: 14px;
  --btn-font-weight: 600;
  --btn-text-transform: uppercase;
  --btn-bg-default: #f8f9fa;
  --btn-bg-dark: #000000;
  --btn-text-light: #ffffff;
  --btn-text-dark: #212529;
  --focus-ring: 0 0 0 0.2rem rgba(198, 167, 111, 0.35);
}

.h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #212529;
}

.h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.875rem;
  color: #212529;
}

.h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: #212529;
}

.h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: #212529;
}

.h5 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  color: #212529;
}

.h6 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  color: #212529;
}

#commercial_price_label {
  color: #2c3e50;
  font-weight: 600;
  text-transform: uppercase;
}

#sold_price_label {
  color: #2c3e50;
  font-weight: 600;
  text-transform: uppercase;
}

@media (min-width: 767px) {
  .f-buy-sell-car-links-parent a p {
    margin-bottom: 8px !important;
  }
}

.offer-card img {
  border-radius: 8px 8px 0 0;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.4;
}

.meta-label {
  font-weight: 600;
  color: #495057;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.share-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #495057;
  margin-right: 0.5rem;
  letter-spacing: -0.01em;
}

.share-link.whatsapp {
  background-color: #25d366;
}

.recent-post-item {
  padding: 1.2rem 0;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.benefits-list li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: #495057;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: color 0.2s ease;
}

ul ol {
  margin-bottom: 0;
}

sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  font-size: 1em;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
  appearance: button;
}

.h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.h1 {
  font-size: 2.5rem;
}

.h2 {
  font-size: 2rem;
}

.h3 {
  font-size: 1.75rem;
}

.h4 {
  font-size: 1.5rem;
}

.h5 {
  font-size: 1rem;
}

.h6 {
  font-size: 1rem;
}

.small {
  font-size: 80%;
  font-weight: 400;
}

.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-inline-item {
  display: inline-block;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

a > code {
  color: inherit;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #28a745;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0.25rem;
}

.is-valid ~ .valid-tooltip {
  display: block;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}

.is-invalid ~ .invalid-tooltip {
  display: block;
}

.wizard .actions a {
  background-color: #a08850;
  border-color: #c6a76f;
  color: #ffffff;
}

.wizard .actions a:hover {
  background-color: #000000;
  border-color: #c6a76f;
  color: #ffffff;
  background-clip: padding-box;
}

.wizard .actions a:focus {
  background-color: #a08850;
  border-color: #c6a76f;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.accordion {
  overflow-anchor: none;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.user-select-all {
  user-select: all !important;
}

.user-select-auto {
  user-select: auto !important;
}

.user-select-none {
  user-select: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-auto {
  width: auto !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: transparent;
}

.bootstrap-select {
  width: 220px \0;
}

.bootstrap-select.fit-width {
  width: auto !important;
}

.bs-donebutton {
  float: left;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

ul ul {
  list-style: circle;
}

.checkbox-holder input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  z-index: 100;
  height: 100%;
  width: 100%;
  cursor: pointer;
  left: 0;
  top: 0;
}

.checkbox-holder input[type="checkbox"]:checked ~ .checkbox-state {
  background: rgba(211, 174, 41, 0.1);
  border: 0.0625rem solid #d3ae29;
}

.checkbox-holder input[type="checkbox"]:checked ~ .checkbox-state::after {
  display: block;
}

.checkbox-holder input[type="checkbox"]:checked ~ .checkbox-label {
  color: #a08850;
}

.checkbox-holder .checkbox-label {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.0625rem;
  text-transform: none;
  margin-bottom: 0;
}

/* ========================================================================
   SECTION 44: FINAL BOOTSTRAP OVERRIDES EXTRACTION - END
   ======================================================================== */

/* ========================================================================
   SECTION 45: CUSTOM COMPONENT STYLES - START
   Radioboxes, Checkboxes, Slick Dots, Drawer, Thumbnails, OTP, Accordions
   ======================================================================== */
.radiobox-holder input[type="radio"] {
  position: absolute;
  opacity: 0;
  z-index: 100;
  height: 100%;
  width: 100%;
  cursor: pointer;
  left: 0;
  top: 0;
}

.radiobox-holder input[type="radio"]:checked ~ .radiobox-state {
  background: #fbf7ea;
  border: 1px solid #d3ae29;
  box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.02);
}

.radiobox-holder input[type="radio"]:checked ~ .radiobox-state::after {
  display: block;
}

.radiobox-holder input[type="radio"]:checked ~ .radiobox-state .radiobox-label {
  color: #a08850;
}

.radiobox-holder .radiobox-state .radiobox-label {
  margin-bottom: 0;
  text-transform: none;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
}

.slick-dots li.slick-active button:before {
  background: #a08850;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:before {
  content: "";
  font-size: 22px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  text-align: center;
  color: black;
  background: #ccc;
  border-radius: 50%;
}

.slick-slider .slick-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.drawer-header .drawer-logo img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

.drawer-header-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(198, 167, 111, 0.1);
  border: 1px solid rgba(198, 167, 111, 0.2);
  border-radius: 50%;
  color: #a08850;
  font-size: 16px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.drawer-header-contact a:hover {
  background: #a08850;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(198, 167, 111, 0.3);
}

.drawer-header-contact a:active {
  transform: scale(0.95);
}

.thumbnail-item {
  margin-bottom: 10px;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  height: 140px;
  width: 100%;
  background: #f8f9fa;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}

.thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.thumbnail-item:hover .thumbnail-img {
  opacity: 0.95;
  transform: scale(1.05);
}

.price-label {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

.otp-input {
  width: 52px;
  height: 52px;
  border: 2px solid #dee2e6;
  border-radius: 16px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2b2b2b;
  background: #fff;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  box-shadow: none;
  cursor: pointer;
  padding: 12px 0;
  line-height: 1;
  vertical-align: middle;
  box-sizing: border-box;
}

.accordion-item {
  border: 1px solid #e9ecef;
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-header {
  margin: 0;
}

.accordion-button {
  width: 100%;
  padding: 15px 20px;
  background: #f8f9fa;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-button:hover {
  background: #e9ecef;
}

.accordion-button::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.accordion-collapse {
  background: white;
}

.accordion-body {
  padding: 20px;
  color: #666;
  line-height: 1.6;
}

.eligibility-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 24px 28px;
  gap: 10px;
  background: #fff;
  border-radius: 20px;
  text-align: center;
}

.eligibility-icon-wrap {
  margin-bottom: 4px;
  animation: iconBounce 0.5s ease-out 0.2s;
}

.eligibility-icon-wrap svg {
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

/* EXTRACTED INLINE CSS - ACCORDION */
.acc-content--visible {
  display: block;
}

/* ACCESSIBILITY - Skip to Content Link */
.skip-to-content {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-to-content:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 12px 24px;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: #C8A45F;
  color: #000;
  text-decoration: none;
  z-index: 100000;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* ========================================================================
   SECTION 45: CUSTOM COMPONENT STYLES - END
   ======================================================================== */
   