 /* =====================
   Root & Reset
===================== */
:root {
    --brand: #1471b8;
    --brand-dark: #0f5d99;
    --muted-bg: #eeeeee;
    --text-dark: #333;
    --text-muted: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    padding: 40px 20px;
    font-family: "Poppins", sans-serif;
    background: #f5f5f5;
}

/* =====================
   Main Container
===================== */
.kyc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    border-radius: 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* =====================
   Progress Section
===================== */
.progress-section {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
}

.progress-section h1 {
    font-size: 26px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.progress {
    height: 6px;
    background-color: var(--muted-bg);
    border-radius: 30px;
    overflow: hidden;
}

.progress-bar {
    background: var(--brand);
    height: 100%;
    transition: width 0.4s ease;
}

/* =====================
   Steps Indicator
===================== */
.steps-indicator {
    margin-top: 25px;
    gap: 15px;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 22px;
    right: -35px;
    width: 30px;
    height: 2px;
    background-color: var(--muted-bg);
}

.step-item.active:not(:last-child)::after {
    background-color: var(--brand);
}

.step-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--muted-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-muted);
    margin: 0 auto 8px;
}

.step-item.active .step-circle,
.step-item.completed .step-circle {
    background: var(--brand);
    color: #fff;
}

.step-item p {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.step-item.active p {
    color: var(--brand);
    font-weight: 600;
}

/* =====================
   Form Steps
===================== */
.form-step {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================
   Cards
===================== */
.card {
    border: none;
    border-radius: 5px;
    box-shadow: rgba(99, 99, 99, 0.15) 0px 2px 6px;
    margin-bottom: 20px;
}

.card-header {
    padding: 18px;
    border-bottom: none;
    border-radius: 5px 5px 0 0;
}

.card-header h5 {
    font-size: 17px;
    font-weight: 600;
}

.card-body {
    padding: 25px;
}

/* =====================
   Form Elements
===================== */
.form-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    width: 100%;
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid var(--brand);
    font-size: 16px;
}

.form-control:focus,
.form-select:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--brand-dark);
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
}

/* =====================
   File & Image Preview
===================== */
.file-preview {
    max-width: 200px;
    border-radius: 5px;
    margin-top: 10px;
    box-shadow: rgba(0,0,0,.1) 0px 2px 6px;
}

.preview-img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* =====================
   Camera / Selfie
===================== */
.camera-wrapper {
    width: 260px;
    height: 260px;
    max-width: 40vw;
    max-height: 40vw;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--muted-bg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(99,99,99,.15) 0px 2px 6px;
}

.camera-wrapper video,
.camera-wrapper canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

#facePreview .file-preview {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    object-fit: cover;
}

/* =====================
   Alerts
===================== */
.alert {
    border-radius: 5px;
    border: none;
    padding: 15px 20px;
}

.alert-info {
    background-color: #e7f3ff;
    color: #004085;
}

/* =====================
   Checkboxes
===================== */
.form-check-input {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    border: 1px solid var(--brand);
}

.form-check-input:checked {
    background-color: var(--brand);
    border-color: var(--brand);
}

/* =====================
   Review Section
===================== */
.review-section {
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid var(--brand);
    border-radius: 5px;
}

.review-section h6 {
    color: var(--brand);
    font-weight: 600;
    margin-bottom: 10px;
}

/* =====================
   Buttons
===================== */
.btn {
    border-radius: 30px !important;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 500;
    border: none;
}

.btn-primary-1,
.btn-info-1 {
    background: var(--brand);
    color: #fff;
}

.btn-primary-1:hover,
.btn-info-1:hover {
    background: var(--brand-dark);
    color: #fff;
}

