.table.template-1 {
    border-collapse: separate;
    background: var(--section-background-mobile-color, rgba(0, 0, 0, 0.00));

    margin: var(--section-margin-mobile-top, 0) var(--section-margin-mobile-right, 0) var(--section-margin-mobile-bottom, 0) var(--section-margin-mobile-left, 0);
    padding: calc(var(--section-padding-mobile-top, 3) * 1rem) calc(var(--section-padding-mobile-right, 0) * 1rem) calc(var(--section-padding-mobile-bottom, 3) * 1rem) calc(var(--section-padding-mobile-left, 0) * 1rem);

    border-style: var(--section-border-mobile-top-style, solid) var(--section-border-mobile-right-style, solid) var(--section-border-mobile-bottom-style, solid) var(--section-border-mobile-left-style, solid);
    border-width: calc(var(--section-border-mobile-top-width, 0) * 1rem) calc(var(--section-border-mobile-right-width, 0) * 1rem) calc(var(--section-border-mobile-bottom-width, 0) * 1rem) calc(var(--section-border-mobile-left-width, 0) * 1rem);
    border-color: var(--section-border-mobile-top-color, rgba(255, 255, 255, 1.00)) var(--section-border-mobile-right-color, rgba(255, 255, 255, 1.00)) var(--section-border-mobile-bottom-color, rgba(255, 255, 255, 1.00)) var(--section-border-mobile-left-color, rgba(255, 255, 255, 1.00));
    border-radius: calc(var(--section-border-mobile-left-radius, 0) * 1rem) calc(var(--section-border-mobile-top-radius, 0) * 1rem) calc(var(--section-border-mobile-right-radius, 0) * 1rem) calc(var(--section-border-mobile-bottom-radius, 0) * 1rem);

    display: flex;
    justify-content: center;
    
    & .table-container {
        overflow-x: auto;
        overflow-y: hidden;

        -webkit-overflow-scrolling: touch;
        min-width: var(--section-dimensions-mobile-minWidth, auto);
        width: var(--section-dimensions-mobile-width, auto);
        max-width: var(--section-dimensions-mobile-maxWidth, none);
        min-height: var(--section-dimensions-mobile-minHeight, auto);
        height: var(--section-dimensions-mobile-height, auto);
        max-height: var(--section-dimensions-mobile-maxHeight, none);
    }

    & .title {
        font-size: calc(var(--title-font-mobile-fontSize, 1.75) * 1rem);
        font-weight: var(--title-font-mobile-fontWeight, 700);
        line-height: var(--title-font-mobile-lineHeight, 1);
        text-align: var(--title-font-mobile-textAlign, start);
        font-family: var(--title-font-mobile-fontFamily, var(--heading-font-family));
        text-transform: var(--title-font-mobile-textTransform, none);

        color: var(--title-font-mobile-textColor, rgba(0, 0, 0, 1.00));
    }

    & .description {
        font-size: calc(var(--description-font-mobile-fontSize, 1) * 1rem);
        font-weight: var(--description-font-mobile-fontWeight, 400);
        line-height: var(--description-font-mobile-lineHeight, 1);
        text-align: var(--description-font-mobile-textAlign, start);
        font-family: var(--description-font-mobile-fontFamily, var(--global-font-family));
        text-transform: var(--description-font-mobile-textTransform, none);
        color: var(--description-font-mobile-textColor, rgba(0, 0, 0, 1.00));
    }

    & .table-t1 {
        table-layout: fixed;
        width: 100%;
        min-width: 0;
        margin-bottom: 1rem;

        border-spacing: calc(var(--table-flexbox-mobile-columnGap, 0) * 1rem) calc(var(--table-flexbox-mobile-rowGap, 0) * 1rem);
        border-collapse: separate;

        & th, & td {
            white-space: normal;
            text-wrap: wrap;
            overflow-wrap: anywhere;
            word-break: break-word;
            hyphens: auto;
        }

        & tbody {
            background: var(--tableLower-background-mobile-color, rgba(0, 0, 0, 0.00));

            font-size: calc(var(--tableLower-font-mobile-fontSize, 1) * 1rem);
            font-weight: var(--tableLower-font-mobile-fontWeight, 400);
            line-height: var(--tableLower-font-mobile-lineHeight, 1);
            text-align: var(--tableLower-font-mobile-textAlign, center);
            font-family: var(--tableLower-font-mobile-fontFamily, var(--global-font-family));
            text-transform: var(--tableLower-font-mobile-textTransform, none);
            color: var(--tableLower-font-mobile-textColor, rgba(0, 0, 0, 1.00));

            & td {
                padding: calc(var(--tableLower-padding-mobile-top, 0.5) * 1rem) calc(var(--tableLower-padding-mobile-right, 0.5) * 1rem) calc(var(--tableLower-padding-mobile-bottom, 0.5) * 1rem) calc(var(--tableLower-padding-mobile-left, 0.5) * 1rem);
                
                border-style: var(--tableLower-border-mobile-top-style, solid) var(--tableLower-border-mobile-right-style, solid) var(--tableLower-border-mobile-bottom-style, solid) var(--tableLower-border-mobile-left-style, solid);
                border-width: calc(var(--tableLower-border-mobile-top-width, 0.0625) * 1rem) calc(var(--tableLower-border-mobile-right-width, 0) * 1rem) calc(var(--tableLower-border-mobile-bottom-width, 0.0625) * 1rem) calc(var(--tableLower-border-mobile-left-width, 0) * 1rem);
                border-color: var(--tableLower-border-mobile-top-color, rgba(0, 0, 0, 1.00)) var(--tableLower-border-mobile-right-color, transparent) var(--tableLower-border-mobile-bottom-color, rgba(0, 0, 0, 1.00)) var(--tableLower-border-mobile-left-color, transparent);
                vertical-align: var(--table-flexbox-mobile-verticalAlign, center);
            }
        }

        & thead {
            background: var(--tableUpper-background-mobile-color, rgba(0, 0, 0, 0.00));
            
            font-size: calc(var(--tableUpper-font-mobile-fontSize, 1) * 1rem);
            font-weight: var(--tableUpper-font-mobile-fontWeight, 400);
            line-height: var(--tableUpper-font-mobile-lineHeight, 1);
            text-align: var(--tableUpper-font-mobile-textAlign, center);
            font-family: var(--tableUpper-font-mobile-fontFamily, var(--global-font-family));
            text-transform: var(--tableUpper-font-mobile-textTransform, none);
            color: var(--tableUpper-font-mobile-textColor, rgba(0, 0, 0, 1.00));

            & th {
                padding: calc(var(--tableUpper-padding-mobile-top, 0.5) * 1rem) calc(var(--tableUpper-padding-mobile-right, 0.5) * 1rem) calc(var(--tableUpper-padding-mobile-bottom, 0.5) * 1rem) calc(var(--tableUpper-padding-mobile-left, 0.5) * 1rem);
                
                border-style: var(--tableUpper-border-mobile-top-style, solid) var(--tableUpper-border-mobile-right-style, solid) var(--tableUpper-border-mobile-bottom-style, solid) var(--tableUpper-border-mobile-left-style, solid);
                border-width: calc(var(--tableUpper-border-mobile-top-width, 0) * 1rem) calc(var(--tableUpper-border-mobile-right-width, 0) * 1rem) calc(var(--tableUpper-border-mobile-bottom-width, 0) * 1rem) calc(var(--tableUpper-border-mobile-left-width, 0) * 1rem);
                border-color: var(--tableUpper-border-mobile-top-color, rgba(255, 255, 255, 1.00)) var(--tableUpper-border-mobile-right-color, rgba(255, 255, 255, 1.00)) var(--tableUpper-border-mobile-bottom-color, rgba(255, 255, 255, 1.00)) var(--tableUpper-border-mobile-left-color, rgba(255, 255, 255, 1.00));
                vertical-align: var(--table-flexbox-mobile-verticalAlign, center);
            }
        }
    }
}

