/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 12 2025 | 14:15:09 */
/* table price */
table tr th,
table td {
    border: 0 !important;
}

table thead {
    background: #f96d3e;
    color: #fff;
    border-bottom: 3px solid #ffffff;
}

table h5 {
    font-weight: bold;
    letter-spacing: -0.03rem;
    margin: 0;
    text-align: center !important;
    text-transform: uppercase;
}

table thead tr th {
    padding: 15px;
    text-align: space-between;
}

.price_table {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0.9px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    width: 100%;
    max-width: 100%;
}

.price_table tr td {
    padding: 10px 15px;
    line-height: normal;
}

.price_table tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 50px;
	gap: 5px;
}

.price_table tr td:first-child {
    flex: 0 0 250px; /* Largeur fixe pour la première colonne */
    justify-content: flex-start;
    text-align: left;
}

.price_table tr td:nth-child(2) {
	/*display: flex;
    gap: 14px;
    flex: 1;
    align-items: center;
    justify-content: flex-start;
    text-align: left;*/
	gap: 14px;
    display: grid;
    grid-template-columns: 40px 1fr;
    grid-template-rows: repeat(1, 1fr);
	align-items: center;
}

.price_table tr td:nth-child(2) .tag span{
    display: block;
    text-align: center;
    background: #ffddc4;
    padding: 5px 4px;
    border-radius: 4px;
    border: 1px solid #ffd092;
}

.price_table tr td:last-child {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
    min-width: 130px;
}

.price_table tr td strong {
    font-size: 1rem;
    letter-spacing: -0.0153rem;
}

.price_table tr td:last-child {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.0153rem;
}

.price_table tbody tr:hover {
    background-color: unset !important;
}

.price_table tbody tr:hover td {
    background-color: unset !important;
}

.price_table tbody tr:nth-child(even) {
    background-color: #ffffff;
}

.price_table tbody tr:nth-child(odd) {
    background-color: #f2f2f2;
}

.price_table tbody tr:nth-child(odd):hover {
    background-color: #f2f2f2 !important;
}

.price_table tbody > tr:nth-child(odd) > td,
table tbody > tr:nth-child(odd) > th {
    background-color: unset !important;
}

.price_table tr th h5 {
    margin: 0 auto;
    text-align: center;
    flex: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .price_table tr {
        flex-direction: column;
        align-items: flex-start;
        min-height: auto;
		padding: 8px 0px;
    }

    .price_table tr td {
        width: 100%;
        justify-content: flex-start;
        text-align: left;
        margin-left: 0;
    }

    .price_table tr td:first-child {
        flex: none;
        width: 100%;
    }

    .price_table tr td:nth-child(2) {
        flex: none;
        width: 100%;
    }

    .price_table tr td:last-child {
        justify-content: flex-start;
        min-width: 100%;
        margin-left: 0;
    }

    .price_table tr td {
        padding: 3px 15px;
    }

    .price_table tr td strong {
        font-size: 0.9rem;
    }

    .price_table tr td:last-child {
        font-size: 0.9rem;
		justify-content: end;
    }
}

@media (max-width: 480px) {
    .price_table tr td {
        font-size: 0.85rem;
    }

    .price_table tr td {
        padding: 3px 15px;
    }
}

/* end table price */