.btn-secondary {
    background: #6c757d;
    color: #fff;
}
.btn-info-1 {
    background-color: var(--brand) !important;
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-info-1:disabled,
.btn-info-1.disabled {
    background-color: var(--brand) !important;
    color: #ffffff !important;
    opacity: 0.95 !important;
}
/* =====================
   Errors
===================== */
.text-danger {
    font-size: 13px;
    margin-top: 5px;
    display: block;
}
.bg-primary-1 {
    background-color: var(--brand) !important;
    color: #ffffff !important;
}
.btn-success,.btn-back,.btn-continue {
    background-color: #73B740 !important;
    border-color: #73B740 !important;
    color: #ffffff !important;

    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Hover */
.btn-success:hover,.btn-back:hover,.btn-continue:hover {
    background-color: #63a933 !important; /* slightly darker */
    border-color: #63a933 !important;
    color: #ffffff !important;
}

/* Disabled / Loading */
.btn-success:disabled,
.btn-success.disabled,
.btn-back:disabled,
.btn-back.disabled,
.btn-continue:disabled,
.btn-continue.disabled {
    background-color: #73B740 !important;
    border-color: #73B740 !important;
    color: #ffffff !important;
    opacity: 0.95 !important;
}

/* Spinner visibility inside success buttons */
.btn-success .spinner-border {
    color: #ffffff;
}
/* =====================
   Responsive
===================== */
@media (max-width: 768px) {
    .kyc-container {
        padding: 20px;
        margin-top: 100px !important;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .progress-section h1 {
        font-size: 22px;
        margin-bottom: 0px ;
    }

    .camera-wrapper,
    #facePreview .file-preview {
        width: 200px;
        height: 200px;
    }
}
/* =====================
   Buyback
===================== */
:root{
  /* =====================
     Unified Palette
  ===================== */
  --brand: #1471b8;
  --brand-dark: #0f5d99;

  --success: #73B740;
  --success-dark: #63a933;

  --muted-border: #eee;
  --muted-bg: #f8f9fa;
  --card-bg: #ffffff;

  /* =====================
     Radius system
  ===================== */
  --card-radius: 5px;
  --tile-radius: 10px;
  --pill-radius: 30px;

  /* =====================
     Elevation
  ===================== */
  --shadow-soft: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-strong: 0 8px 20px rgba(0,0,0,0.08);

  /* =====================
     Motion
  ===================== */
  --transition-fast: all 0.18s ease;
  --transition-medium: all 0.3s ease;
}

/* =====================
   Reset / Base
===================== */
* { box-sizing: border-box; }

body {
  font-family: "Poppins", sans-serif;
  background-color: #f5f7fa;
  color: #333;
}

/* =====================
   Accessibility
===================== */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.inline-error {
  display: block !important;
  color: #dc3545;
  margin-top: .5rem;
}

.inline-error.inline-error-heading {
  margin-bottom: .5rem;
  font-weight: 500;
}

/* =====================
   Tiles (defect / problem / accessory)
===================== */
.defect-tile,
.problem-tile,
.accessory-tile {
  background: var(--card-bg);
  border: 1px solid var(--muted-border);
  border-radius: var(--tile-radius);
  padding: 18px 12px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  height: 100%;
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  user-select: none;
}

.defect-tile:hover,
.problem-tile:hover,
.accessory-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.defect-tile.selected,
.problem-tile.selected,
.accessory-tile.selected {
  background: #e7f3ff;
  border-color: var(--brand);
}

.defect-icon,
.problem-icon,
.accessory-icon {
  font-size: 36px;
  margin-bottom: 10px;
  color: var(--brand);
}

.defect-text,
.problem-text,
.accessory-text {
  font-size: 13px;
  color: #333;
}

/* =====================
   Hidden Checkboxes / Radios
===================== */
.defect-checkbox,
.problem-checkbox,
.accessory-checkbox,
.date-radio,
.time-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

/* =====================
   Button Option Groups
===================== */
.btn-group-custom {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-option {
  flex: 1;
  padding: 8px 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  background: #fff;
  color: #555;
  font-weight: 500;
  transition: var(--transition-medium);
}

.btn-option:hover {
  border-color: var(--brand);
  background: #f0f4f8;
}

.btn-check:checked + .btn-option {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* =====================
   Continue / Back Buttons
===================== */
.btn-continue,
.btn-back {
  background: var(--success);
  color: #fff;
  border: none;
  border-radius: var(--pill-radius);
  padding: 12px 30px;
  font-size: 1rem;
  transition: var(--transition-medium);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-continue:hover,
.btn-back:hover {
  background: var(--success-dark);
  color: #fff;
}

.btn-continue:disabled,
.btn-back:disabled {
  background: var(--success);
  color: #fff;
  opacity: 0.95;
  cursor: not-allowed;
}

/* =====================
   Cards & Evaluation
===================== */
.card {
  border-radius: var(--card-radius);
  background: var(--card-bg);
  box-shadow: var(--shadow-soft);
}

.card:hover {
  box-shadow: var(--shadow-strong);
}

.evaluation-card {
  border-radius: 8px;
  background: var(--muted-bg);
  padding: 12px;
}

.evaluation-header {
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 12px;
}

.evaluation-item {
  padding: 8px 0;
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* =====================
   Date / Time Tiles
===================== */
.date-tile,
.time-tile {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--tile-radius);
  padding: 12px;
  cursor: pointer;
  transition: var(--transition-fast);
  width:100%; 
}

.date-tile:hover,
.time-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.date-tile.selected,
.time-tile.selected {
  background: #e7f3ff;
  border-color: var(--brand);
}
.action-buttons {
  display: flex;
  gap: 12px;
}

/* Mobile */
@media (max-width: 576px) {
  .action-buttons {
    flex-direction: column;
  }

  .action-buttons .btn {
    width: 100%;
  }
}

/* =====================
   Valuation / Summary
===================== */
.valuation-summary {
  background: #f0f4f8;
  padding: 16px;
  border-radius: 8px;
  border-left: 4px solid var(--brand);
}

.summary-label {
  font-size: .85rem;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
}

.summary-value {
  font-size: 1.35rem;
  font-weight: bold;
}

/* =====================
   Trust Indicators
===================== */
.trust-indicators {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #e9ecef;
}

.trust-text {
  font-size: .9rem;
  color: var(--brand);
}

/* =====================
   Payment Helper
===================== */
#paymentHelper {
  display: none;
  padding: 8px 10px;
  background: #fff9e6;
  border-left: 4px solid #ffd24d;
  border-radius: 6px;
  color: #5f4a00;
}

/* =====================
   Fixed Confirm Button
===================== */
#confirmFixedBtn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
}

/* =====================
   Reduced Motion
===================== */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
.btn,
.btn-continue,
.btn-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* CONTINUE / BACK buttons */
.btn-continue {
    background-color: #73B740 !important;
    color: #ffffff !important;
}

.btn-back {
    background-color: #73B740 !important;
    color: #ffffff !important;
}

/* Disabled state — MUST restate background */
.btn-continue:disabled,
.btn-back:disabled {
    background-color: #73B740 !important;
    border-color: #73B740 !important;
    color: #ffffff !important;
    opacity: 0.95 !important;
    visibility: visible !important;
}

/* Spinner visibility */
.btn-continue .spinner-border,
.btn-back .spinner-border {
    color: #ffffff !important;
}
.sticky-lg-top {
    z-index: 10 !important;
}
.order-step,
.card,
.summary-card {
    position: relative;
    z-index: auto;
}
/* =========================================================
   GLOBAL THEME VARIABLES (KYC STYLE)
   ========================================================= */
:root {
    --accent-1: #22b870;
    --accent-2: #1a9655;
    --muted: #6c757d;
    --transition-fast: 180ms ease;
    --accent-shadow: 0 6px 16px rgba(34, 184, 112, 0.18);
    --card-shadow: 0 8px 20px rgba(18,18,18,0.06);
    --price-color: #ef6b6b;
    --card-radius: 16px;
}

/* =========================================================
   BASE STRUCTURE
   ========================================================= */
html, body {
    height: 100%;
}

body {
    background: #f5f7fa;
    font-family: "Poppins", sans-serif;
    color: #111;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container-narrow { max-width: 1100px; }
.container-wide { max-width: 1180px; }

.page-title {
    font-weight: 700;
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    margin-bottom: .25rem;
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none !important;
}

/* =========================================================
   BREADCRUMB
   ========================================================= */
.breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent !important;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #999;
    font-size: 0.85rem;
}

.breadcrumb-item a {
    color: #73B740;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: #666;
}

.page-breadcrumb {
    margin-bottom: 1.2rem;
}
.kyc-spinner {
    width: 1rem;
    height: 1rem;
    aspect-ratio: 1 / 1;
    border-width: 0.15em;
    flex-shrink: 0;
}

/* =========================================================
   SEARCH BAR
   ========================================================= */
.input-group-text {
    border-radius: 10px 0 0 10px !important;
    background: #fff;
    border: 1px solid #e3efe9;
    /* border-right: none; */
}

.search-input {
    border: 1px solid #e3efe9;
    border-left: none;
    border-right: none;
    padding: 10px 14px;
    box-shadow: none;
    transition: box-shadow var(--transition-fast);
}



.btn-search {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: #fff;
    border: none;
    border-radius: 10px !important;
    padding: 10px 22px;
    box-shadow: var(--accent-shadow);
    transition: box-shadow var(--transition-fast);
}

.btn-search:hover {
    box-shadow: 0 10px 24px rgba(34,184,112,0.22);
}

@media (max-width: 767.98px) {
    .Search_Model {
        display: none !important;
    }
}

/* =========================================================
   IMAGE CONTAINERS
   ========================================================= */
.image-circle {
    width: min(100%, 300px);
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto;
}

/* =========================================================
   MODELS GRID (FIXED & UNIFIED)
   ========================================================= */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
    margin-top: 18px;
}

/* =========================================================
   MODEL CARD (KYC STYLE)
   ========================================================= */
.model-card {
    background: #fff;
    border-radius: var(--card-radius);
    padding: 16px 14px;
    text-align: center;
    border: 1px solid #eef2f5;
    box-shadow: var(--card-shadow);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.model-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(18,18,18,0.08);
}

.model-thumb {
    max-height: 140px;
    width: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.model-label {
    font-size: 13px;
    color: var(--muted);
    margin-top: auto;
}

/* =========================================================
   VARIANT SELECTION
   ========================================================= */
.variant-box {
    background: #fff;
    border-radius: var(--card-radius);
    padding: 22px;
    border: 1px solid #e4f2eb;
    box-shadow: var(--card-shadow);
}

.variant-option {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #e1e8e4;
    background: #fff;
    padding: 14px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.variant-option:hover {
    background: #f3fbf7;
}

.variant-option.selected {
    background: #eaf9f4;
    border-color: var(--accent-1);
}

.variant-option input[type="radio"] {
    transform: scale(1.2);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn-value,
.btn-exact {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-weight: 600;
    box-shadow: var(--accent-shadow);
    transition: box-shadow var(--transition-fast);
}

.btn-value:hover,
.btn-exact:hover {
    box-shadow: 0 10px 24px rgba(34,184,112,0.25);
    color: #fff;
}

.error-text {
    color: #d9534f;
    font-size: .9rem;
    margin-top: 8px;
    display: none;
}

/* =========================================================
   PRICE / VALUE PAGE
   ========================================================= */
.value-card {
    background: #fff;
    border-radius: var(--card-radius);
    padding: 28px;
    box-shadow: var(--card-shadow);
}

.phone-thumb {
    max-width: 160px;
    margin: 0 auto;
    display: block;
}

.price-block { text-align: left; }

.price-upto {
    font-size: .95rem;
    color: var(--muted);
}

.price-amount {
    font-weight: 800;
    color: var(--price-color);
    font-size: 2.2rem;
}

.sold-count {
    color: var(--accent-1);
    font-weight: 600;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991px) {
    .price-block { text-align: center; }
    .btn-exact,
    .btn-value { width: 100%; }
}

@media (max-width: 576px) {
    .value-card {
        padding: 20px;
    }
    /* .container,.container-fluid{
        margin-top: 100px !important;
    } */
    .price-amount {
        font-size: 1.8rem;
    }
}
.search-icon {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #6c757d;
    pointer-events: none; 
}
.address-type-btn.active {
    background-color: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}
/* ==============================
   CASHEZE MENU STYLE
============================== */

:root {
    --casheze-blue: #1471b8;
    --casheze-dark: #172b4d;
}

/* Main menu */
.wsus__main_menu {
    background: #fff !important;
    border-top: 1px solid #edf2f7 !important;
    border-bottom: 1px solid #edf2f7 !important;
    box-shadow: 0 3px 15px rgba(20, 113, 184, 0.08) !important;
}

.wsus__menu_item > li > a {
    color: var(--casheze-dark) !important;
    font-weight: 500;
    transition: 0.2s;
}

.wsus__menu_item > li > a:hover,
.wsus__menu_item > li > a.active {
    color: var(--casheze-blue) !important;
}

/* Category bar */
.wsus_menu_category_bar {
    background: var(--casheze-blue) !important;
}

/* Category dropdown */
.wsus_menu_cat_droapdown {
    background: #fff !important;
    border: 1px solid #e5edf5 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.10) !important;
    border-radius: 0 0 8px 8px !important;
    padding: 7px 0 !important;
}

.wsus_menu_cat_droapdown > li {
    border-bottom: 1px solid #f1f4f7;
    position: relative;
}

.wsus_menu_cat_droapdown > li > a {
    color: #26384d !important;
    padding: 11px 18px !important;
    font-size: 14px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    transition: 0.2s;
}

.wsus_menu_cat_droapdown > li > a:hover {
    color: var(--casheze-blue) !important;
    background: #f4f9fd !important;
    padding-left: 23px !important;
}

/* Child category */
.wsus__sub_category {
    background: #fff !important;
    border: 1px solid #e5edf5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 6px;
    padding: 7px 0 !important;
}

.wsus__sub_category li a {
    display: block;
    padding: 9px 16px !important;
    color: #405268 !important;
    font-size: 13px;
}

.wsus__sub_category li a:hover {
    background: #f3f8fc !important;
    color: var(--casheze-blue) !important;
}

/* Search */
.wsus__search form {
    border: 1px solid #dce8f2 !important;
    background: #fff !important;
    border-radius: 8px !important;
    overflow: hidden;
}

.wsus__search form:focus-within {
    border-color: var(--casheze-blue) !important;
    box-shadow: 0 0 0 3px rgba(20,113,184,0.08);
}

.wsus__search input {
    border: 0 !important;
    outline: none !important;
}

.wsus__search button {
    background: var(--casheze-blue) !important;
    color: #fff !important;
}

/* Header icons */
.wsus__icon_area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wsus__icon_area li a {
    width: 42px;
    height: 42px;
    border: 1px solid #e1ebf3;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--casheze-blue) !important;
    background: #fff;
    transition: 0.2s;
}

.wsus__icon_area li a:hover {
    background: var(--casheze-blue) !important;
    color: #fff !important;
}

/* Mobile menu */
.wsus__mobile_menu_main_menu {
    background: #fff;
    padding: 12px;
}

.wsus_mobile_menu_category {
    padding: 0 !important;
    margin: 0 !important;
}

.wsus_mobile_menu_category > li {
    border-bottom: 1px solid #edf1f5;
}

.wsus_mobile_menu_category > li > a {
    color: var(--casheze-dark) !important;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 10px !important;
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.wsus_mobile_menu_category > li > a:hover {
    color: var(--casheze-blue) !important;
    background: #f5f9fd;
}

.wsus_mobile_menu_category > li > a i {
    color: var(--casheze-blue);
}

/* Mobile sub category */
.mobile-subcategory-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-subcategory-link > a {
    flex: 1;
    padding: 12px 15px !important;
    color: #34495e !important;
    font-size: 14px;
}

.mobile-subcategory-link button {
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: var(--casheze-blue);
}

.mobile-subcategory-link button:hover {
    background: #edf6fc;
}

.mobile-child-category {
    background: #f5f9fd;
}

.mobile-child-category ul {
    padding: 5px 0 5px 15px !important;
}

.mobile-child-category li a {
    display: block;
    padding: 9px 12px !important;
    color: #536579 !important;
    font-size: 13px !important;
}

.mobile-child-category li a:hover {
    color: var(--casheze-blue) !important;
    background: #eaf4fb;
}

.mobile-child-category li a i {
    color: var(--casheze-blue);
    margin-right: 6px;
}

/* Mobile tabs */
#pills-tab {
    border-bottom: 1px solid #e5edf4;
}

#pills-tab .nav-link {
    color: #5b6b7b;
    border: 0 !important;
    font-weight: 500;
}

#pills-tab .nav-link.active {
    background: var(--casheze-blue) !important;
    color: #fff !important;
}