@container page-container (min-width: 768px) {
    .table.template-1 {
        margin: var(--section-margin-tablet-top, 0) var(--section-margin-tablet-right, 0) var(--section-margin-tablet-bottom, 0) var(--section-margin-tablet-left, 0);
        padding: calc(var(--section-padding-tablet-top, 3) * 1rem) calc(var(--section-padding-tablet-right, 0) * 1rem) calc(var(--section-padding-tablet-bottom, 3) * 1rem) calc(var(--section-padding-tablet-left, 0) * 1rem);

        border-width: calc(var(--section-border-tablet-top-width, 0) * 1rem) calc(var(--section-border-tablet-right-width, 0) * 1rem) calc(var(--section-border-tablet-bottom-width, 0) * 1rem) calc(var(--section-border-tablet-left-width, 0) * 1rem);
        border-radius: calc(var(--section-border-tablet-left-radius, 0) * 1rem) calc(var(--section-border-tablet-top-radius, 0) * 1rem) calc(var(--section-border-tablet-right-radius, 0) * 1rem) calc(var(--section-border-tablet-bottom-radius, 0) * 1rem);

        & .table-container {
            min-width: var(--section-dimensions-tablet-minWidth, auto);
            width: var(--section-dimensions-tablet-width, auto);
            max-width: var(--section-dimensions-tablet-maxWidth, none);
            min-height: var(--section-dimensions-tablet-minHeight, auto);
            height: var(--section-dimensions-tablet-height, auto);
            max-height: var(--section-dimensions-tablet-maxHeight, none);
        }

        & .title {
            font-size: calc(var(--title-font-tablet-fontSize, 2.5) * 1rem);
            line-height: var(--title-font-tablet-lineHeight, 1);
            text-align: var(--title-font-tablet-textAlign, start);
        }

        & .description {
            font-size: calc(var(--description-font-tablet-fontSize, 1.125) * 1rem);
            line-height: var(--description-font-tablet-lineHeight, 1);
            text-align: var(--description-font-tablet-textAlign, start);
        }

        & .table-t1 {
            width: 100%;
            margin-bottom: 1rem;
            
            border-spacing: calc(var(--table-flexbox-tablet-columnGap, 0) * 1rem) calc(var(--table-flexbox-tablet-rowGap, 0) * 1rem);
            border-collapse: separate;

            & tbody {
                padding: calc(var(--tableLower-padding-tablet-top, 3) * 1rem) calc(var(--tableLower-padding-tablet-right, 0) * 1rem) calc(var(--tableLower-padding-tablet-bottom, 3) * 1rem) calc(var(--tableLower-padding-tablet-left, 0) * 1rem);

                font-size: calc(var(--tableLower-font-tablet-fontSize, 1) * 1rem);
                line-height: var(--tableLower-font-tablet-lineHeight, 1);
                text-align: var(--tableLower-font-tablet-textAlign, center);

                & td {
                    padding: calc(var(--tableLower-padding-tablet-top, 0.5) * 1rem) calc(var(--tableLower-padding-tablet-right, 0.5) * 1rem) calc(var(--tableLower-padding-tablet-bottom, 0.5) * 1rem) calc(var(--tableLower-padding-tablet-left, 0.5) * 1rem);
                
                    border-width: calc(var(--tableLower-border-tablet-top-width, 0.0625) * 1rem) calc(var(--tableLower-border-tablet-right-width, 0) * 1rem) calc(var(--tableLower-border-tablet-bottom-width, 0.0625) * 1rem) calc(var(--tableLower-border-tablet-left-width, 0) * 1rem);
                    vertical-align: var(--table-flexbox-tablet-verticalAlign, center);
                }
            }

            & thead {
                font-size: calc(var(--tableUpper-font-tablet-fontSize, 1) * 1rem);
                line-height: var(--tableUpper-font-tablet-lineHeight, 1);
                text-align: var(--tableUpper-font-tablet-textAlign, center);

                & th {
                    padding: calc(var(--tableUpper-padding-tablet-top, 0.5) * 1rem) calc(var(--tableUpper-padding-tablet-right, 0.5) * 1rem) calc(var(--tableUpper-padding-tablet-bottom, 0.5) * 1rem) calc(var(--tableUpper-padding-tablet-left, 0.5) * 1rem);
                
                    border-width: calc(var(--tableUpper-border-tablet-top-width, 0) * 1rem) calc(var(--tableUpper-border-tablet-right-width, 0) * 1rem) calc(var(--tableUpper-border-tablet-bottom-width, 0) * 1rem) calc(var(--tableUpper-border-tablet-left-width, 0) * 1rem);
                    vertical-align: var(--table-flexbox-tablet-verticalAlign, center);
                }
            }
        }
    }
}

