﻿/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*   d1 Custom Elements - Notes Begin                                                                                                                                  */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/


/*
    If you're using custom HTML elements as a <span> alternative they will work immediately in all browsers. 
    For a <div> alternative you need to give them a display: block; property in CSS to convert them into block-level elements. 
    It is not necessary to register custom elements in javascript before use.

    Examples from https://matthewjamestaylor.com/custom-element-examples
*/


/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*   d1 Custom Elements - Notes End                                                                                                                                     */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/


/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*   Section - Begin                                                                                                                                                                  */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/


/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*   Section - End                                                                                                                                                                     */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/




/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*   Custom Colors - Begin                                                                                                                                                                  */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/* #region Custom Colors */
.colorOmniGrantGreen {
    color: #22B19D;
}

.colorOmniGrantDarkerGreen {
    color: #0D3632;
}

.colorOmniGrantYellow {
    color: #FDC030;
}

.colorOmniGrantBrown {
    color: #AF8628;
}

.colorOmniGrantRed {
    color: #F17077;
}

.colorOmniGrantOrange {
    color: #FB9413;
}

.colorOmniGrantDarkerOrange {
    color: #EF445B;
}
/* #endregion Custom Colors */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*   Custom Colors - End                                                                                                                                                                     */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/




/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*   Font Imports - Begin                                                                                                                                                         */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/




/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*   Font Imports - End                                                                                                                                                            */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/




/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*   Global Variables - Begin                                                                                                                                                    */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/




/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*   Global Variables - End                                                                                                                                                       */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/



/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*   Icons and Images - Begin                                                                                                                                                  */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/

d1-icon-svg-error {
}

/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*   Icons and Images - End                                                                                                                                                     */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/





/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*   Text Modifiers - Begin                                                                                                                                                       */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/

d1-highlight-lightblue {
    background: rgb(0, 255, 255);
    border-radius: .3em;
}

d1-highlight-green {
    background: rgb(0, 255, 0, .8);
    border-radius: .3em;
}

d1-highlight-green2 {
    background: rgb(76, 255, 0, .8);
    border-radius: .3em;
}

d1-highlight-red {
    background: rgb(255, 0, 0, .8);
    border-radius: .3em;
}


d1-highlight-yellow {
    background: rgba(255, 255, 0, .8);
    border-radius: .3em;
}




d1-text-optimal-line-length {
    display: block;
    max-width: 34em;
}




/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*  Text Modifiers - End                                                                                                                                                           */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/




/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*   Layout Helpers - Begin                                                                                                                                                      */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/


/*_____________________________________________________________________________________________________________________________*/
/*      Equal Column Width Layouts - Begin                                                                                                                             */
/*_____________________________________________________________________________________________________________________________*/

/* ______________________  */
/* Gap of 0rem - Begin  */
/* ______________________  */
d1-two-equal-columns-gap0rem,
d1-three-equal-columns-gap0rem,
d1-four-equal-columns-gap0rem,
d1-five-equal-columns-gap0rem,
d1-six-equal-columns-gap0rem,
d1-seven-equal-columns-gap0rem,
d1-eight-equal-columns-gap0rem {
    width: 100%;
    display: flex;
    gap: 0rem;
    flex-wrap: wrap;
    /*margin: 0rem 0;*/ /*Top and bottom margin 0rem, left and right 0 rem*/
}

    d1-two-equal-columns-gap0rem > * {
        width: calc((100% - 0rem) / 2);
        /*background: #eee;*/ /* optional */
    }

    d1-three-equal-columns-gap0rem > * {
        width: calc((100% - 0rem) / 3);
        /*background: #eee;*/ /* optional */
    }

    d1-four-equal-columns-gap0rem > * {
        width: calc((100% - 0rem) / 4);
        /*background: #eee;*/ /* optional */
    }

    d1-five-equal-columns-gap0rem > * {
        width: calc((100% - 0rem) / 5);
        /*background: #eee;*/ /* optional */
    }

    d1-six-equal-columns-gap0rem > * {
        width: calc((100% - 0rem) / 6);
        /*background: #eee;*/ /* optional */
    }

    d1-seven-equal-columns-gap0rem > * {
        width: calc((100% - 0rem) / 7);
        /*background: #eee;*/ /* optional */
    }

    d1-eight-equal-columns-gap0rem > * {
        width: calc((100% - 0rem) / 8);
        /*background: #eee;*/ /* optional */
    }
/* ______________________  */
/* Gap of 0rem - End     */
/* ______________________  */

/* ______________________  */
/* Gap of 1rem - Begin  */
/* ______________________  */
d1-two-equal-columns-gap1rem,
d1-three-equal-columns-gap1rem,
d1-four-equal-columns-gap1rem,
d1-five-equal-columns-gap1rem,
d1-six-equal-columns-gap1rem,
d1-seven-equal-columns-gap1rem,
d1-eight-equal-columns-gap1rem {
    width: 100%;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    /*margin: 1rem 0;*/ /*Top and bottom margin 1rem, left and right 0 rem*/
}

    d1-two-equal-columns-gap1rem > * {
        width: calc((100% - 1rem) / 2);
        /*background: #eee;*/ /* optional */
    }

    d1-three-equal-columns-gap1rem > * {
        width: calc((100% - 2rem) / 3);
        /*background: #eee;*/ /* optional */
    }

    d1-four-equal-columns-gap1rem > * {
        width: calc((100% - 3rem) / 4);
        /*background: #eee;*/ /* optional */
    }

    d1-five-equal-columns-gap1rem > * {
        width: calc((100% - 4rem) / 5);
        /*background: #eee;*/ /* optional */
    }

    d1-six-equal-columns-gap1rem > * {
        width: calc((100% - 5rem) / 6);
        /*background: #eee;*/ /* optional */
    }

    d1-seven-equal-columns-gap1rem > * {
        width: calc((100% - 6rem) / 7);
        /*background: #eee;*/ /* optional */
    }

    d1-eight-equal-columns-gap1rem > * {
        width: calc((100% - 7rem) / 8);
        /*background: #eee;*/ /* optional */
    }
/* ______________________  */
/* Gap of 1rem - End     */
/* ______________________  */

/* ______________________  */
/* Gap of 2rem - Begin  */
/* ______________________  */
d1-two-equal-columns-gap2rem,
d1-three-equal-columns-gap2rem,
d1-four-equal-columns-gap2rem,
d1-five-equal-columns-gap2rem,
d1-six-equal-columns-gap2rem,
d1-seven-equal-columns-gap2rem,
d1-eight-equal-columns-gap2rem {
    width: 100%;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    /*margin: 1rem 0;*/ /*Top and bottom margin 1rem, left and right 0 rem*/
}

    d1-two-equal-columns-gap2rem > * {
        width: calc((100% - 2rem) / 2);
        /*background: #eee;*/ /* optional */
    }

    d1-three-equal-columns-gap2rem > * {
        width: calc((100% - 4rem) / 3);
        /*background: #eee;*/ /* optional */
    }

    d1-four-equal-columns-gap2rem > * {
        width: calc((100% - 6rem) / 4);
        /*background: #eee;*/ /* optional */
    }

    d1-five-equal-columns-gap2rem > * {
        width: calc((100% - 8rem) / 5);
        /*background: #eee;*/ /* optional */
    }

    d1-six-equal-columns-gap2rem > * {
        width: calc((100% - 10rem) / 6);
        /*background: #eee;*/ /* optional */
    }

    d1-seven-equal-columns-gap2rem > * {
        width: calc((100% - 12rem) / 7);
        /*background: #eee;*/ /* optional */
    }

    d1-eight-equal-columns-gap2rem > * {
        width: calc((100% - 14rem) / 8);
        /*background: #eee;*/ /* optional */
    }
/* ______________________  */
/* Gap of 2rem - End     */
/* ______________________  */

/*_____________________________________________________________________________________________________________________________*/
/*      Equal Column Width Layouts - End                                                                                                                                */
/*_____________________________________________________________________________________________________________________________*/


/*_____________________________________________________________________________________________________________________________*/
/*      Unequal Column Width Layouts - Begin                                                                                                                        */
/*_____________________________________________________________________________________________________________________________*/
/* ______________________  */
/* Gap of 0rem - Begin  */
/* ______________________  */
d1-two-unequal-columns-gap0rem,
d1-three-unequal-columns-gap0rem,
d1-four-unequal-columns-gap0rem,
d1-five-unequal-columns-gap0rem,
d1-six-unequal-columns-gap0rem,
d1-seven-unequal-columns-gap0rem,
d1-eight-unequal-columns-gap0rem {
    width: 100%;
    display: flex;
    gap: 0rem;
    flex-wrap: wrap;
    /*margin: 0rem 0;*/ /*Top and bottom margin 0rem, left and right 0 rem*/
}
/* ______________________  */
/* Gap of 0rem - End     */
/* ______________________  */

/* ______________________  */
/* Gap of 1rem - Begin  */
/* ______________________  */
d1-two-unequal-columns-gap1rem,
d1-three-unequal-columns-gap1rem,
d1-four-unequal-columns-gap1rem,
d1-five-unequal-columns-gap1rem,
d1-six-unequal-columns-gap1rem,
d1-seven-unequal-columns-gap1rem,
d1-eight-unequal-columns-gap1rem {
    width: 100%;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    /*margin: 1rem 0;*/ /*Top and bottom margin 1rem, left and right 0 rem*/
}
/* ______________________  */
/* Gap of 1rem - End     */
/* ______________________  */

/* ______________________  */
/* Gap of 2rem - Begin  */
/* ______________________  */
d1-two-unequal-columns-gap2rem,
d1-three-unequal-columns-gap2rem,
d1-four-unequal-columns-gap2rem,
d1-five-unequal-columns-gap2rem,
d1-six-unequal-columns-gap2rem,
d1-seven-unequal-columns-gap2rem,
d1-eight-unequal-columns-gap2rem {
    width: 100%;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    /*margin: 1rem 0;*/ /*Top and bottom margin 1rem, left and right 0 rem*/
}
/* ______________________  */
/* Gap of 2rem - End     */
/* ______________________  */

.d1ColumnWidthFillRemainder {
    flex: 1;
}

.d1ColumnWidthAuto {
    width: auto;
}



/* ************************************************ */
/* Test as custom html element not class - Begin */
/* ************************************************ */
d1ColumnFillRemainingWidth {
    flex: 1;
}

