.budget-widget {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 128px 32px;
    overflow: hidden;
    background-color: transparent;
    XXXborder: solid 1px #ff0000;
}

.budget-widget * {
    XXXborder: solid 1px red !important;
}

.budget-widget__container {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    width: 100%;
    max-width: 1152px;
    gap: 48px;
    overflow: hidden;
}

.budget-widget__content {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: 464px;
    height: auto;
    gap: 18px;
    overflow: hidden;
}

.budget-widget__content h2 {
    display: flex;
    justify-content: start;
    align-items: start;
    width: 100%;
    min-height: auto;
    margin: 0px;
    overflow: hidden;
    font-size: 40px;
    font-weight: 800;
    color: #161616;
}

.budget-widget__content p {
    display: flex;
    justify-content: start;
    align-items: start;
    width: 100%;
    min-height: auto;
    margin: 0px;
    overflow: hidden;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    color: #2E2E2E;
}

.budget-widget__content_button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 256px;
    padding: 8px 8px;
    gap: 8px;
    overflow: hidden;
    cursor: pointer;
    background-color: #F44A22;
    color: #FEF8E8;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    transition: 0.2s ease;
    XXXborder: 2px solid #F44A22;
    user-select: none;
    text-decoration: none;
}

.budget-widget__content_button:hover {
    opacity: 0.9;
}

.budget-widget__content_button i {
    font-size: 18px;
    color: #FEF8E8;
    display: inline-block;
}

.budget-widget__button {
    display: none;
}

.budget-widget__form {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: 664px;
    height: auto;
    gap: 18px;
}

.budget-widget__form_item {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    width: 100%;
    height: 48px;
    gap: 4px;
    padding: 8px;
    overflow: hidden;
    background: #161616;
    border-radius: 6px;
    border: 1px solid #2E2E2E;
}

.chat {
    display: flex;
    flex-direction: row;
    justify-content: start;
    width: 100%;
    min-height: 160px;
    gap: 4px;
    padding: 8px;
}

.budget-widget__form_item-icon {
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    padding: 6px;
    overflow: hidden;
}

.budget-widget__form_item-icon img {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    color: #F44A22 !important;
}

.budget-widget__form_item p {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 32px;
    gap: 4px;
    padding: 12px 2px;
    margin: 0;
    overflow: hidden;
    font-size: 14px;
    font-weight: 500;
    color: #fef8e8;
}

.budget-widget__form_item-input {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    height: 100%;
    padding: 0px 8px;
    overflow: hidden;
    background: #161616;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #fef8e8;
    border: none;
    -moz-appearance: textfield;
}

.budget-widget__form_item-input::-webkit-outer-spin-button,
.budget-widget__form_item-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.budget-widget__form_item-textarea {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    height: 100%;
    padding: 4px 8px 4px 8px;
    overflow: hidden;
    background: #161616;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #fef8e8;
    border: none;
    resize: none;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.budget-widget__form_item-textarea::-webkit-scrollbar {
    display: none;
}

.budget-widget__form_item-input:focus,
.budget-widget__form_item-textarea:focus {
    outline: none;
    box-shadow: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #1c1c1c inset !important;
    -webkit-text-fill-color: #ffffff !important;
    caret-color: #ffffff;
    transition: background-color 9999s ease-in-out 0s;
}

.budget-widget__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 100%;
    padding: 16px;
    overflow: hidden;
    cursor: pointer;
    background-color: #F44A22;
    color: #FEF8E8;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    transition: 0.2s ease;
    border: none;
    user-select: none;
}

.budget-widget__submit:hover {
    opacity: 0.9;
}

#toast-container {
    position: fixed;
    top: 32px;
    right: 32px;
    z-index: 9999;
}

.toast {
    min-width: 280px;
    max-width: 360px;
    margin-bottom: 10px;
    padding: 14px 18px;
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    animation: fadeIn 0.3s ease;
}

.toast.success {
    background-color: #198754;
}

