/* ==============================================
   Qimal Booking Popup — booking-popup.css
   ============================================== */

/* ── Overlay ── */
.qbp-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(5, 8, 14, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 12000;
}

.qbp-overlay.is-open {
    display: flex;
}

/* ── Dialog ── */
.qbp-dialog {
    width: min(700px, 100%);
    max-height: min(88vh, 800px);
    height: min(88vh, 800px);
    background: #0b1220;
    color: #f7f3e8;
    border: 1px solid rgba(214, 170, 78, 0.22);
    border-radius: 18px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Gold accent top line */
.qbp-dialog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(214, 170, 78, 0.5), transparent);
    z-index: 10;
    pointer-events: none;
}

.qbp-shell {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}

/* ── Close ── */
.qbp-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.55);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s;
    z-index: 20;
}

.qbp-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* ── Header — compact: 3 lines max ── */
.qbp-header {
    padding: 14px 44px 12px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(214, 170, 78, 0.055) 0%, transparent 100%);
    flex: 0 0 auto;
}

.qbp-eyebrow {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #d6aa4e;
    margin-bottom: 4px;
}

.qbp-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
}

/* Meta + price on one row */
.qbp-header-sub {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.qbp-meta {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(247, 243, 232, 0.52);
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.qbp-price {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 700;
    color: #f3d38a;
    background: rgba(214, 170, 78, 0.1);
    border: 1px solid rgba(214, 170, 78, 0.22);
    border-radius: 20px;
    padding: 2px 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Progress stepper ── */
.qbp-progress {
    display: flex;
    align-items: flex-start;
    padding: 12px 22px 0;
    flex: 0 0 auto;
    position: relative;
}

.qbp-progress::before {
    content: '';
    position: absolute;
    top: calc(12px + 11px);
    left: calc(22px + 11px);
    right: calc(22px + 11px);
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 0;
    pointer-events: none;
}

.qbp-progress-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.qbp-progress-step:not(:first-child)::before {
    content: '';
    position: absolute;
    top: 11px;
    left: -50%;
    right: 50%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 0;
    pointer-events: none;
}

.qbp-progress-step.is-complete:not(:first-child)::before,
.qbp-progress-step.is-current:not(:first-child)::before {
    background: #d6aa4e;
}

.qbp-progress-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    color: rgba(247, 243, 232, 0.3);
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.qbp-progress-label {
    font-size: 0.65rem;
    color: rgba(247, 243, 232, 0.35);
    text-align: center;
    white-space: nowrap;
    transition: color 0.2s;
}

.qbp-progress-step.is-current .qbp-progress-dot {
    background: #d6aa4e;
    border-color: #d6aa4e;
    color: #15110b;
    box-shadow: 0 0 0 3px rgba(214, 170, 78, 0.2);
}

.qbp-progress-step.is-complete .qbp-progress-dot {
    background: rgba(214, 170, 78, 0.85);
    border-color: #d6aa4e;
    color: #15110b;
}

.qbp-progress-step.is-current .qbp-progress-label {
    color: #f3d38a;
    font-weight: 600;
}

.qbp-progress-step.is-complete .qbp-progress-label {
    color: rgba(247, 243, 232, 0.55);
}

/* ── Step area ── */
.qbp-step {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    padding: 12px 22px 0;
}

.qbp-step-title {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    flex-shrink: 0;
}

.qbp-step-hint {
    margin: 3px 0 10px;
    font-size: 0.8rem;
    color: rgba(247, 243, 232, 0.42);
    flex-shrink: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Scrollable body — no native scrollbar */
.qbp-body {
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1 1 auto;
    min-height: 0;
    overscroll-behavior: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.qbp-body::-webkit-scrollbar {
    display: none;
}


/* ── Route visualization ── */
.qbp-route-vis {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 14px 16px;
}

.qbp-route-end {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.qbp-route-pin {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.qbp-route-pin.pickup {
    background: rgba(214, 170, 78, 0.12);
    color: #d6aa4e;
    border: 1.5px solid rgba(214, 170, 78, 0.28);
}

.qbp-route-pin.dest {
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
    border: 1.5px solid rgba(16, 185, 129, 0.22);
}

.qbp-route-city-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #f7f3e8;
    text-align: center;
    max-width: 74px;
    line-height: 1.3;
}

.qbp-route-connector {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
}

.qbp-route-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(214, 170, 78, 0.3), rgba(255, 255, 255, 0.05), rgba(52, 211, 153, 0.2));
    position: relative;
}

.qbp-route-line::after {
    content: '›';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -55%);
    color: rgba(255, 255, 255, 0.22);
    font-size: 0.9rem;
    background: #0b1220;
    padding: 0 4px;
    line-height: 1;
}

.qbp-route-badge {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(247, 243, 232, 0.55);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 2px 9px;
    white-space: nowrap;
}

/* ── Included checklist ── */
.qbp-included {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
}

.qbp-included-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    color: rgba(247, 243, 232, 0.65);
}

.qbp-included-item i {
    color: #34d399;
    font-size: 0.7rem;
    flex-shrink: 0;
    width: 12px;
    text-align: center;
}

/* ── Generic card grid ── */
.qbp-grid {
    display: grid;
    gap: 12px;
}

.qbp-grid.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.qbp-card {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 13px;
    background: rgba(255, 255, 255, 0.03);
}

.qbp-card-title {
    margin: 0 0 8px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(247, 243, 232, 0.4);
}

.qbp-card-copy {
    margin: 0 0 3px;
    color: rgba(247, 243, 232, 0.72);
    font-size: 0.85rem;
    line-height: 1.5;
}

.qbp-card-copy:last-child { margin-bottom: 0; }

/* ── Vehicle option cards ── */
.qbp-select-grid {
    display: grid;
    gap: 8px;
}

.qbp-option {
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 14px;
    cursor: pointer;
    transition: border-color 0.18s, background 0.18s, transform 0.15s, box-shadow 0.18s;
    text-align: left;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 13px;
    color: inherit;
    font-family: inherit;
}

.qbp-option:hover {
    border-color: rgba(214, 170, 78, 0.45);
    background: rgba(214, 170, 78, 0.04);
    transform: translateY(-1px);
}

.qbp-option.is-selected {
    border-color: #d6aa4e;
    background: rgba(214, 170, 78, 0.07);
    box-shadow: 0 0 0 3px rgba(214, 170, 78, 0.1);
    transform: translateY(-1px);
}

.qbp-option-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: rgba(247, 243, 232, 0.55);
    flex-shrink: 0;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
}

.qbp-option.is-selected .qbp-option-icon {
    background: rgba(214, 170, 78, 0.14);
    color: #d6aa4e;
    border-color: rgba(214, 170, 78, 0.28);
}

.qbp-option-body {
    flex: 1;
    min-width: 0;
}

.qbp-option-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 3px;
}

