.elementor-widget-price-tables {
    width: 100%;
}

.price-tables-widget {
    background-color: #F7F7F7;
    border-radius: 10px;
    border: 0px solid;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.price-tables-title {
    font-family: 'EuropaBold', sans-serif;
    font-size: 20px;
    text-align: center;
    /* margin-bottom: 15px; */
    padding: 15px 0;
    border-bottom: 2px solid #000000;
}

.price-tables-items {
    list-style: none;
    padding: 0px 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.price-tables-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0 15px 0;
    flex-direction: column;
    border-bottom: 1px solid #ddd;
    height: 100%;
    text-align: center;
}

.price-tables-item-text {
    font-family: 'EuropaRegular', sans-serif;
    font-size: 1rem;
    color: #333333; /* Default text color */
}

.price-tables-item-icon-left,
.price-tables-item-icon-right {
    font-size: 1.2rem;
    color: #333333; /* Default icon color */
}

.price-tables-item-divider {
    height: 1px;
    background-color: #DDDDDD; /* Default divider color */
    width: 100%;
    margin-top: 15px;
    display: block;
}

.price-tables-item:last-child {
    border-bottom: none; /* Hide the divider for the last item */
    padding: 15px 0 30px 0;
}

.price-tables-item:nth-child(even) {
    background-color: #c6c6c61a;
}

.price-tables-item-wrap {
    display: flex;
    gap: 5px;
    align-items: center;
}