.boxoffice-checkout-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
    align-items: stretch;
}

.boxoffice-checkout-col {
    flex: 1 1 0;
    min-width: 280px;
}

.section-heading {
    text-transform: uppercase;
    margin: 0px;
    font-size: 18px;
    font-weight: 600;
}

.boxoffice-checkout-col .radio-row {
    display: flex !important;
    align-items: center;
    padding: 12px 15px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 12px;
    position: relative;
    background: #fff !important;
    box-sizing: border-box !important;
}

.boxoffice-checkout-col .radio-row:hover {
    border-color: var(--btn-primary-color) !important;
    background-color: #fbfbfb !important;
}

.boxoffice-checkout-col .radio-row:has(input:checked) {
    border-color: var(--btn-primary-color) !important;
    border-width: 2px !important;
    padding: 12px 15px !important;
    background-color: color-mix(in srgb, var(--btn-primary-color) 4%, transparent) !important;
}

.radio-container {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radio-container input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-mark {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-right: 14px;
    position: relative;
    transition: all 0.25s ease;
    flex-shrink: 0;
    background: #fff;
}

.radio-row:has(input:checked) .radio-mark {
    border-color: var(--btn-primary-color);
    background: var(--btn-primary-color);
}

.radio-mark:after {
    content: "";
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
}

.radio-row:has(input:checked) .radio-mark:after {
    display: block;
}

/* Accessibility: Focus state */
.radio-row:has(input:focus-visible) {
    outline: 3px solid #ffc107;
    outline-offset: 3px;
}

.radio-row .name .delivery-label,
.radio-row .name .payment-label {
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 0;
    color: var(--txt-color-secondary, #000);
}

.payment-label-container {
    flex-grow: 1;
}

.promo-input-wrap {
    position: relative;
    width: 100%;
}

.promo-input-wrap form {
    width: 100%;
}

.promo-btn {
    padding-left: 15px;
    padding-right: 15px;
}

.pcinfook {
    color: green;
    display: flex;
    align-items: center;
    font-size: 14px;
    position: absolute;
    top: 45px;
    left: 0;
}

.pcinfook .fas {
    display: none;
}

.pcinfoerror {
    color: #dd1010;
    display: flex;
    align-items: center;
    font-size: 14px;
    position: absolute;
    top: 45px;
    left: 0;
}

.pcinfoerror .fas {
    display: none;
}

.is-hidden {
    display: none !important;
}

#promotional_code.invalid {
    border-bottom: 1px solid #d12335;
}

.error-icon-promo,
.success-icon-promo {
    font-size: 18px;
    position: absolute;
    right: 10px;
    bottom: 5px;
}

.error-icon-promo {
    color: #dd1010;
}

.success-icon-promo {
    color: green;
}

#promotional_code {
    border-bottom: 1px solid #000 !important;
    padding-top: 15px !important;
    background-color: unset !important;
    width: 100%;
}

#promotional_code::placeholder {
    color: #6c757d;
    font-size: 17px;
}

.boxoffice-pcode-box {
    position: relative;
    margin-top: 35px;
    border: 0;
    background-color: #fff;
    min-height: 85px !important;
}

.boxoffice-pcode-box h3 {
    border-bottom: 1px solid #000;
    color: #000;
    font-size: 28px;
    line-height: 38px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 30px !important;
}

#add-promo-code {
    background-color: var(--btn-primary-color);
    color: var(--btn-primary-txt-color);
    border: 2px solid var(--btn-primary-color);
    transition: all .3s ease;
    padding: 8px;
    font-size: 22px;
    width: 100%;
    margin-top: 30px;
}

#add-promo-code:hover {
    background-color: var(--hover-btn-primary-color);
    border-color: var(--hover-btn-primary-color);
}

@media (max-width: 767px) {
    .pcinfoerror {
        font-size: 15px;
        bottom: 60px;
    }

    .boxoffice-pcode-box .name {
        display: flex;
        justify-content: center;
    }

    .boxoffice-pcode-box h3 {
        font-size: 22px !important;
        line-height: 30px;
    }

    #add-promo-code {
        width: 100%;
    }
}