.qbp-option-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #f7f3e8;
}

.qbp-option-price {
    color: #f3d38a;
    font-weight: 700;
    font-size: 0.92rem;
    white-space: nowrap;
}

.qbp-option-meta {
    color: rgba(247, 243, 232, 0.48);
    font-size: 0.76rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.qbp-capacity-dots {
    display: inline-flex;
    gap: 3px;
    vertical-align: middle;
}

.qbp-cap-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    display: inline-block;
    transition: background 0.18s;
}

.qbp-option.is-selected .qbp-cap-dot {
    background: rgba(214, 170, 78, 0.5);
}

/* ── Form fields ── */
.qbp-fields {
    display: grid;
    gap: 11px;
}

.qbp-fields.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.qbp-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.qbp-label {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(247, 243, 232, 0.5);
    font-weight: 600;
}

.qbp-input,
.qbp-select-field,
.qbp-textarea {
    width: 100%;
    border-radius: 9px;
    border: 1.5px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.04);
    color: #f7f3e8;
    padding: 10px 12px;
    font-size: 0.88rem;
    transition: border-color 0.18s, box-shadow 0.18s;
    box-sizing: border-box;
    font-family: inherit;
}

.qbp-select-field {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='6' viewBox='0 0 11 6'%3E%3Cpath d='M1 1l4.5 4L10 1' stroke='rgba(247,243,232,0.3)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
    cursor: pointer;
}

