/* Utils */
.page-header {
    padding-top: 120px;
    padding-bottom: 64px;
}
/* End Utils */

/* Items */
.items-img {
    width: 64px;
    height: 64px;
    object-fit: fill;
    border-radius: 4px;
    margin-right: 16px;
}

.items-table tr > th {
    padding: 0;
    border: 0;
}

.items-table tr > td {
    padding: 16px 0;
    border-top: 0;
    border-bottom: 1px solid var(--border-color);
}

.items-table tr:last-child > td {
    border-bottom: 0;
}
/* End Items */

/* Summary */
.summary-card {
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
}

.summary-card .card-body {
    padding: 16px;
}

.btn-voucher {
    background: #00AFEF;
    border-radius: 4px;
    padding: 6px 24px;
    font-family: var(--font-1);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
}

.btn-voucher:hover {
    color: var(--white);
    filter: brightness(.8);
}

.btn-checkout {
    background: var(--primary);
    border-radius: 4px;
    padding: 6px 24px;
    font-family: var(--font-2);
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
}

.btn-checkout:hover {
    color: var(--white);
    filter: brightness(.8);
}

.summary-divider {
    margin-top: 32px;
    margin-bottom: 24px;
    border-color: var(--border-color);
}

.summary-card #sub-total,
.summary-card #total {
    color: var(--dark);
}
/* endSummary */

@media (max-width: 767.98px) {

    /* Utilities */
    .page-header {
        padding-top: 120px;
    }
    /* End Utilities */

    .page-header .row {
        row-gap: 32px;
    }

    /* Items */
    .items-img {
        width: 45%;
        height: 200px;
        object-fit: cover;
        margin-right: 16px;
    }

    .mobile-items-content {
        padding-bottom: 16px;
        margin-bottom: 16px;
        border-bottom: 1px solid var(--grey);
    }

    .mobile-items-content:last-of-type {
        margin-bottom: 24px;
        border: 0;
    }
    /* End Items */

}
