﻿:root {
    --bordercolor: #b5ccde;
    --backcolor: #b5ccde;
    --headerbackcolor: #fff;
    --headercolor: #222;
    --color: #222;
    --contentbackcolor: #fff;
    --footerbackcolor: #0d698e;
    --footercolor: #eee;
    --menubuttonbackcolor: #cdf;
    --menubuttoncolor: #222;
    --menubuttonbordercolor: #eee;
    --menubuttonhoverbackcolor: #222;
    --menubuttonhovercolor: #fff;
    --menubuttonhoverbordercolor: #fff;
    --borderwidth: 2px;
    --padding: 10px;
    --sectionmargin: 10px;
    --sectionpadding: 20px;
    --fontsizesmall: 11px;
}

 
.CmsDebug {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 300px;
    overflow: auto;
    background-color: #eee;
    padding: 10px;
    font-size: 10px;
}

    .CmsDebug * {
        font-size: 10px;
    }


* {
    font-family: 'Arial';
    font-size: 14px;
    border-collapse: collapse;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    color: var(--color);
    background-color: var(--backcolor);
}

a {
    color: #1d89ae;
}

    a:hover {
        color: #236; 
        text-decoration: underline;
        cursor: default;
    }
/*
Button Styles
*/
*[data-buttonstyle=commit] {
    background-color: #5e9ebd !important;
    color: #fff !important;
}

*[data-buttonstyle=cancel] {
    background-color: #bbb !important;
}

*[data-buttonstyle=commit]:hover {
    background-color: #5e9ebd !important;
}

*[data-buttonstyle=cancel]:hover {
    background-color: #ccc !important;
}

*[data-buttonstyle=alert] {
    background-color: #932 !important;
    color: #fff !important;
}

    *[data-buttonstyle=alert]:hover {
        background-color: #b43 !important;
    }

/*
    Alignments

*/
*[data-alignment='LeftLeft'] ul {
    text-align: left;
}

*[data-alignment='AlignCenter'] ul {
    text-align: center;
}

*[data-alignment='AlignRight'] ul {
    text-align: right;
}

*[data-columnwidth="Col_1_12"] {
    width: calc(100% / 12 * 1) !important;
}

*[data-columnwidth="Col_2_12"] {
    width: calc(100% / 12 * 2) !important;
}

*[data-columnwidth="Col_3_12"] {
    width: calc(100% / 12 * 3) !important;
}

*[data-columnwidth="Col_4_12"] {
    width: calc(100% / 12 * 4) !important;
}

*[data-columnwidth="Col_5_12"] {
    width: calc(100% / 12 * 5) !important;
}

*[data-columnwidth="Col_6_12"] {
    width: calc(100% / 12 * 6) !important;
}

*[data-columnwidth="Col_7_12"] {
    width: calc(100% / 12 * 7) !important;
}

*[data-columnwidth="Col_8_12"] {
    width: calc(100% / 12 * 8) !important;
}

*[data-columnwidth="Col_9_12"] {
    width: calc(100% / 12 * 9) !important;
}

*[data-columnwidth="Col_10_12"] {
    width: calc(100% / 12 * 10) !important;
}

*[data-columnwidth="Col_11_12"] {
    width: calc(100% / 12 * 11) !important;
}

*[data-columnwidth="Col_12_12"] {
    width: 100% !important;
}

*[data-columnlayout="Layout_100"] {
    grid-template-columns: 1fr !important;
}


*[data-gridlayout="Layout_100"] {
    grid-template-columns: 1fr !important;
}

*[data-gridlayout="Layout_50_50"] {
    grid-template-columns: 1fr 1fr !important;
}

*[data-gridlayout="Layout_25_75"] {
    grid-template-columns: 1fr 3fr !important;
}

*[data-gridlayout="Layout_25_25_25_25"] {
    grid-template-columns: 1fr 1fr 1fr 1fr !important;
}

*[data-gridlayout="Layout_33_33_33"] {
    grid-template-columns: 1fr 1fr 1fr !important;
}

*[data-gridlayout="Layout_66_33"] {
    grid-template-columns: 2fr 1fr !important;
}

*[data-gridlayout="Layout_33_66"] {
    grid-template-columns: 1fr 2fr !important;
}

*[data-gridlayout="Layout_40_60"] {
    grid-template-columns: 4fr 6fr !important;
}

*[data-gridlayout="Layout_75_25"] {
    grid-template-columns: 3fr 1fr !important;
}

*[data-gridlayout="Layout_15_60_25"] {
    grid-template-columns: 1fr 5fr 2fr !important;
}

*[data-gridlayout="Layout_Rows_75_Auto"] {
    grid-template-rows: 75px auto !important;
    display: grid;
}

*[data-gridlayout="Layout_nav_auto_tool"] {
    grid-template-columns: 220px auto 300px !important;
    display: grid !important;
}


td, th {
    vertical-align: top;
    text-align: left;
}
/*
Layout

*/

.UiPageFrame {
    border: var(--borderwidth) solid var(--bordercolor);
    width: 1200px;
    margin: auto;
    display: grid;
    gap: 10px;
}

