﻿/*
* Notice: This source file was originally developed by Automatik IT, to make development of new projects more efficient, internally and externally for various clients.
* The functionality in this file is provided in source form instead of as a binary (NuGet Package etc.) to allow clients of Automatik IT to make changes on their own.
* Clients of Automatik IT have the right to modify this file and have ownership of the changes they make.
* Exclusive ownership of the original source file is not granted, as it's used in various projects for the sake of efficiency.
*/


.TabbedControl {
    height: 100%;
    margin-right: auto;
    /*    margin-top: 8px;*/
    display: flex;
    flex-direction: column;
}

    .TabbedControl > ul {
        padding-left: 0;
    }

    .TabbedControl > ul:first-child {
        padding-bottom: 0;
        margin: 0;
    }
        .TabbedControl > ul:nth-child(2) {
            /* 100% but make room for the tab buttons */
            /*height: calc(100% - 40px);*/
            margin: 0;
            max-height: calc(100% - 40px);
            display: flex;
            margin-top: 16px;
        }

            .TabbedControl > ul:nth-child(2) > li {
                display: block;
                max-height: 100%;
            }

.TabbedNavigation {
    display: flex;
    /*padding: 0px 18px 20px 18px;*/
    /*padding: 0px 18px 34px 18px;*/
    /*padding: 0px 18px 32px 18px;*/
	/*padding: 0px 18px 0 18px;*/
    margin: 0;
    flex-shrink: 0;
    /*margin-top: 12px;*/
	
	padding: 0;
	margin: 12px 18px 0 18px;
}

    .TabbedNavigation > li {
        display: block;
        font-size: 16px;
        margin-left: 10px;
        margin-right: 10px;
        text-transform: uppercase;
    }

        .TabbedNavigation > li:first-child {

            margin-left: 0;
        }

        .TabbedNavigation > li:last-child {
            margin-right: 0;
        }



        .TabbedNavigation > li a {
            color: rgba(0,0,0,.65);
            text-decoration: none;
            display: inline-block;
        }



            .TabbedNavigation > li a.Active {
                color: #009edd;
                border-bottom: 2px solid #009edd;
                padding-bottom: 7px;
            }




            /* PAGE LEVEL */
    .TabbedNavigation.PageLevel {
        margin-bottom: 16px;
        /* Left align */
        margin-right: auto;
        /*
        border-bottom: 1px solid rgba(255,255,255,.42);
        */
        width: 100%;
        padding: 0;
    }

        .TabbedNavigation.PageLevel > li {
            font-size: 22px;
            letter-spacing: 1px;
            margin: 0;
            padding-bottom: 8px;
            text-transform: none;
            font-family: Raleway, Arial, sans-serif;
            font-size: 24px;
            font-weight: 300;
            margin-left: 24px;
            margin-right: 24px;
        }

            .TabbedNavigation.PageLevel > li:first-child {
                margin-left: 0;
            }

            .TabbedNavigation.PageLevel > li:last-child {
                margin-right: 0;
            }



            .TabbedNavigation.PageLevel > li a {
                color: rgba(255,255,255,.42);

            }

                .TabbedNavigation.PageLevel > li a.Active {
                    /*
                border-bottom: 1px solid rgba(255,255,255,.86);
                */
                    border-bottom: 1px solid rgba(255,255,255,0);
                    color: rgba(255,255,255,.86);
                }




@media (max-width: 1024px) {
    .TabbedControl {
        margin-right: initial;
    }
}