d1ColumnAutoWidth {
    width: auto;
}
/* ************************************************ */
/* Test as custom html element not class - End   */
/* ************************************************ */


/*_____________________________________________________________________________________________________________________________*/
/*      Unequal Column Width Layouts - End                                                                                                                                */
/*_____________________________________________________________________________________________________________________________*/




/*_____________________________________________________________________________________________________________________________*/
/*      Equal Row Height Layouts - Begin                                                                                                                             */
/*_____________________________________________________________________________________________________________________________*/

/* ______________________  */
/* Gap of 0rem - Begin  */
/* ______________________  */
d1-two-equal-rows-gap0rem,
d1-three-equal-rows-gap0rem,
d1-four-equal-rows-gap0rem,
d1-five-equal-rows-gap0rem,
d1-six-equal-rows-gap0rem,
d1-seven-equal-rows-gap0rem,
d1-eight-equal-rows-gap0rem,
d1-nine-equal-rows-gap0rem,
d1-ten-equal-rows-gap0rem,
d1-eleven-equal-rows-gap0rem,
d1-twelve-equal-rows-gap0rem {
    height: 100%;
    display: flex;
    gap: 0rem;
    flex-wrap: wrap;
    /*margin: 0rem 0;*/ /*Top and bottom margin 0rem, left and right 0 rem*/
}

    d1-two-equal-rows-gap0rem > * {
        height: calc((100% - 0rem) / 2);
        /*background: #eee;*/ /* optional */
    }

    d1-three-equal-rows-gap0rem > * {
        height: calc((100% - 0rem) / 3);
        /*background: #eee;*/ /* optional */
    }

    d1-four-equal-rows-gap0rem > * {
        height: calc((100% - 0rem) / 4);
        /*background: #eee;*/ /* optional */
    }

    d1-five-equal-rows-gap0rem > * {
        height: calc((100% - 0rem) / 5);
        /*background: #eee;*/ /* optional */
    }

    d1-six-equal-rows-gap0rem > * {
        height: calc((100% - 0rem) / 6);
        /*background: #eee;*/ /* optional */
    }

    d1-seven-equal-rows-gap0rem > * {
        height: calc((100% - 0rem) / 7);
        /*background: #eee;*/ /* optional */
    }

    d1-eight-equal-rows-gap0rem > * {
        height: calc((100% - 0rem) / 8);
        /*background: #eee;*/ /* optional */
    }

    d1-nine-equal-rows-gap0rem > * {
        height: calc((100% - 0rem) / 9);
        /*background: #eee;*/ /* optional */
    }

    d1-ten-equal-rows-gap0rem > * {
        height: calc((100% - 0rem) / 10);
        /*background: #eee;*/ /* optional */
    }

    d1-eleven-equal-rows-gap0rem > * {
        height: calc((100% - 0rem) / 11);
        /*background: #eee;*/ /* optional */
    }

    d1-twelve-equal-rows-gap0rem > * {
        height: calc((100% - 0rem) / 12);
        /*background: #eee;*/ /* optional */
    }
/* ______________________  */
/* Gap of 0rem - End     */
/* ______________________  */

/* ______________________  */
/* Gap of 1rem - Begin  */
/* ______________________  */
d1-two-equal-rows-gap1rem,
d1-three-equal-rows-gap1rem,
d1-four-equal-rows-gap1rem,
d1-five-equal-rows-gap1rem,
d1-six-equal-rows-gap1rem,
d1-seven-equal-rows-gap1rem,
d1-eight-equal-rows-gap1rem,
d1-nine-equal-rows-gap1rem,
d1-ten-equal-rows-gap1rem,
d1-eleven-equal-rows-gap1rem,
d1-twelve-equal-rows-gap1rem {
    height: 100%;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    /*margin: 1rem 0;*/ /*Top and bottom margin 1rem, left and right 0 rem*/
}

    d1-two-equal-rows-gap1rem > * {
        height: calc((100% - 1rem) / 2);
        /*background: #eee;*/ /* optional */
    }

    d1-three-equal-rows-gap1rem > * {
        height: calc((100% - 2rem) / 3);
        /*background: #eee;*/ /* optional */
    }

    d1-four-equal-rows-gap1rem > * {
        height: calc((100% - 3rem) / 4);
        /*background: #eee;*/ /* optional */
    }

    d1-five-equal-rows-gap1rem > * {
        height: calc((100% - 4rem) / 5);
        /*background: #eee;*/ /* optional */
    }

    d1-six-equal-rows-gap1rem > * {
        height: calc((100% - 5rem) / 6);
        /*background: #eee;*/ /* optional */
    }

    d1-seven-equal-rows-gap1rem > * {
        height: calc((100% - 6rem) / 7);
        /*background: #eee;*/ /* optional */
    }

    d1-eight-equal-rows-gap1rem > * {
        height: calc((100% - 7rem) / 8);
        /*background: #eee;*/ /* optional */
    }

    d1-nine-equal-rows-gap1rem > * {
        height: calc((100% - 8rem) / 9);
        /*background: #eee;*/ /* optional */
    }

    d1-ten-equal-rows-gap1rem > * {
        height: calc((100% - 9rem) / 10);
        /*background: #eee;*/ /* optional */
    }

    d1-eleven-equal-rows-gap1rem > * {
        height: calc((100% - 10rem) / 11);
        /*background: #eee;*/ /* optional */
    }

    d1-twelve-equal-rows-gap1rem > * {
        height: calc((100% - 11rem) / 12);
        /*background: #eee;*/ /* optional */
    }
/* ______________________  */
/* Gap of 1rem - End     */
/* ______________________  */

/* ______________________  */
/* Gap of 2rem - Begin  */
/* ______________________  */
d1-two-equal-rows-gap2rem,
d1-three-equal-rows-gap2rem,
d1-four-equal-rows-gap2rem,
d1-five-equal-rows-gap2rem,
d1-six-equal-rows-gap2rem,
d1-seven-equal-rows-gap2rem,
d1-eight-equal-rows-gap2rem,
d1-nine-equal-rows-gap2rem,
d1-ten-equal-rows-gap2rem,
d1-eleven-equal-rows-gap2rem,
d1-twelve-equal-rows-gap2rem {
    height: 100%;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    /*margin: 1rem 0;*/ /*Top and bottom margin 1rem, left and right 0 rem*/
}

    d1-two-equal-rows-gap2rem > * {
        height: calc((100% - 2rem) / 2);
        /*background: #eee;*/ /* optional */
    }

    d1-three-equal-rows-gap2rem > * {
        height: calc((100% - 4rem) / 3);
        /*background: #eee;*/ /* optional */
    }

    d1-four-equal-rows-gap2rem > * {
        height: calc((100% - 6rem) / 4);
        /*background: #eee;*/ /* optional */
    }

    d1-five-equal-rows-gap2rem > * {
        height: calc((100% - 8rem) / 5);
        /*background: #eee;*/ /* optional */
    }

    d1-six-equal-rows-gap2rem > * {
        height: calc((100% - 10rem) / 6);
        /*background: #eee;*/ /* optional */
    }

    d1-seven-equal-rows-gap2rem > * {
        height: calc((100% - 12rem) / 7);
        /*background: #eee;*/ /* optional */
    }

    d1-eight-equal-rows-gap2rem > * {
        height: calc((100% - 14rem) / 8);
        /*background: #eee;*/ /* optional */
    }

    d1-nine-equal-rows-gap2rem > * {
        height: calc((100% - 16rem) / 9);
        /*background: #eee;*/ /* optional */
    }

    d1-ten-equal-rows-gap2rem > * {
        height: calc((100% - 18rem) / 10);
        /*background: #eee;*/ /* optional */
    }

    d1-eleven-equal-rows-gap2rem > * {
        height: calc((100% - 20rem) / 11);
        /*background: #eee;*/ /* optional */
    }

    d1-twelve-equal-rows-gap2rem > * {
        height: calc((100% - 22rem) / 12);
        /*background: #eee;*/ /* optional */
    }
/* ______________________  */
/* Gap of 2rem - End     */
/* ______________________  */

/*_____________________________________________________________________________________________________________________________*/
/*      Equal Row Height Layouts - End                                                                                                                                */
/*_____________________________________________________________________________________________________________________________*/


/*_____________________________________________________________________________________________________________________________*/
/*      Unequal Row Height Layouts - Begin                                                                                                                        */
/*_____________________________________________________________________________________________________________________________*/
/* ______________________  */
/* Gap of 0rem - Begin  */
/* ______________________  */
d1-two-unequal-rows-gap0rem,
d1-three-unequal-rows-gap0rem,
d1-four-unequal-rows-gap0rem,
d1-five-unequal-rows-gap0rem,
d1-six-unequal-rows-gap0rem,
d1-seven-unequal-rows-gap0rem,
d1-eight-unequal-rows-gap0rem {
    height: 100%;
    display: flex;
    gap: 0rem;
    flex-wrap: wrap;
    flex-direction: column;
    /*margin: 0rem 0;*/ /*Top and bottom margin 0rem, left and right 0 rem*/
}
/* ______________________  */
/* Gap of 0rem - End     */
/* ______________________  */

/* ______________________  */
/* Gap of 1rem - Begin  */
/* ______________________  */
d1-two-unequal-rows-gap1rem,
d1-three-unequal-rows-gap1rem,
d1-four-unequal-rows-gap1rem,
d1-five-unequal-rows-gap1rem,
d1-six-unequal-rows-gap1rem,
d1-seven-unequal-rows-gap1rem,
d1-eight-unequal-rows-gap1rem {
    height: 100%;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex-direction: column;
    /*margin: 1rem 0;*/ /*Top and bottom margin 1rem, left and right 0 rem*/
}
/* ______________________  */
/* Gap of 1rem - End     */
/* ______________________  */

/* ______________________  */
/* Gap of 2rem - Begin  */
/* ______________________  */
d1-two-unequal-rows-gap2rem,
d1-three-unequal-rows-gap2rem,
d1-four-unequal-rows-gap2rem,
d1-five-unequal-rows-gap2rem,
d1-six-unequal-rows-gap2rem,
d1-seven-unequal-rows-gap2rem,
d1-eight-unequal-rows-gap2rem {
    height: 100%;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    flex-direction: column;
    /*margin: 1rem 0;*/ /*Top and bottom margin 1rem, left and right 0 rem*/
}
/* ______________________  */
/* Gap of 2rem - End     */
/* ______________________  */

