@import url('https://fonts.googleapis.com/css2?family=Anek+Bangla:wght@400;700;800&family=Hind+Siliguri:wght@400;600;700&display=swap');

/* Main Container */
.dc-multistep-container {
    max-width: 600px !important;
    margin: 15px auto !important;
    background: #fff !important;
    padding: 15px 20px !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
    font-family: 'Hind Siliguri', sans-serif !important;
    border: 1px solid #edf2f7 !important;
}

/* Base Widget Styling */
.dc-donation-card {
    max-width: 380px;
    margin: 15px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden !important;
    /* Force hide any overflow */
    font-family: 'Hind Siliguri', sans-serif;
    border: 1px solid #edf2f7;
    position: relative;
    transition: transform 0.3s ease;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.dc-donation-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.dc-donation-header {
    width: 101% !important;
    /* Slightly overshoot to kill gaps */
    margin: 0 0 0 -0.5% !important;
    /* Correcting the overshoot */
    height: 160px !important;
    background: transparent !important;
    /* Transparent background to hide gaps */
    overflow: hidden !important;
    position: relative;
    padding: 0 !important;
    display: block !important;
    box-sizing: border-box !important;
}

.dc-donation-header img {
    width: 100% !important;
    min-width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    transform: scale(1.02);
    /* Slight scale up to ensure coverage */
}

.dc-donation-body {
    padding: 25px 20px;
    text-align: center;
}

.dc-donation-title {
    font-size: 36px !important;
    font-weight: 800 !important;
    color: #1a202c !important;
    margin: 0 0 10px 0 !important;
    line-height: 1.1 !important;
    font-family: 'Anek Bangla', sans-serif !important;
    letter-spacing: -0.5px !important;
}

.dc-donation-subtext {
    font-size: 15px;
    color: #718096;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.dc-donate-button {
    background: #00a651 !important;
    color: #fff !important;
    border: none !important;
    width: 100% !important;
    padding: 14px !important;
    border-radius: 10px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    font-family: 'Hind Siliguri', sans-serif !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(0, 166, 81, 0.2) !important;
    margin-bottom: 25px !important;
}

.dc-donate-button:hover {
    background: #008f45 !important;
    box-shadow: 0 6px 15px rgba(0, 166, 81, 0.3) !important;
    transform: translateY(-1px) !important;
}

.dc-payment-logos {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.dc-payment-logos .logo-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.dc-payment-logos img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.dc-payment-logos span {
    font-size: 11px;
    color: #a0aec0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Step Management */
.dc-ms-step {
    display: none !important;
}

.dc-ms-step.active {
    display: block !important;
}

/* Amount Grid Layout */
.dc-amount-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 15px !important;
    margin-bottom: 25px !important;
}

.amount-item {
    cursor: pointer !important;
}

.amount-item input {
    display: none !important;
}

.amt-box {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px 5px !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 8px !important;
    background: #fff !important;
    color: #4a5568 !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    transition: all 0.2s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
    min-height: 46px !important;
}

.amount-item input:checked+.amt-box,
.amount-item.active .amt-box {
    background: #00a651 !important;
    color: #fff !important;
    border-color: #00a651 !important;
    box-shadow: 0 4px 10px rgba(0, 166, 81, 0.2) !important;
}

/* Custom Amount Styling */
.amt-box.custom-box {
    justify-content: flex-start !important;
    gap: 6px !important;
    padding: 9px 12px !important;
    background: #fff !important;
    color: #1a202c !important;
    cursor: text !important;
}

.currency-symbol {
    font-size: 15px !important;
    font-weight: 600 !important;
    flex-shrink: 0 !important;
    user-select: none !important;
    pointer-events: none !important;
    line-height: 1 !important;
    color: #4a5568 !important;
}

.amount-item input:checked+.amt-box.custom-box .currency-symbol {
    color: #fff !important;
}

.dc-multistep-container .dc-amount-grid .amt-box.custom-box input,
.dc-multistep-container #ms-custom-amount,
#dc-donation-modal .dc-amount-grid .amt-box.custom-box input,
#dc-donation-amount {
    display: block !important;
    width: 100% !important;
    flex: 1 !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    color: inherit !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    font-family: inherit !important;
    cursor: text !important;
    line-height: 1.5 !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.dc-multistep-container .amt-box.custom-box input:focus,
.dc-multistep-container #ms-custom-amount:focus,
#dc-donation-modal .amt-box.custom-box input:focus,
#dc-donation-amount:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.amt-box.custom-box input::-webkit-outer-spin-button,
.amt-box.custom-box input::-webkit-inner-spin-button,
#dc-donation-amount::-webkit-outer-spin-button,
#dc-donation-amount::-webkit-inner-spin-button,
#ms-custom-amount::-webkit-outer-spin-button,
#ms-custom-amount::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

/* Widget Modal UI */
.dc-form-group {
    margin-bottom: 18px;
    text-align: left;
}

.dc-form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 8px;
}

.dc-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.dc-input-wrapper input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    color: #2d3748;
    background: #f8fafc;
    transition: all 0.2s ease;
    outline: none;
    font-family: 'Hind Siliguri', sans-serif;
}

