.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 8px;
    padding-left: 8px;
}


/* Pricing Table */

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.pricing-table td {
    padding: 15px;
    vertical-align: middle;
}

.service-name {
    width: 65%;
    font-size: 15px;
    line-height: 1.5;
    word-break: normal;
    overflow-wrap: break-word;
}

.price {
    width: 15%;
    white-space: nowrap;
    text-align: center;
    font-weight: 600;
    color: #000;
}

.price span {
    font-size: 12px;
    margin-right: 4px;
    opacity: 0.8;
}

.book-cell {
    width: 20%;
    text-align: right;
}

.book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    min-width: 95px;
    height: 38px;

    padding: 0 14px;

    border-radius: 50px;

    background: #c59d5f;
    color: #fff;

    text-decoration: none;
    font-size: 13px;
    font-weight: 600;

    transition: all .3s ease;


}

.book-btn:hover {
    background: #b28a4d;
    color: #fff;
}

.book-btn i {
    font-size: 13px;
}

/* Category Row */

.category-row td {
    background: #121212;
    color: #c59d5f;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 15px;
}

.pricing-table tbody td {
    padding: 16px 32px;
}

/* Tablet */

@media (max-width: 991px) {

    .service-name {
        width: 55%;
    }

    .price {
        width: 20%;
    }

    .book-cell {
        width: 25%;
    }

    .book-btn {
        min-width: 64px;
        font-size: 12px;
    }

    .pricing-table tbody td {
        padding: 14px 20px;
    }


}

/* Mobile */

@media (max-width: 767px) {

    .pricing-table {
        table-layout: auto;
    }

    .pricing-table td {
        padding: 14px 12px;
        vertical-align: middle;
    }

    .pricing-table tbody td {
        padding: 14px 12px;
    }

    .service-name {
        width: 52%;
        font-size: 15px;
        line-height: 1.5;
        word-break: normal;
        overflow-wrap: normal;
        hyphens: none;
    }

    .price {
        width: 18%;
        font-size: 13px;
        text-align: center;
    }

    .price span {
        display: block;
        margin: 0;
        font-size: 11px;
        line-height: 1.2;
    }

    .book-cell {
        width: 30%;
        text-align: center;
    }

    .book-btn {
        min-width: 80px;
        height: 40px;
        padding: 0 12px;
        font-size: 11px;
    }

    .book-btn span {
        display: none;
    }

    .book-btn i {
        margin: 0;
        font-size: 14px;
    }

    .category-row td {
        font-size: 15px;
        padding: 14px 20px;
    }

}