.d1RowHeightFillRemainder {
    flex-basis: 0;
    flex-grow: 1;
    flex-direction: column;
}
/*_____________________________________________________________________________________________________________________________*/
/*      Unequal Row Height Layouts - End                                                                                                                                */
/*_____________________________________________________________________________________________________________________________*/




/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*   Layout Helpers - End                                                                                                                                                         */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/





/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*   Miscellaneous Layout Helpers  - Begin                                                                                                                             */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
.positionRelative {
    position: relative;
}



/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*   Miscellaneous Layout Helpers  - End                                                                                                                                */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/



/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*   Special Characters  - Begin                                                                                                                                                */
/*   (can get from UTF-8 specification:  https://www.w3schools.com/charsets/ref_emoji_office.asp)                                     */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/

d1-save-icon:before {
    content: '💾'
}

tick-char:before {
    content: '✓';
    color: #006e37;
    font-weight: bold;
}

cross-char:before {
    content: '✗';
    color: #ec1358;
    font-weight: bold;
}

d1-svg-error:before {
    content: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><!--!Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2025 Fonticons, Inc.--><path fill='var(--kendo-color-error)' d='M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zm168.1 61.7c.1-.7 .2-1.5 .3-2.3c.3-1.5 .7-3 1.3-4.4c1.2-2.9 2.9-5.6 5.3-7.9c15.7-15.7 31.4-31.4 47-47c-15.7-15.7-31.3-31.3-47-47c-9.4-9.4-9.4-24.6 0-33.9c4.7-4.7 10.8-7 17-7s12.3 2.3 17 7c15.7 15.7 31.4 31.4 47 47c15.7-15.7 31.4-31.4 47-47c4.7-4.7 10.8-7 17-7s12.3 2.3 17 7c9.4 9.4 9.4 24.6 0 33.9c-15.7 15.7-31.3 31.3-47 47c15.7 15.7 31.4 31.4 47 47c4.7 4.7 7 10.8 7 17s-2.3 12.3-7 17s-10.8 7-17 7s-12.3-2.3-17-7l-47-47c-15.7 15.7-31.3 31.3-47 47c-4.7 4.7-10.8 7-17 7s-12.3-2.3-17-7c-2.3-2.3-4.1-5.1-5.3-7.9c-.6-1.4-1-2.9-1.3-4.4c-.2-1.1-.4-2.3-.3-2.2c-.1-1.2-.1-1.2-.1-2.4c0-1.5 .1-1.9 .1-2.3z' /><path fill='var(--kendo-color-on-error)' d='M209 175c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l47 47-47 47c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l47-47 47 47c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-47-47 47-47c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-47 47-47-47z' /></svg>");
    /*    content: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--!Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2025 Fonticons, Inc.--%3E%3Cpath fill='var(--kendo-color-error)' d='M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zm168.1 61.7c.1-.7 .2-1.5 .3-2.3c.3-1.5 .7-3 1.3-4.4c1.2-2.9 2.9-5.6 5.3-7.9c15.7-15.7 31.4-31.4 47-47c-15.7-15.7-31.3-31.3-47-47c-9.4-9.4-9.4-24.6 0-33.9c4.7-4.7 10.8-7 17-7s12.3 2.3 17 7c15.7 15.7 31.4 31.4 47 47c15.7-15.7 31.4-31.4 47-47c4.7-4.7 10.8-7 17-7s12.3 2.3 17 7c9.4 9.4 9.4 24.6 0 33.9c-15.7 15.7-31.3 31.3-47 47c15.7 15.7 31.4 31.4 47 47c4.7 4.7 7 10.8 7 17s-2.3 12.3-7 17s-10.8 7-17 7s-12.3-2.3-17-7l-47-47c-15.7 15.7-31.3 31.3-47 47c-4.7 4.7-10.8 7-17 7s-12.3-2.3-17-7c-2.3-2.3-4.1-5.1-5.3-7.9c-.6-1.4-1-2.9-1.3-4.4c-.2-1.1-.4-2.3-.3-2.2c-.1-1.2-.1-1.2-.1-2.4c0-1.5 .1-1.9 .1-2.3z' /%3E%3Cpath fill='var(--kendo-color-on-error)' d='M209 175c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l47 47-47 47c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l47-47 47 47c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-47-47 47-47c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-47 47-47-47z' /%3E%3C/svg%3E");
*/
}


/*<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' ><!-- !Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2025 Fonticons, Inc. --><path fill='var(--kendo-color-error)' d='M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zm168.1 61.7c.1-.7 .2-1.5 .3-2.3c.3-1.5 .7-3 1.3-4.4c1.2-2.9 2.9-5.6 5.3-7.9c15.7-15.7 31.4-31.4 47-47c-15.7-15.7-31.3-31.3-47-47c-9.4-9.4-9.4-24.6 0-33.9c4.7-4.7 10.8-7 17-7s12.3 2.3 17 7c15.7 15.7 31.4 31.4 47 47c15.7-15.7 31.4-31.4 47-47c4.7-4.7 10.8-7 17-7s12.3 2.3 17 7c9.4 9.4 9.4 24.6 0 33.9c-15.7 15.7-31.3 31.3-47 47c15.7 15.7 31.4 31.4 47 47c4.7 4.7 7 10.8 7 17s-2.3 12.3-7 17s-10.8 7-17 7s-12.3-2.3-17-7l-47-47c-15.7 15.7-31.3 31.3-47 47c-4.7 4.7-10.8 7-17 7s-12.3-2.3-17-7c-2.3-2.3-4.1-5.1-5.3-7.9c-.6-1.4-1-2.9-1.3-4.4c-.2-1.1-.4-2.3-.3-2.2c-.1-1.2-.1-1.2-.1-2.4c0-1.5 .1-1.9 .1-2.3z' / ><path fill='var(--kendo-color-on-error)' d='M209 175c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l47 47-47 47c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l47-47 47 47c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-47-47 47-47c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-47 47-47-47z' / ></svg >*/


/*<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" ><!-- !Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2025 Fonticons, Inc. --><path fill="var(--kendo-color-error)" d="M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zm168.1 61.7c.1-.7 .2-1.5 .3-2.3c.3-1.5 .7-3 1.3-4.4c1.2-2.9 2.9-5.6 5.3-7.9c15.7-15.7 31.4-31.4 47-47c-15.7-15.7-31.3-31.3-47-47c-9.4-9.4-9.4-24.6 0-33.9c4.7-4.7 10.8-7 17-7s12.3 2.3 17 7c15.7 15.7 31.4 31.4 47 47c15.7-15.7 31.4-31.4 47-47c4.7-4.7 10.8-7 17-7s12.3 2.3 17 7c9.4 9.4 9.4 24.6 0 33.9c-15.7 15.7-31.3 31.3-47 47c15.7 15.7 31.4 31.4 47 47c4.7 4.7 7 10.8 7 17s-2.3 12.3-7 17s-10.8 7-17 7s-12.3-2.3-17-7l-47-47c-15.7 15.7-31.3 31.3-47 47c-4.7 4.7-10.8 7-17 7s-12.3-2.3-17-7c-2.3-2.3-4.1-5.1-5.3-7.9c-.6-1.4-1-2.9-1.3-4.4c-.2-1.1-.4-2.3-.3-2.2c-.1-1.2-.1-1.2-.1-2.4c0-1.5 .1-1.9 .1-2.3z" / ><path fill="var(--kendo-color-on-error)" d="M209 175c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l47 47-47 47c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l47-47 47 47c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-47-47 47-47c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-47 47-47-47z" / ></svg >*/





/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*   Special Characters  - End                                                                                                                                                   */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*   Custom Tooltip  - Begin                                                                                                                                                     */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
d1-tooltip {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    text-align: center;
    background-color: var(--kendo-color-info-emphasis);
    color: var(--kendo-color-on-info);
    line-height: 1.5em;
    border-radius: 50%;
    background: var(--kendo-color-info-emphasis);
    font-weight: bold;
    cursor: pointer;
    position: relative;
}

    d1-tooltip:hover:after,
    d1-tooltip:active:after {
        content: attr(txt);
        display: block;
        z-index: 9999999;
        width: 8em;
        border-radius: 10px;
        color: var(--kendo-color-on-info);
        background-color: var(--kendo-color-info-emphasis);
        padding: 1rem;
        box-shadow: var(--kendo-color-info-subtle-hover) 5px 5px 3px;
        text-align: left;
        position: absolute;
        top: 2em;
        left: 1em;
    }
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*   Custom Tooltip  - End                                                                                                                                                        */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/



.noBorderTransparent {
    border-block-style: none;
    border-color: transparent;
}

.redBackgroundHover:hover {
    background-color: red !important;
}


.tabCloseButton {
    background-color: transparent !important;
    width: 24px;
    height: 24px;
    border-block-style: none;
    border-color: transparent;
}


    .tabCloseButton:hover {
        background-color: red !important;
    }

.dialogButton {
    width: 100px;
    margin-right: 5px;
}

.dialogButton125px {
    width: 125px;
    margin-right: 5px;
}

.dialogButton150px {
    width: 125px;
    margin-right: 5px;
}

.dialogOkButton {
    width: 100px;
    margin-right: 5px;
}


.dialogCancelButton {
    width: 100px;
    margin-right: 5px;
}

.quickAlertOkButtonStyle {
    width: 100px;
    margin-right: 5px;
}


/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*  Telerik Edit Form Layout Helper Classes  - Begin                                                                                                                                                     */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/


/*__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________*/
/*__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________*/
/* BEGIN - THESE TELERIK OVERRIDES DO NOT SEEM TO WORK WHEN PLACED IN THIS STYLESHEET. THEY MUST BE PLACED IN EACH COMPONENT THAT USES THEM. NEED TO RESEARCH HIERARCHY OF CASCADE. */
/*__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________*/
/*__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________*/

/*Reduce top margin of form field items from 14px */
/*.k-form-field {
    margin-top: 5px !important;
}*/

/* Reduce bottom margin of the Legend (the group title) in form groups */
/*legend.k-form-legend {
    background-color: yellow;*/ /* for testing */
/*margin-bottom: 2px !important;
}*/


