@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

/* =====================================================================
   CIUDAD HOME · Panel del propietario
   Diseño limpio y claro · scopeado a  body.re-account
   No afecta al sitio público.
   ===================================================================== */

body.re-account {
    --re-bg: #f5f6f8;
    --re-card: #ffffff;
    --re-line: #e9ebef;
    --re-line-soft: #f0f1f4;
    --re-ink: #1d2533;
    --re-muted: #6b7480;
    --re-soft: #98a1ac;
    --re-brand: #ff3e0c;
    --re-brand-dark: #d64d1e;
    --re-brand-soft: #fff1ec;
    --re-radius: 16px;
    --re-radius-sm: 12px;
    --re-shadow: 0 1px 2px rgba(20, 28, 40, .04), 0 6px 20px rgba(20, 28, 40, .05);
    --re-shadow-hover: 0 2px 6px rgba(20, 28, 40, .06), 0 14px 34px rgba(20, 28, 40, .09);

    background: var(--re-bg) !important;
    color: var(--re-ink);
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    -webkit-font-smoothing: antialiased;
}

body.re-account main.pv3,
body.re-account main.pv3.pv4-ns {
    padding-top: 28px !important;
    padding-bottom: 56px !important;
}

body.re-account .container {
    max-width: 1180px;
}

/* ---------- Top navbar -------------------------------------------------- */
body.re-account .navbar {
    background: var(--re-card) !important;
    border: 0 !important;
    border-bottom: 1px solid var(--re-line) !important;
    box-shadow: 0 1px 0 rgba(20, 28, 40, .02);
    padding-top: .55rem;
    padding-bottom: .55rem;
}

body.re-account .navbar .navbar-nav { align-items: center; gap: 2px; flex-wrap: nowrap; }

body.re-account .navbar .navbar-nav > li > a {
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    margin: 0 !important;
    padding: 8px 11px !important;
    border-radius: 10px;
    color: var(--re-muted) !important;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.1 !important;
    white-space: nowrap !important;
    transition: background .15s ease, color .15s ease;
}

body.re-account .navbar .navbar-nav > li > a:hover {
    background: var(--re-line-soft);
    color: var(--re-ink) !important;
}

body.re-account .navbar .navbar-nav > li > a i { font-size: 15px; color: var(--re-soft); }
body.re-account .navbar .navbar-nav > li > a:hover i { color: var(--re-brand); }

body.re-account .navbar .navbar-nav > li > a img {
    width: 30px; height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--re-line);
}

body.re-account .navbar .badge,
body.re-account .navbar .badge-info {
    background: #fff !important;
    color: var(--re-brand) !important;
    font-weight: 600;
    font-size: 11.5px;
    padding: 4px 9px;
    border-radius: 5px !important;
    margin-left: -1px;
    border: 1px solid #d6d6d6 !important;
}

@media (max-width: 767px) {
body.re-account .navbar .badge,
body.re-account .navbar .badge-info {
    background: #fff !important;
    color: var(--re-brand) !important;
    font-weight: 600;
    font-size: 11.5px;
    padding: 3px 9px !important;
    border-radius: 5px !important;
    margin-left: -1px;
    border: 1px solid #d6d6d6 !important;
  }
}

body.re-account .navbar-toggler {
    border: 1px solid var(--re-line);
    border-radius: 10px;
    padding: 6px 9px;
}

/* ---------- Top "add credit" warning ----------------------------------- */
body.re-account main > .container > .alert-warning {
    background: var(--re-brand-soft) !important;
    border: 1px solid #ffd9cb !important;
    color: #8a3a1c !important;
    border-radius: var(--re-radius-sm);
    padding: 14px 18px;
    font-size: 14.5px;
    box-shadow: none;
}
body.re-account main > .container > .alert-warning a {
    color: var(--re-brand-dark) !important;
    font-weight: 600;
    text-decoration: underline;
}

/* ---------- Page heading ----------------------------------------------- */
body.re-account .re-pagehead {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin: 4px 0 40px;
    flex-wrap: wrap;
}
body.re-account .re-pagehead__title {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -.02em;
    margin: 0;
    color: var(--re-ink);
}
body.re-account .re-pagehead__sub {
    margin: 6px 0 0;
    color: var(--re-muted);
    font-size: 15px;
}

/* ---------- Generic card ----------------------------------------------- */
body.re-account .re-card {
    background: var(--re-card);
    border: 1px solid var(--re-line);
    border-radius: var(--re-radius);
    box-shadow: var(--re-shadow);
}

/* ---------- Buttons ----------------------------------------------------- */
body.re-account .re-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 11px;
    font-weight: 600;
    font-size: 14.5px;
    line-height: 1;
    text-decoration: none !important;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
}
body.re-account .re-btn--primary {
    background: var(--re-brand);
    color: #fff !important;
    box-shadow: 0 6px 16px rgba(239, 90, 40, .28);
}
body.re-account .re-btn--primary:hover { background: var(--re-brand-dark); transform: translateY(-1px); }
body.re-account .re-btn--ghost {
    background: #fff;
    color: var(--re-ink) !important;
    border-color: var(--re-line);
}
body.re-account .re-btn--ghost:hover { background: var(--re-line-soft); }

/* ---------- Profile card ----------------------------------------------- */
body.re-account .re-profile {
    padding: 26px 22px;
    text-align: center;
}
body.re-account .re-profile__avatar { display: flex; justify-content: center; margin-bottom: 16px; }
body.re-account .re-profile .avatar-view,
body.re-account .re-profile .profile-image { position: relative; display: inline-block; }
body.re-account .re-profile .avatar-view img {
    width: 116px !important;
    height: 116px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 0 0 1px var(--re-line), 0 8px 22px rgba(20, 28, 40, .12);
}
body.re-account .re-profile .mt-overlay {
    position: absolute; inset: 0;
    border-radius: 50% !important;
    display: flex; align-items: center; justify-content: center;
    background: rgba(20, 28, 40, .42);
    color: #fff; opacity: 0; cursor: pointer;
    transition: opacity .18s ease;
}
body.re-account .re-profile .avatar-view:hover .mt-overlay { opacity: 1; }

