/* /Pages/Admin/Customers.razor.rz.scp.css */
.customers-container[b-52xuoj8pxg] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.header-section[b-52xuoj8pxg] {
    margin-bottom: 2rem;
}

    .header-section h1[b-52xuoj8pxg] {
        color: var(--primary-color);
        margin-bottom: 1.5rem;
    }

.filters[b-52xuoj8pxg] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.search-box[b-52xuoj8pxg] {
    position: relative;
    flex: 1;
    min-width: 250px;
}

    .search-box i[b-52xuoj8pxg] {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: #666;
    }

    .search-box input[b-52xuoj8pxg] {
        width: 100%;
        padding: 0.75rem 1rem 0.75rem 2.5rem;
        border: 1px solid var(--border-color);
        border-radius: 5px;
        font-size: 1rem;
    }

.filter-group[b-52xuoj8pxg] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-select[b-52xuoj8pxg], .filter-date[b-52xuoj8pxg] {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    min-width: 150px;
}

.status-badge[b-52xuoj8pxg] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-inactive[b-52xuoj8pxg] {
    background-color: #FFF3CD;
    color: #856404;
}

.status-no-register[b-52xuoj8pxg] {
    background-color: #CCE5FF;
    color: #004085;
}

.status-active[b-52xuoj8pxg] {
    background-color: #D4EDDA;
    color: #155724;
}

.no-orders[b-52xuoj8pxg] {
    text-align: center;
    padding: 3rem;
    background: var(--light-bg);
    border-radius: 10px;
}

    .no-orders i[b-52xuoj8pxg] {
        font-size: 3rem;
        color: #666;
        margin-bottom: 1rem;
    }