.qbp-textarea {
    min-height: 80px;
    resize: vertical;
    line-height: 1.5;
}

.qbp-input::placeholder,
.qbp-textarea::placeholder {
    color: rgba(247, 243, 232, 0.2);
}

.qbp-input:focus,
.qbp-select-field:focus,
.qbp-textarea:focus {
    outline: none;
    border-color: rgba(214, 170, 78, 0.55);
    box-shadow: 0 0 0 3px rgba(214, 170, 78, 0.09);
}

.qbp-select-field option {
    background: #0b1220;
    color: #f7f3e8;
}

.qbp-field-help {
    font-size: 0.72rem;
    color: rgba(247, 243, 232, 0.35);
    margin: 0;
}

/* ── Review list ── */
.qbp-review-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.qbp-review-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.qbp-review-item:last-child {
    border-bottom: none;
    border-top: 1px solid rgba(214, 170, 78, 0.18);
    padding-top: 11px;
    margin-top: 3px;
}

.qbp-review-label {
    color: rgba(247, 243, 232, 0.5);
    font-size: 0.82rem;
}

.qbp-review-value {
    text-align: right;
    font-weight: 600;
    color: #f7f3e8;
    font-size: 0.84rem;
}

.qbp-review-item:last-child .qbp-review-label {
    color: rgba(247, 243, 232, 0.72);
    font-weight: 600;
}

.qbp-review-item:last-child .qbp-review-value {
    color: #f3d38a;
    font-size: 0.98rem;
    font-weight: 700;
}

/* ── Error ── */
.qbp-error {
    min-height: 0;
    margin: 6px 0 0;
    font-size: 0.82rem;
    color: #fca5a5;
    display: flex;
    align-items: center;
    gap: 7px;
    border-radius: 7px;
    transition: all 0.15s;
}

.qbp-error:not(:empty) {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.15);
    padding: 8px 11px;
}

.qbp-error:not(:empty)::before {
    content: '⚠';
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ── Footer ── */
.qbp-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 22px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex: 0 0 auto;
}

/* ── Buttons ── */
.qbp-btn {
    appearance: none;
    border: none;
    border-radius: 9px;
    padding: 10px 20px;
    font-size: 0.86rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s, filter 0.15s, opacity 0.15s, box-shadow 0.15s;
    white-space: nowrap;
    font-family: inherit;
}

.qbp-btn:hover:not(:disabled) {
    transform: translateY(-1px);
}

.qbp-btn:disabled {
    opacity: 0.5;
    cursor: progress;
    transform: none !important;
}

.qbp-btn-primary {
    background: linear-gradient(135deg, #e0b552, #c5920a);
    color: #15110b;
    margin-left: auto;
    min-width: 140px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 3px 12px rgba(214, 170, 78, 0.2);
}

.qbp-btn-primary:hover:not(:disabled) {
    filter: brightness(1.07);
    box-shadow: 0 5px 18px rgba(214, 170, 78, 0.3);
}

.qbp-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(247, 243, 232, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.qbp-btn-secondary:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.09);
    color: #fff;
}

/* ── Success screen ── */
.qbp-success {
    flex: 1 1 auto;
    overflow: auto;
    min-height: 0;
    padding: 0 22px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    isolation: isolate;
}