/* Reduce top margin of the first item in form columns */
/*div.k-form-layout.k-d-grid.k-grid-cols-1:first-child,
div.k-form-layout.k-d-grid.k-grid-cols-2:first-child,
div.k-form-layout.k-d-grid.k-grid-cols-3:first-child,
div.k-form-layout.k-d-grid.k-grid-cols-4:first-child,
div.k-form-layout.k-d-grid.k-grid-cols-5:first-child,
div.k-form-layout.k-d-grid.k-grid-cols-6:first-child,
div.k-form-layout.k-d-grid.k-grid-cols-7:first-child,
div.k-form-layout.k-d-grid.k-grid-cols-8:first-child,
div.k-form-layout.k-d-grid.k-grid-cols-9:first-child,
div.k-form-layout.k-d-grid.k-grid-cols-10:first-child {
    margin-top: 5px;
}*/

/* Reduce the padding of content inside tabs - was large and not space-effective. Especailly helpful on component-top toolbar placement.  */
/*.k-tabstrip-content {
    padding: 0px !important;
}*/

/*__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________*/
/*__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________*/
/* END - THESE TELERIK OVERRIDES DO NOT SEEM TO WORK WHEN PLACED IN THIS STYLESHEET. THEY MUST BE PLACED IN EACH COMPONENT THAT USES THEM. NEED TO RESEARCH HIERARCHY OF CASCADE. */
/*__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________*/
/*__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________*/



/*____________________________________________________________________________________________________*/
/*  Broken Rules Helpers  - Begin                                                                                                       */
/*____________________________________________________________________________________________________*/
.brokenRuleSeverityErrorSpan {
    display: table !important;
    font-size: .85em;
    color: var(--kendo-color-error);
}

.brokenRuleSeverityInformationSpan {
    display: table !important;
    font-size: .85em;
    color: var(--kendo-color-info);
}

.brokenRuleSeverityWarningSpan {
    display: table !important;
    font-size: .85em;
    color: var(--kendo-color-warning);
}

.brokenRuleSeverityOkSpan {
    display: none;
}
/*____________________________________________________________________________________________________*/
/*  Broken Rules Hepers  - End                                                                                                          */
/*____________________________________________________________________________________________________*/



/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*  Telerik Edit Form Layout Helper Classes  - Begin                                                                                                                                                     */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/


.dropDownCustomBackground {
    background-color: var(--kendo-color-light-subtle-active);
}

.formLabelMinWidthSmall {
    min-width: 175px;
}

.formLabelMinWidthMedium {
    min-width: 225px;
}

.formLabelMinWidthLarge {
    min-width: 275px;
}

.formLabelMinWidthRemSmall {
    min-width: 5rem;
}

.formLabelMinWidthRemMedium {
    min-width: 7rem;
}

.formLabelMinWidthRemLarge {
    min-width: 9rem;
}


.formLabelMinWidth20rem {
    min-width: 20rem;
}

.formLabelMinWidth30rem {
    min-width: 30rem;
}

.formLabelMinWidth40rem {
    min-width: 40rem;
}

.formLabelMinWidth50rem {
    min-width: 50rem;
}

.formLabelMinWidth60rem {
    min-width: 60rem;
}

.formLabelMinWidth70rem {
    min-width: 70rem;
}

.formLabelMinWidth80rem {
    min-width: 80rem;
}

.formLabelMinWidth90rem {
    min-width: 90rem;
}



.formLabelMinWidth100rem {
    min-width: 100rem;
}

.formLabelMinWidth120rem {
    min-width: 120rem;
}

.formLabelMinWidth130rem {
    min-width: 130rem;
}




/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*  Telerik Edit Form Layout Helper Classes  - End                                                                                                                                                     */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/




/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*  Fixed Height and Width Classes - Begin                                                                                                                                                           */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/


/*______________________________________________________________________*/
/*      Width Classes - Begin                                                                  */
/*______________________________________________________________________*/

/*________________________________________________________*/
/*      %  - Begin                                                              */
/*________________________________________________________*/

.maxWidth100Percent {
    max-width: 100%;
}

/*________________________________________________________*/
/*      %  - End                                                              */
/*________________________________________________________*/


/*________________________________________________________*/
/*      px - Begin                                                               */
/*________________________________________________________*/

.width50px {
    width: 50px;
}

.width75px {
    width: 75px;
}

.width100px {
    width: 100px;
}

.width125px {
    width: 125px;
}

.width150px {
    width: 150px;
}

.width175px {
    width: 175px;
}

.width200px {
    width: 200px;
}

.width225px {
    width: 225px;
}

.width250px {
    width: 250px;
}

.width275px {
    width: 275px;
}

.width300px {
    width: 300px;
}

.width325px {
    width: 325px;
}

.width350px {
    width: 350px;
}

.width375px {
    width: 375px;
}

.width400px {
    width: 400px;
}

.width425px {
    width: 425px;
}

.width450px {
    width: 450px;
}

.width475px {
    width: 475px;
}

.width500px {
    width: 500px;
}

.maxWidth75px {
    max-width: 75px;
}

.maxWidth100px {
    max-width: 100px;
}

.maxWidth125px {
    max-width: 125px;
}

.maxWidth150px {
    max-width: 150px;
}

.maxWidth175px {
    max-width: 175px;
}

.maxWidth200px {
    max-width: 200px;
}

.maxWidth225px {
    max-width: 225px;
}

.maxWidth250px {
    max-width: 250px;
}

.maxWidth275px {
    max-width: 275px;
}

.maxWidth300px {
    max-width: 300px;
}

.maxWidth325px {
    max-width: 325px;
}

.maxWidth350px {
    max-width: 350px;
}

.maxWidth375px {
    max-width: 375px;
}

.maxWidth400px {
    max-width: 400px;
}

.maxWidth425px {
    max-width: 425px;
}

.maxWidth450px {
    max-width: 450px;
}

.maxWidth475px {
    max-width: 475px;
}

.maxWidth500px {
    max-width: 500px;
}

/*________________________________________________________*/
/*      px - End                                                               */
/*________________________________________________________*/


/*________________________________________________________*/
/*      em - Begin                                                               */
/*________________________________________________________*/


.width1em {
    width: 1em;
}

.width2em {
    width: 2em;
}

.width3em {
    width: 3em;
}

.width4em {
    width: 4em;
}

.width5em {
    width: 5em;
}




.maxWidth1em {
    max-width: 1em;
}

.maxWidth2em {
    max-width: 2em;
}

.maxWidth3em {
    max-width: 3em;
}

.maxWidth4em {
    max-width: 4em;
}

.maxWidth5em {
    max-width: 5em;
}




/*________________________________________________________*/
/*      em - End                                                               */
/*________________________________________________________*/


/*________________________________________________________*/
/*      rem - Begin                                                               */
/*________________________________________________________*/

.width1rem {
    width: 1rem;
}

.width2rem {
    width: 2rem;
}

.width3rem {
    width: 3rem;
}

.width4rem {
    width: 4rem;
}

.width5rem {
    width: 5rem;
}

.width75rem {
    width: 75rem;
}

.width100rem {
    width: 100rem;
}

.width125rem {
    width: 125rem;
}

.width150rem {
    width: 150rem;
}

.width175rem {
    width: 175rem;
}

.width200rem {
    width: 200rem;
}

.width225rem {
    width: 225rem;
}

.width250rem {
    width: 250rem;
}

.width275rem {
    width: 275rem;
}

.width300rem {
    width: 300rem;
}

.width325rem {
    width: 325rem;
}

.width350rem {
    width: 350rem;
}

.width375rem {
    width: 375rem;
}

.width400rem {
    width: 400rem;
}

.width425rem {
    width: 425rem;
}

.width450rem {
    width: 450rem;
}

.width475rem {
    width: 475rem;
}

.width500rem {
    width: 500rem;
}


.maxWidth1rem {
    max-width: 1rem;
}

.maxWidth2rem {
    max-width: 2rem;
}

.maxWidth3rem {
    max-width: 3rem;
}

.maxWidth4rem {
    max-width: 4rem;
}

.maxWidth5rem {
    max-width: 5rem;
}

.maxWidth75rem {
    max-width: 75rem;
}

.maxWidth100rem {
    max-width: 100rem;
}

.maxWidth125rem {
    max-width: 125rem;
}

.maxWidth150rem {
    max-width: 150rem;
}

.maxWidth175rem {
    max-width: 175rem;
}

.maxWidth200rem {
    max-width: 200rem;
}

.maxWidth225rem {
    max-width: 225rem;
}

.maxWidth250rem {
    max-width: 250rem;
}

.maxWidth275rem {
    max-width: 275rem;
}

.maxWidth300rem {
    max-width: 300rem;
}

.maxWidth325rem {
    max-width: 325rem;
}

.maxWidth350rem {
    max-width: 350rem;
}

.maxWidth375rem {
    max-width: 375rem;
}

.maxWidth400rem {
    max-width: 400rem;
}

.maxWidth425rem {
    max-width: 425rem;
}

.maxWidth450rem {
    max-width: 450rem;
}

.maxWidth475rem {
    max-width: 475rem;
}

.maxWidth500rem {
    max-width: 500rem;
}

/*________________________________________________________*/
/*      rem - End                                                               */
/*________________________________________________________*/


/*______________________________________________________________________*/
/*      Width Classes - End                                                                                                                                                           */
/*______________________________________________________________________*/


/*______________________________________________________________________*/
/*      Height Classes - Begin                                                                                                                                                           */
/*______________________________________________________________________*/

/*________________________________________________________*/
/*    Height  px - Begin                                                    */
/*________________________________________________________*/

.height75px {
    height: 75px;
}

.height100px {
    height: 100px;
}

.height125px {
    height: 125px;
}

.height150px {
    height: 150px;
}

.height175px {
    height: 175px;
}

.height200px {
    height: 200px;
}

.height225px {
    height: 225px;
}

.height250px {
    height: 250px;
}

.height275px {
    height: 275px;
}

.height300px {
    height: 300px;
}

.height325px {
    height: 325px;
}

.height350px {
    height: 350px;
}

.height375px {
    height: 375px;
}

.height400px {
    height: 400px;
}

.height425px {
    height: 425px;
}

.height450px {
    height: 450px;
}

.height475px {
    height: 475px;
}

.height500px {
    height: 500px;
}

.maxHeight75px {
    max-height: 75px;
}

.maxHeight100px {
    max-height: 100px;
}