@container page-container (min-width: 992px) {
    .table.template-1 {
        margin: var(--section-margin-desktop-top, 0) var(--section-margin-desktop-right, 0) var(--section-margin-desktop-bottom, 0) var(--section-margin-desktop-left, 0);
        padding: calc(var(--section-padding-desktop-top, 3) * 1rem) calc(var(--section-padding-desktop-right, 0) * 1rem) calc(var(--section-padding-desktop-bottom, 3) * 1rem) calc(var(--section-padding-desktop-left, 0) * 1rem);

        border-width: calc(var(--section-border-desktop-top-width, 0) * 1rem) calc(var(--section-border-desktop-right-width, 0) * 1rem) calc(var(--section-border-desktop-bottom-width, 0) * 1rem) calc(var(--section-border-desktop-left-width, 0) * 1rem);
        border-radius: calc(var(--section-border-desktop-left-radius, 0) * 1rem) calc(var(--section-border-desktop-top-radius, 0) * 1rem) calc(var(--section-border-desktop-right-radius, 0) * 1rem) calc(var(--section-border-desktop-bottom-radius, 0) * 1rem);

        & .table-container {
            min-width: var(--section-dimensions-desktop-minWidth, auto);
            width: var(--section-dimensions-desktop-width, auto);
            max-width: var(--section-dimensions-desktop-maxWidth, none);
            min-height: var(--section-dimensions-desktop-minHeight, auto);
            height: var(--section-dimensions-desktop-height, auto);
            max-height: var(--section-dimensions-desktop-maxHeight, none);
        }

        & .title {
            font-size: calc(var(--title-font-desktop-fontSize, 3) * 1rem);
            line-height: var(--title-font-desktop-lineHeight, 1);
            text-align: var(--title-font-desktop-textAlign, start);
        }

        & .description {
            font-size: calc(var(--description-font-desktop-fontSize, 1.25) * 1rem);
            line-height: var(--description-font-desktop-lineHeight, 1);
            text-align: var(--description-font-desktop-textAlign, start);
        }

        & .table-t1 {
            width: 100%;
            margin-bottom: 1rem;
            
            border-spacing: calc(var(--table-flexbox-desktop-columnGap, 0) * 1rem) calc(var(--table-flexbox-desktop-rowGap, 0) * 1rem);

            border-collapse: separate;

            & tbody {
                font-size: calc(var(--tableLower-font-desktop-fontSize, 1) * 1rem);
                line-height: var(--tableLower-font-desktop-lineHeight, 1);
                text-align: var(--tableLower-font-desktop-textAlign, center);

                & td {
                    padding: calc(var(--tableLower-padding-desktop-top, 0.5) * 1rem) calc(var(--tableLower-padding-desktop-right, 0.5) * 1rem) calc(var(--tableLower-padding-desktop-bottom, 0.5) * 1rem) calc(var(--tableLower-padding-desktop-left, 0.5) * 1rem);
                
                    border-width: calc(var(--tableLower-border-desktop-top-width, 0.0625) * 1rem) calc(var(--tableLower-border-desktop-right-width, 0) * 1rem) calc(var(--tableLower-border-desktop-bottom-width, 0.0625) * 1rem) calc(var(--tableLower-border-desktop-left-width, 0) * 1rem);
                    vertical-align: var(--table-flexbox-desktop-verticalAlign, center);
                }
            }

            & thead {
                font-size: calc(var(--tableUpper-font-desktop-fontSize, 1) * 1rem);
                line-height: var(--tableUpper-font-desktop-lineHeight, 1);
                text-align: var(--tableUpper-font-desktop-textAlign, center);

                & th {
                    padding: calc(var(--tableUpper-padding-desktop-top, 0.5) * 1rem) calc(var(--tableUpper-padding-desktop-right, 0.5) * 1rem) calc(var(--tableUpper-padding-desktop-bottom, 0.5) * 1rem) calc(var(--tableUpper-padding-desktop-left, 0.5) * 1rem);
                
                    border-width: calc(var(--tableUpper-border-desktop-top-width, 0) * 1rem) calc(var(--tableUpper-border-desktop-right-width, 0) * 1rem) calc(var(--tableUpper-border-desktop-bottom-width, 0) * 1rem) calc(var(--tableUpper-border-desktop-left-width, 0) * 1rem);
                    vertical-align: var(--table-flexbox-desktop-verticalAlign, center);
                }
            }
        }
    }
}