.UiBlockFrontendNode[data-blocknodetype="PageSection"] {
    display: grid;
    gap: 0;
    border: var(--borderwidth) solid var(--bordercolor);
    padding: var(--padding);
}

.UiPageSection_Header {
    background-color: var(--headerbackcolor);
    color: var(--headercolor);
    margin-bottom: var(--sectionmargin);
    padding: var(--sectionpadding) !important;
}

.UiPageSection_Content {
    background-color: var(--contentbackcolor);
    color: var(--color);
    margin-bottom: var(--sectionmargin);
    padding: var(--sectionpadding) !important;
}

    .UiPageSection_Content > .UiBlockFrontendNode > .UiBlockFrontendNode {
        min-height: 100vH;
    }

    .UiPageSection_Content > * {
        margin-bottom: 40px;
    }

    .UiPageSection_Content .UiBlockFrontendNode {
        margin-bottom: 10px;
    }


.UiPageSection_Footer {
    background-color: var(--footerbackcolor);
    color: var(--footercolor);
    padding: var(--sectionpadding) !important;
}

*[data-blocknodetype="ImageTextFrame"] > div *,
*[data-blocknodetype="TextBlock"] > div * {
    font-size: inherit !important;
    line-height: inherit !important;
}



.UiTopMenu {
}

    .UiTopMenu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: block;
    }

    .UiTopMenu li {
        display: inline-block;
    }

        .UiTopMenu li a {
            font-size: var(--fontsizesmall);
            text-decoration: none;
            padding: 0px 5px;
            color: #222;
        }

        .UiTopMenu li:hover a {
            text-decoration: underline;
        }







.UiMasterMenu {
    /*! margin-top: 10px; */
    padding-left: 300px;
    background-image: url('media/sitelogo.png');
    background-repeat: no-repeat;
    background-size: contain;
    /*! padding-top: 20px; */
    padding-bottom: 40px;
    background-size: 200px;
}

    .UiMasterMenu > ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .UiMasterMenu > ul > li {
            display: inline-block;
            overflow: hidden;
            background-color: transparent;
        }

            .UiMasterMenu > ul > li > a {
                display: block;
                padding: 10px 20px;
                text-decoration: none;
                color: #222;
            }

                .UiMasterMenu > ul > li > a:hover {
                    background-color: #1d89ae;
                    color: #fff;
                }

    .UiMasterMenu li[data-selected="selected"] > a {
        background-color: #1d89ae;
        color: #eee;
    }


.UiDroppableItem > .UiMegaMenuPane {
    display: none;
    margin-top: 0px;
    position: absolute;
    background-color: transparent;
    width: 100%;
    left: 0;
    z-index: 1;
    padding-bottom: 40px;
}





.UiMegaMenuPane > .UiGridLayoutPane {
    width: 1194px;
    border-top: 4px solid #1d89ae;
    background-color: #b5ccde;
    margin: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 10px;
}


    .UiMegaMenuPane > .UiGridLayoutPane > .UiMegaMenuGroup {
        border: 1px solid transparent;
    }

.UiMegaMenuGroup {
    padding: 0;
}



    .UiMegaMenuGroup > ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .UiMegaMenuGroup > ul > li {
            display: block;
            margin: 0;
            padding: 0;
            margin-left: 20px;
        }

    .UiMegaMenuGroup a {
        text-decoration: none;
        display: block;
        background-color: #eef;
        padding: 10px;
        font-size: 12px;
        margin-bottom: 1px;
    }

        .UiMegaMenuGroup[data-selected=selected] h3 a,
        .UiMegaMenuGroup a:hover {
            background-color: #1d89ae;
            color: #fff;
        }

    .UiMegaMenuGroup > h3 {
        margin: 0;
        padding: 0;
    }

        .UiMegaMenuGroup > h3 > a {
            font-weight: 400;
            font-size: 14px;
            padding: 10px;
            margin: 0px;
            margin-bottom: 1px;
            display: block;
            background-color: #eef;
            color: #222;
        }

.UiDroppableItem:hover > .UiMegaMenuPane {
    display: block;
}

.UiDroppableItem > a:after {
    content: '\25BC';
    padding-left: 6px;
    margin-left: 6px;
    display: inline-block;
    float: right;
    font-size: 8px;
    border-left: 1px solid;
}

.UiDroppableItem a {
    padding-right: 10px !important;
}