.maxHeight125px {
    max-height: 125px;
}

.maxHeight150px {
    max-height: 150px;
}

.maxHeight175px {
    max-height: 175px;
}

.maxHeight200px {
    max-height: 200px;
}

.maxHeight225px {
    max-height: 225px;
}

.maxHeight250px {
    max-height: 250px;
}

.maxHeight275px {
    max-height: 275px;
}

.maxHeight300px {
    max-height: 300px;
}

.maxHeight325px {
    max-height: 325px;
}

.maxHeight350px {
    max-height: 350px;
}

.maxHeight375px {
    max-height: 375px;
}

.maxHeight400px {
    max-height: 400px;
}

.maxHeight425px {
    max-height: 425px;
}

.maxHeight450px {
    max-height: 450px;
}

.maxHeight475px {
    max-height: 475px;
}

.maxHeight500px {
    max-height: 500px;
}

/*________________________________________________________*/
/*    Height  px - End                                                       */
/*________________________________________________________*/


/* ______________________________________________________________________ */
/*  Height em - Begin */
/* ______________________________________________________________________ */
.height1em {
    height: 1em;
}

.height2em {
    height: 2em;
}

.height3em {
    height: 3em;
}

.height4em {
    height: 4em;
}

.height5em {
    height: 5em;
}

.height6em {
    height: 6em;
}

.height7em {
    height: 7em;
}

.height8em {
    height: 8em;
}

.height9em {
    height: 9em;
}

.height10em {
    height: 10em;
}

.height11em {
    height: 11em;
}

.height12em {
    height: 12em;
}

.height13em {
    height: 13em;
}

.height13em {
    height: 13em;
}

.height14em {
    height: 14em;
}

.height15em {
    height: 15em;
}

.height16em {
    height: 16em;
}

.height17em {
    height: 17em;
}

.height18em {
    height: 18em;
}

.height19em {
    height: 19em;
}

.height20em {
    height: 20em;
}

.height21em {
    height: 21em;
}

.height22em {
    height: 22em;
}

.height23em {
    height: 23em;
}

.height24em {
    height: 24em;
}

.height25em {
    height: 25em;
}

.height26em {
    height: 26em;
}

.height27em {
    height: 27em;
}

.height28em {
    height: 28em;
}

.height29em {
    height: 29em;
}

.height30em {
    height: 30em;
}

.height30em {
    height: 30em;
}

.height35em {
    height: 35em;
}

.height40em {
    height: 40em;
}

.height45em {
    height: 45em;
}

.height50em {
    height: 50em;
}

.height65em {
    height: 30em;
}

.height30em {
    height: 65em;
}

.height70em {
    height: 70em;
}

.height75em {
    height: 75em;
}

.height100em {
    height: 100em;
}

.height125em {
    height: 125em;
}

.height150em {
    height: 150em;
}

.height175em {
    height: 175em;
}

.height200em {
    height: 200em;
}

.height225em {
    height: 225em;
}

.height250em {
    height: 250em;
}

.height275em {
    height: 275em;
}

.height300em {
    height: 300em;
}

.height325em {
    height: 325em;
}

.height350em {
    height: 350em;
}

.height375em {
    height: 375em;
}

.height400em {
    height: 400em;
}

.height425em {
    height: 425em;
}

.height450em {
    height: 450em;
}

.height475em {
    height: 475em;
}

.height500em {
    height: 500em;
}

/* ______________________________________________________________________ */
/*  Height em - End */
/* ______________________________________________________________________ */


/* ______________________________________________________________________ */
/* Max Height em - Begin */
/* ______________________________________________________________________ */
.maxHeight1em {
    max-height: 1em;
}

.maxHeight2em {
    max-height: 2em;
}

.maxHeight3em {
    max-height: 3em;
}

.maxHeight4em {
    max-height: 4em;
}

.maxHeight5em {
    max-height: 5em;
}

.maxHeight6em {
    max-height: 6em;
}

.maxHeight7em {
    max-height: 7em;
}

.maxHeight8em {
    max-height: 8em;
}

.maxHeight9em {
    max-height: 9em;
}

.maxHeight10em {
    max-height: 10em;
}

.maxHeight11em {
    max-height: 11em;
}

.maxHeight12em {
    max-height: 12em;
}

.maxHeight13em {
    max-height: 13em;
}

.maxHeight13em {
    max-height: 13em;
}

.maxHeight14em {
    max-height: 14em;
}

.maxHeight15em {
    max-height: 15em;
}

.maxHeight16em {
    max-height: 16em;
}

.maxHeight17em {
    max-height: 17em;
}

.maxHeight18em {
    max-height: 18em;
}

.maxHeight19em {
    max-height: 19em;
}

.maxHeight20em {
    max-height: 20em;
}

.maxHeight21em {
    max-height: 21em;
}

.maxHeight22em {
    max-height: 22em;
}

.maxHeight23em {
    max-height: 23em;
}

.maxHeight24em {
    max-height: 24em;
}

.maxHeight25em {
    max-height: 25em;
}

.maxHeight26em {
    max-height: 26em;
}

.maxHeight27em {
    max-height: 27em;
}

.maxHeight28em {
    max-height: 28em;
}

.maxHeight29em {
    max-height: 29em;
}

.maxHeight30em {
    max-height: 30em;
}

.maxHeight30em {
    max-height: 30em;
}

.maxHeight35em {
    max-height: 35em;
}

.maxHeight40em {
    max-height: 40em;
}

.maxHeight45em {
    max-height: 45em;
}

.maxHeight50em {
    max-height: 50em;
}

.maxHeight65em {
    max-height: 30em;
}

.maxHeight30em {
    max-height: 65em;
}

.maxHeight70em {
    max-height: 70em;
}

.maxHeight75em {
    max-height: 75em;
}

.maxHeight100em {
    max-height: 100em;
}

.maxHeight125em {
    max-height: 125em;
}

.maxHeight150em {
    max-height: 150em;
}

.maxHeight175em {
    max-height: 175em;
}

.maxHeight200em {
    max-height: 200em;
}

.maxHeight225em {
    max-height: 225em;
}

.maxHeight250em {
    max-height: 250em;
}

.maxHeight275em {
    max-height: 275em;
}

.maxHeight300em {
    max-height: 300em;
}

.maxHeight325em {
    max-height: 325em;
}

.maxHeight350em {
    max-height: 350em;
}

.maxHeight375em {
    max-height: 375em;
}

.maxHeight400em {
    max-height: 400em;
}

.maxHeight425em {
    max-height: 425em;
}

.maxHeight450em {
    max-height: 450em;
}

.maxHeight475em {
    max-height: 475em;
}

.maxHeight500em {
    max-height: 500em;
}

/* ______________________________________________________________________ */
/* Max Height em - End */
/* ______________________________________________________________________ */

/* ______________________________________________________________________ */
/*  Height rem - Begin */
/* ______________________________________________________________________ */
.height1rem {
    height: 1rem;
}

.height2rem {
    height: 2rem;
}

.height3rem {
    height: 3rem;
}

.height4rem {
    height: 4rem;
}

.height5rem {
    height: 5rem;
}

.height6rem {
    height: 6rem;
}

.height7rem {
    height: 7rem;
}

.height8rem {
    height: 8rem;
}

.height9rem {
    height: 9rem;
}

.height10rem {
    height: 10rem;
}

.height11rem {
    height: 11rem;
}

.height12rem {
    height: 12rem;
}

.height13rem {
    height: 13rem;
}

.height13rem {
    height: 13rem;
}

.height14rem {
    height: 14rem;
}

.height15rem {
    height: 15rem;
}

.height16rem {
    height: 16rem;
}

.height17rem {
    height: 17rem;
}

.height18rem {
    height: 18rem;
}

.height19rem {
    height: 19rem;
}

.height20rem {
    height: 20rem;
}

.height21rem {
    height: 21rem;
}

.height22rem {
    height: 22rem;
}

.height23rem {
    height: 23rem;
}

.height24rem {
    height: 24rem;
}

.height25rem {
    height: 25rem;
}

.height26rem {
    height: 26rem;
}

.height27rem {
    height: 27rem;
}

.height28rem {
    height: 28rem;
}

.height29rem {
    height: 29rem;
}

.height30rem {
    height: 30rem;
}

.height30rem {
    height: 30rem;
}

.height35rem {
    height: 35rem;
}

.height40rem {
    height: 40rem;
}

.height45rem {
    height: 45rem;
}

.height50rem {
    height: 50rem;
}

.height65rem {
    height: 30rem;
}

.height30rem {
    height: 65rem;
}

.height70rem {
    height: 70rem;
}

.height75rem {
    height: 75rem;
}

.height100rem {
    height: 100rem;
}

.height125rem {
    height: 125rem;
}

.height150rem {
    height: 150rem;
}

.height175rem {
    height: 175rem;
}

.height200rem {
    height: 200rem;
}

.height225rem {
    height: 225rem;
}

.height250rem {
    height: 250rem;
}

.height275rem {
    height: 275rem;
}

.height300rem {
    height: 300rem;
}

.height325rem {
    height: 325rem;
}

.height350rem {
    height: 350rem;
}

.height375rem {
    height: 375rem;
}

.height400rem {
    height: 400rem;
}

.height425rem {
    height: 425rem;
}

.height450rem {
    height: 450rem;
}

.height475rem {
    height: 475rem;
}

.height500rem {
    height: 500rem;
}

/* ______________________________________________________________________ */
/*  Height rem - End */
/* ______________________________________________________________________ */


/* ______________________________________________________________________ */
/* Max Height rem - Begin */
/* ______________________________________________________________________ */
.maxHeight1rem {
    max-height: 1rem;
}

.maxHeight2rem {
    max-height: 2rem;
}

.maxHeight3rem {
    max-height: 3rem;
}

.maxHeight4rem {
    max-height: 4rem;
}

.maxHeight5rem {
    max-height: 5rem;
}

.maxHeight6rem {
    max-height: 6rem;
}

.maxHeight7rem {
    max-height: 7rem;
}

.maxHeight8rem {
    max-height: 8rem;
}

.maxHeight9rem {
    max-height: 9rem;
}

.maxHeight10rem {
    max-height: 10rem;
}

.maxHeight11rem {
    max-height: 11rem;
}

.maxHeight12rem {
    max-height: 12rem;
}

.maxHeight13rem {
    max-height: 13rem;
}

