/* Specific CSS for Home Page */
table.pricelist {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px
}

.pricelist thead th {
    text-align: left;
    padding: 14px 12px;
    background-color: #628474;
    font-weight: 600;
    color: #fff;
    border-bottom: 2px solid #eef2f3
}

.pricelist tbody tr {
    background: transparent
}

.pricelist tbody tr:nth-child(odd) {
    background: #fbfbfc
}
.pricelist tbody tr:nth-child(even) {
    background: #93c1ab;
}

.pricelist td {
    padding: 12px 12px;
    border-bottom: 1px dashed #eef2f3;
    vertical-align: middle
}


.pricelist.service {
    font-weight: 600;
    color: #222
}

.pricelist .desc {
    display: block;
    font-size: 13px;
    color: var(--muted);
    font-weight: 400;
    margin-top: 6px
}


.pricelist .price {
    font-weight: 700;
    color: var(--accent);
    font-size: 16px;
    white-space: nowrap
}

.pricelist .note {
    font-size: 13px;
    color: var(--muted);
    text-align: right;
    font-weight: 400;
}