/**
 * CPA Wishlist – Campings Favoris (V2)
 *
 * Styles for heart buttons (cards + single page),
 * header counter badge, toast notifications,
 * wishlist page, comparator, share, suggestions,
 * sync indicator, and alert modals.
 *
 * Site palette:
 *   Primary blue: #2c3f58
 *   Heart red:    #e74c3c
 *   Success:      #27ae60
 */

/* =========================================
   1. Heart button – shared base
   ========================================= */
.cpa-wishlist-heart {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 50;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    padding: 0;
    line-height: 1;
}

.cpa-wishlist-heart:hover {
    transform: scale(1.15);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.cpa-wishlist-heart:active {
    transform: scale(0.95);
}

.cpa-wishlist-heart svg {
    width: 20px;
    height: 20px;
    transition: fill 0.25s ease, stroke 0.25s ease;
    fill: none;
    stroke: #666;
    stroke-width: 2;
}

.cpa-wishlist-heart.active svg {
    fill: #e74c3c;
    stroke: #e74c3c;
}

.cpa-wishlist-heart.cpa-pulse {
    animation: cpa-heart-pulse 0.4s ease;
}

@keyframes cpa-heart-pulse {
    0%   { transform: scale(1); }
    30%  { transform: scale(1.3); }
    60%  { transform: scale(0.95); }
    100% { transform: scale(1); }
}

/* =========================================
   2. Heart on listing cards
   ========================================= */
a.click-coeur .cta-camp {
    position: relative;
}

/* =========================================
   2b. Heart on bloc-camping cards (Map & Filtres)
   ========================================= */
.bloc-camping .camping-img {
    position: relative;
}

.cpa-wishlist-heart-bloc {
    top: 6px;
    right: 6px;
    width: 32px;
    height: 32px;
}

.cpa-wishlist-heart-bloc svg {
    width: 17px;
    height: 17px;
}

/* =========================================
   3. Heart on single camping page
   ========================================= */
.cpa-wishlist-heart-single {
    position: relative;
    top: auto;
    right: auto;
    width: 42px;
    height: 42px;
    margin-left: 10px;
    display: inline-flex;
    vertical-align: middle;
    background: rgba(255, 255, 255, 0.95);
}

.cpa-wishlist-heart-single svg {
    width: 22px;
    height: 22px;
}

.cpa-wishlist-title-row {
    display: flex;
    align-items: center;
    gap: 0;
}

.cpa-wishlist-title-row h1 {
    margin-bottom: 0;
}

/* =========================================
   4. Header counter badge
   ========================================= */
.cpa-wishlist-header-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: inherit;
    margin-left: 12px;
    transition: opacity 0.2s ease;
}

.cpa-wishlist-header-link:hover {
    opacity: 0.8;
    text-decoration: none;
    color: inherit;
}

.cpa-wishlist-header-link svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.cpa-wishlist-header-link.has-items svg {
    fill: #e74c3c;
    stroke: #e74c3c;
}

.cpa-wishlist-header-count {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    background: #e74c3c;
    border-radius: 9px;
    padding: 0 4px;
    box-sizing: border-box;
    display: none;
}

.cpa-wishlist-header-link.has-items .cpa-wishlist-header-count {
    display: block;
}

/* =========================================
   5. Toast notification
   ========================================= */
.cpa-wishlist-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    z-index: 99999;
    background: #2c3f58;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.cpa-wishlist-toast.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.cpa-wishlist-toast a {
    color: #fff;
    text-decoration: underline;
    margin-left: 8px;
    font-weight: 600;
}

.cpa-wishlist-toast svg {
    display: inline;
    vertical-align: middle;
    margin-right: 4px;
}

/* =========================================
   6. Wishlist page – layout
   ========================================= */
.cpa-wishlist-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0 3rem;
}

.cpa-wishlist-count-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1rem;
    background: #f0f3f7;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #2c3f58;
    font-weight: 500;
    flex-wrap: wrap;
}