.qbp-success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #34d399;
    margin-bottom: 18px;
    animation: qbp-pop-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes qbp-pop-in {
    from { transform: scale(0.4); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}

.qbp-success-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.qbp-success-message {
    color: rgba(247, 243, 232, 0.62);
    line-height: 1.6;
    margin-bottom: 22px;
    max-width: 360px;
    font-size: 0.88rem;
}

/* ── Payment step — larger tap targets ── */
.qbp-payment-grid {
    gap: 10px;
}

.qbp-payment-option {
    padding: 16px 16px;
}

.qbp-option-icon--lg {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* Cash icon — green tint */
.qbp-cash-icon {
    background: rgba(16, 185, 129, 0.1) !important;
    border-color: rgba(16, 185, 129, 0.22) !important;
    color: #34d399 !important;
}

.qbp-option.is-selected .qbp-cash-icon {
    background: rgba(16, 185, 129, 0.18) !important;
    border-color: rgba(16, 185, 129, 0.45) !important;
    color: #34d399 !important;
}

/* ── PayPal payment option icon ── */
.qbp-paypal-icon {
    background: rgba(0, 112, 186, 0.1) !important;
    border-color: rgba(0, 112, 186, 0.22) !important;
    color: #0070ba !important;
}

.qbp-option.is-selected .qbp-paypal-icon {
    background: rgba(0, 112, 186, 0.2) !important;
    border-color: rgba(0, 112, 186, 0.45) !important;
    color: #0099e6 !important;
}

/* ── Payment step back link (inside body, no footer) ── */
.qbp-payment-back-row {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.qbp-back-link {
    background: none;
    border: none;
    color: rgba(247, 243, 232, 0.35);
    font-size: 0.78rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 6px;
    font-family: inherit;
    transition: color 0.15s, background 0.15s;
}

.qbp-back-link:hover {
    color: rgba(247, 243, 232, 0.65);
    background: rgba(255, 255, 255, 0.04);
}

/* ── Payment info note ── */
.qbp-payment-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 10px 0 0;
    padding: 9px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.8rem;
    color: rgba(247, 243, 232, 0.52);
    line-height: 1.5;
}

.qbp-payment-note i {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.7;
}

/* ── Download confirmation button ── */
.qbp-btn-download {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(247, 243, 232, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.qbp-btn-download:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.09);
    color: #fff;
    filter: none;
}

/* ── PayPal buttons area in success screen ── */
.qbp-paypal-buttons {
    width: 100%;
    max-width: 340px;
    margin: 0 0 16px;
    position: relative;
    z-index: 2;
    pointer-events: auto !important;
}

.qbp-paypal-buttons,
.qbp-paypal-buttons * {
    pointer-events: auto !important;
}

.qbp-paypal-buttons iframe,
.qbp-paypal-buttons button,
.qbp-paypal-buttons [role="button"] {
    pointer-events: auto !important;
    position: relative;
    z-index: 3;
}

/* ── Hide page sticky buttons while popup is open ── */
body.qbp-open .sticky-book-button {
    display: none !important;
}

/* ── Critical: enforce [hidden] even when element has display: flex ── */
.qbp-success[hidden],
.qbp-step[hidden],
.qbp-footer[hidden] {
    display: none !important;
}

/* ── Dark native date / time pickers ── */
.qbp-input[type="date"],
.qbp-input[type="time"],
.qbp-input[type="datetime-local"] {
    color-scheme: dark;
}

/* ── Breathing room at bottom of scroll body ── */
.qbp-body {
    padding-bottom: 12px;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .qbp-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .qbp-dialog {
        width: 100%;
        max-height: 94dvh;
        height: 94dvh;
        border-radius: 18px 18px 0 0;
        border-bottom: none;
    }

    .qbp-header,
    .qbp-step,
    .qbp-success,
    .qbp-footer,
    .qbp-progress {
        padding-left: 16px;
        padding-right: 16px;
    }

    .qbp-header { padding-right: 46px; }

    .qbp-progress-label { font-size: 0.58rem; }

    .qbp-grid.two-col,
    .qbp-fields.two-col {
        grid-template-columns: 1fr;
    }

    .qbp-included {
        grid-template-columns: 1fr;
    }

    .qbp-footer {
        flex-direction: column-reverse;
        padding-bottom: 24px;
    }

    .qbp-btn,
    .qbp-btn-primary,
    .qbp-btn-secondary {
        width: 100%;
        margin-left: 0;
    }
}