.dc-input-wrapper input:focus {
    border-color: #00a651;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 166, 81, 0.1);
}

.dc-input-wrapper.amount-wrapper input {
    padding-left: 35px;
    font-weight: 600;
    font-size: 18px;
    color: #00a651;
}

.dc-input-wrapper .currency {
    position: absolute;
    left: 15px;
    font-size: 18px;
    color: #00a651;
    font-weight: 700;
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #718096;
    font-size: 11px;
    font-weight: bold;
    margin-left: 5px;
    cursor: help;
}

.dc-next-button {
    background: #00a651 !important;
    color: #fff !important;
    border: none !important;
    width: 100% !important;
    padding: 14px !important;
    border-radius: 8px !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    font-family: 'Hind Siliguri', sans-serif !important;
    transition: all 0.3s ease !important;
    margin-top: 10px !important;
    box-shadow: 0 4px 12px rgba(0, 166, 81, 0.2) !important;
}

.dc-next-button:hover {
    background: #008f45;
}

.ms-methods.row-layout {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


/* Progress Bar */
.dc-steps-progress {
    display: flex !important;
    justify-content: space-between !important;
    margin-bottom: 45px !important;
    border-bottom: 2px solid #f5f5f5 !important;
    padding-bottom: 18px !important;
}

.step-progress {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #a0aec0 !important;
    position: relative !important;
}

.step-progress.active {
    color: #00a651 !important;
}

.step-progress.active::after {
    content: '' !important;
    position: absolute !important;
    bottom: -20px !important;
    left: 0 !important;
    width: 100% !important;
    height: 4px !important;
    background: #00a651 !important;
    border-radius: 10px !important;
}

/* Steps - HIDDEN BY DEFAULT */
.dc-ms-step {
    display: none !important;
}

.dc-ms-step.active {
    display: block !important;
}

.dc-ms_step h3 {
    font-size: 20px !important;
    margin-bottom: 15px !important;
    color: #2d3748 !important;
    font-weight: 700 !important;
}

/* Amount Grid - Image 2 Style */
.dc-amount-grid.image-2-style {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
    margin-bottom: 15px !important;
}

.dc-amount-grid.image-2-style .amount-item {
    cursor: pointer !important;
}

.dc-amount-grid.image-2-style .amount-item input[type="radio"] {
    display: none !important;
}

.dc-amount-grid.image-2-style .amt-box {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 5px !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 8px !important;
    background: #fff !important;
    color: #4a5568 !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    transition: all 0.2s ease !important;
}

.dc-amount-grid.image-2-style .amount-item:hover .amt-box {
    border-color: #00a651 !important;
    background: #f0fff4 !important;
}

.dc-amount-grid.image-2-style .amount-item input[type="radio"]:checked+.amt-box {
    background: #00a651 !important;
    border-color: #00a651 !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(0, 166, 81, 0.2) !important;
}

.dc-amount-grid.image-2-style .custom-box {
    background: #ffffff !important;
    color: #4a5568 !important;
    font-size: 14px !important;
    border-color: #e2e8f0 !important;
}

.dc-amount-grid.image-2-style .amount-item input[type="radio"]:checked+.amt-box {
    background: #00a651 !important;
    border-color: #00a651 !important;
    color: #fff !important;
}

.dc-amount-grid.image-2-style .amount-item input[type="radio"]:checked+.amt-box #ms-custom-amount::placeholder,
.dc-amount-grid.image-2-style .amount-item input[type="radio"]:checked+.amt-box #dc-donation-amount::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

.dc-form-field input::placeholder {
    opacity: 0.35 !important;
    color: #718096 !important;
}

#ms-custom-amount::placeholder {
    opacity: 0.35 !important;
    color: #4a5568 !important;
}