.toast.error {
    background-color: #dc3545;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1152px) {

    .budget-widget {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: auto;
        padding: 96px 24px;
        overflow: hidden;
        background-color: transparent;
        XXXborder: solid 1px #ff0000;
    }

    .budget-widget * {
        XXXborder: solid 1px red !important;
    }

    .budget-widget__container {
        display: flex;
        flex-direction: row;
        justify-content: start;
        align-items: start;
        width: 100%;
        max-width: 1152px;
        gap: 32px;
        overflow: hidden;
    }

    .budget-widget__content {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        width: 448px;
        height: auto;
        gap: 18px;
        overflow: hidden;
    }

    .budget-widget__content h2 {
        display: flex;
        justify-content: start;
        align-items: start;
        width: 100%;
        min-height: auto;
        margin: 0px;
        overflow: hidden;
        font-size: 32px;
        font-weight: 800;
        color: #161616;
    }

    .budget-widget__content p {
        display: flex;
        justify-content: start;
        align-items: start;
        width: 100%;
        min-height: auto;
        margin: 0px;
        overflow: hidden;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.2;
        color: #2E2E2E;
    }

    .budget-widget__content_button {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        height: 48px;
        width: 100%;
        padding: 8px 8px;
        gap: 8px;
        overflow: hidden;
        cursor: pointer;
        background-color: #F44A22;
        color: #FEF8E8;
        border-radius: 6px;
        font-weight: 700;
        font-size: 15px;
        transition: 0.2s ease;
        XXXborder: 2px solid #F44A22;
        user-select: none;
        text-decoration: none;
    }

    .budget-widget__content_button:hover {
        opacity: 0.9;
    }

    .budget-widget__content_button i {
        font-size: 18px;
        color: #FEF8E8;
        display: inline-block;
    }

    .budget-widget__form {
        display: flex;
        flex-shrink: 0;
        flex-direction: column;
        align-items: start;
        justify-content: start;
        width: 672px;
        height: auto;
        gap: 18px;
    }

    .budget-widget__form_item {
        display: flex;
        flex-direction: row;
        align-items: start;
        justify-content: start;
        width: 100%;
        height: 48px;
        gap: 4px;
        padding: 8px;
        overflow: hidden;
        background: #161616;
        border-radius: 6px;
        border: 1px solid #2E2E2E;
    }

    .chat {
        display: flex;
        flex-direction: row;
        justify-content: start;
        width: 100%;
        min-height: 160px;
        gap: 4px;
        padding: 8px;
    }

    .budget-widget__form_item-icon {
        display: flex;
        flex-shrink: 0;
        justify-content: center;
        align-items: center;
        width: 32px;
        height: 32px;
        padding: 6px;
        overflow: hidden;
    }

    .budget-widget__form_item-icon img {
        display: flex;
        width: 100%;
        height: 100%;
        object-fit: cover;
        user-select: none;
        color: #F44A22 !important;
    }

    .budget-widget__form_item p {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: auto;
        height: 32px;
        gap: 4px;
        padding: 12px 2px;
        margin: 0;
        overflow: hidden;
        font-size: 13px;
        font-weight: 500;
        color: #fef8e8;
    }

    .budget-widget__form_item-input {
        display: flex;
        align-items: center;
        justify-content: start;
        width: 100%;
        height: 100%;
        padding: 0px 8px;
        overflow: hidden;
        background: #161616;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 500;
        color: #fef8e8;
        border: none;
        -moz-appearance: textfield;
    }

    .budget-widget__form_item-input::-webkit-outer-spin-button,
    .budget-widget__form_item-input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .budget-widget__form_item-textarea {
        display: flex;
        align-items: center;
        justify-content: start;
        width: 100%;
        height: 100%;
        padding: 4px 8px 4px 8px;
        overflow: hidden;
        background: #161616;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 500;
        color: #fef8e8;
        border: none;
        resize: none;
        overflow-y: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .budget-widget__form_item-textarea::-webkit-scrollbar {
        display: none;
    }

    .budget-widget__form_item-input:focus,
    .budget-widget__form_item-textarea:focus {
        outline: none;
        box-shadow: none;
    }

    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    textarea:-webkit-autofill,
    textarea:-webkit-autofill:hover,
    textarea:-webkit-autofill:focus {
        -webkit-box-shadow: 0 0 0 1000px #1c1c1c inset !important;
        -webkit-text-fill-color: #ffffff !important;
        caret-color: #ffffff;
        transition: background-color 9999s ease-in-out 0s;
    }

    .budget-widget__submit {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 48px;
        width: 100%;
        padding: 16px;
        overflow: hidden;
        cursor: pointer;
        background-color: #F44A22;
        color: #FEF8E8;
        border-radius: 6px;
        font-weight: 700;
        font-size: 15px;
        transition: 0.2s ease;
        border: none;
        user-select: none;
    }

    .budget-widget__submit:hover {
        opacity: 0.9;
    }

    #toast-container {
        position: fixed;
        top: 16px;
        right: 16px;
        z-index: 9999;
    }

    .toast {
        min-width: 280px;
        max-width: 360px;
        margin-bottom: 10px;
        padding: 14px 18px;
        border-radius: 6px;
        color: #ffffff;
        font-size: 14px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
        animation: fadeIn 0.3s ease;
    }

    .toast.success {
        background-color: #198754;
    }

    .toast.error {
        background-color: #dc3545;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media (max-width: 976px) {

    .budget-widget {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: auto;
        padding: 64px 24px;
        overflow: hidden;
        background-color: transparent;
        XXXborder: solid 1px #ff0000;
    }

    .budget-widget * {
        XXXborder: solid 1px red !important;
    }

    .budget-widget__container {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        width: 100%;
        max-width: auto;
        gap: 8px;
        overflow: hidden;
    }

    .budget-widget__content {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        width: 100%;
        height: auto;
        gap: 16px;
        overflow: hidden;
    }

    .budget-widget__content h2 {
        display: flex;
        justify-content: start;
        align-items: start;
        width: 100%;
        min-height: auto;
        margin: 0px;
        overflow: hidden;
        font-size: 32px;
        font-weight: 800;
        color: #161616;
    }

    .budget-widget__content p {
        display: flex;
        flex-shrink: 0 !important;
        justify-content: start;
        align-items: start;
        width: 100%;
        min-height: auto;
        margin: 0px;
        overflow: hidden;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.2;
        color: #2E2E2E;
    }

    .budget-widget__content_button {
        display: none;
    }

    .budget-widget__button {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        min-height: 40px;
        width: 100%;
        padding: 0px 8px;
        gap: 8px;
        overflow: hidden;
        cursor: pointer;
        background-color: #F44A22;
        color: #FEF8E8;
        border-radius: 6px;
        font-weight: 700;
        font-size: 14px;
        transition: 0.2s ease;
        XXXborder: 2px solid #F44A22;
        user-select: none;
        text-decoration: none;
    }

    .budget-widget__button:hover {
        opacity: 0.9;
    }

    .budget-widget__button i {
        font-size: 16px;
        color: #FEF8E8;
        display: inline-block;
    }

    .budget-widget__form {
        display: flex;
        flex-shrink: 0;
        flex-direction: column;
        align-items: start;
        justify-content: start;
        width: 100%;
        height: auto;
        gap: 12px;
        margin-top: 8px;
    }

    .budget-widget__form_item {
        display: flex;
        flex-direction: row;
        align-items: start;
        justify-content: start;
        width: 100%;
        height: 48px;
        gap: 8px;
        padding: 8px;
        overflow: hidden;
        background: #161616;
        border-radius: 6px;
        border: 1px solid #2E2E2E;
    }

    .chat {
        display: flex;
        flex-direction: row;
        justify-content: start;
        width: 100%;
        min-height: 160px;
        gap: 4px;
        padding: 8px;
    }

    .budget-widget__form_item-icon {
        display: flex;
        flex-shrink: 0;
        justify-content: center;
        align-items: center;
        width: 32px;
        height: 32px;
        padding: 6px;
        overflow: hidden;
    }

    .budget-widget__form_item-icon img {
        display: flex;
        width: 100%;
        height: 100%;
        object-fit: cover;
        user-select: none;
        color: #F44A22 !important;
    }

    .budget-widget__form_item p {
        display: flex;
        flex-shrink: 0;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 32px;
        gap: 4px;
        padding: 12px 2px;
        margin: 0;
        overflow: hidden;
        font-size: 13px;
        font-weight: 500;
        color: #fef8e8;
    }

    .budget-widget__form_item-input {
        display: flex;
        align-items: center;
        justify-content: start;
        width: 100%;
        height: 100%;
        padding: 0px 8px;
        overflow: hidden;
        background: #161616;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 500;
        color: #fef8e8;
        border: none;
        -moz-appearance: textfield;
    }

    .budget-widget__form_item-input::-webkit-outer-spin-button,
    .budget-widget__form_item-input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .budget-widget__form_item-textarea {
        display: flex;
        align-items: center;
        justify-content: start;
        width: 100%;
        height: 100%;
        padding: 6px 8px 4px 8px;
        overflow: hidden;
        background: #161616;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 500;
        color: #fef8e8;
        border: none;
        resize: none;
        overflow-y: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .budget-widget__form_item-textarea::-webkit-scrollbar {
        display: none;
    }

    .budget-widget__form_item-input:focus,
    .budget-widget__form_item-textarea:focus {
        outline: none;
        box-shadow: none;
    }

    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    textarea:-webkit-autofill,
    textarea:-webkit-autofill:hover,
    textarea:-webkit-autofill:focus {
        -webkit-box-shadow: 0 0 0 1000px #1c1c1c inset !important;
        -webkit-text-fill-color: #ffffff !important;
        caret-color: #ffffff;
        transition: background-color 9999s ease-in-out 0s;
    }

    .budget-widget__submit {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 40px;
        width: 100%;
        padding: 0px 8px;
        overflow: hidden;
        cursor: pointer;
        background-color: #F44A22;
        color: #FEF8E8;
        border-radius: 6px;
        font-weight: 700;
        font-size: 14px;
        transition: 0.2s ease;
        border: none;
        user-select: none;
    }

    .budget-widget__submit:hover {
        opacity: 0.9;
    }

    #toast-container {
        position: fixed;
        top: 8px;
        right: 8px;
        z-index: 9999;
    }

    .toast {
        min-width: 280px;
        max-width: 360px;
        margin-bottom: 10px;
        padding: 14px 18px;
        border-radius: 6px;
        color: #ffffff;
        font-size: 14px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
        animation: fadeIn 0.3s ease;
    }

    .toast.success {
        background-color: #198754;
    }

    .toast.error {
        background-color: #dc3545;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

}