.ImageFrame {
    max-width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.UiBreadcrumbs {
    margin-top: 12px;
    margin-bottom: 0px;
    border-top: 1px solid #459;
}

    .UiBreadcrumbs ul {
        list-style: none;
        padding: 0;
        margin: 0;
        font-size: 12px;
    }

    .UiBreadcrumbs li {
        display: inline;
    }

        .UiBreadcrumbs li a {
            padding: 2px 5px;
            text-decoration: none;
        }

            .UiBreadcrumbs li a:hover {
                text-decoration: underline;
                cursor: pointer;
            }

.UiTileView {
    border: 1px solid #bbb;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.UiTileViewItem {
    display: inline-grid;
    border: 1px solid blue;
    height: 150px;
    padding: 10px;
}

.UiNewsPromo {
}

    .UiNewsPromo > h2 {
        background-color: #1d89ae;
        color: #eee;
        font-weight: 400 !important;
        font-size: 20px !important;
        padding: 10px;
        margin: 10px 0;
    }

    .UiNewsPromo > div > .UiArticleTile {
        margin: 10px 0;
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 10px;
    }

.UiArticleTile > div {
    display: inline-grid;
}

.UiArticleTile > .ImageFrame {
    background-color: #ddd;
    height: 160px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.UiArticleTile > .Content {
    display: block;
    padding: 0;
}

    .UiArticleTile > .Content > .SubTitle {
        font-weight: bold;
        color: #888;
        font-size: 12px;
    }

    .UiArticleTile > .Content > h3 {
        margin: 0;
        padding: 0;
    }

        .UiArticleTile > .Content > h3 > a {
            font-size: 20px;
            font-weight: 400;
            text-decoration: none;
        }

            .UiArticleTile > .Content > h3 > a:hover {
                text-decoration: underline;
            }

    .UiArticleTile > .Content > .LeadIn {
        line-height: 150%;
        font-size: 14px;
    }










.UiArticle .SubTitle {
    font-weight: bold;
    color: #888;
    font-size: 12px;
}

.UiArticle > h1 > a {
    font-size: 28px;
    font-weight: 400;
}


.UiArticle .UiArticleContent {
    max-width: 800px;
}

.UiArticle .UiBlockFrontendNode[data-blockrole="NewsSubTitle"] h3 {
    font-size: 16px;
    margin: 0;
    padding: 0;
    line-height: 100%;
}

.UiArticle .UiBlockFrontendNode[data-blockrole="NewsTitle"] h1 {
    font-size: 28px;
    margin: 15px 0 20px;
    padding: 0;
    font-weight: 400;
}

.UiArticle .UiBlockFrontendNode[data-blockrole="NewsControl"] p {
    margin: 0;
    font-size: 12px;
}

    .UiArticle .UiBlockFrontendNode[data-blockrole="NewsControl"] p * {
        font-size: 12px;
    }

.UiArticle .UiBlockFrontendNode[data-blockrole="NewsLeadIn"] {
    font-weight: 600;
}


.UiBlockFrontendNode p,
.UiBlockFrontendNode p > *,
.UiBlockFrontendNode li,
.UiBlockFrontendNode li * {
    font-size: 15px;
    line-height: 150%;
    margin: 0;
    margin-bottom: 5px;
}

    .UiBlockFrontendNode p * {
        font-size: inherit;
        line-height: inherit;
    }

.UiBlockFrontendNode h1 {
    font-size: 30px;
    font-weight: 600;
}

.UiBlockFrontendNode h2 {
    font-size: 26px;
    font-weight: 600;
}

.UiBlockFrontendNode h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 20px 0px 4px 0px;
}

.UiBlockFrontendNode h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 20px 0px 4px 0px;
}

.UiBlockFrontendNode h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0px 4px 0px;
}

.UiBlockFrontendNode h6 {
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0px 4px 0px;
}










.UiCourseTile {
}