body.re-account .re-profile__name {
    font-size: 18px; font-weight: 700; letter-spacing: -.01em;
    color: var(--re-ink); margin-bottom: 2px;
}
body.re-account .re-profile__email {
    display: inline-block;
    color: var(--re-muted) !important;
    font-size: 13.5px; text-decoration: none;
    margin-bottom: 16px; word-break: break-word;
}
body.re-account .re-profile__email:hover { color: var(--re-brand) !important; }
body.re-account .re-profile__meta {
    display: flex; flex-direction: column; gap: 7px;
    padding: 16px 0;
    border-top: 1px solid var(--re-line-soft);
    border-bottom: 1px solid var(--re-line-soft);
    margin-bottom: 16px;
}
body.re-account .re-profile__meta span {
    color: var(--re-muted); font-size: 13px;
    display: flex; align-items: center; gap: 8px; justify-content: center;
}
body.re-account .re-profile__meta i { color: var(--re-soft); width: 15px; }
body.re-account .re-profile__edit { width: 100%; justify-content: center; }

/* ---------- Stat cards -------------------------------------------------- */
body.re-account .re-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 18px;
}
body.re-account .re-stat {
    background: var(--re-card);
    border: 1px solid var(--re-line);
    border-radius: var(--re-radius);
    box-shadow: var(--re-shadow);
    padding: 20px;
    display: flex; align-items: center; gap: 15px;
    transition: transform .14s ease, box-shadow .14s ease;
}
body.re-account .re-stat:hover { transform: translateY(-2px); box-shadow: var(--re-shadow-hover); }
body.re-account .re-stat__icon {
    flex: 0 0 auto;
    width: 50px; height: 50px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
}
body.re-account .re-stat__icon--green { background: #e7f8ef; color: #16a865; }
body.re-account .re-stat__icon--amber { background: #fff3e0; color: #f08c00; }
body.re-account .re-stat__icon--gray  { background: #eef0f3; color: #8a93a0; }
body.re-account .re-stat__num {
    font-size: 28px; font-weight: 700; line-height: 1; letter-spacing: -.02em;
    color: var(--re-ink);
}
body.re-account .re-stat__label { color: var(--re-muted); font-size: 13.5px; margin-top: 5px; }

/* ---------- Activity card ---------------------------------------------- */
body.re-account .re-activity { padding: 8px 6px; }
body.re-account .re-activity #app-real-estate { padding: 14px 16px; }
body.re-account .re-activity .nav-tabs { border-bottom: 1px solid var(--re-line); gap: 4px; }
body.re-account .re-activity .nav-tabs .nav-link {
    border: 0 !important;
    color: var(--re-muted);
    font-weight: 600; font-size: 14px;
    padding: 10px 14px;
    border-radius: 10px 10px 0 0;
}
body.re-account .re-activity .nav-tabs .nav-link.active {
    color: var(--re-brand) !important;
    background: transparent !important;
    box-shadow: inset 0 -2px 0 var(--re-brand);
}
body.re-account .re-activity h1,
body.re-account .re-activity h2,
body.re-account .re-activity h3,
body.re-account .re-activity h4 { font-weight: 700; letter-spacing: -.01em; }

/* ---------- Settings: section title ------------------------------------ */
body.re-account h4.with-actions {
    font-size: 20px; font-weight: 700; letter-spacing: -.01em;
    margin-bottom: 20px; color: var(--re-ink);
}

/* ---------- Settings: left menu (list-group) --------------------------- */
body.re-account .list-group {
    border: 1px solid var(--re-line) !important;
    border-radius: var(--re-radius) !important;
    box-shadow: var(--re-shadow) !important;
    overflow: hidden;
    background: var(--re-card);
}
body.re-account .list-group-item {
    border: 0 !important;
    border-bottom: 1px solid var(--re-line-soft) !important;
    padding: 13px 18px !important;
    color: var(--re-muted) !important;
    font-weight: 500; font-size: 14.5px;
    display: flex; align-items: center; gap: 10px;
}
body.re-account .list-group-item:last-child { border-bottom: 0 !important; }
body.re-account .list-group-item.fw6 {
    background: #fafbfc !important;
    color: var(--re-soft) !important;
    text-transform: uppercase; letter-spacing: .06em; font-size: 11.5px; font-weight: 600;
}
body.re-account .list-group-item i { color: var(--re-soft); width: 18px; text-align: center; }
body.re-account a.list-group-item-action:hover { background: var(--re-line-soft) !important; color: var(--re-ink) !important; }
body.re-account .list-group-item.active {
    background: var(--re-brand-soft) !important;
    color: var(--re-brand-dark) !important;
    box-shadow: inset 3px 0 0 var(--re-brand);
}
body.re-account .list-group-item.active i { color: var(--re-brand); }

/* ---------- Settings: form card + fields ------------------------------- */
body.re-account .main-dashboard-form {
    background: var(--re-card);
    border: 1px solid var(--re-line);
    border-radius: var(--re-radius);
    box-shadow: var(--re-shadow);
    padding: 26px;
}
body.re-account .main-dashboard-form label,
body.re-account .form-group > label {
    font-weight: 600; font-size: 13.5px; color: var(--re-ink);
    margin-bottom: 7px; display: inline-block;
}
/* ===== CAMPOS DE FORMULARIO (inputs, selects nativos y select2) ===== */

/* Inputs de texto y textarea */
body.re-account input.form-control,
body.re-account textarea.form-control {
    border: 1px solid var(--re-line) !important;
    border-radius: 11px !important;
    min-height: 44px;
    padding: 10px 14px !important;
    font-size: 14.5px;
    color: var(--re-ink) !important;
    background-color: #fff !important;
    box-shadow: none !important;
    line-height: 1.5;
    transition: border-color .15s ease, box-shadow .15s ease;
}
body.re-account textarea.form-control { min-height: 96px; height: auto; }
body.re-account input.form-control:focus,
body.re-account textarea.form-control:focus {
    border-color: var(--re-brand) !important;
    box-shadow: 0 0 0 3px rgba(239, 90, 40, .12) !important;
}

/* Selects NATIVOS (todos los que NO use select2, sin importar su clase) */
body.re-account select:not(.select2-hidden-accessible) {
    height: 44px !important;
    min-height: 44px;
    border: 1px solid var(--re-line) !important;
    border-radius: 11px !important;
    background-color: #fff !important;
    color: var(--re-ink) !important;
    font-size: 14.5px;
    box-shadow: none !important;
    padding: 0 38px 0 14px !important;
    -webkit-appearance: none; -moz-appearance: none; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7480' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    background-size: 12px !important;
}
body.re-account select:not(.select2-hidden-accessible):focus {
    border-color: var(--re-brand) !important;
    box-shadow: 0 0 0 3px rgba(239, 90, 40, .12) !important;
}

/* Selects con SELECT2 (país, estado, ciudad, divisa, estado, proyecto…) */

/* 1) Matar el borde/fondo del WRAPPER externo que pone core.css (causa del borde sobre borde) */
body.re-account .ui-select-wrapper {
    background: transparent !important;
    background-image: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* 2) Estilar la caja real de select2 (especificidad alta para ganarle a core.css) */
body.re-account .select2-container { width: 100% !important; }
body.re-account .select2-container .select2-selection--single {
    height: 44px !important;
    border: 1px solid var(--re-line) !important;
    border-radius: 11px !important;
    background-color: #fff !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7480' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    background-size: 12px !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 38px 0 14px !important;
    outline: none !important;
    overflow: hidden;
}
body.re-account .select2-container .select2-selection--single .select2-selection__rendered {
    color: var(--re-ink) !important;
    line-height: 1.4 !important;
    padding: 0 !important;
}
body.re-account .select2-container .select2-selection--single .select2-selection__placeholder {
    color: var(--re-soft) !important;
}
/* la flecha va en la caja (arriba): escondemos cualquier flecha interna de select2/core */
body.re-account .select2-container .select2-selection--single .select2-selection__arrow,
body.re-account .select2-container .select2-selection--single .select2-selection__arrow b,
body.re-account .select2-container .select2-selection--single .select2-selection__arrow svg,
body.re-account .ui-select-wrapper .svg-next-icon {
    display: none !important;
}
body.re-account .select2-container--focus .select2-selection--single,
body.re-account .select2-container--open .select2-selection--single {
    border-color: var(--re-brand) !important;
    box-shadow: 0 0 0 3px rgba(239, 90, 40, .12) !important;
}
/* panel desplegable de select2 */
body.re-account .select2-dropdown {
    border: 1px solid var(--re-line) !important;
    border-radius: 12px !important;
    box-shadow: var(--re-shadow) !important;
    overflow: hidden;
}
body.re-account .select2-results__option {
    padding: 9px 14px !important;
    font-size: 14px;
    color: var(--re-ink);
}
body.re-account .select2-results__option--highlighted[aria-selected] {
    background-color: var(--re-brand) !important;
    color: #fff !important;
}
body.re-account .select2-results__option[aria-selected="true"] {
    background-color: var(--re-brand-soft) !important;
    color: var(--re-brand-dark) !important;
}
body.re-account .select2-search--dropdown .select2-search__field {
    border: 1px solid var(--re-line) !important;
    border-radius: 9px !important;
    padding: 8px 12px !important;
}

body.re-account .birthday-box .form-control { width: auto !important; }

/* avatar in settings */
body.re-account .avatar-upload-container { text-align: center; }
body.re-account .avatar-upload-container .avatar-view { display: inline-block; max-width: 100%; position: relative; }
body.re-account .avatar-upload-container .avatar-view img {
    width: 120px !important;
    height: 120px !important;
    max-width: 100% !important;
    border-radius: 50% !important;
    margin: 14px auto !important;
    display: block;
    border: 1px solid var(--re-line);
    box-shadow: var(--re-shadow);
}

/* primary submit button (Guardar) */
body.re-account .btn-primary:not(.btn-icon) {
    background: var(--re-brand) !important;
    border-color: var(--re-brand) !important;
    border-radius: 11px !important;
    padding: 11px 22px !important;
    font-weight: 600 !important;
    box-shadow: 0 6px 16px rgba(239, 90, 40, .25);
    transition: transform .12s ease, background .15s ease;
}
body.re-account .btn-primary:not(.btn-icon):hover {
    background: var(--re-brand-dark) !important;
    border-color: var(--re-brand-dark) !important;
    transform: translateY(-1px);
}

/* ---------- Alerts ------------------------------------------------------ */
body.re-account .alert-success {
    background: #e9f9f0 !important;
    border: 1px solid #c2eed5 !important;
    color: #146c43 !important;
    border-radius: var(--re-radius-sm) !important;
}

/* ---------- Pagination -------------------------------------------------- */
body.re-account .pagination { gap: 6px; }
body.re-account .pagination .page-link {
    border: 1px solid var(--re-line);
    border-radius: 10px !important;
    color: var(--re-muted);
    padding: 8px 13px;
    font-weight: 500;
}
body.re-account .pagination .page-item.active .page-link {
    background: var(--re-brand);
    border-color: var(--re-brand);
    color: #fff;
}
body.re-account .pagination .page-link:hover { background: var(--re-line-soft); }

/* ---------- Generic tables inside panel -------------------------------- */
body.re-account .table { color: var(--re-ink); }
body.re-account .table thead th {
    border-bottom: 1px solid var(--re-line) !important;
    color: var(--re-soft);
    text-transform: uppercase; letter-spacing: .05em; font-size: 11.5px; font-weight: 600;
}
body.re-account .table td, body.re-account .table th { border-color: var(--re-line-soft) !important; }

/* ---------- Property create/edit form (forms/base) --------------------- */
body.re-account .main-form,
body.re-account .widget.meta-boxes {
    background: var(--re-card);
    border: 1px solid var(--re-line);
    border-radius: var(--re-radius);
    box-shadow: var(--re-shadow);
    padding: 22px;
    margin-bottom: 18px;
}
body.re-account .widget.meta-boxes .widget-title {
    margin: 0 0 16px;
    padding: 0 0 12px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--re-line-soft);
    border-radius: 0;
}
body.re-account .widget.meta-boxes .widget-title h4 {
    font-size: 15px; font-weight: 700; margin: 0; line-height: 1.35; letter-spacing: -.01em; color: var(--re-ink);
}
body.re-account .widget.meta-boxes .widget-body { padding: 0; }
body.re-account .right-sidebar .widget.meta-boxes { padding: 18px; }
body.re-account .form-actions .btn-set { display: flex; gap: 10px; flex-wrap: wrap; }
body.re-account .btn-info {
    background: var(--re-brand) !important;
    border-color: var(--re-brand) !important;
    border-radius: 11px !important;
    font-weight: 600 !important;
    box-shadow: 0 6px 16px rgba(239, 90, 40, .25);
}
body.re-account .btn-info:hover { background: var(--re-brand-dark) !important; border-color: var(--re-brand-dark) !important; }
body.re-account .btn-success {
    background: #fff !important;
    border-color: var(--re-line) !important;
    color: var(--re-ink) !important;
    border-radius: 11px !important;
    font-weight: 600 !important;
    box-shadow: none;
}
body.re-account .btn-success:hover { background: var(--re-line-soft) !important; }

/* ---------- Consults (consultas recibidas) ----------------------------- */
body.re-account .re-consult-list { display: flex; flex-direction: column; gap: 14px; }
body.re-account .re-consult { padding: 18px 20px; transition: box-shadow .14s ease; }
body.re-account .re-consult:hover { box-shadow: var(--re-shadow-hover); }
body.re-account .re-consult.is-unread {
    border-left: 3px solid var(--re-brand);
    background: linear-gradient(0deg, #fff, #fffaf7);
}
body.re-account .re-consult__top {
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 10px;
}
body.re-account .re-consult__name { font-weight: 700; font-size: 16px; color: var(--re-ink); }
body.re-account .re-consult__badge {
    background: var(--re-brand); color: #fff; font-size: 11px; font-weight: 600;
    padding: 3px 9px; border-radius: 999px; letter-spacing: .02em;
}
body.re-account .re-consult__date { margin-left: auto; color: var(--re-soft); font-size: 12.5px; }
body.re-account .re-consult__contact { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-bottom: 10px; }
body.re-account .re-consult__contact a {
    color: var(--re-muted); font-size: 13.5px; text-decoration: none;
    display: inline-flex; align-items: center; gap: 7px;
}
body.re-account .re-consult__contact a:hover { color: var(--re-brand); }
body.re-account .re-consult__contact i { color: var(--re-soft); }
body.re-account .re-consult__msg {
    color: var(--re-ink); font-size: 14.5px; line-height: 1.55; margin: 0 0 12px;
    background: #fafbfc; border: 1px solid var(--re-line-soft);
    border-radius: 12px; padding: 12px 14px;
}
body.re-account .re-consult__prop {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--re-brand-dark); font-weight: 600; font-size: 13.5px; text-decoration: none;
}
body.re-account .re-consult__prop:hover { text-decoration: underline; }

/* empty state */
body.re-account .re-empty { text-align: center; padding: 54px 24px; color: var(--re-muted); }
body.re-account .re-empty i { font-size: 40px; color: #d7dce2; margin-bottom: 14px; }
body.re-account .re-empty h3 { font-size: 18px; font-weight: 700; color: var(--re-ink); margin: 0 0 6px; }
body.re-account .re-empty p { margin: 0; font-size: 14.5px; }

/* feature checkboxes -> grilla prolija (como Flex) */
body.re-account .re-checks {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px 18px;
}
body.re-account label.checkbox-inline {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 !important;
    padding: 0;
    font-weight: 500;
    font-size: 14px;
    color: var(--re-ink);
    cursor: pointer;
    line-height: 1.3;
}
body.re-account label.checkbox-inline input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 20px; height: 20px;
    flex: 0 0 auto;
    margin: 0;
    border: 0px solid var(--re-line);
    border-radius: 6px;
    background: #fff;
    position: relative;
    cursor: pointer;
    transition: border-color .12s ease, background .12s ease;
}
/* anular la tilde azul que dibuja core.css */
body.re-account label.checkbox-inline input[type="checkbox"]::before {
    display: none !important;
    content: none !important;
    border: 0 !important;
}
body.re-account label.checkbox-inline input[type="checkbox"]:hover { border-color: #c7ced6; }
body.re-account label.checkbox-inline input[type="checkbox"]:checked {
    background: var(--re-brand) !important;
    border-color: var(--re-brand) !important;
}
body.re-account label.checkbox-inline input[type="checkbox"]:checked::after {
    content: "" !important;
    display: block !important;
    position: absolute;
    left: 2px; top: -2px;
    width: 5px; height: 10px;
    border: solid #fff !important;
    border-width: 0 2px 2px 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    transform: rotate(45deg);
}

/* Categorías del costado (multi-choices-widget) -> mismas casillas naranja */
body.re-account .multi-choices-widget input[type="checkbox"] {
    -webkit-appearance: none; appearance: none;
    width: 20px; height: 20px;
    flex: 0 0 auto;
    margin: 0 9px 0 0;
    border: 0px solid var(--re-line);
    border-radius: 6px;
    background: #fff;
    position: relative;
    cursor: pointer;
    vertical-align: -5px;
    transition: border-color .12s ease, background .12s ease;
}
body.re-account .multi-choices-widget input[type="checkbox"]::before {
    display: none !important; content: none !important; border: 0 !important;
}
body.re-account .multi-choices-widget input[type="checkbox"]:hover { border-color: #c7ced6; }
body.re-account .multi-choices-widget input[type="checkbox"]:checked {
    background: var(--re-brand) !important;
    border-color: var(--re-brand) !important;
}
body.re-account .multi-choices-widget input[type="checkbox"]:checked::after {
    content: "" !important; display: block !important;
    position: absolute; left: 1px; top: -2px;
    width: 5px; height: 10px;
    border: solid #fff !important;
    border-width: 0 2px 2px 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    transform: rotate(45deg);
}
body.re-account .multi-choices-widget ul { list-style: none; margin: 0; padding: 0; }
body.re-account .multi-choices-widget ul ul { padding-left: 22px; }
body.re-account .multi-choices-widget li { margin-bottom: 9px; }
body.re-account .multi-choices-widget label { font-weight: 500; color: var(--re-ink); cursor: pointer; margin: 0; }

/* Ocultar el cartel "You are editing ... version" (sitio en un solo idioma) */
body.re-account .note.note-success { display: none !important; }

/* ---------- Map picker (selector de ubicación) ------------------------- */
body.re-account .re-mappick { margin: 6px 0 22px; }
body.re-account .re-mappick__label { display: block; font-weight: 600; font-size: 13.5px; color: var(--re-ink); margin-bottom: 8px; }
body.re-account .re-mappick__search { display: flex; gap: 10px; margin-bottom: 12px; }
body.re-account .re-mappick__search .form-control { flex: 1; }
body.re-account .re-mappick__search .re-btn { white-space: nowrap; }
body.re-account .re-mappick__map {
    height: 340px; width: 100%;
    border: 1px solid var(--re-line);
    border-radius: var(--re-radius);
    overflow: hidden;
    z-index: 0;
}
body.re-account .re-mappick__hint { color: var(--re-muted); font-size: 12.5px; margin: 8px 0 0; }
body.re-account .ch-pin { background: transparent; border: 0; }
body.re-account .ch-pin .ch-pin__dot {
    display: block; width: 22px; height: 22px;
    background: var(--re-brand);
    border: 3px solid #fff;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 3px 8px rgba(0, 0, 0, .3);
    margin: 6px auto 0;
}
@media (max-width: 575px) {
    body.re-account .re-mappick__search { flex-direction: column; }
    body.re-account .re-mappick__search .re-btn { width: 100%; justify-content: center; }
    body.re-account .re-mappick__map { height: 280px; }
}

/* ---------- Responsive -------------------------------------------------- */
@media (max-width: 991px) {
    body.re-account .re-stats { grid-template-columns: 1fr 1fr; }
    body.re-account .navbar .navbar-nav { align-items: stretch; gap: 0; padding-top: 8px; flex-wrap: wrap; flex-direction: column; }
    body.re-account .navbar .navbar-nav > li > a { border-radius: 10px; }
}
@media (max-width: 575px) {
    body.re-account .re-pagehead__title { font-size: 22px; }
    body.re-account .re-stats { grid-template-columns: 1fr; }
    body.re-account .re-pagehead .re-btn--primary { width: 100%; justify-content: center; }
    body.re-account .main-dashboard-form { padding: 18px; }
}

body.re-account .form-actions .btn-set {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
body.re-account .form-actions .btn-info,
body.re-account .form-actions .btn-success {
    width: 100% !important;
    padding: 11px 18px !important;
    font-size: 14px !important;
    border-radius: 11px !important;
}

body.re-account .right-sidebar { display: flex; flex-direction: column; margin-top: -20px; }
body.re-account .right-sidebar .form-actions { order: 100; margin-top: 4px; }

@media (max-width: 575px) {
    body.re-account .re-checks {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        align-items: start;
    }
    body.re-account label.checkbox-inline { font-size: 13.5px; }
}

/* ========================================================
   PLANES Y CRÉDITOS
   ======================================================== */
body.re-account .re-credits-badge { text-align: right; }
body.re-account .re-credits-badge span { display: block; color: var(--re-muted); font-size: 12.5px; }
body.re-account .re-credits-badge strong { font-size: 26px; font-weight: 800; color: var(--re-brand); letter-spacing: -.02em; }

body.re-account .re-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
    margin-bottom: 22px;
}
body.re-account .re-plan {
    position: relative;
    background: var(--re-card);
    border: 1px solid var(--re-line);
    border-radius: var(--re-radius);
    box-shadow: var(--re-shadow);
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    transition: transform .14s ease, box-shadow .14s ease;
}
body.re-account .re-plan:hover { transform: translateY(-3px); box-shadow: var(--re-shadow-hover); }
body.re-account .re-plan.is-featured {
    border: 2px solid var(--re-brand);
    box-shadow: 0 10px 30px rgba(239, 90, 40, .14);
}
body.re-account .re-plan.is-featured::before {
    content: "Recomendado";
    position: absolute; top: -11px; left: 22px;
    background: var(--re-brand); color: #fff;
    font-size: 11px; font-weight: 700; letter-spacing: .02em;
    padding: 4px 11px; border-radius: 5px;
}
body.re-account .re-plan__ribbon {
    position: absolute; top: 16px; right: 16px;
    background: #e7f8ef; color: #16a865;
    font-size: 11.5px; font-weight: 700;
    padding: 4px 10px; border-radius: 5px;
}
body.re-account .re-plan__name { font-size: 15px; font-weight: 600; color: var(--re-muted); margin-bottom: 10px; }
body.re-account .re-plan__price { font-size: 32px; font-weight: 800; color: var(--re-ink); letter-spacing: -.02em; line-height: 1; }
body.re-account .re-plan__per { color: var(--re-soft); font-size: 13px; margin: 7px 0 18px; }
body.re-account .re-plan__list { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
body.re-account .re-plan__list li { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--re-ink); }
body.re-account .re-plan__list i { color: var(--re-brand); font-size: 12px; }
body.re-account .re-plan__btn {
    width: 100%; border: 0; border-radius: 11px;
    padding: 12px; font-weight: 700; font-size: 14.5px; cursor: pointer;
    background: var(--re-brand-soft); color: var(--re-brand-dark);
    transition: background .15s ease, transform .12s ease;
}
body.re-account .re-plan__btn:hover { background: #ffe3d8; }
body.re-account .re-plan.is-featured .re-plan__btn {
    background: var(--re-brand); color: #fff; box-shadow: 0 6px 16px rgba(239, 90, 40, .28);
}
body.re-account .re-plan.is-featured .re-plan__btn:hover { background: var(--re-brand-dark); transform: translateY(-1px); }
body.re-account .re-plan__btn.is-disabled { background: var(--re-line-soft); color: var(--re-soft); cursor: default; }

/* Pago seguro + métodos */
body.re-account .re-pay-trust {
    display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
    gap: 10px 16px; padding: 14px; margin-bottom: 24px; font-size: 13px; color: var(--re-muted);
}
body.re-account .re-pay-trust__secure { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: #16a865; }
body.re-account .re-pay-chip {
    display: inline-flex; align-items: center; gap: 7px;
    background: #f5f6f8; border: 1px solid #d6d6d6; border-radius: 5px;
    padding: 6px 13px; font-weight: 500; font-size: 13px; color: var(--re-ink);
}
body.re-account .re-pay-chip i { color: var(--re-soft); }
body.re-account .re-pay-chip .fa-paypal { color: #98a1ac; }

/* Movimientos de créditos */
body.re-account .re-tx { padding: 0; }
body.re-account .re-tx__head { font-weight: 700; font-size: 16px; color: var(--re-ink); padding: 16px 18px; border-bottom: 1px solid var(--re-line-soft); }
body.re-account .re-tx__list { padding: 4px 10px; }
body.re-account .re-tx__row { display: flex; align-items: center; gap: 14px; padding: 12px; border-bottom: 1px solid var(--re-line-soft); }
body.re-account .re-tx__row:last-child { border-bottom: 0; }
body.re-account .re-tx__icon { width: 40px; height: 40px; border-radius: 12px; background: var(--re-brand-soft); color: var(--re-brand); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
body.re-account .re-tx__title { font-weight: 600; color: var(--re-ink); font-size: 14.5px; }
body.re-account .re-tx__sub { color: var(--re-muted); font-size: 13px; }
body.re-account .re-tx__date { margin-left: auto; color: var(--re-soft); font-size: 13px; }
body.re-account .re-tx__empty { padding: 32px; text-align: center; color: var(--re-muted); }

@media (max-width: 575px) {
    body.re-account .re-plan-grid { grid-template-columns: 1fr; }
    body.re-account .re-credits-badge { text-align: left; }
}

/* ====================
   LISTA DE PROPIEDADES
   ==================== */
body.re-account .page-content { padding-left: 0 !important; padding-right: 0 !important; }
body.re-account .table-wrapper { margin-top: 4px; }

/* Portlet -> tarjeta limpia */
body.re-account .portlet.light,
body.re-account .portlet {
    background: var(--re-card) !important;
    border: 1px solid var(--re-line) !important;
    border-radius: var(--re-radius) !important;
    box-shadow: var(--re-shadow) !important;
    padding: 0 !important;
    margin-bottom: 18px !important;
}
body.re-account .portlet-title {
    border-bottom: 1px solid var(--re-line-soft) !important;
    padding: 14px 18px !important;
    margin: 0 !important;
    min-height: 0 !important;
}
body.re-account .portlet-body { padding: 6px 14px 14px !important; }

/* Botones de cabecera de tabla (Crear / Recargar / Filtros / Bulk) */
body.re-account .table-wrapper .btn-primary,
body.re-account .portlet .btn-primary {
    background: var(--re-brand) !important;
    border-color: var(--re-brand) !important;
    color: #fff !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 12px rgba(239, 90, 40, .22) !important;
}
body.re-account .table-wrapper .btn-primary:hover,
body.re-account .portlet .btn-primary:hover {
    background: var(--re-brand-dark) !important;
    border-color: var(--re-brand-dark) !important;
}
body.re-account .table-wrapper .btn-secondary,
body.re-account .table-wrapper .btn-default,
body.re-account .table-wrapper .btn-warning,
body.re-account .portlet .btn-warning,
body.re-account .table-wrapper .reload-button,
body.re-account .table-wrapper a[data-bs-toggle="dropdown"] {
    background: #fff !important;
    border: 1px solid var(--re-line) !important;
    color: var(--re-ink) !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    box-shadow: none !important;
}
body.re-account .table-wrapper .btn-secondary:hover,
body.re-account .table-wrapper .btn-warning:hover,
body.re-account .table-wrapper .reload-button:hover { background: var(--re-line-soft) !important; }

/* Acciones por fila (editar / borrar / renovar) */
body.re-account .table-actions { display: inline-flex; gap: 6px; }
body.re-account .table-actions .btn { border-radius: 9px !important; }
body.re-account .table-actions .btn-primary { background: var(--re-brand) !important; border-color: var(--re-brand) !important; }
body.re-account .table-actions .btn-info {
    background: #fff !important; border: 1px solid var(--re-line) !important; color: var(--re-muted) !important;
}
body.re-account .table-actions .btn-info:hover { background: var(--re-line-soft) !important; color: var(--re-brand) !important; }

/* Tabla */
body.re-account table.dataTable,
body.re-account .table-responsive table {
    border-collapse: separate !important;
    border-spacing: 0;
}
body.re-account table.dataTable thead th,
body.re-account .table-responsive thead th {
    background: #fafbfc !important;
    border-bottom: 1px solid var(--re-line) !important;
    border-top: 0 !important;
    color: var(--re-soft) !important;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: 11.5px !important;
    font-weight: 600 !important;
    padding: 12px 14px !important;
}
body.re-account table.dataTable tbody td,
body.re-account .table-responsive tbody td {
    border-top: 1px solid var(--re-line-soft) !important;
    padding: 13px 14px !important;
    vertical-align: middle !important;
    color: var(--re-ink);
    font-size: 14px;
}
body.re-account table.dataTable tbody tr:hover td { background: #fcfcfd !important; }

/* Imagen miniatura en la tabla */
body.re-account .table-responsive td img {
    border-radius: 10px !important;
    object-fit: cover;
    border: 1px solid var(--re-line);
}

/* Estados (badges/labels) */
body.re-account .table .label,
body.re-account .table .badge,
body.re-account .table-responsive .label,
body.re-account .table-responsive .badge {
    border-radius: 999px !important;
    font-weight: 600 !important;
    font-size: 11.5px !important;
    padding: 5px 11px !important;
}
body.re-account .label-success, body.re-account .badge-success,
body.re-account .label-info, body.re-account .badge-info {
    background: #e7f8ef !important; color: #16a865 !important;
}
body.re-account .label-warning, body.re-account .badge-warning {
    background: #fff3e0 !important; color: #d9820a !important;
}
body.re-account .label-danger, body.re-account .badge-danger {
    background: #fdecec !important; color: #d64141 !important;
}

/* Controles DataTables (buscador, paginación, info) */
body.re-account .dataTables_wrapper .dataTables_filter input,
body.re-account .dataTables_wrapper .dataTables_length select {
    border: 1px solid var(--re-line) !important;
    border-radius: 10px !important;
    padding: 8px 12px !important;
    min-height: 40px;
    background-color: #fff !important;
}
body.re-account .dataTables_wrapper .dataTables_info { color: var(--re-muted) !important; font-size: 13px; }
body.re-account .dataTables_wrapper .dataTables_paginate .paginate_button {
    border: 1px solid var(--re-line) !important;
    border-radius: 9px !important;
    padding: 6px 12px !important;
    margin: 0 3px !important;
    color: var(--re-muted) !important;
    background: #fff !important;
}
body.re-account .dataTables_wrapper .dataTables_paginate .paginate_button.current,
body.re-account .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: var(--re-brand) !important;
    border-color: var(--re-brand) !important;
    color: #fff !important;
}
body.re-account .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: var(--re-line-soft) !important;
    color: var(--re-ink) !important;
}

/* Botones Crear / Recargar de la tabla (dt-buttons) */
body.re-account .page-content .dataTables_wrapper .dt-buttons .btn,
body.re-account .dt-buttons .btn {
    background: #fff !important;
    border: 1px solid var(--re-line) !important;
    color: var(--re-ink) !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    font-size: 13px !important;
    padding: 8px 14px !important;
}
body.re-account .page-content .dataTables_wrapper .dt-buttons .btn.action-item,
body.re-account .dt-buttons .btn.action-item {
    background: var(--re-brand) !important;
    border-color: var(--re-brand) !important;
    color: #fff !important;
}
body.re-account .dt-buttons .btn.action-item:hover { background: var(--re-brand-dark) !important; }
body.re-account .dt-buttons .btn.buttons-reload:hover { background: var(--re-line-soft) !important; }

.page-content .dataTables_wrapper .dt-buttons {
  margin-right: 10px !important;
  position: absolute !important;
  right: 0 !important;
  top: -50px !important;
}

.status-label {
  border-radius: 5px !important;
  color: #fff !important;
  display: inline !important;
  font-size: 80% !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  padding: .3em .7em .4em !important;
  text-align: center !important;
  vertical-align: baseline !important;
  white-space: nowrap !important;
  border: 1px solid #c3c3c3 !important;
}

body.re-account .re-plan__cur {
    font-size: 13px;
    font-weight: 600;
    color: var(--re-soft);
    margin-left: 6px;
    letter-spacing: .03em;
}

.modal-header {
  background: #ff3e0c !important;
}

.mt-card-avatar .mt-overlay > span {
  margin-left: -10px !important;
}

.mt-card-avatar .mt-overlay {
  background-color: rgba(0, 0, 0, 0.03) !important;
  opacity: 1 !important;
}

body.re-account .mt-overlay span.ch-edit-ico {
    margin-left: 0 !important;
}

/* =====================================================================
   AUTENTICACIÓN (Registro / Login)
   Independiente: no depende de variables del panel.
   ===================================================================== */
.ch-auth-card {
    background: #ffffff;
    border: 1px solid #e9ebef;
    border-radius: 18px;
    box-shadow: 0 1px 2px rgba(20, 28, 40, .04), 0 12px 34px rgba(20, 28, 40, .07);
    padding: 38px 36px;
    margin: 40px auto 56px;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.ch-auth-title {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -.02em;
    color: #1d2533;
    text-align: center;
    margin: 0 0 6px;
}
.ch-auth-sub {
    text-align: center;
    color: #6b7480;
    font-size: 14.5px;
    margin: 0 0 26px;
}
.ch-auth-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.ch-auth-field { margin-bottom: 16px; }
.ch-auth-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1d2533;
    margin-bottom: 7px;
}
.ch-auth-card .form-control {
    width: 100%;
    height: 46px;
    border: 1px solid #e3e6ea !important;
    border-radius: 12px !important;
    padding: 10px 14px !important;
    font-size: 14.5px;
    color: #1d2533 !important;
    background: #fff !important;
    box-shadow: none !important;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.ch-auth-card .form-control:focus {
    border-color: #ef5a28 !important;
    box-shadow: 0 0 0 3px rgba(239, 90, 40, .12) !important;
    outline: none;
}
.ch-auth-card .form-control.is-invalid { border-color: #d64141 !important; }
.ch-auth-error {
    display: block;
    color: #d64141;
    font-size: 12.5px;
    margin-top: 6px;
}
.ch-auth-btn {
    width: 100%;
    border: 0;
    background: #ef5a28;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 13px;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 6px;
    box-shadow: 0 6px 16px rgba(239, 90, 40, .28);
    transition: background .15s ease, transform .12s ease;
}
.ch-auth-btn:hover { background: #d64d1e; transform: translateY(-1px); }
.ch-auth-foot {
    text-align: center;
    margin-top: 18px;
    font-size: 14px;
    color: #6b7480;
}
.ch-auth-foot a {
    color: #ef5a28;
    font-weight: 600;
    text-decoration: none;
    margin-left: 4px;
}
.ch-auth-foot a:hover { text-decoration: underline; }
.ch-auth-extra { text-align: center; margin-top: 10px; }
.ch-auth-extra:empty { margin: 0; }

@media (max-width: 575px) {
    .ch-auth-card { padding: 28px 20px; margin: 24px auto 40px; }
    .ch-auth-row { grid-template-columns: 1fr; gap: 0; }
}

/* Ojo para mostrar/ocultar contraseña */
.ch-auth-card .password-wrapper { position: relative !important; }
.ch-auth-card .password-wrapper input { padding-right: 44px !important; }
.ch-auth-card .password-eye {
    position: absolute !important;
    top: 50% !important;
    right: 13px !important;
    transform: translateY(-50%) !important;
    width: 20px !important;
    height: 20px !important;
    cursor: pointer !important;
    opacity: .6 !important;
    z-index: 5 !important;
}
.ch-auth-card .password-eye:hover { opacity: 1 !important; }

/* Login: fila "recordarme" + "olvidaste contraseña" */
.ch-auth-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin: 4px 0 18px;
}
.ch-auth-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: #6b7480;
    cursor: pointer;
    margin: 0;
}
.ch-auth-check input { width: 16px; height: 16px; accent-color: #ef5a28; cursor: pointer; }
.ch-auth-inline > a {
    font-size: 13.5px;
    color: #ef5a28;
    text-decoration: none;
    font-weight: 600;
}
.ch-auth-inline > a:hover { text-decoration: underline; }

/* =====================================================================
   TABLA DE PROPIEDADES · MÓVIL
   ===================================================================== */
/* Botones Crear/Recargar en una fila + buscador ancho completo */
@media (max-width: 767px) {
    body.re-account .dataTables_wrapper .dt-buttons {
        position: static !important;
        top: auto !important;
        right: auto !important;
        display: flex !important;
        gap: 8px;
        margin: 0 0 14px !important;
        width: 100%;
    }
    body.re-account .dataTables_wrapper .dt-buttons .btn {
        flex: 1;
        justify-content: center;
    }
    body.re-account .dataTables_wrapper .dataTables_filter {
        display: block !important;
        width: 100% !important;
        margin-bottom: 10px;
    }
    body.re-account .dataTables_wrapper .dataTables_filter input {
        width: 100% !important;
        max-width: none !important;
    }
}

body.re-account #botble-real-estate-tables-account-property-table th:nth-child(8),
body.re-account #botble-real-estate-tables-account-property-table td:nth-child(8) {
    display: none !important;
}

@media (max-width: 767px) {
    body.re-account .table-wrapper,
    body.re-account .portlet,
    body.re-account .portlet-body {
        overflow: visible !important;
    }
    body.re-account .dataTables_wrapper {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        width: 100% !important;
    }
    body.re-account .table-responsive {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        width: 100% !important;
    }
    body.re-account .table-responsive table,
    body.re-account table.dataTable {
        width: max-content !important;
        min-width: 100% !important;
    }
    body.re-account .table-responsive th,
    body.re-account .table-responsive td {
        white-space: nowrap !important;
    }
}

body.re-account .re-activity__head { font-weight: 700; font-size: 16px; color: var(--re-ink); padding: 16px 18px; border-bottom: 1px solid var(--re-line-soft); }
body.re-account .re-activity__list { list-style: none; margin: 0; padding: 6px 8px; }
body.re-account .re-activity__item { display: flex; align-items: center; gap: 11px; padding: 11px 12px; border-bottom: 1px solid var(--re-line-soft); font-size: 14px; color: var(--re-ink); }
body.re-account .re-activity__item:last-child { border-bottom: 0; }
body.re-account .re-activity__item > i { color: var(--re-soft); font-size: 14px; flex: 0 0 auto; }
body.re-account .re-activity__item .small.italic { color: var(--re-soft); font-style: normal; margin-left: 4px; }
body.re-account .re-activity__empty { padding: 28px; text-align: center; color: var(--re-muted); }
body.re-account .re-activity__pager { padding: 12px; display: flex; justify-content: center; }

.ch-captcha-label { font-size: 14px !important; color: #444 !important; margin-bottom: 6px !important; display: block !important; font-weight: 600 !important; }

body.re-account .ch-consult-badge {
    display: inline-block;
    min-width: 19px;
    height: 19px;
    line-height: 19px;
    padding: 0 5px;
    background: #ff3e0c;
    color: #fff !important;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    border-radius: 999px;
    margin-left: -2px;
    vertical-align: middle;
}

body.re-account .re-consult__actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--re-line-soft); }
body.re-account .re-cbtn { display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border-radius: 10px; font-weight: 600; font-size: 13px; border: 1px solid var(--re-line); background: #fff; color: var(--re-ink); cursor: pointer; text-decoration: none; transition: all .15s ease; }
body.re-account .re-cbtn:hover { background: var(--re-line-soft); }
body.re-account .re-cbtn--wa { border-color: #25d36633; color: #1ba953; }
body.re-account .re-cbtn--wa:hover { background: #e7f8ef; }
body.re-account .re-cbtn--done { border-color: var(--re-brand); color: var(--re-brand); }
body.re-account .re-cbtn--done:hover { background: var(--re-brand); color: #fff; }
body.re-account .re-cbtn--del { color: #d64141; border-color: #d6414133; margin-left: auto; }
body.re-account .re-cbtn--del:hover { background: #fdecec; }

@media (max-width: 767px) {
    .checkout-wrapper .list-group-item {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 16px 16px 16px 46px !important;
        position: relative !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .checkout-wrapper .list-group-item .magic-radio,
    .checkout-wrapper .list-group-item input[type="radio"] {
        position: absolute !important;
        left: 16px !important;
        top: 18px !important;
        margin: 0 !important;
    }

    .checkout-wrapper .list-group-item label {
        display: block !important;
        width: 100% !important;
        float: none !important;
        margin: 0 0 4px 0 !important;
        white-space: normal !important;
        font-weight: 600 !important;
    }

    .checkout-wrapper .payment_collapse_wrap {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        float: none !important;
        clear: both !important;
        padding: 8px 0 0 0 !important;
        box-sizing: border-box !important;
    }

    .checkout-wrapper .payment_collapse_wrap p {
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        font-size: 11px !important;
        line-height: 1.55 !important;
        white-space: normal !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 767px) {
    .checkout-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 14px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .checkout-wrapper > div {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .checkout-wrapper .payment-checkout-form {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .checkout-wrapper .list_payment_method {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .checkout-wrapper .payment_collapse_wrap {
        padding-right: 14px !important;
    }

    .checkout-wrapper .text-center {
        width: 100% !important;
        text-align: center !important;
        display: block !important;
    }

    .checkout-wrapper .payment-checkout-btn {
        display: inline-block !important;
        margin: 8px auto 0 !important;
        float: none !important;
    }
}

body.re-account .re-credits-badge {
    background: linear-gradient(135deg, #FF3E0C 0%, #ff8a5c 100%) !important;
    border-radius: 10px !important;
    padding: 12px 20px !important;
    text-align: center !important;
    box-shadow: 0 10px 24px rgba(239, 90, 40, .3) !important;
    position: relative !important;
    overflow: hidden !important;
    display: inline-block !important;
    min-width: 120px !important;
}

body.re-account .re-credits-badge::after {
    content: "" !important;
    position: absolute !important;
    top: -30px !important;
    right: -30px !important;
    width: 90px !important;
    height: 90px !important;
    background: rgba(255, 255, 255, .15) !important;
    border-radius: 50% !important;
    z-index: 0 !important;
}

body.re-account .re-credits-badge span {
    display: block !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, .85) !important;
    text-transform: uppercase !important;
    letter-spacing: .6px !important;
    margin-bottom: 4px !important;
    position: relative !important;
    z-index: 1 !important;
}

body.re-account .re-credits-badge strong {
    display: block !important;
    font-size: 44px !important;
    font-weight: 800 !important;
    color: #fff !important;
    line-height: 1 !important;
    position: relative !important;
    z-index: 1 !important;
}

@media (max-width: 767px) {
    body.re-account .re-credits-badge {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
        margin-top: 14px !important;
    }
}

body.re-account .ch-nav-ico {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
    margin-right: 6px !important;
    position: relative !important;
    top: -1px !important;
    margin-right: -2px !important;
}

body.re-account .ch-nav-ico svg {
    width: 19px !important;
    height: 19px !important;
    display: block !important;
}

body.re-account .dataTables_filter label::after {
    top: 50% !important;
    transform: translateY(-50%) !important;
    right: 10px !important;
}

body.re-account .ch-form-errors {
    background: #fdecec !important;
    border: 1px solid #f5c2c2 !important;
    border-left: 4px solid #d64141 !important;
    border-radius: 12px !important;
    padding: 16px 18px !important;
    margin-bottom: 22px !important;
}
body.re-account .ch-form-errors__title {
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;
    font-weight: 700 !important;
    font-size: 14.5px !important;
    color: #b02a2a !important;
    margin-bottom: 10px !important;
}
body.re-account .ch-form-errors ul {
    margin: 0 !important;
    padding-left: 30px !important;
}
body.re-account .ch-form-errors li {
    color: #a93434 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}

body.re-account #toast-container > .toast-error {
    display: none !important;
}