#qd-app {
    /* max-width: 900px; */
    margin: auto;
    display: grid;
    /* grid-template-columns: 2fr 1fr; */
    gap: 20px;
}

@media (max-width: 768px) {
    #qd-app {
        grid-template-columns: 1fr;
    }
}
.qd-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.qd-left {
    width: 60%;
}

.qd-right {
    width: 40%;
    position: sticky;
    top: 20px;
}

@media (max-width: 900px) {
    .qd-layout {
        flex-direction: column;
    }
    .qd-left,
    .qd-right {
        width: 100%;
        position: static;
    }
}
input.add-radio {
    width: 15px;
}
.add-radio-label{
display:flex;
align-items:center;
}
.qd-services button {
    padding: 10px 14px;
    margin: 5px;
    border-radius: 4px;
    border: 1px solid #ccc;
    cursor: pointer;
}

.qd-services button.active {
    background: #00249C;
    color: #fff;
}

.qd-accordion h4 {
    background: #eee;
    padding: 12px;
    cursor: pointer;
    margin: 0;
}

.qd-accordion-body {
    display: none;
    padding: 10px;
    background: #fafafa;
}

.qd-qty {
    display: flex;
    align-items: center;
    gap: 6px;
}

.qty-input {
    width: 50px;
    text-align: center;
}

.qd-qty button {
    width: 32px;
    height: 32px;
    background: #00249C;
    color: #fff;
    border: none;
    cursor: pointer;
}
.qd-services button.active {
    background: #00249C;
    color: #fff !important;
}
.qd-services button {
     color: #494949 !important;
}

.qd-qty button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.qd-summary {
    background: #f9f9f9;
    padding: 15px;
    position: sticky;
    top: 20px;
}

.qd-summary-item {
    margin-bottom: 8px;
    font-size: 14px;
}
