@layer components-widgets {
    .invoice-form__left {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 16px
    }

    @media screen and (max-width: 767px) {
        .invoice-form__left {
            padding-inline: 8px
        }
    }.invoice-form__heading-wrapper {
         display: flex;
         flex-direction: column;
         row-gap: 20px
     }

    @media screen and (max-width: 1279px) {
        .invoice-form__heading-wrapper {
            margin-bottom: 64px
        }
    }.invoice-form__controls {
         display: flex;
         -moz-column-gap: 8px;
         column-gap: 8px
     }

    .invoice-form__bottom-wrapper {
        display: flex;
        align-items: center;
        -moz-column-gap: 14px;
        column-gap: 14px;
        margin-top: 16px
    }

    @media screen and (max-width: 767px) {
        .invoice-form__bottom-wrapper {
            flex-direction: column;
            row-gap: 23px
        }
    }.invoice-form__image-text-wrapper {
         display: flex;
         align-items: center;
         flex-direction: row;
         -moz-column-gap: 16px;
         column-gap: 16px
     }

    .invoice-form__shield-image {
        width: 23px;
        height: 28px
    }

    .invoice-form__confirm-button {
        margin-left: auto
    }

    .invoice-form__section {
        padding: 40px 0
    }

    .invoice-form__section:not(:first-child) {
        border-top: 1px solid var(--tertiary-black)
    }

    .invoice-form__text {
        display: flex;
        align-items: center;
        flex-direction: row;
        margin-top: 10px
    }

    .invoice-form__text::before {
        display: block;
        width: 10px;
        height: 10px;
        margin: 0 13px 0 5px;
        content: "";
        transform: rotate(45deg);
        border-radius: 2px;
        background: var(--primary-blue)
    }

    @media screen and (max-width: 1279px) {
        .invoice-form__right {
            display: flex;
            flex-direction: row;
            min-height: 320px
        }
    }@media screen and (max-width: 767px) {
    .invoice-form__right {
        flex-direction: column;
        min-height: unset
    }
}.invoice-form__image {
     border-radius: var(--br4) var(--br4) 0 0
 }

    @media screen and (max-width: 1279px) {
        .invoice-form__image {
            max-width: 50%
        }
    }@media screen and (max-width: 767px) {
    .invoice-form__image {
        max-width: unset;
        max-height: 204px
    }
}.invoice-form__caption {
     display: flex;
     flex-direction: column;
     padding: 80px 40px 40px;
     border-radius: 0 0 var(--br4) var(--br4);
     background: var(--primary-blue);
     row-gap: 20px
 }

    @media screen and (max-width: 1279px) {
        .invoice-form__caption {
            justify-content: flex-end;
            width: 100%;
            padding: 42px 16px 16px
        }
    }.js-invoice-tab-active {
         background-color: var(--tertiary-blue)
     }
}