.pagination[b-52xuoj8pxg] {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.page-btn[b-52xuoj8pxg] {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    background: var(--white);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .page-btn:hover:not(:disabled)[b-52xuoj8pxg] {
        background: var(--accent-color);
        color: var(--white);
    }

    .page-btn.active[b-52xuoj8pxg] {
        background: var(--accent-color);
        color: var(--white);
        border-color: var(--accent-color);
    }

    .page-btn:disabled[b-52xuoj8pxg] {
        opacity: 0.5;
        cursor: not-allowed;
    }

.action-btn[b-52xuoj8pxg] {
    font-weight: 500;
    font-size: 14px;
}


.copy-hover-group[b-52xuoj8pxg] {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.copy-hover-icon[b-52xuoj8pxg] {
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}

.copy-hover-group:hover .copy-hover-icon[b-52xuoj8pxg] {
    opacity: 1;
    pointer-events: auto;
}

/* /Pages/Customer/CustomerHomePage.razor.rz.scp.css */
.dashboard-container[b-9fhstxmd9q] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    justify-self: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.welcome-section[b-9fhstxmd9q] {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--dark-green-hover) 100%);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    color: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.profile-header[b-9fhstxmd9q] {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.profile-pic[b-9fhstxmd9q] {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--white);
}

.avatar[b-9fhstxmd9q] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-title[b-9fhstxmd9q] {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.quick-access-cards[b-9fhstxmd9q] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.card[b-9fhstxmd9q] {
    background: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

    .card:hover[b-9fhstxmd9q] {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-color: var(--dark-green);
    }

    .card i[b-9fhstxmd9q] {
        font-size: 2rem;
        color: var(--dark-green);
        margin-bottom: 1rem;
    }

    .card h3[b-9fhstxmd9q] {
        color: var(--dark-green);
        margin: 0.5rem 0;
    }

.recent-orders[b-9fhstxmd9q] {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.orders-container[b-9fhstxmd9q] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.order-card[b-9fhstxmd9q] {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 1rem;
    transition: transform 0.3s ease;
    background: var(--light-bg);
}

    .order-card:hover[b-9fhstxmd9q] {
        transform: scale(1.02);
        border-color: var(--dark-green);
    }

.order-header[b-9fhstxmd9q] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.status-badge[b-9fhstxmd9q] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0.5rem 0;
}

.status-pending[b-9fhstxmd9q] {
    background-color: #FFF3CD;
    color: #856404;
}

.status-processing[b-9fhstxmd9q] {
    background-color: #CCE5FF;
    color: #004085;
}

.status-shipped[b-9fhstxmd9q] {
    background-color: #D4EDDA;
    color: #155724;
}

.view-details-btn[b-9fhstxmd9q] {
    width: 100%;
    background-color: var(--dark-green);
    color: var(--white);
    border: none;
    padding: 0.75rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
    font-weight: 500;
}

    .view-details-btn:hover[b-9fhstxmd9q] {
        background-color: var(--dark-green-hover);
    }

@keyframes fadeIn-b-9fhstxmd9q {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .dashboard-container[b-9fhstxmd9q] {
        padding: 1rem;
    }

    .profile-header[b-9fhstxmd9q] {
        flex-direction: column;
        text-align: center;
    }

    .welcome-text h1[b-9fhstxmd9q] {
        font-size: 1.5rem;
    }
}
/* /Pages/Customer/LoginPage.razor.rz.scp.css */
/* /Pages/Customer/OrderHistory.razor.rz.scp.css */


.history-container[b-jgyp78vc2r] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.header-section[b-jgyp78vc2r] {
    margin-bottom: 2rem;
}

    .header-section h1[b-jgyp78vc2r] {
        color: var(--primary-color);
        margin-bottom: 1.5rem;
    }

.filters[b-jgyp78vc2r] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.search-box[b-jgyp78vc2r] {
    position: relative;
    flex: 1;
    min-width: 250px;
}

    .search-box i[b-jgyp78vc2r] {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: #666;
    }

    .search-box input[b-jgyp78vc2r] {
        width: 100%;
        padding: 0.75rem 1rem 0.75rem 2.5rem;
        border: 1px solid var(--border-color);
        border-radius: 5px;
        font-size: 1rem;
    }

.filter-group[b-jgyp78vc2r] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-select[b-jgyp78vc2r], .filter-date[b-jgyp78vc2r] {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    min-width: 150px;
}

.date-filter[b-jgyp78vc2r] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.orders-grid[b-jgyp78vc2r] {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.order-card[b-jgyp78vc2r] {
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    transition: box-shadow 0.3s ease;
}

    .order-card:hover[b-jgyp78vc2r] {
        box-shadow: 0 5px 15px var(--shadow-color);
    }

.order-header[b-jgyp78vc2r] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.order-main-info h3[b-jgyp78vc2r] {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
}

.status-badge[b-jgyp78vc2r] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-pending[b-jgyp78vc2r] {
    background-color: #FFF3CD;
    color: #856404;
}

.status-processing[b-jgyp78vc2r] {
    background-color: #CCE5FF;
    color: #004085;
}

.status-shipped[b-jgyp78vc2r] {
    background-color: #D4EDDA;
    color: #155724;
}
.order-date[b-jgyp78vc2r] {
    color: #666;
    font-size: 0.9rem;
}

    .order-date i[b-jgyp78vc2r] {
        margin-right: 0.5rem;
    }

.order-items[b-jgyp78vc2r] {
    margin: 1rem 0;
}

.order-item[b-jgyp78vc2r] {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.item-image[b-jgyp78vc2r] {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
}

    .item-image img[b-jgyp78vc2r] {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.item-details[b-jgyp78vc2r] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item-name[b-jgyp78vc2r] {
    font-weight: 500;
    color: var(--text-color);
}

.item-quantity[b-jgyp78vc2r] {
    color: #666;
    font-size: 0.9rem;
}

.item-price[b-jgyp78vc2r] {
    font-weight: 500;
    color: var(--accent-color);
}

.more-items[b-jgyp78vc2r] {
    text-align: center;
    padding: 0.5rem;
    color: #666;
    font-style: italic;
}

.order-footer[b-jgyp78vc2r] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.order-summary[b-jgyp78vc2r] {
    flex: 1;
}

.summary-item[b-jgyp78vc2r] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: #666;
}

    .summary-item.total[b-jgyp78vc2r] {
        font-weight: 600;
        color: var(--text-color);
        font-size: 1.1rem;
    }

.details-btn[b-jgyp78vc2r] {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    margin-left: 0.7rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

    .details-btn:hover[b-jgyp78vc2r] {
        background-color: var(--primary-color);
    }

.no-orders[b-jgyp78vc2r] {
    text-align: center;
    padding: 3rem;
    background: var(--light-bg);
    border-radius: 10px;
}

    .no-orders i[b-jgyp78vc2r] {
        font-size: 3rem;
        color: #666;
        margin-bottom: 1rem;
    }

.pagination[b-jgyp78vc2r] {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.page-btn[b-jgyp78vc2r] {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    background: var(--white);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .page-btn:hover:not(:disabled)[b-jgyp78vc2r] {
        background: var(--accent-color);
        color: var(--white);
    }

    .page-btn.active[b-jgyp78vc2r] {
        background: var(--accent-color);
        color: var(--white);
        border-color: var(--accent-color);
    }

    .page-btn:disabled[b-jgyp78vc2r] {
        opacity: 0.5;
        cursor: not-allowed;
    }

@media (max-width: 768px) {
    .history-container[b-jgyp78vc2r] {
        padding: 1rem;
    }

    .filters[b-jgyp78vc2r] {
        flex-direction: column;
    }

    .filter-group[b-jgyp78vc2r] {
        flex-direction: column;
    }

    .order-footer[b-jgyp78vc2r] {
        flex-direction: column;
        gap: 1rem;
    }

    .details-btn[b-jgyp78vc2r] {
        width: 100%;
    }
}
/* /Pages/GeneralInfo/ContactPage.razor.rz.scp.css */
:root[b-qoftlz5jfu] {
    --primary-color: #19a55f;
    --secondary-color: #04572d;
    --text-color: #333;
    --background-color: #f4f4f4;
}

body[b-qoftlz5jfu], html[b-qoftlz5jfu] {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}
.container[b-qoftlz5jfu] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header[b-qoftlz5jfu] {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 0;
    text-align: center;
}
h1[b-qoftlz5jfu], h2[b-qoftlz5jfu] {
    margin: 0;
}
.content[b-qoftlz5jfu] {
    padding: 3rem 0;
}
.grid[b-qoftlz5jfu] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.contact-form[b-qoftlz5jfu], .contact-info[b-qoftlz5jfu] {
    background: white;
    border-radius: 5px;
    padding: 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.contact-form h2[b-qoftlz5jfu], .contact-info h2[b-qoftlz5jfu] {
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.form-group[b-qoftlz5jfu] {
    margin-bottom: 1rem;
}
label[b-qoftlz5jfu] {
    display: block;
    margin-bottom: 0.5rem;
}
input[b-qoftlz5jfu], textarea[b-qoftlz5jfu] {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}
button[b-qoftlz5jfu] {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
button:hover[b-qoftlz5jfu] {
    background-color: var(--secondary-color);
}
.contact-info ul[b-qoftlz5jfu] {
    list-style-type: none;
    padding: 0;
}
.contact-info li[b-qoftlz5jfu] {
    margin-bottom: 0.5rem;
}
.map[b-qoftlz5jfu] {
    height: 300px;
    background-color: #e9e9e9;
    border-radius: 5px;
    margin-top: 2rem;
}
footer[b-qoftlz5jfu] {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

/* Animaciones */
.fade-in[b-qoftlz5jfu] {
    opacity: 1;
    transform: translateY(0px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.appear[b-qoftlz5jfu] {
    opacity: 1;
    transform: translateY(0);
}
/* /Pages/GeneralInfo/Nosotros.razor.rz.scp.css */
:root[b-hwpvoayfc7] {
    --primary-color: #19a55f;
    --secondary-color: #04572d;
    --text-color: #333;
    --background-color: #f4f4f4;
}

body[b-hwpvoayfc7], html[b-hwpvoayfc7] {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container[b-hwpvoayfc7] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header[b-hwpvoayfc7] {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 0;
    text-align: center;
}

h1[b-hwpvoayfc7] {
    margin: 0;
    font-size: 2.5rem;
}

.hero[b-hwpvoayfc7] {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero[b-hwpvoayfc7]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 87, 45, 0.7);
}

.hero-content[b-hwpvoayfc7] {
    z-index: 1;
} 

.hero h2[b-hwpvoayfc7] {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.content[b-hwpvoayfc7] {
    padding: 3rem 0;
}

.content h3[b-hwpvoayfc7] {
    color: var(--primary-color);
}

.grid[b-hwpvoayfc7] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card[b-hwpvoayfc7] {
    background: white;
    border-radius: 5px;
    padding: 1.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover[b-hwpvoayfc7] {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

footer[b-hwpvoayfc7] {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

/*#region Animaciones de entrada */
.fade-in[b-hwpvoayfc7] {
    opacity: 1;
    text-align: justify;
    transform: translateY(0);
    animation: appear-b-hwpvoayfc7 0.5s ease;
}

@keyframes appear-b-hwpvoayfc7 {
    0% {
        opacity: 0;
        transform: translateY(-5rem); /* Comienza desplazado hacia arriba */
    }

    100% {
        opacity: 1;
        transform: translateY(0); /* Termina en su posición original */
    }
}

.fade-in.card:hover > h4[b-hwpvoayfc7] {
    color: #158A3E;
}
/*#endregion*/

/*#region Efectos hover adicionales */
h3[b-hwpvoayfc7] {
    position: relative !important;
    display: inline-block !important;
}

h3[b-hwpvoayfc7]::after {
    content: '' !important;
    position: absolute !important;
    width: 0 !important;
    height: 2px !important;
    bottom: 0 !important;
    left: 0 !important;
    background-color: var(--primary-color)  !important;
    transition: width 0.3s ease !important;
}

h3:hover[b-hwpvoayfc7]::after {
    width: 100% !important;
}
/*#endregion*/

/*#region Estilo adicional para los botones */
.btn[b-hwpvoayfc7] {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover[b-hwpvoayfc7] {
    background-color: var(--secondary-color);
}
/*#endregion*/
/* /Pages/GeneralInfo/Privacidad.razor.rz.scp.css */
:root[b-yu2yoc6mw0] {
    --primary-color: #19a55f;
    --secondary-color: #04572d;
    --text-color: #333;
    --background-color: #f4f4f4;
}

body[b-yu2yoc6mw0], html[b-yu2yoc6mw0] {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}
.container[b-yu2yoc6mw0] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header[b-yu2yoc6mw0] {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 0;
    text-align: center;
}
h1[b-yu2yoc6mw0], h2[b-yu2yoc6mw0] {
    margin: 0;
}
.content[b-yu2yoc6mw0] {
    background-color: white;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.privacy-section[b-yu2yoc6mw0] {
    margin-bottom: 2rem;
}
.privacy-section h2[b-yu2yoc6mw0] {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}
.privacy-section ul[b-yu2yoc6mw0] {
    padding-left: 20px;
}
.privacy-section li[b-yu2yoc6mw0] {
    margin-bottom: 0.5rem;
}
footer[b-yu2yoc6mw0] {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}
.fade-in[b-yu2yoc6mw0] {
    opacity: 1;
    transform: translateY(0px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.appear[b-yu2yoc6mw0] {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 768px) {
    .content[b-yu2yoc6mw0] {
        padding: 1rem;
    }
}
/* /Pages/Health.razor.rz.scp.css */
.health-status-container[b-607slqd0j7] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}
.health-status-card[b-607slqd0j7] {
    background: #f8f9fa;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 2rem 3rem;
    text-align: center;
    min-width: 320px;
}
.health-icon[b-607slqd0j7] {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 0.5rem;
}
/* /Pages/Producto.razor.rz.scp.css */
.product-container[b-n07ql23fid] {
    position: relative;
    padding-bottom: 50px ;
    padding-top: 50px ;
    min-height: 50%;
    align-content: center;
}

.product-Info-container[b-n07ql23fid] {
    justify-content: center;
    align-content: center;
    padding: 50px 100px;
}

.product-image-container[b-n07ql23fid] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image[b-n07ql23fid] {
    object-fit: contain;
    max-width: 450px;
    max-height: 260px;
}

.product-description[b-n07ql23fid] {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-description-category-container[b-n07ql23fid] {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 5px;
}

.product-description-category-badge[b-n07ql23fid] {
    font-size: 15px;
}

.image-preview[b-n07ql23fid] {
    display: none; /* Hide by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    border: none;
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: none;
    z-index: 20;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    justify-content: center;
    align-items: center;
}

/*#region Zoom img*/
.image-zoom-out[b-n07ql23fid] {
    position: absolute;
    max-width: 85vw;
    max-height: 85vh;
    transform: scale(1) !important;
    translate: 0 0 !important;
    cursor: zoom-in;
    transition: transform 0.5s ease;
}

.image-zoom-in[b-n07ql23fid] {
    position: absolute;
    max-width: 100vw;
    max-height: 100vh;
    transform: scale(2);
    cursor: zoom-out;
    transition: transform 0.5s ease;
}

@media(max-width: 70rem) {
    .image-zoom-in[b-n07ql23fid] {
        position: absolute;
        max-width: 85vw;
        max-height: 85vh;
        transform: scale(1) !important;
        translate: 0 0;
        cursor: zoom-in;
        transition: transform 0.5s ease;
    }
}
/*#endregion */

.product-image-container[b-n07ql23fid] {
    position: relative; /* Ensure the preview appears relative to this container */
}

    .product-image-container .image-preview.show[b-n07ql23fid] {
        display: flex;
        opacity: 1;
    }

.product-price[b-n07ql23fid] {
    display: block;
    width: 100%;
}

.image-preview .close-btn[b-n07ql23fid] {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.close-btn[b-n07ql23fid] {
    z-index: 21;
    background-color: transparent;
}

.gold-word[b-n07ql23fid] {
    color: var(--gold);
}
    .gold-word:hover[b-n07ql23fid] {
        background-color: var(--gold);
        color: var(--white);
    }

.green-word[b-n07ql23fid] {
    background-color: var(--dark-green);
    color: var(--white);
}
    .green-word:hover[b-n07ql23fid] {
        background-color: var(--dark-green-hover);
        color: var(--white);
    }

.product-description > div[b-n07ql23fid] >  .add-to-cart-container {
    justify-content: flex-start !important;
    align-items: center !important;
}
/* /Shared/Components/ItemCard.razor.rz.scp.css */
.card[b-o1w00anndi] {
    border-radius: 12px;
    max-width: 260px;
}
@media (max-width: 768px) {
    .card[b-o1w00anndi] {
        border-radius: 12px;
        max-width: 500px;
    }
}
    .article-card-img[b-o1w00anndi] {

        width: 240px;
        object-fit: scale-down;
        max-width: 100%;
        transition: max-height 0.15s ease-out;
    }

    .article-card-body:hover[b-o1w00anndi] {
        cursor: pointer;
        transform: scale(1.05);
        box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.5);
        background-color: var(--white);
    }

    .article-card-body[b-o1w00anndi] {
        height: 400px;
        max-width: 500px;
        display: block;
        overflow: hidden;
        border-radius: 12px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        background-color: var(--white);
    }

    .article-card-footer[b-o1w00anndi] {
        position: relative;
        bottom: 0;
        width: 100%;
    }

    .article-card-info[b-o1w00anndi] {
        width: 100%;
        height: 5.3rem;
        flex-grow: 1; /* Allows the element to grow and fill the remaining space */
    }

    .article-card-label[b-o1w00anndi] {
        font-size: small;
        font-weight: bolder;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* Número de líneas que puede mostrar como maximo */
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .article-card-measure[b-o1w00anndi] {
        font-size: small;
        font-weight: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* Número de líneas que puede mostrar como maximo */
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
    }

    .article-card-price[b-o1w00anndi] {
        width: 90%;
        font-size: larger;
        font-weight: bolder;
        background-color: #00000000;
        display: block;
        text-align: left;
    }

    .article-card-line[b-o1w00anndi] {
        border: none;
        border-top: 3px dotted #000f;
        color: #ffffff;
        background-color: #ffffff;
        height: 0px;
    }

    .article-card-img-container[b-o1w00anndi]{
        height:60%;
    }
/* /Shared/Components/ItemCatalog.razor.rz.scp.css */


.Item-container[b-lbpa58xquy]{
    max-width: 260px;
    margin-top: 2px;
    margin-bottom: 18px;
}

@media (max-width: 768px) {
    .Item-container[b-lbpa58xquy] {
        max-width: 450px;
        margin-top: 2px;
        margin-bottom: 18px;
    }
}

/* Anular estilos de row cuando está dentro de popularesSideBar */
.popularesSideBar .row.mt-2.m-0[b-lbpa58xquy] {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
/* /Shared/Components/ItemsModal.razor.rz.scp.css */

.modalBody[b-8o5s9evzca] {
    width: 100%;
    height: 60%;
    justify-content: center;
    background: rgba(157, 157, 157, 1);
    align-items: center;
    position: absolute;
    max-height: 500px;
}

.itemView[b-8o5s9evzca] {
    width: 92%;
    height: 100%;
    background: rgba(234, 234, 234, 1);
    border-radius: 8px;
}

.articleInfo[b-8o5s9evzca] {
    padding: 20px;
}

.itemName[b-8o5s9evzca] {
    font-size: 48px;
}

.article-line[b-8o5s9evzca] {
    border: none;
    border-top: 3px dotted #000f;
    color: #ffffff;
    background-color: #ffffff;
    height: 0px;
}

.itemDescription[b-8o5s9evzca] {
    font-weight: lighter;
}

.article-img[b-8o5s9evzca] {
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.relatedItemsSection[b-8o5s9evzca] {
    width: 96%;
    margin-bottom: 10px;
    margin-top: 10px;
    justify-content: start;
    align-items: start;
}

.itemInfo-label[b-8o5s9evzca] {
    padding: 14px;
}

.modal-scrim[b-8o5s9evzca] {
    background: rgba(0, 0, 0, 0.67);
}



.arrow[b-8o5s9evzca] {
    border: solid #575757;
    height: 27px;
    line-height: 27px;
    margin: auto;
    border-width: 0 10px 10px 0;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    padding: 8px;
}

.right[b-8o5s9evzca] {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    justify-content: end;
    align-items: end;
}

.left[b-8o5s9evzca] {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.articleList[b-8o5s9evzca] {
    width: 100%;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    display: inline-flex;
    margin-bottom: 20px;
    margin-top: 20px;
}

.article-card-img[b-8o5s9evzca] {
    width: 80%;
    height: 80%;
    border-radius: 10px;
}
/* /Shared/Components/Items/ItemsDestacados.razor.rz.scp.css */
/* /Shared/Components/Items/ItemsPopulares.razor.rz.scp.css */
.populares-title[b-yq38wl0faz] {
    padding-left:0.4rem ;
    margin-bottom: 1rem;
    text-align: left;
    font-size: 1.90rem;
    margin-top: 2.45rem;
    width: 100%;
}
/* /Shared/Components/LoadingDialog.razor.rz.scp.css */
.sag-loading-modal-body[b-6d5w4aex87] {
    width: 100%;
    height: 40%;
    justify-content: center;
    background: rgba(157, 157, 157, 1);
    align-items: center;
    position: absolute;
    max-height: 500px;
    border:0;     
}

.itemView[b-6d5w4aex87] {
    width: 92%;
    height: 100%;
    background: rgba(234, 234, 234, 1);
    border-radius: 8px;
}

.articleInfo[b-6d5w4aex87] {
    padding: 20px;
}

.itemName[b-6d5w4aex87] {
    font-size: 48px;
}

.article-line[b-6d5w4aex87] {
    border: none;
    border-top: 3px dotted #000f;
    color: #ffffff;
    background-color: #ffffff;
    height: 0px;
}

.itemDescription[b-6d5w4aex87] {
    font-weight: lighter;
}

.article-img[b-6d5w4aex87] {
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.relatedItemsSection[b-6d5w4aex87] {
    width: 96%;
    margin-bottom: 10px;
    margin-top: 10px;
    justify-content: start;
    align-items: start;
}

.itemInfo-label[b-6d5w4aex87] {
    padding: 14px;
}

.modal-scrim[b-6d5w4aex87] {
    background: rgba(0, 0, 0, 0.67);
}

.arrow[b-6d5w4aex87] {
    border: solid #575757;
    height: 27px;
    line-height: 27px;
    margin: auto;
    border-width: 0 10px 10px 0;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    padding: 8px;
}

.right[b-6d5w4aex87] {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    justify-content: end;
    align-items: end;
}

.left[b-6d5w4aex87] {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.articleList[b-6d5w4aex87] {
    width: 100%;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    display: inline-flex;
    margin-bottom: 20px;
    margin-top: 20px;
}

.article-card-img[b-6d5w4aex87] {
    width: 80%;
    height: 80%;
    border-radius: 10px;
}


.sag-loading-image-container[b-6d5w4aex87] {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
}

.sag-loading-image[b-6d5w4aex87] {
    height: 50%;
    width: 60%;
    animation: spin-b-6d5w4aex87 1.75s linear infinite;
}

.shadow-filter[b-6d5w4aex87] {
    filter: drop-shadow(0 0 40px rgba(0, 0, 0, 1));
}

@keyframes spin-b-6d5w4aex87 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* /Shared/Components/LogoutButton.razor.rz.scp.css */
.btn-logout[b-se1rtl517o] {
    background-color: transparent;
    color: #ffffff;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.btn-logout:hover[b-se1rtl517o] {
    color: #f8c471;
}

.btn-logout:focus[b-se1rtl517o] {
    outline: none;
}
/* /Shared/Components/MainCategorias.razor.rz.scp.css */
.sub-categorias-grid[b-mfx3s6g0cg] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border: 20px solid var(--gold);
    border-radius: 10px; 
    padding: 20px; 
}

@media(max-width: 770px) {
    .sub-categorias-grid[b-mfx3s6g0cg] {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

    .sub-categorias-grid a[b-mfx3s6g0cg] {
        -webkit-text-decoration: none;
        text-decoration: none;
    }

.sub-categoria-item[b-mfx3s6g0cg] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pushIn-b-mfx3s6g0cg 0.5s ease forwards;
    opacity: 0;
}

    .sub-categoria-item:nth-child(1)[b-mfx3s6g0cg] {
        animation-delay: 0.1s;
    }

    .sub-categoria-item:nth-child(2)[b-mfx3s6g0cg] {
        animation-delay: 0.2s;
    }

    .sub-categoria-item:nth-child(3)[b-mfx3s6g0cg] {
        animation-delay: 0.3s;
    }

    .sub-categoria-item:nth-child(4)[b-mfx3s6g0cg] {
        animation-delay: 0.4s;
    }

    .sub-categoria-item:nth-child(5)[b-mfx3s6g0cg] {
        animation-delay: 0.5s;
    }

    .sub-categoria-item:nth-child(6)[b-mfx3s6g0cg] {
        animation-delay: 0.6s;
    }

    .sub-categoria-item:nth-child(7)[b-mfx3s6g0cg] {
        animation-delay: 0.7s;
    }

    .sub-categoria-item:nth-child(8)[b-mfx3s6g0cg] {
        animation-delay: 0.8s;
    }

    .sub-categoria-item:nth-child(9)[b-mfx3s6g0cg] {
        animation-delay: 0.9s;
    }

@keyframes pushIn-b-mfx3s6g0cg {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

    .sub-categoria-item:hover .sub-categoria-image[b-mfx3s6g0cg] {
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    .sub-categoria-item:hover .sub-categoria-description[b-mfx3s6g0cg] {
        transform: scale(1.03);
        color: coral;
    }

.sub-categoria-image[b-mfx3s6g0cg] {
    width: 200px;
    height: 200px;
    border-radius: 80%;
    object-fit: cover;
    margin-bottom: 10px;
    background-color: #808080;
}

.sub-categoria-description[b-mfx3s6g0cg] {
    font-size: 1em;
    color: #333;
}
/* /Shared/Components/NavBar.razor.rz.scp.css */
.commerse-navbar[b-5brq72h20m] {
    background-color: #e26400 !important;
}

    .commerse-navbar a[b-5brq72h20m] {
        color: white;
    }

    .commerse-navbar li[b-5brq72h20m] {
        color: white;
    }

.dropdown-menu[b-5brq72h20m] {
    background-color: #e26400 !important;
}

.search-button[b-5brq72h20m] {
    background-color: white;
    border-color: white;
    margin-left: -50px;
}

    .search-button:active[b-5brq72h20m] {
        border-color: white;
    }


.search-textBox[b-5brq72h20m] {
    background-color: white;
    border-color: white;
    border-radius: 25px;
}

/*----------------------*/

/*#region Navbar container */
.cn-navbar[b-5brq72h20m] {
    overflow: hidden;
    background-color: var(--dark-green);
    font-family: Arial;
    flex-wrap: wrap;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    /* Links inside the navbar */
    .cn-navbar a[b-5brq72h20m] {
        float: left;
        font-size: 16px;
        color: white;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
    }
/*#endregion */

/*#region The dropdown container */
.cn-dropdown[b-5brq72h20m] {
    float: left;
}

    /* Dropdown button */
    .cn-dropdown .cn-dropbtn[b-5brq72h20m] {
        border: none;
        color: white;
        font: inherit;
        display: flex;
        align-items: center;
        gap: 0px;
        cursor: pointer;
    }

        /* Ocultar la flecha de Categorías por defecto */
        .cn-dropdown .cn-dropbtn i[b-5brq72h20m] {
            opacity: 0;
            width: 0;
            margin-left: 0 !important;
            overflow: hidden;
            transition: opacity 0.2s ease-in-out, width 0.2s ease-in-out, margin-left 0.2s ease-in-out;
        }

    /* Mostrar la flecha al hacer hover */
    .cn-dropdown:hover .cn-dropbtn i[b-5brq72h20m] {
        opacity: 1;
        width: auto;
        margin-left: 0.25rem !important;
    }

    /* Mostrar la flecha cuando está expandido */
    .cn-dropdown-content.show ~ .cn-dropbtn i[b-5brq72h20m],
    .cn-dropdown .cn-dropbtn:has(+ .cn-dropdown-content.show) i[b-5brq72h20m] {
        opacity: 1;
        width: auto;
        margin-left: 0.25rem !important;
    }

    .cn-navbar a:hover[b-5brq72h20m], .cn-dropdown:hover .cn-dropbtn[b-5brq72h20m] {
        background-color: var(--gold);
        color: var(--dark-green);
    }


.cn-dropdown-content[b-5brq72h20m] {
    display: none;
    position: absolute;
    border-radius: 5px 5px;
    background-color: #f9f9f9;
    width: 100%;
    left: 0;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

    .cn-dropdown-content.show[b-5brq72h20m] {
        display: block;
    }

    .cn-dropdown-content .header[b-5brq72h20m] {
        background-color: var(--gold);
        padding: 16px;
        color: white;
    }

.cn-dropdown-list[b-5brq72h20m] {
    padding: 10px;
}
/*#endregion */

.cn-column[b-5brq72h20m] {
    float: left;
    width: 33.33%;
    padding: 10px;
    background-color: white;
    height: 250px;
}

    .cn-column a[b-5brq72h20m] {
        float: none;
        color: black;
        padding: 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

        .cn-column a:hover[b-5brq72h20m] {
            background-color: #ddd;
        }

.cn-row[b-5brq72h20m]:after {
    content: '';
    display: table;
    clear: both;
}

/*--------------------*/

/*#region Dropdown Button */
.cni-dropbtn[b-5brq72h20m] {
    color: black;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

    /* Ocultar la flecha por defecto */
    .cni-dropbtn i[b-5brq72h20m] {
        opacity: 0;
        transition: opacity 0.2s ease-in-out;
    }

/* Mostrar la flecha al hacer hover */
.cni-dropdown:hover .cni-dropbtn i[b-5brq72h20m] {
    opacity: 1;
}

/* Mostrar la flecha cuando está expandido */
.cni-dropdown-content.show ~ .cni-dropbtn i[b-5brq72h20m] {
    opacity: 1;
}

.cni-dropdown[b-5brq72h20m] {
    position: relative;
    display: inline-block;
}

.cni-dropdown-content[b-5brq72h20m] {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 100%;
    z-index: 1;
    font-size: 0.8rem;
}

    .cni-dropdown-content.show[b-5brq72h20m] {
        display: flex;
        flex-direction: column;
    }

    /* Links inside the dropdown */
    .cni-dropdown-content a[b-5brq72h20m] {
        color: black;
        padding: 5px 10px;
        text-decoration: none;
        display: block;
    }

        .cni-dropdown-content a:hover[b-5brq72h20m] {
            background-color: #ddd;
        }

.cni-dropdown:hover[b-5brq72h20m] {
    background-color: var(--gold);
    color: white;
}

    .cni-dropdown:hover .cni-dropbtn[b-5brq72h20m] {
        color: white !important;
    }

.cni-dropbtn:hover[b-5brq72h20m] {
    background-color: var(--gold);
    color: white;
}
/*#endregion */

/*------------estilos Navbar------------------*/

.cn-nav[b-5brq72h20m] {
    background-color: var(--dark-green);
}

.cn-nav-logo[b-5brq72h20m] {
    display: flex;
    align-items: center;
    padding: 25px;
    color: white;
}

.cn-nav-logo-container a[b-5brq72h20m] {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cn-nav-logo a[b-5brq72h20m] {
    color: white;
    display: flex;
    align-content: center;
}

.cn-nav-logo img[b-5brq72h20m] {
    width: 300px;
}

.cn-nav-input-section[b-5brq72h20m] {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    gap: 5px;
    justify-content: flex-end;
}

.cn-nav-search-section[b-5brq72h20m] {
    display: flex;
    align-items: center;
}

.cn-nav-option-section[b-5brq72h20m] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 50px;
    flex-wrap: wrap;
}

    .cn-nav-option-section a[b-5brq72h20m] {
        text-decoration: none;
    }

    .cn-nav-option-section * * a[b-5brq72h20m] {
        text-decoration: none;
    }

.cn-navbar-toggler[b-5brq72h20m] {
    display: none;
}

@media (width <= 768px) {
    .cn-nav-logo img[b-5brq72h20m] {
        width: 200px;
    }

    .cn-nav-option-section[b-5brq72h20m] {
        display: none
    }

    .cn-nav-option-section-toggled[b-5brq72h20m] {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 5px;
        min-height: 50px;
        flex-direction: column;
        animation: fadeIn 2s ease-in-out forwards;
    }

    .cn-nav-input-section[b-5brq72h20m]{
        padding: 20px;
    }

    .navbar-toggler[b-5brq72h20m]{
        display: flow !important;
    }

    .cn-nav-logo-container[b-5brq72h20m] {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .cn-navbar-toggler[b-5brq72h20m] {
        display:flow;
        position: absolute;
        right:0.9rem;
        background: transparent;
        border-style: solid;
        border-radius: 5px;
        margin-right: 10px;
        height: 45px;
        width: 45px;
        border-color: white;
        color:white;
    }
}

.cn-nav-option-item[b-5brq72h20m] {
    padding: 10px 10px;
    color: white;
}

    .cn-nav-option-item:hover[b-5brq72h20m] {
        background-color: var(--dark-green)
    }

.cn-sticky[b-5brq72h20m] {
    position: fixed;
    top: 0;
    width: 100%;
    z-index:1;
}

/*the container must be positioned relative:*/
.autocomplete[b-5brq72h20m] {
    position: relative;
    display: inline-block;
    width: 100%;
}

input[b-5brq72h20m] {
    border: 1px solid transparent;
    background-color: #f1f1f1;
    padding: 10px;
    font-size: 16px;
}

    input[type=text][b-5brq72h20m] {
        background-color: #f1f1f1;
        width: 100%;
    }

    input[type=submit][b-5brq72h20m] {
        background-color: DodgerBlue;
        color: #fff;
        cursor: pointer;
    }

/* Estilo por defecto para ocultar las sugerencias */

.autocomplete-items[b-5brq72h20m] {
    display: none;
    position: absolute;
    background-color: white;
    z-index: 99;
    top: 100%;
    left: 6px;
    right: 0;
    border-radius: 15px;
    overflow: hidden;
}
/* Mostrar las sugerencias cuando se hace hover en el input */
.autocomplete:hover .autocomplete-items[b-5brq72h20m] {
    display: block;
}

.autocomplete-items div[b-5brq72h20m] {
    width: 99%;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
}

    .autocomplete-items div:hover[b-5brq72h20m] {
        background-color: #e9e9e9;
    }

.autocomplete-active[b-5brq72h20m] {
    background-color: DodgerBlue !important;
    color: #ffffff;
}

.selected-item[b-5brq72h20m] {
    border: 2px solid #004085;
    background-color: #fff;
    color: #004085;
    cursor: pointer;
}

.circular-icon[b-5brq72h20m] {
    border-radius: 60%;
    display: inline-flex;
    align-items: end;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.cn-nav-option-item:hover .circular-icon[b-5brq72h20m] {
    background-color: #E8B438;
    color: white;
    transform: scale(1.1);
}
/* /Shared/Components/NoClickableItemCard.razor.rz.scp.css */
NoClickableItemCard[b-uel18prs0r]{
    display:inline-block;
    align-self: center;
}

.article-card-img[b-uel18prs0r] {
    max-height: 40% !important;
    height: auto;
    width: 100%;
}


.article-card-body[b-uel18prs0r] {

    display: inline-block;
}

.article-card-label[b-uel18prs0r] {
    margin-top: -10px;
    font-size: 20px;
}

.article-card-line[b-uel18prs0r] {
    margin-top: -30px;
    border: none;
    border-top: 3px dotted #000f;
    color: #ffffff;
    background-color: #ffffff;
    height: 0px;
}
/* /Shared/Components/PaginationController.razor.rz.scp.css */
.page-item-cursor[b-t8o7ka1jke] {
    cursor: pointer !important;
}
.disabled-link[b-t8o7ka1jke] {
    color: gray;
    pointer-events: none;
    cursor: not-allowed !important;
}
/* /Shared/Components/Popups/ConfirmationPopup/ConfirmationPopup.razor.rz.scp.css */
.icon-size[b-a1usc1xv2m]{
    font-size: 60px;
}
/* /Shared/Components/Popups/Popup.razor.rz.scp.css */
.popup-dialog[b-u5xxf63rdu] {
    border: none;
    padding: 0;
    background: transparent;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
}

    .popup-dialog[b-u5xxf63rdu]::backdrop {
        background-color: rgba(0, 0, 0, 0.4);
    }

    .popup-dialog.show[b-u5xxf63rdu] {
        opacity: 1;
        pointer-events: auto;
    }

    .popup-dialog.hide[b-u5xxf63rdu] {
        opacity: 0;
        pointer-events: none;
    }

.popup-content[b-u5xxf63rdu] {
    position: relative; /* <-- key for absolute children */
    background: white;
    border-radius: 12px;
    padding: 2.50rem 2rem;
    min-width: 300px;
    max-width: 90vw;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    animation: fadeInScale-b-u5xxf63rdu 0.3s ease-in-out;
}


@keyframes fadeInScale-b-u5xxf63rdu {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-close-button[b-u5xxf63rdu] {
    position: absolute;
    top: 0.50rem;
    right: 1rem;
    background: none;
    border: none;
    padding: 0;
    font-size: 1.50rem;
    line-height: 1;
    color: #666;
    cursor: pointer;
    z-index: 1;
    transition: color 0.2s ease;
}

    .popup-close-button:hover[b-u5xxf63rdu] {
        color: #000;
    }
/* /Shared/Components/PrimaryButton.razor.rz.scp.css */
.btn-primario[b-ornuq3vgz0] {
    margin: 5px;
    padding: 5px 10px;
    font-size: 0.9em;
    font-weight:900;
    background-color: var(--gold);
    border: none;
    color: var(--darkgreen);
    cursor: pointer;
    border-radius: 0.40rem;
    transition: background-color 0.3s;
}

    .btn-primario:hover[b-ornuq3vgz0] {
        background-color: var(--gold-hover);
    }
/* /Shared/Components/ScrollableArticleList.razor.rz.scp.css */
.scrolling-wrapper-flexbox[b-3oex6cswts] {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    .card{
    flex: 0 0 auto;
    }
}

/* /Shared/Components/SearchSuggestion.razor.rz.scp.css */

.imgAutoComplete[b-th53tt5x7e] {
    width: 50px;
    height: 50px;
}

/*the container must be positioned relative:*/
.autocomplete[b-th53tt5x7e] {
    position: relative;
    display: inline-block;
    width: 100%;
}

input[b-th53tt5x7e] {
    border: 1px solid transparent;
    background-color: #f1f1f1;
    padding: 10px;
    font-size: 16px;
}

    input[type=text][b-th53tt5x7e] {
        background-color: #f1f1f1;
        width: 100%;
    }

    input[type=submit][b-th53tt5x7e] {
        background-color: DodgerBlue;
        color: #fff;
        cursor: pointer;
    }

/* Estilo por defecto para ocultar las sugerencias */

.autocomplete-items[b-th53tt5x7e] {
    display: block;
    position: absolute;
    background-color: white;
    z-index: 99;
    top: 100%;
    left: 6px;
    right: 0;
    border-radius: 15px;
    overflow: hidden;
}
    /* Mostrar las sugerencias cuando se hace hover en el input */


    .autocomplete-items div[b-th53tt5x7e] {
        width: 99%;
        cursor: pointer;
        background-color: #fff;
        border-bottom: 1px solid #d4d4d4;
    }

        .autocomplete-items div:hover[b-th53tt5x7e] {
            background-color: #e9e9e9;
        }

.autocomplete-active[b-th53tt5x7e] {
    background-color: DodgerBlue !important;
    color: #ffffff;
}

.selected-item[b-th53tt5x7e] {
    border: 2px solid #004085;
    background-color: #fff;
    color: #004085;
    cursor: pointer;
}
/* /Shared/Components/ShoppingCart/AddToCartButton.razor.rz.scp.css */
.add-to-cart-container[b-ggotofjtyu] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.3rem;
    max-width: 100%;
    margin-bottom: 2px;
}

 .add-to-cart-container:has(.add-to-cart-btn.small) .quantity-control[b-ggotofjtyu] {
     max-height: 1.80rem;
     max-width: 50%;
 }
 .add-to-cart-container:has(.add-to-cart-btn.small) .quantity-input[b-ggotofjtyu] {
     max-height: 1.80rem;
     max-width: 100%;
 }

.add-to-cart-btn[b-ggotofjtyu] {
    background-color: var(--gold);
    color: var(--dark-green);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    width: 100%;
}

    .add-to-cart-btn:hover[b-ggotofjtyu] {
        background-color: var(--gold-hover);
    }

    .add-to-cart-btn.small[b-ggotofjtyu] {
        max-width: 50%;
        justify-content: center;
    }

    .add-to-cart-btn.full[b-ggotofjtyu] {
        max-width: 8rem;
        justify-content: center;
    }

.add-to-cart-btn-modify[b-ggotofjtyu] {
    background-color: var(--gold) !important;
}
    .add-to-cart-btn-modify:hover[b-ggotofjtyu] {
        background-color: var(--gold-hover) !important;
    }

.add-to-cart-btn-delete[b-ggotofjtyu] {
    background-color: #FF2C41 !important;
}

    .add-to-cart-btn-delete:hover[b-ggotofjtyu] {
        background-color: #C82333 !important;
    }
/* /Shared/Components/ShoppingCart/Cart.razor.rz.scp.css */
.cart-header[b-0ee8oprh4a] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3[b-0ee8oprh4a] {
    margin: 0;
}

.cart-header .checkout-button[b-0ee8oprh4a] {
    margin-left: auto;
}

.articuloImage[b-0ee8oprh4a] {
    width: 70px;
    height: 70px;
    border-radius: 10px;
}

.align-middle-rows td[b-0ee8oprh4a] {
    vertical-align: middle;
}

.padding-9[b-0ee8oprh4a] {
    padding-right: 9px !important;
}

.cart-img-column[b-0ee8oprh4a] {
    width: 100px;
    height: 100px;
    text-align: center;
}

.cart-cant[b-0ee8oprh4a] {
    text-align: left;
    font-size: xx-large;
    font-weight: bolder
}

.cart-quantity-input[b-0ee8oprh4a] {
    text-align: right;
    width: 7rem;
    border-radius: 4px;
}
/* /Shared/Components/ShoppingCart/CartButton.razor.rz.scp.css */
.cart-button-container[b-o6jlhj7d8f] {
    position: relative;
    cursor: pointer;
    display: inline-block;
    min-width: 40px;
}

.cart-button[b-o6jlhj7d8f] {
    position: relative;
    font-size: 1.3em; /* Ajusta el tamaño del botón si es necesario */
}

    .cart-button .badge[b-o6jlhj7d8f] {
        position: absolute;
        top: -5px; /* Ajusta la posición vertical del badge */
        right: -10px; /* Ajusta la posición horizontal del badge */
        background-color: red;
        color: white;
        font-size: 0.75em; /* Reduce el tamaño del texto dentro del badge */
        padding: 0.3em 0.5em; /* Ajusta el padding para hacer el badge más pequeño */
        border-radius: 50%; /* Mantiene la forma redonda del badge */
    }

.cart-preview[b-o6jlhj7d8f] {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 350px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    padding: 10px;
    border: 1px solid #ddd;
    overflow-y: scroll;
}

.cart-item-preview[b-o6jlhj7d8f] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0px;
    cursor: pointer;
    color: black; /* Set font color to black */
}

    .cart-item-preview:hover[b-o6jlhj7d8f] {
        background-color: #a3db18 !important;
    }

    .cart-item-preview:nth-child(odd)[b-o6jlhj7d8f] {
        background-color: #f9f9f9; /* Background color for odd rows */
    }

    .cart-item-preview:nth-child(even)[b-o6jlhj7d8f] {
        background-color: #e9e9e9; /* Background color for even rows */
    }

.cart-button-container:hover .cart-preview[b-o6jlhj7d8f] {
    display: block;
}

.img[b-o6jlhj7d8f] {
    width: 80px;
    height: 80px;
}


.cart-total-text[b-o6jlhj7d8f] {

    padding-top: 7px;

}

@media (max-width: 767px) {
    .cart-total-text[b-o6jlhj7d8f] {
        display: none !important;
    }
}
/* /Shared/Components/ShoppingCart/Checkout.razor.rz.scp.css */
.cart-header[b-o2s2ui7nst] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h4[b-o2s2ui7nst] {
    margin: 0;
}

    .cart-header .checkout-button[b-o2s2ui7nst] {
        margin-left: auto;
    }
    
/* /Shared/Components/ShoppingCart/OrderConfirmation.razor.rz.scp.css */
.confirmation-title[b-gyknafm497] {
    text-align: center;
    color: #4CAF50;
    margin-top: 20px;
    font-size: 2em;
    font-weight: bold;
}

.confirmation-container[b-gyknafm497] {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
}

.order-summary h3[b-gyknafm497] {
    color: var(--dark-green);
}

.logo-Image-login[b-gyknafm497] {
    max-width: 55%;
}

.order-summary p[b-gyknafm497] {
    color: #666;
    font-size: 1.1em;
}

.tracking-info[b-gyknafm497] {
    margin-top: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #f3d99c;
    border-radius: 5px;
}

.tracking-info h4[b-gyknafm497] {
    color: #333;
}

.tracking-number[b-gyknafm497] {
    font-size: 1.5em;
    color: #333;
    font-weight: lighter;
}

.actions[b-gyknafm497] {
    margin-top: 30px;
    text-align: center;
}

.actions .btn[b-gyknafm497] {
    margin: 5px;
    padding: 10px 20px;
    font-size: 1.1em;
}

.btn-primary[b-gyknafm497] {
    background-color: #4CAF50;
    border: none;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover[b-gyknafm497] {
    background-color: #45a049;
}

.btn-secondary[b-gyknafm497] {
    background-color: #f0f0f0;
    border: none;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-secondary:hover[b-gyknafm497] {
    background-color: #ddd;
}
/* /Shared/Components/SideBar/SideBar.razor.rz.scp.css */


.sidebar-container[b-7kl38guz17] {
    background-color: #678bc4;
    height: 100%;

}

.sidebar[b-7kl38guz17] {
    height: 100%;
    overflow-y: hidden;
}
/* /Shared/Components/SideBar/SideBarItem.razor.rz.scp.css */
.sidebar-item[b-ad4gpj6nmz] {
    font-size: 25px;
    color: white;
    padding: 5px;
    font-weight: lighter;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .sidebar-item:hover[b-ad4gpj6nmz] {
        text-decoration: underline;
        cursor: pointer;
    }

    .sidebar-item[b-ad4gpj6nmz]  a:hover {
        transition: 0.3s;
    }



.sidebar-sub-item[b-ad4gpj6nmz] {
    font-size: 25px;
    color: white;
    padding: 5px;
    font-weight: lighter;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 30px;
    transition: 0.3s;
}

    .sidebar-sub-item:hover[b-ad4gpj6nmz] {
        font-size: 32px;
        text-decoration: underline;
        cursor:pointer !important;
    }

.sidebar-sub-item-container[b-ad4gpj6nmz] {
    animation-name: fade-in-b-ad4gpj6nmz;
    animation-duration: 2s;
}

@keyframes fade-in-b-ad4gpj6nmz {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
/* /Shared/Components/TopNavBar.razor.rz.scp.css */


.nav-container[b-s0uvzit6as] {
    background-color: #386cb7 !important;
}


.left-border-radius[b-s0uvzit6as] {
    border-radius: 25px 0px 0px 25px;
}

.right-border-radius[b-s0uvzit6as] {
    border-radius: 0px 25px 25px 0px;
}

.search-button[b-s0uvzit6as] {
    background-color: white;
    border-color: white;
    margin-left: -50px;
}

.search-button:active[b-s0uvzit6as] {
    border-color: white;
}


.search-textBox[b-s0uvzit6as] {
    background-color: white;
    border-color: white;
    border-radius: 25px;
}

.title[b-s0uvzit6as] {
    font-size: 30px;
    text-decoration: none;
}
.title:hover[b-s0uvzit6as] {
    font-size: 40px;
}
/* /Shared/MainFooter.razor.rz.scp.css */
.footer[b-6v7zx5dqk5] {
    background-color: var(--dark-green);
    color: #fff;
    padding: 40px 0;
}

    .footer h4[b-6v7zx5dqk5] {
        margin-bottom: 20px;
        font-size: 18px;
        color: #fff;
    }

    .footer ul[b-6v7zx5dqk5] {
        list-style: none;
        padding: 0;
    }

        .footer ul li[b-6v7zx5dqk5] {
            margin-bottom: 10px;
        }

            .footer ul li a[b-6v7zx5dqk5] {
                color: #ccc;
                text-decoration: none;
            }

                .footer ul li a:hover[b-6v7zx5dqk5] {
                    color: #fff;
                    text-decoration: underline;
                }

    .footer .social-media[b-6v7zx5dqk5] {
        display: flex;
        flex-direction: column;
    }

        .footer .social-media li[b-6v7zx5dqk5] {
            display: flex;
            align-items: center;
        }

            .footer .social-media li a[b-6v7zx5dqk5] {
                display: flex;
                align-items: center;
            }

                .footer .social-media li a i[b-6v7zx5dqk5] {
                    margin-right: 10px;
                    font-size: 18px;
                }

                .footer .social-media li a:hover i[b-6v7zx5dqk5] {
                    color: #007bff;
                }
    .footer .container .row .col-md-3 h4[b-6v7zx5dqk5] {
        color: var(--gold);
    }


@media (max-width: 767px) {
    .footer .container[b-6v7zx5dqk5] {
        text-align: center;
    }

    .footer .col-sm-6[b-6v7zx5dqk5] {
        margin-bottom: 20px;
    }
}

.social-icons[b-6v7zx5dqk5] {
    display: flex;
    justify-content: flex-end;
}

.social-icon-link[b-6v7zx5dqk5] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
    border-radius: 100%;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
}

    .social-icon-link:hover[b-6v7zx5dqk5] {
        background-color: #E8B438;
        color: white;
        transform: translateY(-2px);
    }

    .social-icon-link i[b-6v7zx5dqk5] {
        font-size: 20px;
    }
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-y3wgnpebqu] {
    position: relative;
    display:flex;
    height: 100%;
    flex-direction: column;
}

main[b-y3wgnpebqu] {
    flex: 1;
    min-height: 100dvh;
}

.sidebar[b-y3wgnpebqu] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}
.sidebar-col[b-y3wgnpebqu] {
    height: 100%;
}

.body-row[b-y3wgnpebqu] {
    height: 100%;
}

.top-row[b-y3wgnpebqu] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    position: fixed;
    height: 3.5rem;
    display: flex;
    align-items: center;
    flex-direction: row;
    z-index: 2;
    transition: 0.5s;
    width: 100%;
    box-shadow: 0px 5px 20px #000000a4;
}

    .top-row[b-y3wgnpebqu]  a, .top-row[b-y3wgnpebqu]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-y3wgnpebqu]  a:hover, .top-row[b-y3wgnpebqu]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-y3wgnpebqu]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-y3wgnpebqu] {
        display: none;
    }

    .top-row.auth[b-y3wgnpebqu] {
        justify-content: space-between;
    }

    .top-row[b-y3wgnpebqu]  a, .top-row[b-y3wgnpebqu]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-y3wgnpebqu] {
        flex-direction: row;
    }

    .sidebar[b-y3wgnpebqu] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-y3wgnpebqu] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-y3wgnpebqu]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-y3wgnpebqu], article[b-y3wgnpebqu] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

.btn-popularesSideBar[b-y3wgnpebqu] {
    display: none;
}

@media (max-width: 70rem) {
    .populares-position:has(:not(.show))[b-y3wgnpebqu] {
        position: absolute;
        right: 0;
        height: -webkit-fill-available;
        z-index: 10;
        max-width: 10vw;
        transition: max-width 0.25s ease-in;
    }

    .populares-position:has(:is(.show))[b-y3wgnpebqu] {
        position: absolute !important;
        right: 0 !important;
        height: -webkit-fill-available !important;
        z-index: 10 !important;
        max-width: 50vw !important;
        transition: max-width 0.25s ease-out;
    }

    .btn-popularesSideBar[b-y3wgnpebqu] {
        display: block;
        transform: translate(15vw);
        position: absolute !important;
        top: 0.5rem;
    }

    .btn-mov:not(.collapsed)[b-y3wgnpebqu] {
        transform: translateX(-50vw);
        transition: transform 0.25s ease-in;
    }

    .btn-mov:is(.collapsed)[b-y3wgnpebqu] {
        transform: translateX(0);
        transition: transform 0.25s ease-out;
    }

    .collapsing.collapse-horizontal[b-y3wgnpebqu] {
        width: auto;
        transform: translateX(100%);
        transition: transform 0.25s ease-in;
    }

    .show.collapse-horizontal[b-y3wgnpebqu] {
        width: auto;
        transform: translateX(0);
        transition: transform 0.25s ease-out;
    }
}

@media (min-width: 70rem) {
    .collapse-horizontal[b-y3wgnpebqu] {
        display: block !important;
    }
}