.maxHeight13rem {
    max-height: 13rem;
}

.maxHeight14rem {
    max-height: 14rem;
}

.maxHeight15rem {
    max-height: 15rem;
}

.maxHeight16rem {
    max-height: 16rem;
}

.maxHeight17rem {
    max-height: 17rem;
}

.maxHeight18rem {
    max-height: 18rem;
}

.maxHeight19rem {
    max-height: 19rem;
}

.maxHeight20rem {
    max-height: 20rem;
}

.maxHeight21rem {
    max-height: 21rem;
}

.maxHeight22rem {
    max-height: 22rem;
}

.maxHeight23rem {
    max-height: 23rem;
}

.maxHeight24rem {
    max-height: 24rem;
}

.maxHeight25rem {
    max-height: 25rem;
}

.maxHeight26rem {
    max-height: 26rem;
}

.maxHeight27rem {
    max-height: 27rem;
}

.maxHeight28rem {
    max-height: 28rem;
}

.maxHeight29rem {
    max-height: 29rem;
}

.maxHeight30rem {
    max-height: 30rem;
}

.maxHeight30rem {
    max-height: 30rem;
}

.maxHeight35rem {
    max-height: 35rem;
}

.maxHeight40rem {
    max-height: 40rem;
}

.maxHeight45rem {
    max-height: 45rem;
}

.maxHeight50rem {
    max-height: 50rem;
}

.maxHeight65rem {
    max-height: 30rem;
}

.maxHeight30rem {
    max-height: 65rem;
}

.maxHeight70rem {
    max-height: 70rem;
}

.maxHeight75rem {
    max-height: 75rem;
}

.maxHeight100rem {
    max-height: 100rem;
}

.maxHeight125rem {
    max-height: 125rem;
}

.maxHeight150rem {
    max-height: 150rem;
}

.maxHeight175rem {
    max-height: 175rem;
}

.maxHeight200rem {
    max-height: 200rem;
}

.maxHeight225rem {
    max-height: 225rem;
}

.maxHeight250rem {
    max-height: 250rem;
}

.maxHeight275rem {
    max-height: 275rem;
}

.maxHeight300rem {
    max-height: 300rem;
}

.maxHeight325rem {
    max-height: 325rem;
}

.maxHeight350rem {
    max-height: 350rem;
}

.maxHeight375rem {
    max-height: 375rem;
}

.maxHeight400rem {
    max-height: 400rem;
}

.maxHeight425rem {
    max-height: 425rem;
}

.maxHeight450rem {
    max-height: 450rem;
}

.maxHeight475rem {
    max-height: 475rem;
}

.maxHeight500rem {
    max-height: 500rem;
}

/* ______________________________________________________________________ */
/* Max Height rem - End */
/* ______________________________________________________________________ */


/*______________________________________________________________________*/
/*      Height Classes - End                                                                   */
/*______________________________________________________________________*/


/*______________________________________________________________________*/
/*      Height and Width Classes - Begin                                               */
/*______________________________________________________________________*/

.heightAndWidth75px {
    height: 75px;
    width: 75px;
}

.heightAndWidth100px {
    height: 100px;
    width: 100px;
}

.heightAndWidth125px {
    height: 125px;
    width: 125px;
}

.heightAndWidth150px {
    height: 150px;
    width: 150px;
}

.heightAndWidth175px {
    height: 175px;
    width: 175px;
}

.heightAndWidth200px {
    height: 200px;
    width: 200px;
}

.heightAndWidth225px {
    height: 225px;
    width: 225px;
}

.heightAndWidth250px {
    height: 250px;
    width: 250px;
}

.heightAndWidth275px {
    height: 275px;
    width: 275px;
}

.heightAndWidth300px {
    height: 300px;
    width: 300px;
}

.heightAndWidth325px {
    height: 325px;
    width: 325px;
}

.heightAndWidth350px {
    height: 350px;
    width: 350px;
}

.heightAndWidth375px {
    height: 375px;
    width: 375px;
}

.heightAndWidth400px {
    height: 400px;
    width: 400px;
}

.heightAndWidth425px {
    height: 425px;
    width: 425px;
}

.heightAndWidth450px {
    height: 450px;
    width: 450px;
}

.heightAndWidth475px {
    height: 475px;
    width: 475px;
}

.heightAndWidth500px {
    height: 500px;
    width: 500px;
}

.heightAndWidth1em {
    height: 1em;
    width: 1em;
}

.heightAndWidth2em {
    height: 2em;
    width: 2em;
}

.heightAndWidth3em {
    height: 3em;
    width: 3em;
}

.heightAndWidth4em {
    height: 4em;
    width: 4em;
}

.heightAndWidth5em {
    height: 5em;
    width: 5em;
}

.heightAndWidthPoint5em {
    height: 1em;
    width: 1em;
}

.heightAndWidthPoint75em {
    height: 2em;
    width: 2em;
}

.heightAndWidth1Point25em {
    height: 3em;
    width: 3em;
}

.heightAndWidth1Point5em {
    height: 4em;
    width: 4em;
}

.heightAndWidth1Point75em {
    height: 5em;
    width: 5em;
}

.heightAndWidth1rem {
    height: 1rem!important;
    width: 1rem!important;
    max-height: 1rem!important;
    max-width: 1rem!important;
}

.heightAndWidth2rem {
    height: 2rem;
    width: 2rem;
}

.heightAndWidth3rem {
    height: 3rem;
    width: 3rem;
}

.heightAndWidth4rem {
    height: 4rem;
    width: 4rem;
}

.heightAndWidth5rem {
    height: 5rem;
    width: 5rem;
}

.heightAndWidthPoint5rem {
    height: .5rem;
    width: .5rem;
}

.heightAndWidthPoint75rem {
    height: .75rem;
    width: .75rem;
}

.heightAndWidth1Point25rem {
    height: 1.25rem;
    width: 1.25rem;
}

.heightAndWidth1Point5rem {
    height: 1.5rem;
    width: 1.5rem;
}

.heightAndWidth1Point75rem {
    height: 1.75rem;
    width: 1.75rem;
}

/*______________________________________________________________________*/
/*      Height and Width Classes - End                                               */
/*______________________________________________________________________*/


/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*  Fixed Height and Width Classes - End                                                                                                                                */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/




/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*  Fixed Margin Classes - Begin                                                                                                                                              */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/

.marginLeftPoint5em {
    margin-left: .5em;
}

.marginLeft1em {
    margin-left: 1em;
}

.marginLeft2em {
    margin-left: 2em;
}

.marginLeft3em {
    margin-left: 3em;
}

.marginLeft4em {
    margin-left: 4em;
}

.marginLeft5em {
    margin-left: 5em;
}


.marginLeftPoint5rem {
    margin-left: .5rem;
}

.marginLeft1rem {
    margin-left: 1rem;
}

.marginLeft2rem {
    margin-left: 2rem;
}

.marginLeft3rem {
    margin-left: 3rem;
}

.marginLeft4rem {
    margin-left: 4rem;
}

.marginLeft5rem {
    margin-left: 5rem;
}


.marginRightPoint5em {
    margin-right: .5em;
}

.marginRight1em {
    margin-right: 1em;
}

.marginRight2em {
    margin-right: 2em;
}

.marginRight3em {
    margin-right: 3em;
}

.marginRight4em {
    margin-right: 4em;
}

.marginRight5em {
    margin-right: 5em;
}

.marginRightPoint5rem {
    margin-right: .5rem;
}

.marginRight1rem {
    margin-right: 1rem;
}

.marginRight2rem {
    margin-right: 2rem;
}

.marginRight3rem {
    margin-right: 3rem;
}

.marginRight4rem {
    margin-right: 4rem;
}

.marginRight5rem {
    margin-right: 5rem;
}

/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*  Fixed Margin Classes - End                                                                                                                                                 */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/


/* COMMON */
.overflowAuto {
    overflow: auto; /* Add scroll if content exceeds space */
}


.overflow-x-Auto {
    overflow-x: auto; /* Add scroll if content exceeds space */
}



.overflow-y-Auto {
    overflow-y: auto; /* Add scroll if content exceeds space */
}









/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*  Grid-based Layout Row Classes - Begin                                                                                                                                */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/* #region Grid-based Layout Row Classes */

.grid2RowsFillTop {
    display: grid;
    grid-template-rows: 1fr auto; /* top (fills space), bottom fixed size or auto */
    height: 100%; /* Ensure container has a defined height */
}

.grid2RowsFillBottom {
    display: grid;
    grid-template-rows: auto 1fr; /* top  fixed size or auto, bottom (fills space) */
    height: 100%; /* Ensure container has a defined height */
}


.grid3RowsFillBottom {
    display: grid;
    grid-template-rows: auto auto 1fr; /* fixed or auto, fixed or auto, fill */
    height: 100%; /* Ensure container has a defined height */
}

.grid3RowsFillMiddle {
    display: grid;
    grid-template-rows: auto 1fr auto; /* fixed or auto, fill, fixed or auto */
    height: 100%; /* Ensure container has a defined height */
}


.grid3RowsFillTop {
    display: grid;
    grid-template-rows: 1fr auto auto; /* fill, fixed or auto, fixed or auto */
    height: 100%; /* Ensure container has a defined height */
}


.grid4RowsFill1st {
    display: grid;
    grid-template-rows: 1fr auto auto auto; /* fill, fixed or auto, fixed or auto */
    height: 100%; /* Ensure container has a defined height */
}

.grid4RowsFill2nd {
    display: grid;
    grid-template-rows: auto 1fr auto auto; /* fixed or auto, fixed or auto, fill */
    height: 100%; /* Ensure container has a defined height */
}

.grid4RowsFill3rd {
    display: grid;
    grid-template-rows: auto auto 1fr auto; /* fixed or auto, fill, fixed or auto */
    height: 100%; /* Ensure container has a defined height */
}

.grid4RowsFill4th {
    display: grid;
    grid-template-rows: auto auto auto 1fr; /* fixed or auto, fill, fixed or auto */
    height: 100%; /* Ensure container has a defined height */
}

.grid5RowsFill1st {
    display: grid;
    grid-template-rows: 1fr auto auto auto auto; /* fixed or auto, fill, fixed or auto */
    height: 100%; /* Ensure container has a defined height */
}