.cpa-wishlist-btn-clear {
    background: none;
    border: 1px solid #c0392b;
    color: #c0392b;
    padding: 0.35rem 0.9rem;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: auto;
}

.cpa-wishlist-btn-clear:hover {
    background: #c0392b;
    color: #fff;
}

.cpa-wishlist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.cpa-wishlist-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cpa-wishlist-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.cpa-wishlist-card-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.cpa-wishlist-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cpa-wishlist-card-image .cpa-wishlist-heart {
    top: 10px;
    right: 10px;
}

.cpa-wishlist-card-body {
    padding: 1rem;
}

.cpa-wishlist-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: #2c3f58;
    margin: 0 0 0.3rem;
    line-height: 1.3;
}

.cpa-wishlist-card-name a {
    color: inherit;
    text-decoration: none;
}

.cpa-wishlist-card-name a:hover {
    text-decoration: underline;
}

.cpa-wishlist-card-location {
    font-size: 0.82rem;
    color: #777;
    margin: 0 0 0.6rem;
}

.cpa-wishlist-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.cpa-wishlist-card-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2c3f58;
}

.cpa-wishlist-card-price small {
    font-weight: 400;
    color: #999;
    font-size: 0.78rem;
}

.cpa-wishlist-card-link {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #2c3f58, #3a5575);
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cpa-wishlist-card-link:hover {
    background: linear-gradient(135deg, #1e3247, #2c3f58);
    color: #fff;
    text-decoration: none;
}

/* =========================================
   7. Wishlist page – empty state
   ========================================= */
.cpa-wishlist-empty {
    text-align: center;
    padding: 4rem 1rem;
}

.cpa-wishlist-empty-icon {
    margin-bottom: 1.5rem;
}

.cpa-wishlist-empty-title {
    color: #2c3f58;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.cpa-wishlist-empty-text {
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.cpa-wishlist-heart-inline {
    color: #e74c3c;
    font-size: 1.1em;
}

.cpa-wishlist-btn-explore {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #2c3f58, #3a5575);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cpa-wishlist-btn-explore:hover {
    background: linear-gradient(135deg, #1e3247, #2c3f58);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(44, 63, 88, 0.3);
    color: #fff;
    text-decoration: none;
}

/* =========================================
   8. Loading state
   ========================================= */
.cpa-wishlist-loading {
    text-align: center;
    padding: 3rem 1rem;
    color: #888;
}

.cpa-wishlist-spinner {
    display: inline-block;
    width: 36px;
    height: 36px;
    border: 4px solid #e0e0e0;
    border-top-color: #2c3f58;
    border-radius: 50%;
    animation: cpa-spin 0.6s linear infinite;
    margin-bottom: 1rem;
}

@keyframes cpa-spin {
    to { transform: rotate(360deg); }
}

/* =========================================
   9. V2 – Share & Compare buttons
   ========================================= */
.cpa-share-btn,
.cpa-compare-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0.35rem 0.9rem;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    border: none;
}

.cpa-share-btn {
    background: #27ae60;
    color: #fff;
}

.cpa-share-btn:hover {
    background: #219a52;
    color: #fff;
}

.cpa-compare-link-btn {
    background: #2c3f58;
    color: #fff;
}

.cpa-compare-link-btn:hover {
    background: #1e3247;
    color: #fff;
    text-decoration: none;
}

.cpa-share-btn svg,
.cpa-compare-link-btn svg {
    stroke: #fff;
    fill: none;
}

/* =========================================
   10. V2 – Shared wishlist header
   ========================================= */
.cpa-shared-header {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f3f7, #e8edf3);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.cpa-shared-header h2 {
    color: #2c3f58;
    margin: 0 0 0.3rem;
}

.cpa-shared-header p {
    color: #777;
    margin: 0 0 1rem;
    font-size: 0.9rem;
}

.cpa-shared-import-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cpa-shared-import-btn:hover {
    background: #c0392b;
}

.cpa-shared-import-btn:disabled {
    opacity: 0.6;
    cursor: default;
}

/* =========================================
   11. V2 – Suggestions section
   ========================================= */
.cpa-suggestions-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f3f7;
}

.cpa-suggestions-title {
    color: #2c3f58;
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
}

.cpa-suggestions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.cpa-suggestion-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cpa-suggestion-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.cpa-suggestion-img {
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.cpa-suggestion-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cpa-suggestion-body {
    padding: 0.75rem 1rem;
}

.cpa-suggestion-body h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 0 0.2rem;
    color: #2c3f58;
}

.cpa-suggestion-body h3 a {
    color: inherit;
    text-decoration: none;
}

.cpa-suggestion-body h3 a:hover {
    text-decoration: underline;
}

.cpa-suggestion-loc {
    font-size: 0.78rem;
    color: #999;
    margin: 0 0 0.5rem;
}

.cpa-suggestion-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cpa-suggestion-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2c3f58;
}

.cpa-suggestion-add {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.cpa-suggestion-add:hover {
    border-color: #e74c3c;
    background: #fdf2f2;
}

.cpa-suggestion-add svg {
    width: 16px;
    height: 16px;
    stroke: #e74c3c;
    fill: none;
}

.cpa-suggestion-add:disabled {
    opacity: 0.6;
    cursor: default;
}

/* =========================================
   12. V2 – Compare page
   ========================================= */
.cpa-compare-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0 3rem;
}

.cpa-compare-intro {
    text-align: center;
    padding: 1.5rem 0;
}

.cpa-compare-intro h2 {
    color: #2c3f58;
    margin-bottom: 0.5rem;
}

.cpa-compare-intro p {
    color: #777;
    margin-bottom: 1.5rem;
}

.cpa-compare-selector {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 0.75rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    text-align: left;
}

.cpa-compare-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.6rem 0.8rem;
    background: #fff;
    border: 2px solid #e8edf3;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cpa-compare-item:hover {
    border-color: #2c3f58;
}