/* Hide spin buttons */
#ms-custom-amount::-webkit-outer-spin-button,
#ms-custom-amount::-webkit-inner-spin-button,
#dc-donation-amount::-webkit-outer-spin-button,
#dc-donation-amount::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#ms-custom-amount,
#dc-donation-amount {
    -webkit-appearance: none;
    -moz-appearance: textfield;
    appearance: none;
}

/* White text when selected */
.dc-amount-grid.image-2-style .amount-item input[type="radio"]:checked+.amt-box input {
    color: #ffffff !important;
}

.dc-amount-grid.image-2-style .amount-item input[type="radio"]:checked+.amt-box input::placeholder {
    color: rgba(255, 255, 255, 0.8) !important;
}

.dc-amount-grid.image-2-style .amount-item input[type="radio"]:checked+.amt-box span {
    color: #ffffff !important;
}

/* Form Fields */
.dc-form-field {
    margin-bottom: 8px !important;
}

.dc-form-field label {
    display: block !important;
    margin-bottom: 6px !important;
    font-weight: 600 !important;
    color: #4a5568 !important;
    font-size: 15px !important;
}

.dc-form-field input {
    width: 100% !important;
    padding: 10px 12px !important;
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    outline: none !important;
    font-size: 14px !important;
    color: #2d3748 !important;
    transition: all 0.2s ease !important;
}

.dc-form-row {
    display: flex !important;
    justify-content: space-between !important;
    gap: 30px !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    margin-bottom: 20px !important;
}

.dc-form-row .dc-form-field {
    flex: 1 1 200px !important;
}

.dc-form-footer {
    display: block !important;
    width: 100% !important;
    margin-top: 15px !important;
    text-align: center !important;
}

.dc-form-field input:focus {
    border-color: #00a651 !important;
    box-shadow: 0 0 0 3px rgba(0, 166, 81, 0.1) !important;
}

.dc-form-field.horizontal {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 8px !important;
}

.dc-form-field.horizontal label {
    flex: 0 0 100px !important;
    margin-bottom: 0 !important;
    white-space: nowrap !important;
    font-size: 15px !important;
    color: #4a5568 !important;
}

.dc-form-field.horizontal input {
    flex: 1 !important;
}

/* Summary Table */
.dc-summary-table {
    margin-bottom: 35px !important;
    border-top: 2px solid #f7fafc !important;
}

.summary-row {
    display: flex !important;
    justify-content: space-between !important;
    padding: 18px 0 !important;
    border-bottom: 1px solid #f7fafc !important;
    font-size: 19px !important;
    color: #4a5568 !important;
}

.summary-row.total {
    font-weight: 800 !important;
    font-size: 22px !important;
    color: #1a202c !important;
    border-bottom: 2px solid #edf2f7 !important;
}

/* Payment Methods Grid Layout */
.ms-methods.grid-layout {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 15px !important;
    margin-bottom: 15px !important;
}