.grid6RowsFill1st {
    display: grid;
    grid-template-rows: 1fr auto auto auto auto auto; /* fixed or auto, fill, fixed or auto */
    height: 100%; /* Ensure container has a defined height */
}

.grid7RowsFill1st {
    display: grid;
    grid-template-rows: 1fr auto auto auto auto auto auto; /* fixed or auto, fill, fixed or auto */
    height: 100%; /* Ensure container has a defined height */
}

.grid8RowsFill1st {
    display: grid;
    grid-template-rows: 1fr auto auto auto auto auto auto auto; /* fixed or auto, fill, fixed or auto */
    height: 100%; /* Ensure container has a defined height */
}

.grid9RowsFill1st {
    display: grid;
    grid-template-rows: 1fr auto auto auto auto auto auto auto auto; /* fixed or auto, fill, fixed or auto */
    height: 100%; /* Ensure container has a defined height */
}

.grid10RowsFill1st {
    display: grid;
    grid-template-rows: 1fr auto auto auto auto auto auto auto auto auto; /* fixed or auto, fill, fixed or auto */
    height: 100%; /* Ensure container has a defined height */
}

.grid5RowsFillLast {
    display: grid;
    grid-template-rows: auto auto auto auto 1fr; /* fixed or auto, fill, fixed or auto */
    height: 100%; /* Ensure container has a defined height */
}

.grid6RowsFillLast {
    display: grid;
    grid-template-rows: auto auto auto auto auto 1fr; /* fixed or auto, fill, fixed or auto */
    height: 100%; /* Ensure container has a defined height */
}

.grid7RowsFillLast {
    display: grid;
    grid-template-rows: auto auto auto auto auto auto 1fr; /* fixed or auto, fill, fixed or auto */
    height: 100%; /* Ensure container has a defined height */
}

.grid8RowsFillLast {
    display: grid;
    grid-template-rows: auto auto auto auto auto auto auto 1fr; /* fixed or auto, fill, fixed or auto */
    height: 100%; /* Ensure container has a defined height */
}

.grid9RowsFillLast {
    display: grid;
    grid-template-rows: auto auto auto auto auto auto auto auto 1fr; /* fixed or auto, fill, fixed or auto */
    height: 100%; /* Ensure container has a defined height */
}

.grid10RowsFillLast {
    display: grid;
    grid-template-rows: auto auto auto auto auto auto auto auto auto 1fr; /* fixed or auto, fill, fixed or auto */
    height: 100%; /* Ensure container has a defined height */
}

.grid2RowsAuto {
    display: grid;
    grid-template-rows: auto auto; /* fixed or auto, fill, fixed or auto */
    height: 100%; /* Ensure container has a defined height */
}

.grid3RowsAuto {
    display: grid;
    grid-template-rows: auto auto auto; /* fixed or auto, fill, fixed or auto */
    height: 100%; /* Ensure container has a defined height */
}

.grid4RowsAuto {
    display: grid;
    grid-template-rows: auto auto auto auto; /* fixed or auto, fill, fixed or auto */
    height: 100%; /* Ensure container has a defined height */
}

.grid5RowsAuto {
    display: grid;
    grid-template-rows: auto auto auto auto auto; /* fixed or auto, fill, fixed or auto */
    height: 100%; /* Ensure container has a defined height */
}

.grid6RowsAuto {
    display: grid;
    grid-template-rows: auto auto auto auto auto auto; /* fixed or auto, fill, fixed or auto */
    height: 100%; /* Ensure container has a defined height */
}

.grid7RowsAuto {
    display: grid;
    grid-template-rows: auto auto auto auto auto auto auto; /* fixed or auto, fill, fixed or auto */
    height: 100%; /* Ensure container has a defined height */
}

.grid8RowsAuto {
    display: grid;
    grid-template-rows: auto auto auto auto auto auto auto auto; /* fixed or auto, fill, fixed or auto */
    height: 100%; /* Ensure container has a defined height */
}

.grid9RowsAuto {
    display: grid;
    grid-template-rows: auto auto auto auto auto auto auto auto auto; /* fixed or auto, fill, fixed or auto */
    height: 100%; /* Ensure container has a defined height */
}

.grid10RowsAuto {
    display: grid;
    grid-template-rows: auto auto auto auto auto auto auto auto auto auto; /* fixed or auto, fill, fixed or auto */
    height: 100%; /* Ensure container has a defined height */
}

.gridAutoHeightAllRows {
    display: grid;
    grid-auto-rows: auto;
    height: 100%; /* Ensure container has a defined height */
}
/* #endregion Grid-based Layout Row Classes */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*  Grid-based Layout Row Classes - End                                                                                                                                */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/



/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*  Grid-based Layout Column Classes - Begin                                                                                                                           */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/* #region Grid-based Layout Column Classes */
.gridEqualColumnsGap0 {
    max-width: 100%;
    display: grid;
    grid-auto-columns: minmax(0, 1fr);
    grid-auto-flow: column;
}

.gridEqualColumnsGapPoint25rem {
    max-width: 100%;
    display: grid;
    grid-auto-columns: minmax(0, 1fr);
    grid-auto-flow: column;
    column-gap: .25rem;
}

.gridEqualColumnsGapPoint5rem {
    max-width: 100%;
    display: grid;
    grid-auto-columns: minmax(0, 1fr);
    grid-auto-flow: column;
    column-gap: .5rem;
}

.gridEqualColumnsGapPoint75rem {
    max-width: 100%;
    display: grid;
    grid-auto-columns: minmax(0, 1fr);
    grid-auto-flow: column;
    column-gap: .75rem;
}

.gridEqualColumnsGap1rem {
    max-width: 100%;
    width: 100%;
    display: grid;
    grid-auto-columns: minmax(0, 1fr);
    grid-auto-flow: column;
    column-gap: 1rem;
}

.gridEqualColumnsGap1Point25rem {
    max-width: 100%;
    display: grid;
    grid-auto-columns: minmax(0, 1fr);
    grid-auto-flow: column;
    column-gap: 1.25rem;
}

.gridEqualColumnsGap1Point5rem {
    max-width: 100%;
    display: grid;
    grid-auto-columns: minmax(0, 1fr);
    grid-auto-flow: column;
    column-gap: 1.5rem;
}

.gridEqualColumnsGap1Point75rem {
    max-width: 100%;
    display: grid;
    grid-auto-columns: minmax(0, 1fr);
    grid-auto-flow: column;
    column-gap: 1.75rem;
}

.gridEqualColumnsGap2rem {
    max-width: 100%;
    display: grid;
    grid-auto-columns: minmax(0, 1fr);
    grid-auto-flow: column;
    column-gap: 2rem;
}

.gridEqualColumnsGap0MinColWidth1rem {
    max-width: 100%;
    display: grid;
    grid-auto-columns: minmax(1rem, 1fr);
    grid-auto-flow: column;
}

.gridEqualColumnsGapPoint25remMinColWidth1rem {
    max-width: 100%;
    display: grid;
    grid-auto-columns: minmax(1rem, 1fr);
    grid-auto-flow: column;
    column-gap: .25rem;
}

.gridEqualColumnsGapPoint5remMinColWidth1rem {
    max-width: 100%;
    display: grid;
    grid-auto-columns: minmax(1rem, 1fr);
    grid-auto-flow: column;
    column-gap: .5rem;
}

.gridEqualColumnsGapPoint75remMinColWidth1rem {
    max-width: 100%;
    display: grid;
    grid-auto-columns: minmax(1rem, 1fr);
    grid-auto-flow: column;
    column-gap: .75rem;
}

.gridEqualColumnsGap1remMinColWidth1rem {
    max-width: 100%;
    display: grid;
    grid-auto-columns: minmax(1rem, 1fr);
    grid-auto-flow: column;
    column-gap: 1rem;
}

.gridEqualColumnsGap1Point25remMinColWidth1rem {
    max-width: 100%;
    display: grid;
    grid-auto-columns: minmax(1rem, 1fr);
    grid-auto-flow: column;
    column-gap: 1.25rem;
}

.gridEqualColumnsGap1Point5remMinColWidth1rem {
    max-width: 100%;
    display: grid;
    grid-auto-columns: minmax(1rem, 1fr);
    grid-auto-flow: column;
    column-gap: 1.5rem;
}

.gridEqualColumnsGap1Point75remMinColWidth1rem {
    max-width: 100%;
    display: grid;
    grid-auto-columns: minmax(1rem, 1fr);
    grid-auto-flow: column;
    column-gap: 1.75rem;
}

.gridEqualColumnsGap2remMinColWidth1rem {
    max-width: 100%;
    display: grid;
    grid-auto-columns: minmax(1rem, 1fr);
    grid-auto-flow: column;
    column-gap: 2rem;
}


/*Unequal columns no gap*/
.grid2ColumnsFill1st {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(1rem, 1fr) auto;
}

.grid2ColumnsFill2nd {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: auto minmax(1rem, 1fr);
}

.grid3ColumnsFill1st {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(1rem, 1fr) auto auto;
}

.grid3ColumnsFill2nd {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: auto minmax(1rem, 1fr) auto;
}

.grid3ColumnsFill3rd {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: auto auto minmax(1rem, 1fr);
}

.grid4ColumnsFill1st {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(1rem, 1fr) auto auto auto;
}

.grid4ColumnsFill2nd {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: auto minmax(1rem, 1fr) auto auto;
}

.grid4ColumnsFill3rd {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: auto auto minmax(1rem, 1fr) auto;
}

.grid4ColumnsFill4th {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: auto auto auto minmax(1rem, 1fr);
}

/*Unequal columns with gap between columns*/

/*.25 rem gap*/
.grid2ColumnsFill1stGapPoint25rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(1rem, 1fr) auto;
    column-gap: .25rem;
}

.grid2ColumnsFill2ndGapPoint25rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto minmax(1rem, 1fr);
    column-gap: .25rem;
}

.grid3ColumnsFill1stGapPoint25rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(1rem, 1fr) auto auto;
    column-gap: .25rem;
}

.grid3ColumnsFill2ndGapPoint25rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto minmax(1rem, 1fr) auto;
    column-gap: .25rem;
}

.grid3ColumnsFill3rdGapPoint25rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto auto minmax(1rem, 1fr);
    column-gap: .25rem;
}

.grid4ColumnsFill1stGapPoint25rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(1rem, 1fr) auto auto auto;
    column-gap: .25rem;
}