.cpa-compare-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: #2c3f58;
}

.cpa-compare-item input[type="checkbox"]:checked + .cpa-compare-item-img + .cpa-compare-item-info {
    color: #2c3f58;
}

.cpa-compare-item-img {
    width: 48px;
    height: 36px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.cpa-compare-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cpa-compare-item-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.cpa-compare-item-info strong {
    font-size: 0.85rem;
    color: #2c3f58;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cpa-compare-item-info small {
    font-size: 0.75rem;
    color: #999;
}

.cpa-compare-btn {
    display: inline-block;
    padding: 0.7rem 2rem;
    background: linear-gradient(135deg, #2c3f58, #3a5575);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cpa-compare-btn:disabled {
    opacity: 0.5;
    cursor: default;
}

.cpa-compare-btn:not(:disabled):hover {
    background: linear-gradient(135deg, #1e3247, #2c3f58);
    transform: translateY(-1px);
}

.cpa-compare-back {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    background: none;
    border: 1px solid #2c3f58;
    color: #2c3f58;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cpa-compare-back:hover {
    background: #2c3f58;
    color: #fff;
}

.cpa-compare-empty {
    color: #999;
    font-size: 0.9rem;
}

.cpa-compare-empty a {
    color: #2c3f58;
}

/* Compare table */
.cpa-compare-table-wrapper {
    overflow-x: auto;
}

.cpa-compare-tbl {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.cpa-compare-tbl th {
    text-align: left;
    padding: 0.75rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #2c3f58;
    background: #f8f9fb;
    border-bottom: 2px solid #e8edf3;
    white-space: nowrap;
    vertical-align: top;
    width: 120px;
}

.cpa-compare-tbl td {
    padding: 0.75rem;
    font-size: 0.88rem;
    color: #444;
    border-bottom: 1px solid #f0f3f7;
    vertical-align: top;
    min-width: 160px;
}

.cpa-compare-tbl tr:first-child td {
    padding: 0;
}

.cpa-compare-tbl tr:first-child td img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.cpa-compare-tbl td a {
    color: #2c3f58;
    font-weight: 600;
    text-decoration: none;
}

.cpa-compare-tbl td a:hover {
    text-decoration: underline;
}

.cpa-tag {
    display: inline-block;
    padding: 2px 8px;
    margin: 2px;
    background: #e8edf3;
    color: #2c3f58;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.cpa-na {
    color: #ccc;
}

/* =========================================
   13. V2 – Sync indicator
   ========================================= */
.cpa-sync-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: #27ae60;
    font-weight: 500;
    padding: 2px 8px;
    background: #eafaf1;
    border-radius: 12px;
}

.cpa-sync-badge svg {
    stroke: #27ae60;
    fill: none;
    width: 12px;
    height: 12px;
}

/* =========================================
   14. V2 – Alert button & modal
   ========================================= */
.cpa-alert-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0.35rem 0.8rem;
    margin-left: 8px;
    background: #f39c12;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cpa-alert-btn:hover {
    background: #e67e22;
}

.cpa-alert-btn svg {
    stroke: #fff;
    fill: none;
}

.cpa-alert-btn-card {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f39c12;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    flex-shrink: 0;
}

.cpa-alert-btn-card:hover {
    background: #fef9e7;
}

.cpa-alert-btn-card svg {
    stroke: #f39c12;
    fill: none;
    width: 14px;
    height: 14px;
}

/* Modal overlay */
.cpa-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cpa-modal {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: cpa-modal-in 0.3s ease;
}

@keyframes cpa-modal-in {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.cpa-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #f0f3f7;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    color: #666;
    transition: all 0.2s ease;
}

.cpa-modal-close:hover {
    background: #e0e0e0;
}

.cpa-modal h3 {
    color: #2c3f58;
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cpa-modal h3 svg {
    stroke: #f39c12;
    fill: none;
}

.cpa-modal p {
    color: #777;
    font-size: 0.88rem;
    margin: 0 0 1rem;
}

#cpa-alert-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

#cpa-alert-email {
    padding: 0.65rem 0.9rem;
    border: 2px solid #e8edf3;
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s ease;
}

#cpa-alert-email:focus {
    border-color: #2c3f58;
}

.cpa-alert-submit {
    padding: 0.65rem;
    background: #f39c12;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cpa-alert-submit:hover {
    background: #e67e22;
}

.cpa-alert-submit:disabled {
    opacity: 0.6;
    cursor: default;
}

.cpa-alert-note {
    font-size: 0.75rem !important;
    color: #bbb !important;
    margin-top: 0.5rem !important;
}

/* =========================================
   15. Responsive
   ========================================= */
@media (max-width: 991px) {
    .cpa-wishlist-grid,
    .cpa-suggestions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cpa-wishlist-grid,
    .cpa-suggestions-grid {
        grid-template-columns: 1fr;
    }

    .cpa-wishlist-card-image {
        height: 160px;
    }

    .cpa-wishlist-heart-single {
        width: 36px;
        height: 36px;
    }

    .cpa-wishlist-header-link {
        margin-left: 8px;
    }

    .cpa-wishlist-toast {
        font-size: 0.82rem;
        padding: 10px 18px;
        max-width: 90vw;
        white-space: normal;
        text-align: center;
    }

    .cpa-wishlist-count-bar {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .cpa-wishlist-btn-clear {
        margin-left: 0;
    }

    .cpa-compare-selector {
        grid-template-columns: 1fr;
    }

    .cpa-compare-tbl {
        font-size: 0.8rem;
    }

    .cpa-compare-tbl th,
    .cpa-compare-tbl td {
        padding: 0.5rem;
        min-width: 120px;
    }

    .cpa-wishlist-title-row {
        flex-wrap: wrap;
    }

    .cpa-alert-btn {
        margin-left: 0;
        margin-top: 8px;
    }
}

/* Google Rating Stars */
.cpa-rating-stars {
    color: #f5a623;
    font-size: 1.1em;
    letter-spacing: 1px;
}