.UiCoursePromo {
    width: 100%;
}

    .UiCoursePromo > h2 {
        background-color: #1d89ae;
        color: #eee;
        font-weight: 400;
        font-size: 20px;
        padding: 10px;
        margin: 10px 0;
    }

    .UiCoursePromo[data-gridlayout="true"] > div {
        margin: 10px 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

.UiCourseTile {
    border: 1px solid #bcf;
    min-height: 550px;
}

    .UiCourseTile > .InnerFrame {
        position: relative;
        width: 100%;
        height: 100%;
    }

        .UiCourseTile > .InnerFrame > .ImageFrame {
            height: 75px;
            background-image: url('/theme/media/course.jpg');
            background-size: cover;
            background-position: center center;
            background-color: #235;
            border: 1px solid;
            width: 100%;
        }

        .UiCourseTile > .InnerFrame > .Content {
            padding: 10px;
        }

            .UiCourseTile > .InnerFrame > .Content h3 {
                margin: 0;
                padding: 0;
            }

                .UiCourseTile > .InnerFrame > .Content h3 a {
                    font-size: 20px;
                    font-weight: 400;
                    text-decoration: none;
                    color: #235;
                }

            .UiCourseTile > .InnerFrame > .Content > h3 > a:hover {
                text-decoration: underline;
                cursor: pointer;
            }

            .UiCourseTile > .InnerFrame > .Content > p {
            }

            .UiCourseTile > .InnerFrame > .Content > .LeadIn {
                font-size: 14px;
                line-height: 135%;
            }

    .UiCourseTile td, .UiCourseTile th {
        font-size: 12px;
    }

    .UiCourseTile table {
        margin-bottom: 10px;
    }

    .UiCourseTile th,
    .UiCourseTile td {
        padding: 2px;
        font-size: 11px;
    }

    .UiCourseTile th {
        padding-right: 10px;
    }


    .UiCourseTile > .InnerFrame > .Content {
        position: absolute;
        top: 75px;
        bottom: 50px;
        overflow: auto;
        width: 100%;
    }

    .UiCourseTile > .InnerFrame > .Menu {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 50px;
        background-color: #eee;
        padding: 5px;
    }

        .UiCourseTile > .InnerFrame > .Menu > a {
            float: right;
            padding: 10px;
            border: 1px solid #bbf;
            background-color: #0d698e;
            color: #fff;
            display: inline-block;
            text-decoration: none;
        }

            .UiCourseTile > .InnerFrame > .Menu > a:hover {
                background-color: #08496e;
                color: #fff;
                cursor: pointer;
            }


.UiBlockFrontendNode[data-blocknodetype="CourseHeader"] > .Header .ImageFrame {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.UiBlockFrontendNode[data-blocknodetype="CourseHeader"] > .Header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 4px solid #1d89ae;
    padding-bottom: 20px;
}

    .UiBlockFrontendNode[data-blocknodetype="CourseHeader"] > .Header h3 {
        margin-top: 0;
    }

        .UiBlockFrontendNode[data-blocknodetype="CourseHeader"] > .Header h3 a {
            font-size: 24px;
        }

    .UiBlockFrontendNode[data-blocknodetype="CourseHeader"] > .Header table {
        border-collapse: collapse;
        table-layout: fixed;
        width: 100%;
    }

    .UiBlockFrontendNode[data-blocknodetype="CourseHeader"] > .Header th,
    .UiBlockFrontendNode[data-blocknodetype="CourseHeader"] > .Header td {
        font-size: 14px;
        padding: 4px;
        border: 2px solid #fff;
    }

    .UiBlockFrontendNode[data-blocknodetype="CourseHeader"] > .Header th {
        width: 200px;
        background-color: #eee;
    }

    .UiBlockFrontendNode[data-blocknodetype="CourseHeader"] > .Header td {
        background-color: #eef;
    }

.UiCourse > .UiCourseContent {
    margin-top: 20px;
}



.UiBlockFrontendNode[data-blocknodetype=CourseInstructors] > h3,
.UiBlockFrontendNode[data-blocknodetype=CourseOrga] > h3,
.UiBlockFrontendNode[data-blocknodetype=CourseUnits] > h3,
.UiBlockFrontendNode[data-blocknodetype=CourseBooking] > h3,
.UiBlockFrontendNode[data-blocknodetype=CourseDownloads] > h3,
.UiBlockFrontendNode[data-blocknodetype=CourseContent] > h3 {
    border-bottom: 1px solid #bbb;
    margin-top: 40px;
    margin-bottom: 30px;
}

.UiBlockFrontendNode[data-blocknodetype=CourseBooking] .CmpFormLineMenu {
    text-align: right;
    width: 100% !important;
}

.UiBlockFrontendNode[data-blocknodetype=CourseUnits] > .UiGridLayoutPane > div {
    margin-bottom: 10px;
}

    .UiBlockFrontendNode[data-blocknodetype=CourseUnits] > .UiGridLayoutPane > div > h6 {
        margin-top: 0;
    }

.UiCourse > form {
    padding: 10px 0;
    margin-top: 10px;
    text-align: right;
}

    .UiCourse > form > input {
        border: 1px solid #235;
        padding: 10px;
    }

    .UiCourse > form > button,
    .UiCourse > form > span {
        border: 1px solid #235;
        padding: 10px;
        background-color: #235;
        color: #fff;
    }

    .UiCourse > form > span {
        background-color: #555;
    }

.UiImageBlock {
    margin: 0;
    padding: 0;
    text-align: left;
}

    .UiImageBlock > img {
        max-width: 100%;
    }

    .UiImageBlock > figcaption {
        font-size: 12px;
    }




.UiShop {
    border: 2px solid #235;
}

.UiShopMenu {
    border-bottom: 2px solid #235;
    padding: 10px;
}

    .UiShopMenu > .UiShopMenuItem {
        padding: 10px 25px;
        display: inline-block;
        background-color: #eef;
        margin-right: 10px;
        border-bottom: 6px solid #666;
    }

.UiShopMenuItem[type=submit] {
    background-color: #5e9ebd;
    color: #fff;
    border: none;
    border-bottom: 6px solid #f8be8e;
}

    .UiShopMenuItem[type=submit]:hover {
        background-color: #3e7e9d;
        color: #fff;
    }

.UiShop .CmpFormLineMenu {
    width: 200px;
    float: left;
    text-align: left;
}

    .UiShop .CmpFormLineMenu input {
        padding: 4px;
        margin: 2px;
    }

    .UiShop .CmpFormLineMenu button {
        padding: 6px 4px;
    }

.UiShopMenuItem[data-selected="1"] {
    background-color: #1d89ae;
    color: #fff;
}

.UiShopMenuItem[data-isactive="1"] {
    border-bottom-color: #e84e0e !important;
    ;
}

.UiShopPage {
    padding: 10px;
    min-height: 300px;
}

.UiShop h3 {
    font-size: 16px;
}

.UiShopNavigation {
    border-top: 2px solid #235;
    padding: 10px;
    text-align: right;
    padding-right: 0;
}

    .UiShopNavigation > button {
        border: 1px solid #235;
        background-color: #5e9ebd;
        color: #fff;
        font-weight: 400;
        padding: 10px 25px;
        margin: 0px 0px 0px 4px;
    }

        .UiShopNavigation > button:hover {
            background-color: #3e7e9d;
        }

        .UiShopNavigation > button[data-selected="1"] {
            background-color: #832;
        }

.CartItem {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 2fr 4fr 1fr;
    gap: 20px;
}

    .CartItem > * {
        min-height: 180px;
    }

    .CartItem > .ImageFrame {
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        background-color: #eee;
    }

    .CartItem h5, .CartItem h2 {
        margin: 0;
    }

    .CartItem > .PriceInfo {
        text-align: right;
    }

    .CartItem > .Content > div {
        border-top: 1px solid #bbb;
        padding: 10px 0px;
    }

        .CartItem > .Content > div > button {
            border: 1px solid #933;
            padding: 4px 10px;
            background-color: #933;
            color: #fff;
            margin-right: 10px;
        }


.UiPromoBox {
    width: 100%;
    height: 350px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px;
    margin-bottom: 50px;
}

    .UiPromoBox h2 {
        font-size: 30px;
        color: #239;
    }

    .UiPromoBox p {
        font-size: 16px;
        font-weight: bold;
        width: 500px;
    }

    .UiPromoBox a {
        display: inline-block;
        border: 1px solid #235;
        padding: 20px 30px;
        background-color: #235;
        color: #fff;
        font-size: 16px;
    }

        .UiPromoBox a:hover {
            background-color: #469;
            cursor: pointer;
        }

.UiWidget_ImageBanner {
    display: block;
    background-position: center center;
    background-size: cover;
}

.UiExtern_MailingList {
    padding: 0;
}

    .UiExtern_MailingList h2 {
        font-size: 20px;
        font-weight: 400;
        background-color: #257;
        padding: 10px;
        color: #fff;
        margin: 0;
    }

.UiExtern_MailingList {
    /*! border: 1px solid #257; */
    margin-top: 10px;
}

.CmpForm {
    padding: 0;
}

    .CmpForm > .CmpFormLayoutLine {
        padding: 0;
        display: grid;
        gap: 10px;
    }

        .CmpForm > .CmpFormLayoutLine > .CmpFormLayoutColumn {
            padding: 0;
            padding-bottom: 10px;
        }

            .CmpForm > .CmpFormLayoutLine > .CmpFormLayoutColumn > .CmpFormGroup {
                margin: 0;
                padding: 10px;
                border: 1px solid #bbb;
                margin-bottom: 10px;
            }

            .CmpForm > .CmpFormLayoutLine > .CmpFormLayoutColumn > .UiFormInfoBox {
                margin: 0;
                padding: 0 0 0 8px;
                margin-bottom: 5px;
            }


            .CmpForm > .CmpFormLayoutLine > .CmpFormLayoutColumn > .CmpFormGroup > legend {
                font-weight: 400;
                font-size: 14px;
                display: block;
                padding: 0;
                margin: 0;
                color: #222;
                padding: 2px;
            }

    .CmpForm .UiFormInfoBox > h3 {
        margin: 0;
        padding: 0;
        font-size: 12px;
    }

    .CmpForm .UiFormInfoBox p {
        font-size: 12px;
        line-height: 150%;
        padding: 0;
        margin: 0;
    }

.UiFormInfoBox[data-infoboxstyle="Alert"] {
    background-color: #fbb;
    border: 2px solid #b22;
}

.UiFormInfoBox[data-infoboxstyle="Warning"] {
    background-color: #ffb;
    border: 2px solid #bb2;
}

.UiFormInfoBox[data-infoboxstyle="OK"] {
    background-color: #bfb;
    border: 2px solid #2b2;
}

.UiFormInfoBox {
    background-color: transparent;
    border: none;
    margin-bottom: 12px !important;
    padding: 5px;
    ;
}

    .UiFormInfoBox a {
        font-size: 12px;
        color: #00b;
    }

        .UiFormInfoBox a:hover {
            color: #00f;
        }

.CmpFormCell {
    width: 100%;
    padding-right: 4px;
    display: inline-block;
    text-align: left;
    margin: 0;
    margin-bottom: 10px;
}

    .CmpFormCell .PasswordInfo {
        font-size: 12px;
        font-style: italic;
    }

    .CmpFormCell:last-child {
        padding-right: 0;
    }

    .CmpFormCell > label {
        display: block;
        font-size: 11px !important;
        ;
        font-weight: 400 !important;
        ;
        padding: 2px;
        width: 100%;
    }

    .CmpFormCell > select,
    .CmpFormCell > textarea,
    .CmpFormCell > input {
        width: 100%;
        border: 1px solid #bbb;
        border-bottom: 2px solid #448;
        padding: 2px 5px;
        font-size: 14px;
        line-height: 150%;
        outline: none;
        padding: 4px;
    }

    .CmpFormCell > *[readonly="readonly"],
    .CmpFormCell > *[disabled] {
        background-color: #eee;
    }

        .CmpFormCell > *[readonly="readonly"]:focus {
            background-color: #eee;
            border-color: #666;
            border-bottom-color: #666;
            outline: none;
        }

    .CmpFormCell > .FormPlainText {
        font-size: 13px;
        padding: 2px 3px;
    }

        .CmpFormCell > .FormPlainText:empty:before {
            content: '[leer]';
            color: #666;
        }

.CmpForm input:focus,
.CmpForm textarea:focus,
.CmpForm select:focus {
    border-color: #47f;
    background-color: #f9f9f9;
    outline: 1px solid #235;
}

.CmpFormCell > .FormCheckBox {
    display: inline-block;
    margin-top: 10px;
    padding-left: 0;
    margin-left: 0;
    width: 20px;
}

    .CmpFormCell > .FormCheckBox + label {
        display: inline-block;
        width: calc(100% - 30px);
        font-size: 14px;
        line-height: 14px;
        vertical-align: top;
        margin-top: 8px;
        padding-top: 0;
    }

.CmpFormCell *[data-validationstyle="Alert"] {
    border-color: #b00;
    background-color: #fee;
}

    .CmpFormCell *[data-validationstyle="Alert"] + label {
        background-color: #fee;
    }

.CmpFormCell > .PasswordIndicator {
    margin: 5px 0;
    height: 10px;
    background-color: #eef;
}

.CmpFormLineMenu {
    text-align: right;
    padding: 10px 0px;
}

    .CmpFormLineMenu > button,
    .CmpFormLineMenu > a {
        margin-left: 5px;
        border: 1px solid #bbb;
        padding: 12px;
        font-size: 13px;
        font-weight: 400;
        text-decoration: none;
        background-color: #4e9ebd;
        color: #fff;
    }

        .CmpFormLineMenu > button:hover,
        .CmpFormLineMenu > a:hover {
            background-color: #3e7e9d;
        }


.UiCustomerComponent {
    border: 1px solid;
}

    .UiCustomerComponent > .Header {
        background-color: #246;
        color: #fff;
        font-size: 12px;
        padding: 10px 12px;
    }

    .UiCustomerComponent > .Canvas {
        display: grid;
        grid-template-columns: 1fr 4fr;
    }

        .UiCustomerComponent > .Canvas > .Menu {
            border-right: 2px solid #bbb;
            padding: 10px;
        }

            .UiCustomerComponent > .Canvas > .Menu > h2 {
                font-size: 14px;
                font-weight: 600;
                background-color: #bbc7d6;
                padding: 4px 10px;
                margin: 0;
                margin-top: 10px;
                margin-bottom: 1px;
            }

                .UiCustomerComponent > .Canvas > .Menu > h2:first-child {
                    margin-top: 0;
                }

            .UiCustomerComponent > .Canvas > .Menu > a {
                display: block;
                padding: 4px 10px;
                font-size: 14px;
                text-decoration: none;
                background-color: #dde3ea;
                margin-bottom: 1px;
                /*! margin-left: 20px; */
                padding-left: 20px;
            }

                .UiCustomerComponent > .Canvas > .Menu > a:hover,
                .UiCustomerComponent > .Canvas > .Menu > a[data-selected="1"] {
                    cursor: pointer;
                    text-decoration: none;
                    background-color: #359;
                    color: #fff;
                }

        .UiCustomerComponent > .Canvas > .Content {
            padding: 10px;
        }

            .UiCustomerComponent > .Canvas > .Content > h2 {
                font-size: 16px;
                background-color: #246;
                color: #fff;
                padding: 10px;
                margin: 0;
                margin-bottom: 20px;
            }

.UiDataView {
    background-color: #f4f4f4;
    display: grid;
    gap: 10px;
    padding: 10px;
}

    .UiDataView > div {
        background-color: #fff;
        display: grid;
        gap: 2px;
        padding: 5px 5px
    }

        .UiDataView > div > h3 {
            margin: 0;
            padding: 0;
            font-size: 15px;
            font-weight: 600;
        }

        .UiDataView > div > p {
            font-size: 12px;
            margin: 0;
        }

        .UiDataView > div > form {
            padding: 0;
        }

            .UiDataView > div > form div {
                padding: 0 !important;
                margin: 0 !important;
                gap: 0;
            }

            .UiDataView > div > form fieldset {
                padding: 0 !important;
                ;
                margin: 0 !important;
            }

            .UiDataView > div > form .CmpFormCell {
                padding-right: 4px !important;
            }

            .UiDataView > div > form .CmpFormLineMenu {
                padding: 10px 4px 10px 9px !important;
            }

                .UiDataView > div > form .CmpFormLineMenu button {
                    padding: 2px 10px;
                    margin: 0;
                    margin-left: 4px;
                    font-size: 12px !important;
                    font-weight: 600;
                }

    .UiDataView .Footer .CmpFormLayoutLine {
        padding: 0px 0px 0px 9px !important;
    }

    .UiDataView .TableView {
        padding: 0;
    }

        .UiDataView .TableView > table {
            width: 100%;
            border-collapse: collapse;
            border: 1px solid #222;
        }

        .UiDataView .TableView td,
        .UiDataView .TableView th {
            padding: 2px 4px;
            background-color: #fff;
            border: 2px solid #eee;
            font-size: 12px;
            text-align: left;
            vertical-align: top;
            cursor: default;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        .UiDataView .TableView > table a {
            font-size: 12px;
            display: block;
            text-decoration: none;
            font-weight: inherit;
        }

        .UiDataView .TableView th {
            background-color: #ddd;
            color: #222;
            font-weight: 600;
        }

        .UiDataView .TableView tr:hover td {
            background-color: #cdf;
        }

        .UiDataView .TableView tbody tr:hover td a {
            text-decoration: underline;
        }

        .UiDataView .TableView th[selected="Selected"],
        .UiDataView .TableView thead th:hover {
            background-color: #bbb;
        }

        .UiDataView .TableView th[data-sortdirection="Asc"] a:after {
            content: '\25B2';
            padding-left: 3px;
            display: inline-block;
            float: right;
            font-size: 10px;
        }

        .UiDataView .TableView th[data-sortdirection="Desc"] a:after {
            content: '\25BC';
            padding-left: 3px;
            display: inline-block;
            float: right;
            font-size: 10px;
        }



    .UiDataView .TileView {
        display: grid;
        background-color: transparent;
        gap: 10px;
        padding: 0;
    }

        .UiDataView .TileView > div {
            background-color: #fff;
            padding: 5px;
        }

        .UiDataView .TileView .Header > h3 {
            margin: 0px 0px 4px 0px;
            padding: 3px 0;
            border-bottom: 1px solid #bbb;
            font-size: 14px;
        }

        .UiDataView .TileView .Header > span {
            font-size: 12px;
            padding: 0;
            display: block;
            margin-bottom: 5px;
        }

            .UiDataView .TileView .Header > span > b {
                font-size: 12px;
                font-weight: 600;
            }


.UiDashboard {
    margin: 0;
    padding: 0;
}

    .UiDashboard > .Group {
        padding-top: 0;
        margin: 0;
        margin-bottom: 20px;
    }

        .UiDashboard > .Group > h2 {
            font-size: 16px;
            padding: 0;
            font-weight: 700;
            color: #235;
            margin: 2px 0px;
        }

        .UiDashboard > .Group > .Container {
            display: grid;
            gap: 10px;
        }

            .UiDashboard > .Group > .Container > * {
                display: inline-block;
                padding: 10px;
            }

            .UiDashboard > .Group > .Container > div:first-child {
                padding-top: 0;
            }

            .UiDashboard > .Group > .Container > div {
                padding: 0px;
            }

                .UiDashboard > .Group > .Container > div:first-child > h1 {
                    font-size: 25px;
                    padding: 0;
                    margin: 0px 0px;
                }

            .UiDashboard > .Group > .Container > a {
                display: inline-block;
                padding: 10px;
                border: 1px solid #359;
                border-radius: 4px;
                color: #235;
                user-select: none;
                text-decoration: none;
            }

                .UiDashboard > .Group > .Container > a:hover {
                    background-color: #235;
                    color: #fff;
                }

                    .UiDashboard > .Group > .Container > a:hover * {
                        color: #fff;
                        background-color: #235;
                    }

            .UiDashboard > .Group > .Container > * > h3 {
                font-size: 14px;
                margin: 2px 0px;
            }

            .UiDashboard > .Group > .Container > * > p {
                font-size: 13px;
                color: #222;
            }

.ActionTileView {
    border: 1px solid #bbb;
}

    .ActionTileView .Header {
        background-color: #eef;
    }

        .ActionTileView .Header h6 {
            margin: 0;
            padding: 10px;
            font-weight: 600;
            font-size: 14px;
        }

    .ActionTileView .UiGridLayoutPane {
        overflow: auto;
        display: grid;
        gap: 10px;
        padding: 10px;
    }

        .ActionTileView .UiGridLayoutPane > * {
            display: inline-grid;
            border: 1px solid #bbb;
            padding: 10px;
            background-color: #f9f9f9;
        }

            .ActionTileView .UiGridLayoutPane > *:hover {
                background-color: #e9e9ff;
                cursor: default;
                border-color: #359;
            }

        .ActionTileView .UiGridLayoutPane .ContentBlock * {
            font-size: 12px;
        }

        .ActionTileView .UiGridLayoutPane .ContentBlock h1 {
            margin: 4px 0px;
            font-size: 20px;
        }

        .ActionTileView .UiGridLayoutPane .ContentBlock h2 {
            margin: 4px 0px;
            font-size: 18px;
        }

        .ActionTileView .UiGridLayoutPane .ContentBlock h3 {
            margin: 4px 0px;
            font-size: 14px;
        }

.UiGridLayoutPane {
    display: grid;
    gap: 10px;
}

.UiBox {
    border: 1px solid #bbb;
    margin: 20px 0px;
}

    .UiBox .Header {
        background-color: #1d89ae;
        font-weight: 600;
        font-size: 14px;
        padding: 10px;
    }

        .UiBox .Header label {
            color: #fff;
        }

    .UiBox .Content {
        padding: 40px 10px;
    }

.UiToolBar .UiToolBarGroup a {
    display: inline-block;
    padding: 10px;
    background-color: #eee;
    margin-right: 4px;
    text-decoration: none;
    color: #eee;
    background-color: #235;
}

    .UiToolBar .UiToolBarGroup a:hover {
        color: #fff;
        background-color: #347;
        cursor: default;
    }

.ContentBlock {
}

    .ContentBlock p {
        font-size: 16px;
        line-height: 150%;
        margin-bottom: 10px;
    }

    .ContentBlock label {
        font-weight: 400;
        color: #225;
        font-size: 12px;
    }

    .ContentBlock h1,
    .ContentBlock h2,
    .ContentBlock h3,
    .ContentBlock h4,
    .ContentBlock h5,
    .ContentBlock h6 {
        font-weight: 600 !important;
    }

        .ContentBlock h1:first-child,
        .ContentBlock h2:first-child,
        .ContentBlock h3:first-child,
        .ContentBlock h4:first-child,
        .ContentBlock h5:first-child,
        .ContentBlock h6:first-child {
            margin-top: 0;
            padding-top: 0;
        }

    .ContentBlock .SimpleTable {
        border: 1px solid #eef;
        width: 100%;
    }

        .ContentBlock .SimpleTable > tbody > tr > td {
            padding: 2px;
            background-color: #f9f9f9;
            border: 2px solid #fff;
        }

        .ContentBlock .SimpleTable > tbody > tr > th {
            padding: 2px 20px 2px 0px;
            font-weight: 400;
            background-color: #c5dcee;
            border: 1px solid #fff;
            padding: 4px;
            width: 300px;
        }

    .ContentBlock[data-viewcondensed] * {
        margin: 0;
        padding: 2px;
    }

    .ContentBlock[data-viewcondensed] p {
        font-size: 13px;
    }

    .ContentBlock[data-viewcondensed] td,
    .ContentBlock[data-viewcondensed] th {
        font-size: 13px;
    }

.OrderTable {
    border: 1px solid #bbb;
    width: 100%;
}

    .OrderTable .InfoLine {
        font-size: 12px;
        display: block;
        padding: 5px;
    }

    .OrderTable th {
        padding: 10px;
        background-color: #eee;
    }

    .OrderTable th {
        text-align: right;
    }

        .OrderTable th:first-child {
            text-align: left;
        }

    .OrderTable td {
        padding: 10px;
        text-align: right;
        vertical-align: top;
    }

    .OrderTable tbody td:first-child,
    .OrderTable tbody td:nth-child(2) {
        text-align: left;
    }

    .OrderTable td[data-datacelltype] {
        width: 300px;
    }

    .OrderTable .ContentBlock * {
        font-size: 14px;
        padding: 2px 0px;
        margin: 0;
    }

    .OrderTable .ContentBlock .SimpleTable th {
        width: 200px;
    }

    .OrderTable tbody td[colspan] a,
    .OrderTable tbody td[colspan] {
        font-weight: 600;
        font-size: 19px;
        padding: 10px;
        text-decoration: none;
        color: #235;
    }

        .OrderTable tbody td[colspan] a {
            padding: 0;
        }

            .OrderTable tbody td[colspan] a:hover {
                text-decoration: underline;
            }

    .OrderTable .ImageFrame {
        width: 300px;
        height: 160px;
        background-color: #eee;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .OrderTable .PriceInfo {
        padding: 0;
        width: 150px;
        text-align: right;
        display: inline-block;
    }

        .OrderTable .PriceInfo > h5 {
            margin: 0;
            padding: 0;
        }

    .OrderTable tfoot tr:first-child td {
        text-align: right;
        font-size: 16px;
        font-weight: 600;
        border-top: 2px solid #444;
    }

    .OrderTable tfoot tr:nth-child(2) td {
        font-size: 12px;
        text-align: right;
    }

    .OrderTable .CopyrightMessage,
    .OrderTable .CopyrightMessage * {
        font-size: 12px;
    }

    .OrderTable .ContentBlock th {
        font-weight: 600;
        background-color: #fff;
    }

.UiPageTileNavigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

    .UiPageTileNavigation > a {
        display: block;
        border: 1px solid #bbb;
        height: 250px;
        text-decoration: none;
        font-weight: 400;
        font-size: 16px;
        text-align: center;
        background-color: #eef;
        color: #eee;
        text-shadow: -2px -2px 2px #235, 2px -2px 2px #235, 2px 2px 2px #235, 2px 2px 2px #235;
        padding-top: 120px;
    }

        .UiPageTileNavigation > a:hover {
            cursor: pointer;
            box-shadow: 0px 0px 10px #239;
            animation: all, .8s;
        }

.UiImageBanner {
    min-height: 150px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.CopyrightMessage {
    display: block;
}

    .CopyrightMessage, .CopyrightMessage * {
        font-size: 12px;
    }

*[data-role="ImagePlaceholder"] {
    border: 1px solid #bbb;
    font-size: 12px;
    padding: 60px 0px;
    text-align: center;
    font-weight: 600;
    color: #666;
    background-color: #f9f9f9;
}