.grid4ColumnsFill2ndGapPoint25rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto minmax(1rem, 1fr) auto auto;
    column-gap: .25rem;
}

.grid4ColumnsFill3rdGapPoint25rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto auto minmax(1rem, 1fr) auto;
    column-gap: .25rem;
}

.grid4ColumnsFill4thGapPoint25rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto auto auto minmax(1rem, 1fr);
    column-gap: .25rem;
}

/*.5 rem gap*/
.grid2ColumnsFill1stGapPoint5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(1rem, 1fr) auto;
    column-gap: .5rem;
}

.grid2ColumnsFill2ndGapPoint5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto minmax(1rem, 1fr);
    column-gap: .5rem;
}

.grid3ColumnsFill1stGapPoint5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(1rem, 1fr) auto auto;
    column-gap: .5rem;
}

.grid3ColumnsFill2ndGapPoint5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto minmax(1rem, 1fr) auto;
    column-gap: .5rem;
}

.grid3ColumnsFill3rdGapPoint5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto auto minmax(1rem, 1fr);
    column-gap: .5rem;
}

.grid4ColumnsFill1stGapPoint5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(1rem, 1fr) auto auto auto;
    column-gap: .5rem;
}

.grid4ColumnsFill2ndGapPoint5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto minmax(1rem, 1fr) auto auto;
    column-gap: .5rem;
}

.grid4ColumnsFill3rdGapPoint5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto auto minmax(1rem, 1fr) auto;
    column-gap: .5rem;
}

.grid4ColumnsFill4thGapPoint5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto auto auto minmax(1rem, 1fr);
    column-gap: .5rem;
}

/*.5 rem gap*/
.grid2ColumnsFill1stGapPoint5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(1rem, 1fr) auto;
    column-gap: .5rem;
}

.grid2ColumnsFill2ndGapPoint5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto minmax(1rem, 1fr);
    column-gap: .5rem;
}

.grid3ColumnsFill1stGapPoint5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(1rem, 1fr) auto auto;
    column-gap: .5rem;
}

.grid3ColumnsFill2ndGapPoint5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto minmax(1rem, 1fr) auto;
    column-gap: .5rem;
}

.grid3ColumnsFill3rdGapPoint5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto auto minmax(1rem, 1fr);
    column-gap: .5rem;
}

.grid4ColumnsFill1stGapPoint5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(1rem, 1fr) auto auto auto;
    column-gap: .5rem;
}

.grid4ColumnsFill2ndGapPoint5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto minmax(1rem, 1fr) auto auto;
    column-gap: .5rem;
}

.grid4ColumnsFill3rdGapPoint5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto auto minmax(1rem, 1fr) auto;
    column-gap: .5rem;
}

.grid4ColumnsFill4thGapPoint5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto auto auto minmax(1rem, 1fr);
    column-gap: .5rem;
}

/*.75 rem gap*/
.grid2ColumnsFill1stGapPoint75rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(1rem, 1fr) auto;
    column-gap: .75rem;
}

.grid2ColumnsFill2ndGapPoint75rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto minmax(1rem, 1fr);
    column-gap: .75rem;
}

.grid3ColumnsFill1stGapPoint75rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(1rem, 1fr) auto auto;
    column-gap: .75rem;
}

.grid3ColumnsFill2ndGapPoint75rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto minmax(1rem, 1fr) auto;
    column-gap: .75rem;
}

.grid3ColumnsFill3rdGapPoint75rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto auto minmax(1rem, 1fr);
    column-gap: .75rem;
}

.grid4ColumnsFill1stGapPoint75rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(1rem, 1fr) auto auto auto;
    column-gap: .75rem;
}

.grid4ColumnsFill2ndGapPoint75rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto minmax(1rem, 1fr) auto auto;
    column-gap: .75rem;
}

.grid4ColumnsFill3rdGapPoint75rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto auto minmax(1rem, 1fr) auto;
    column-gap: .75rem;
}

.grid4ColumnsFill4thGapPoint75rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto auto auto minmax(1rem, 1fr);
    column-gap: .75rem;
}

/*1 rem gap*/
.grid2ColumnsFill1stGap1rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(1rem, 1fr) auto;
    column-gap: 1rem;
}

.grid2ColumnsFill2ndGap1rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto minmax(1rem, 1fr);
    column-gap: 1rem;
}

.grid3ColumnsFill1stGap1rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(1rem, 1fr) auto auto;
    column-gap: 1rem;
}

.grid3ColumnsFill2ndGap1rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto minmax(1rem, 1fr) auto;
    column-gap: 1rem;
}

.grid3ColumnsFill3rdGap1rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto auto minmax(1rem, 1fr);
    column-gap: 1rem;
}

.grid4ColumnsFill1stGap1rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(1rem, 1fr) auto auto auto;
    column-gap: 1rem;
}

.grid4ColumnsFill2ndGap1rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto minmax(1rem, 1fr) auto auto;
    column-gap: 1rem;
}

.grid4ColumnsFill3rdGap1rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto auto minmax(1rem, 1fr) auto;
    column-gap: 1rem;
}

.grid4ColumnsFill4thGap1rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto auto auto minmax(1rem, 1fr);
    column-gap: 1rem;
}

/*1.25 rem gap*/
.grid2ColumnsFill1stGap1Point25rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(1rem, 1fr) auto;
    column-gap: 1.25rem;
}

.grid2ColumnsFill2ndGap1Point25rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto minmax(1rem, 1fr);
    column-gap: 1.25rem;
}

.grid3ColumnsFill1stGap1Point25rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(1rem, 1fr) auto auto;
    column-gap: 1.25rem;
}

.grid3ColumnsFill2ndGap1Point25rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto minmax(1rem, 1fr) auto;
    column-gap: 1.25rem;
}

.grid3ColumnsFill3rdGap1Point25rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto auto minmax(1rem, 1fr);
    column-gap: 1.25rem;
}

.grid4ColumnsFill1stGap1Point25rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(1rem, 1fr) auto auto auto;
    column-gap: 1.25rem;
}

.grid4ColumnsFill2ndGap1Point25rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto minmax(1rem, 1fr) auto auto;
    column-gap: 1.25rem;
}

.grid4ColumnsFill3rdGap1Point25rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto auto minmax(1rem, 1fr) auto;
    column-gap: 1.25rem;
}

.grid4ColumnsFill4thGap1Point25rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto auto auto minmax(1rem, 1fr);
    column-gap: 1.25rem;
}

/*1.5 rem gap*/
.grid2ColumnsFill1stGap1Point5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(1rem, 1fr) auto;
    column-gap: 1.5rem;
}

.grid2ColumnsFill2ndGap1Point5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto minmax(1rem, 1fr);
    column-gap: 1.5rem;
}

.grid3ColumnsFill1stGap1Point5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(1rem, 1fr) auto auto;
    column-gap: 1.5rem;
}

.grid3ColumnsFill2ndGap1Point5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto minmax(1rem, 1fr) auto;
    column-gap: 1.5rem;
}

.grid3ColumnsFill3rdGap1Point5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto auto minmax(1rem, 1fr);
    column-gap: 1.5rem;
}

.grid4ColumnsFill1stGap1Point5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(1rem, 1fr) auto auto auto;
    column-gap: 1.5rem;
}

.grid4ColumnsFill2ndGap1Point5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto minmax(1rem, 1fr) auto auto;
    column-gap: 1.5rem;
}

.grid4ColumnsFill3rdGap1Point5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto auto minmax(1rem, 1fr) auto;
    column-gap: 1.5rem;
}

.grid4ColumnsFill4thGap1Point5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto auto auto minmax(1rem, 1fr);
    column-gap: 1.5rem;
}

/*1.5 rem gap*/
.grid2ColumnsFill1stGap1Point5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(1rem, 1fr) auto;
    column-gap: 1.5rem;
}

.grid2ColumnsFill2ndGap1Point5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto minmax(1rem, 1fr);
    column-gap: 1.5rem;
}

.grid3ColumnsFill1stGap1Point5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(1rem, 1fr) auto auto;
    column-gap: 1.5rem;
}

.grid3ColumnsFill2ndGap1Point5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto minmax(1rem, 1fr) auto;
    column-gap: 1.5rem;
}

.grid3ColumnsFill3rdGap1Point5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto auto minmax(1rem, 1fr);
    column-gap: 1.5rem;
}

.grid4ColumnsFill1stGap1Point5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(1rem, 1fr) auto auto auto;
    column-gap: 1.5rem;
}

.grid4ColumnsFill2ndGap1Point5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto minmax(1rem, 1fr) auto auto;
    column-gap: 1.5rem;
}

.grid4ColumnsFill3rdGap1Point5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto auto minmax(1rem, 1fr) auto;
    column-gap: 1.5rem;
}

.grid4ColumnsFill4thGap1Point5rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto auto auto minmax(1rem, 1fr);
    column-gap: 1.5rem;
}

/*1.75 rem gap*/
.grid2ColumnsFill1stGap1Point75rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(1rem, 1fr) auto;
    column-gap: 1.75rem;
}

.grid2ColumnsFill2ndGap1Point75rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto minmax(1rem, 1fr);
    column-gap: 1.75rem;
}

.grid3ColumnsFill1stGap1Point75rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(1rem, 1fr) auto auto;
    column-gap: 1.75rem;
}

.grid3ColumnsFill2ndGap1Point75rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto minmax(1rem, 1fr) auto;
    column-gap: 1.75rem;
}

.grid3ColumnsFill3rdGap1Point75rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto auto minmax(1rem, 1fr);
    column-gap: 1.75rem;
}

.grid4ColumnsFill1stGap1Point75rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(1rem, 1fr) auto auto auto;
    column-gap: 1.75rem;
}

.grid4ColumnsFill2ndGap1Point75rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto minmax(1rem, 1fr) auto auto;
    column-gap: 1.75rem;
}

.grid4ColumnsFill3rdGap1Point75rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto auto minmax(1rem, 1fr) auto;
    column-gap: 1.75rem;
}

.grid4ColumnsFill4thGap1Point75rem {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto auto auto minmax(1rem, 1fr);
    column-gap: 1.75rem;
}



/* #endregion Grid-based Layout Column Classes */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/
/*  Grid-based Layout Column Classes - End                                                                                                                           */
/*_____________________________________________________________________________________________________________________________*/
/*_____________________________________________________________________________________________________________________________*/

