.summary-section {
    background-color: var(--section-bg-color);
    padding-top: 50px;
    margin-top: 50px;
}

.buy-button-section {
    margin-top: 2rem;
}

.buy-btn {
    background-color: #28a745;
    border-color: #28a745;
    color: white;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.buy-btn:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.buy-btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.buy-btn:disabled {
    background-color: #6c757d;
    border-color: #6c757d;
    cursor: not-allowed;
}

.button-submit {
    background: var(--btn-secondary-color);
    color: var(--txt-color);
    border-radius: var(--radius);
    border: 1px solid var(--btn-secondary-color);
    margin-top: 40px;
    margin-bottom: 80px;
    min-width: 410px;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 12px 80px;
    transition: all 0.3s ease-in-out;
}

.button-submit:hover {
    background: var(--hover-btn-secondary-color);
}

.summary-row {
    margin-bottom: 10px;
}

.summary-tr {
    font-size: 20px;
}

.summary-td {
    text-align: right;
}

.summary-final {
    margin-top: 40px;
}

.summary-final h2 {
    text-align: center;
    font-size: 32px;
}

.summary-tickets.summary-tr,
.summary-tickets-val.summary-td,
.buy.summary-delivery.summary-tr,
.buy.summary-delivery-val.summary-td,
.buy.summary-payment.summary-tr,
.buy.summary-payment-val.summary-td,
.summary-final>div {
    font-size: 20px;
    font-weight: 400;
    color: #000 !important;
}

.summary-final div,
#cart_summary {
    font-size: 28px;
    font-weight: 700;
}

.buy>div>div.summary-heading {
    margin-bottom: 45px;
}

.summary-final #cart_summary {
    text-align: right;
    margin-left: -25px;
}

.quantity-cart,
.quantity-cart-val {
    font-size: 16px;
    font-weight: 400;
}

.quantity-cart-val {
    text-align: right;
}

.summary-cart-boxoffice {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding-bottom: 50px;
    font-size: 26px;
    font-weight: 500;
    color: #000;
}

.summary-cart-boxoffice>div.summary-cart-details {
    display: flex;
}

.value-summary {
    text-align: right;
}

.summary-final>.worth-row {
    justify-content: flex-end;
}

.summary-heading>h3 {
    color: #000 !important;
    border-bottom: 1px solid #000;
    font-size: 28px !important;
    line-height: 38px;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight: 400;
}

@media (max-width: 767px) {
    .summary-cart-boxoffice {
        margin-top: 25px;
        font-size: 20px;
        padding-bottom: 35px;
        flex-direction: column;
        align-items: flex-end;
    }

    .summary-section {
        margin-top: 40px;
        padding-top: 30px;
    }

    #summary-box>div,
    .summary-final {
        justify-content: space-between;
    }

    .summary-final {
        margin-top: 25px;
    }

    .summary-tickets.summary-tr,
    .summary-tickets-val.summary-td,
    .buy.summary-delivery.summary-tr,
    .buy.summary-delivery-val.summary-td,
    .buy.summary-payment.summary-tr,
    .buy.summary-payment-val.summary-td,
    .summary-final>div,
    #cart_summary {
        font-size: 21px;
    }

    .summary-final div,
    #cart_summary {
        font-size: 25px;
        text-transform: uppercase;
    }

    .summary-heading>h3 {
        font-size: 25px !important;
    }

    .button-submit {
        min-width: 100%;
        max-width: 100%;
    }
}