.ms-method-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    cursor: pointer !important;
    padding: 10px 8px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    background: #fff !important;
    transition: all 0.2s ease !important;
    text-align: left !important;
}

.ms-method-item:hover {
    border-color: #00a651 !important;
    transform: translateY(-2px) !important;
}

.ms-method-item.selected,
.ms-method-item:has(input[type="radio"]:checked) {
    border-color: #00a651 !important;
    background: #f0fff4 !important;
    box-shadow: 0 4px 6px -1px rgba(0, 166, 81, 0.1) !important;
}

.ms-checkmark {
    display: none !important;
}

.ms-method-item input[type="radio"] {
    display: none !important;
}

.ms-method-item img {
    max-height: 28px !important;
    width: auto !important;
    margin-bottom: 0 !important;
}

.ms-label-text {
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: #2d3748 !important;
    display: inline-block !important;
}

/* Buttons */
.dc-ms-btns {
    display: flex !important;
    justify-content: flex-end !important;
    gap: 20px !important;
}

.dc-ms-submit-btn {
    background: #00a651 !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 40px !important;
    border-radius: 8px !important;
    font-size: 17px !important;
    cursor: pointer !important;
    font-weight: 700 !important;
    transition: all 0.3s !important;
    box-shadow: 0 4px 12px rgba(0, 166, 81, 0.2) !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    justify-content: center !important;
    width: 250px !important;
    margin: 0 auto !important;
}

.dc-ms-submit-btn:hover {
    background: #008f45 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 15px rgba(0, 166, 81, 0.25) !important;
}

.dc-ms-prev {
    background: #edf2f7 !important;
    color: #4a5568 !important;
    border: none !important;
    padding: 15px 45px !important;
    border-radius: 8px !important;
    font-size: 18px !important;
    cursor: pointer !important;
    font-weight: 600 !important;
}

.dc-form-footer {
    display: block !important;
    width: 100% !important;
    margin-top: 40px !important;
    text-align: center !important;
}

/* Single Page Form Styling */
.dc-single-page-form {
    padding: 5px 0 !important;
}

.dc-form-section {
    margin-bottom: 15px !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid #f1f5f9 !important;
}

.dc-form-section:last-of-type {
    border-bottom: none !important;
}

.dc-form-section h3 {
    font-size: 16px !important;
    margin-bottom: 12px !important;
    color: #1a202c !important;
    font-weight: 700 !important;
}

.dc-form-row {
    display: flex !important;
    gap: 15px !important;
    flex-wrap: wrap !important;
    margin-bottom: 20px !important;
}

.dc-form-field.horizontal {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.dc-form-field.horizontal label {
    flex: 0 0 70px !important;
    margin-bottom: 0 !important;
    white-space: nowrap !important;
    font-size: 15px !important;
    color: #4a5568 !important;
    font-weight: 600 !important;
}

.dc-form-field.horizontal input {
    flex: 1 !important;
    padding: 10px 12px !important;
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    outline: none !important;
    font-size: 14px !important;
    color: #2d3748 !important;
    transition: all 0.2s ease !important;
}

/* Multistep Specific Layout */
.desktop-side-by-side {
    flex-wrap: nowrap !important;
}

.mobile-field-width {
    flex: 0 0 160px !important;
    min-width: 160px !important;
}

.email-field-grow {
    flex: 1 !important;
    min-width: 0 !important;
}

.email-field-grow label {
    flex: 0 0 auto !important;
    margin-right: 15px !important;
}

.email-field-grow input {
    width: 100% !important;
    flex: 1 !important;
    min-width: 0 !important;
    display: block !important;
    box-sizing: border-box !important;
}

.dc-form-footer {
    display: flex !important;
    justify-content: center !important;
    margin-top: 5px !important;
}

#ms-custom-amount {
    margin-top: 10px !important;
    padding: 12px !important;
    border-radius: 8px !important;
    border: 1.5px solid #e2e8f0 !important;
    font-size: 16px !important;
    width: 100% !important;
    outline: none !important;
}

#ms-custom-amount:focus {
    border-color: #00a651 !important;
}

/* Hide step progress header */
.dc-steps-progress {
    display: none !important;
}

/* Popup specific styles (to maintain compatibility) */
.dc-modal {
    display: none;
    position: fixed;
    z-index: 2500000 !important;
    /* Extremely high to stay above header */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    padding: 20px 0;
    box-sizing: border-box;
}

.dc-modal-content {
    background: #fff;
    margin: 30px auto;
    padding: 25px 30px;
    border-radius: 12px;
    max-width: 550px;
    width: 95%;
    text-align: left;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.4s ease;
    font-family: 'Hind Siliguri', sans-serif;
    overflow: hidden; /* Ensure banner doesn't spill over rounded corners */
}

#dc-popup-banner-container {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.dc-close {
    position: absolute;
    right: 15px;
    top: 10px;
    color: #4a5568;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {

    /* Donation Card */
    .dc-donation-card {
        max-width: 100% !important;
        margin: 0 !important;
        border-radius: 0 !important;
        width: 100% !important;
    }

    /* Grids (Amount and Payment) */
    .dc-amount-grid,
    .ms-methods.grid-layout {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    /* Form Rows */
    .dc-form-row {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .dc-form-field.horizontal {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 5px !important;
        width: 100% !important;
        flex: 1 !important;
    }

    .dc-form-field.horizontal label {
        flex: 0 0 auto !important;
        width: 100% !important;
        text-align: left !important;
        margin-bottom: 5px !important;
        margin-right: 0 !important;
    }

    .dc-form-field.horizontal input,
    .dc-form-field.horizontal select {
        width: 100% !important;
    }

    .desktop-side-by-side {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .desktop-side-by-side .mobile-field-width,
    .desktop-side-by-side .email-field-grow {
        flex: 0 0 auto !important;
        width: 100% !important;
    }

    /* Modal Adjustments */
    .dc-modal-content {
        width: 94% !important;
        margin: 20px auto !important;
        padding: 20px 15px !important;
        border-radius: 12px !important;
    }

    #dc-popup-banner-container {
        height: 140px !important;
        margin: -20px -15px 15px -15px !important;
    }

    .dc-modal-content h3 {
        font-size: 15px !important;
    }

    .ms-method-item {
        padding: 10px 5px !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 5px !important;
    }

    .ms-method-item img {
        max-height: 22px !important;
    }

    .ms-label-text {
        font-size: 11px !important;
        display: block !important;
        width: 100% !important;
    }

    /* Success/Error Popup Icons */
    #dc-success-popup .dc-modal-content div:first-child,
    #dc-error-popup .dc-modal-content div:first-child {
        width: 60px !important;
        height: 60px !important;
        line-height: 60px !important;
        font-size: 30px !important;
    }

    .dc-donation-title {
        font-size: 24px !important;
        margin-top: 10px !important;
    }

    .dc-ms-submit-btn,
    .dc-ms-next {
        width: 100% !important;
        max-width: 100% !important;
        padding: 14px 20px !important;
        font-size: 16px !important;
    }

    .dc-donation-header {
        height: 120px !important;
    }

    .dc-form-footer {
        margin-top: 25px !important;
    }

    .dc-multistep-container {
        padding: 10px !important;
        margin: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        border-radius: 0 !important;
    }
}

@media screen and (max-width: 480px) {

    .dc-amount-grid,
    .ms-methods.grid-layout {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .ms-method-item {
        padding: 8px 4px !important;
    }

    .ms-label-text {
        font-size: 10px !important;
    }
}
/* === BMF Glassmorphism (Added by Assistant) === */
.dc-donation-card,
.dc-modal-content {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
    border-radius: 20px !important;
}
.dc-donation-body,
.dc-single-page-form {
    background: transparent !important;
}
.dc-donation-header img {
    mix-blend-mode: multiply !important;
}
