/*===============================================================
 Font Roboto
===============================================================*/

@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900);

/*===============================================================
 ITEMS: 
 Reset, Main, Font, Navigation, Header, Shared Class, PF Theme, Bar, Tabs, Buttons, Buttons with options, Breadcrumb
 panelToggle
===============================================================*/

/*===============================================================
 Reset
===============================================================*/

html, body, div, span,
applet, object, iframe,
h1, h2, h3, h4, h5, h6,
p, blockquote, pre, a, abbr,
acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup,
tt, var, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
}

:focus {
    outline: 0;
}

body {
    line-height: 1;
    letter-spacing: .1px;
}

    body a {
        font-weight: bold;
        text-decoration: none;
        cursor: pointer;
    }

        body a:hover, body a:focus {
            color: #d04f20;
            text-decoration: none;
        }

ol, ul {
    list-style: none;
}

table {
    border-collapse: separate;
    border-spacing: 0;
}

caption, th, td {
    text-align: left;
    font-weight: normal;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: "";
}

blockquote, q {
    quotes: "" "";
}

/*===============================================================
 Personalized css Animations
===============================================================*/

.animatedFast {
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.transitionSlow {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

/*
    Chosen does not calculate width when it is inside a display:none div
    http://stackoverflow.com/questions/19244942/chosen-not-working-for-select-drop-down-which-is-not-displayed-by-default
*/
/*.chosen-container {
    width: 100% !important;
}*/

/*===============================================================
 ScrollBar styling
===============================================================*/

::-webkit-scrollbar {
    width: 6px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #EEE;
    margin-bottom: 20px;
    /*border-radius: 10px;*/
}

::-webkit-scrollbar-thumb {
    background: #DDD;
    /*border-radius: 10px;*/
}

/*===============================================================
 Remove default fabric browser styles on iOS
===============================================================*/

.btn textarea,
input[type="text"],
input[type="email"],
input[type="button"],
input[type="number"],
input[type="submit"], 
input[type="tel"]
textarea{
    -webkit-appearance: none;
}

input[type="color"] {
    padding: 0px 2px 0px 2px;
}

/*===============================================================
Nice Pre Tag
================================================================*/

pre {
    width: 100%;
    padding: 0;
    margin: 0;
    font-size: 12px;
    background: #efefef;
    border: 1px solid #777;
    box-sizing: border-box;
}

/*===============================================================
 PF loading - splash loading
===============================================================*/

#app.splashView {
    background: rgb(249, 249, 249);
    background: -moz-radial-gradient(center, ellipse cover, rgba(249, 249, 249, 1) 0%, rgba(215, 218, 219, 1) 100%);
    background: -webkit-radial-gradient(center, ellipse cover, rgba(249, 249, 249, 1) 0%, rgba(215, 218, 219, 1) 100%);
    background: radial-gradient(ellipse at center, rgba(249, 249, 249, 1) 0%, rgba(215, 218, 219, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#f9f9f9', endColorstr='#d7dadb', GradientType=1);
}

    #app.splashView > img.pf-logo {
        z-index: 102;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -80px;
        margin-top: -27.5px;
        height: auto;
        width: 150px;
        border-radius: 4px;
        padding: 5px;
    }

.pf-loader {
    position: absolute;
    left: 0;
    width: 100%;
    top: 55%;
    padding: 0;
}

.pf-loader-inner {
    overflow: hidden;
    width: 400px;
    color: rgba(0, 0, 0, 0.24);
    padding: 0 100px;
    left: 0;
    margin: 0 auto;
}

    .pf-loader-inner span {
        opacity: 1;
        display: inline-block;
        height: 8px;
        width: 8px;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, 0.27);
        -webkit-animation: pf-loading 3s cubic-bezier(0, .95, 1, .05) infinite, pf-loading-opacity 1.5s ease-in-out infinite alternate;
        animation: pf-loading 1500ms cubic-bezier(0, 0.95, 1, 0.05) infinite, pf-loading-opacity ease-in-out infinite alternate;
        -webkit-animation-fill-mode: inherit;
        animation-fill-mode: inherit;
    }

@keyframes pf-loading {
    0% {
        -webkit-transform: translateX(-535px);
        transform: translateX(-535px);
    }

    10% {
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
    }

    45% {
        -webkit-transform: translateX(400px/2);
        transform: translateX(400px/2);
    }

    55% {
        -webkit-transform: translateX(400px/2);
        transform: translateX(400px/2);
    }

    90% {
        -webkit-transform: translateX(435px);
        transform: translateX(435px);
    }

    100% {
        -webkit-transform: translateX(635px);
        transform: translateX(635px);
    }
}

@keyframes pf-loading-opacity {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

.pf-loader-inner span:nth-child(5) {
    -webkit-animation-delay: .1s;
    animation-delay: .1s;
}

.pf-loader-inner span:nth-child(4) {
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}

.pf-loader-inner span:nth-child(3) {
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}

.pf-loader-inner span:nth-child(2) {
    -webkit-animation-delay: 400ms;
    animation-delay: 400ms;
}

.pf-loader-inner span:nth-child(1) {
    -webkit-animation-delay: 500ms;
    animation-delay: 500ms;
}

/*===============================================================
 PF small loading inner content
===============================================================*/

.pf-small-loading {
    position: absolute;
    width: 85px;
    height: 12px;
    left: calc(50% - 85px/2);
    z-index: 100;
}

    .pf-small-loading span {
        display: inline-block;
        margin: 4px 2px;
        width: 5px;
        height: 5px;
        top: 2px;
        border-radius: 100%;
        position: relative;
        background: #555;
        left: 10px;
        vertical-align: top;
        -webkit-animation: pf-small-loading-keyframes 3s cubic-bezier(.030, .615, .995, .415) infinite;
        animation: pf-small-loading-keyframes 3s cubic-bezier(.030, .615, .995, .415) infinite;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
    }

        .pf-small-loading span:nth-child(1) {
            -webkit-animation-delay: .8s;
            animation-delay: .8s;
        }

        .pf-small-loading span:nth-child(2) {
            -webkit-animation-delay: .6s;
            animation-delay: .6s;
        }

        .pf-small-loading span:nth-child(3) {
            -webkit-animation-delay: .4s;
            animation-delay: .4s;
        }

        .pf-small-loading span:nth-child(4) {
            -webkit-animation-delay: .2s;
            animation-delay: .2s;
        }

        .pf-small-loading span:nth-child(5) {
            -webkit-animation-delay: 0s;
            animation-delay: 0s;
        }

@keyframes pf-small-loading-keyframes {
    0% {
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/*===============================================================
 Body & Common styles
===============================================================*/

html,
body {
    height: 100%;
}

body {
    font-size: 16px;
    line-height: 1.42857143;
    color: #494949;
    background: #f6fcff;
    font-weight: 400;
    text-transform: none;
    letter-spacing: .4px;
    font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

@supports(--css: variables) {
    body {
        background: var(--theme-primary1-shd5-color);
    }
}

a {
    text-decoration: none;
    background-color: transparent;
}

    a:active,
    a:hover {
        outline: 0;
    }

a.temp-disable {
    pointer-events: none;
    cursor: default;
    color: #a9a9a9;
}


img {
    border: 0;
}

.img-responsive {
    width: 100%;
    height: auto;
}

.transition {
    -webkit-transition: all 0.15s;
    -moz-transition: all 0.15s;
    -o-transition: all 0.15s;
    transition: all 0.15s;
}

/*===============================================================
 Navigation
===============================================================*/

#app {
    display: block;
    clear: both;
    width: 100%;
    overflow-x: hidden;
    height: 100%;
    z-index: 2;
    font-size: 8pt;
}

.navigation {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    background: #ecf4f7;
    color: #555;
    width: 61px;
    border-right: 0;
    z-index: 101;
}

@supports(--css: variables) {
    .navigation {
        background: var(--theme-primary1-shd4-color);
    }
}

    .navigation a {
        color: #555;
    }

        .navigation a:hover,
        .navigation a:focus {
            background: #e0f0f6;
        }

@supports(--css: variables) {
        .navigation a:hover,
        .navigation a:focus {
            background: var(--theme-primary1-shd3-color);
        }
}

.navOpen .navigation {
    width: 200px;
}

/*Navigation >> Wrapping Primary links. */
.navigation .navWrap {
    max-height: 100%;
    height: calc(100% - 155px);
}

.navOpen .navigation .navWrap {
    height: calc(100% - 194px);
}

/*Navigation >> Primary links.*/
.navigation ul {
    display: block;
    clear: both;
    z-index: 100;
    margin-top: 0;
}

.navOpen .navigation ul {
    margin-top: 0;
}

.navigation ul li {
    display: block;
    clear: both;
}

    .navigation ul li a {
        display: block;
        position: relative;
        clear: both;
        height: 30px;
        padding: 8px 10px 7px 41px;
        text-decoration: none;
        overflow: inherit;
        cursor: pointer;
        color: inherit;
    }

#app:not(.navOpen) .navigation li a[data-title]:hover:before {
    content: attr(data-title);
    display: block;
    height: 15px;
    line-height: 15px;
    position: absolute;
    background: #FFF;
    color: #000;
    top: 10px;
    left: 63px;
    padding: 4px 11px;
    border-radius: 0;
    font-weight: normal;
    border: 1px solid rgb(183, 183, 183);
    white-space: nowrap;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    max-width: 200px;
    text-transform: uppercase;
    font-size: 7pt;
    letter-spacing: 0.5px;
    box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.15);
}

/*If iPad, then, not display tooltip for navigations .*/
@media screen and (max-width:770px) {
    #app:not(.navOpen) .navigation li a[data-title]:hover:before {
        display: none !important;
    }

    .navigation li a[data-title]:hover:before {
        display: none !important;
    }
}

.navigation i {
    display: block;
    position: absolute;
    top: 7px;
    left: 22px;
    height: 30px;
    width: 20px;
    font-size: 18px;
    line-height: 30px;
    cursor: pointer;
}

.navOpen .navigation i {
    left: 13px;
}

.navigation span {
    display: none;
    clear: both;
    height: 30px;
    line-height: 30px;
    font-size: 8pt;
    text-transform: uppercase;
}

.navOpen .navigation span {
    display: block;
}

/*Bottom links*/
.navigation > ol {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
}

.navigation li {
    display: block;
    clear: both;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #ecf4f7;
}

@supports(--css: variables) {
    .navigation li {
        background: var(--theme-primary1-shd4-color);
    }
}

.navOpen .navigation > ol {
    border-top: 1px solid #DDD;
}

.navOpen .navigation li {
    clear: none;
    float: left;
    width: 100%;
}

.navOpen .navigation i.icon-logout {
    padding-left: 0px;
}

.navigation a {
    display: block;
    clear: both;
    height: 30px;
    padding: 5px;
    /*text-decoration: none;*/
    position: relative;
    color: inherit;
}

.navigation i {
    display: block;
    clear: both;
    height: 30px;
    line-height: 30px;
    font-size: 18px;
    text-align: center;
}

    .navigation i.icon-profile {
        font-size: 20px;
    }

    .navigation i.icon-logout {
        font-size: 22px;
        padding-left: 3px;
    }

/*===============================================================
 Sub Navigation
===============================================================*/

.navigation .subNavigation-background {
    content: '';
    width: 100%;
    min-width: 9000px;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    position: absolute;
    top: 0;
    left: 61px;
    z-index: 9;
}

.navigation .subNavigation {
    background: #ecf4f7;
    position: absolute;
    top: -1px;
    right: -200px;
    width: 200px;
    height: 100%;
    box-shadow: 5px 0 6px rgba(0, 0, 0, 0.05);
    -webkit-animation-duration: .2s;
    animation-duration: .2s;
    /*-webkit-animation-fill-mode: both;*/
    animation-fill-mode: both;
    z-index: 10;
}

@supports(--css: variables) {
    .navigation .subNavigation {
        background: var(--theme-primary1-shd4-color);
    }
}

    .navigation .subNavigation h3 {
        padding: 20px 10px;
        font-size: 10pt;
        color: inherit;
        text-transform: uppercase;
        background-color: #e0f0f6;
    }

@supports(--css: variables) {
    .navigation .subNavigation h3 {
        background-color: var(--theme-primary1-shd3-color);
    }
}

    .navigation .subNavigation ol {
        float: left;
        width: 100%;
    }

        .navigation .subNavigation ol li {
            float: left;
            width: 100%;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            font-size: 9pt;
            border-bottom: 1px solid #e0f0f6;
        }

@supports(--css: variables) {
        .navigation .subNavigation ol li {
            border-bottom: var(--theme-primary1-shd3-color);
        }
}


            .navigation .subNavigation ol li a {
                height: 45px;
                line-height: 45px;
                padding: 0 10px;
                font-weight: bold;
                -moz-box-sizing: border-box;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                text-transform: uppercase;
                background: transparent;
            }

    .navigation .subNavigation li a:hover,
    .navigation .subNavigation li a:focus {
        background: #e0f0f6;
    }

@supports(--css: variables) {
    .navigation .subNavigation li a:hover,
    .navigation .subNavigation li a:focus {
        background: var(--theme-primary1-shd3-color);
    }
}

    .navigation .subNavigation li a span {
        display: block;
        height: 45px;
        line-height: 45px;
    }

    .navigation .subNavigation li a i {
        right: 15px;
        font-size: 10pt;
        left: auto;
        top: 10px;
    }
    /*Subnavigation arrow indicator*/
    .navigation .hasSubNav:after {
        content: "\e906";
        font-family: PF-Icons !important;
        speak: none;
        font-style: normal;
        font-weight: 400;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        /*-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;*/
        font-size: 7pt;
        position: absolute;
        top: 39%;
        right: 25%;
        color: #000;
        opacity: 0;
    }

    .navigation .hasSubNav:hover:after {
        -webkit-transition: all 0.23s;
        -moz-transition: all 0.23s;
        -o-transition: all 0.23s;
        transition: all 0.23s;
        opacity: 1;
        right: 6px;
    }

    .navOpen .navigation .hasSubNav:hover:after {
        right: 13px;
    }

    .subNavOpen .navigation .hasSubNav:after {
        opacity: 1;
        /*show arrow when sub navigation is open*/
        right: 6px;
    }

    .navOpen.subNavOpen .navigation .hasSubNav:after {
        opacity: 1;
        /*show arrow when sub navigation is open*/
        right: 13px;
    }

    .subNavOpen .navigation .hasSubNav.open {
        background: #FFF;
    }
    /*===============================================================
 Header
===============================================================*/
    .header {
        display: block;
        position: fixed;
        left: 62px;
        top: 0;
        right: 0;
        height: 58px;
        z-index: 100;
    }

    .navOpen .header {
        left: 201px;
    }
    /*Tools*/
    .header ul.tools {
        display: block;
        clear: both;
        height: 40px;
        margin: 8px 0 0 8px;
    }

        .header ul.tools li {
            display: block;
            float: left;
            height: 40px;
        }

            .header ul.tools li a {
                display: block;
                clear: both;
                height: 20px;
                width: 20px;
                padding: 10px;
                text-decoration: none;
                color: #555;
            }

                .header ul.tools li a i {
                    display: block;
                    clear: both;
                    height: 20px;
                    line-height: 21px;
                    text-align: center;
                    font-size: 15pt;
                }

                .header ul.tools li a:hover {
                    background: rgba(255, 255, 255, 0.7);
                    color: #c01414;
                }
    /*===============================================================
 Breadcrumb
===============================================================*/
    #app .header ol.breadcrumbs {
        display: block;
        clear: both;
        height: 20px;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 44px;
        left: 16px;
    }

        #app .header ol.breadcrumbs li {
            display: block;
            float: left;
            height: 20px;
        }

            #app .header ol.breadcrumbs li:only-child {
                display: none;
            }

            #app .header ol.breadcrumbs li a {
                display: block;
                text-decoration: none;
                position: relative;
                clear: both;
                height: 20px;
                line-height: 21px;
                font-weight: normal;
                /*for IE*/
                color: #999999;
                padding: 4px 20px 5px 0;
                text-transform: uppercase;
                font-size: 7.9pt;
                top: -6px;
            }

    @supports(--css: variables) {
        #app .header ol.breadcrumbs li a {
            color: var(--theme-grayscale-text-color);
        }
    }

    #app .header ol.breadcrumbs li a:hover {
        text-decoration: none;
        color: #000;
    }

    #app .header ol.breadcrumbs li a:before {
        display: block;
        position: absolute;
        /*top: 4;*/
        right: 5px;
        width: 10px;
        height: 20px;
        line-height: 20px;
        text-align: center;
        content: "\e906";
        font-family: 'PF-Icons';
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        /*-webkit-font-smoothing: antialiased;
                -moz-os-font-smoothing: grayscale;*/
        font-size: 7pt;
        color: #9E9E9E;
    }

    #app .header ol.breadcrumbs li a.selected {
        color: #555;
        font-weight: bold;
    }

    #app .header ol.breadcrumbs li:last-child a:before {
        display: none;
    }
    /*===============================================================
 Blades
===============================================================*/
    .view {
        display: block;
        position: fixed;
        top: 57px;
        left: 58px;
        right: 61px;
        bottom: 0;
        overflow: hidden;
        overflow-x: hidden;
        z-index: 50;
    }

    .navOpen .view {
        left: 201px;
    }

    .view #blades {
        display: block;
        clear: both;
        height: 100%;
        width: 5500px;
        z-index: 51;
    }

        .view #blades .blade {
            display: none;
            position: relative;
            float: left;
            min-height: 100%;
            height: 100%;
            border-left: 1px solid #DDD;
            width: 700px;
            margin-top: 5px;
            -webkit-transition: width 50ms ease-in-out;
            -moz-transition: width 50ms ease-in-out;
            -o-transition: width 50ms ease-in-out;
            transition: width 50ms ease-in-out;
        }

            .view #blades .blade > .loading {
                display: block;
                position: absolute;
                top: 15px;
                left: 15px;
                bottom: 15px;
                right: 15px;
                background: url('/assets/images/spinner_gray.gif') no-repeat center center;
                background-size: 30px;
            }
    /* Remove blade separator line when only is visible one blade per page width 1480px*/
    @media screen and (max-width:1480px) {
        .view #blades .blade {
            border-left: 0;
        }
    }

    .view #blades .blade:only-child {
        border-right: 0;
    }
    /*Scrolled bar*/
    .fline {
        display: block;
        position: absolute;
        top: 40px;
        left: 20px;
        right: 46px;
        height: 3px;
        z-index: 10000;
        -moz-border-radius: 3px 3px 0 0;
        -webkit-border-radius: 3px 3px 0 0;
        border-radius: 3px 3px 0 0;
    }

    _:-ms-lang(x),
    .view #blades .blade .fline {
        right: 52px;
    }
    /*Fixed header*/
    .view #blades .blade.scrolled .fixedHead {
        height: 93px;
        box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.13), 0 3px 4px 0 rgba(0, 0, 0, 0.03);
    }
    /*Blade Content Section*/
    .frame {
        position: absolute;
        top: 40px;
        left: 0;
        right: 20px;
        /*as Richard specifications*/
        bottom: 0;
        overflow-y: scroll;
        overflow-x: hidden;
    }

        .frame > .inner {
            padding: 0 20px 11px 20px;
            float: left;
            width: 100%;
            clear: both;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
        }

        .frame > .loading {
            display: block;
            position: absolute;
            top: 15px;
            left: 15px;
            bottom: 15px;
            right: 15px;
            background: url('/assets/images/spinner_gray.gif') no-repeat center center;
            background-size: 30px;
        }

    @-moz-document url-prefix() {
        .frame > .inner {
            padding: 0 9px 11px 20px;
        }
    }
    /*Messages*/
    .frame .inner .error {
        display: block;
        clear: both;
        padding: 100px;
    }

        .frame .inner .error h3 {
            display: block;
            clear: both;
            line-height: 20px;
            font-size: 12pt;
            color: #555;
            text-align: center;
            padding: 0 0 15px 0;
        }

        .frame .inner .error span {
            display: block;
            clear: both;
            line-height: 20px;
            font-size: 10pt;
            color: #555;
            text-align: center;
        }
    /*Blade Overrides > Minimised*/
    .blade.minimised {
        width: 40px !important;
        background: rgb(222, 230, 234);
        border-right: 1px solid rgba(0, 0, 0, 0.06);
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        cursor: pointer;
    }

        .blade.minimised .head {
            padding: 70px 5px 5px 5px;
            height: 100%;
            background: none;
        }

            .blade.minimised .head:hover {
                background: rgba(0, 0, 0, 0.03);
            }

            .blade.minimised .head h2 {
                float: none;
                clear: both;
                -ms-transform: rotate(90deg);
                -webkit-transform: rotate(90deg);
                -moz-transform: rotate(90deg);
                -o-transform: rotate(90deg);
                transform: rotate(90deg);
                overflow: visible;
                line-height: 24px;
                height: 30px;
                color: #555;
                font-size: 8pt;
                left: 3px;
                position: relative;
            }

                .blade.minimised .head h2 span {
                    display: block;
                    font-size: 8pt;
                    -webkit-transform: matrix(-1, 0, 0, -1, 1, 1);
                    -moz-transform: matrix(-1, 0, 0, -1, 1, 1);
                    -o-transform: matrix(-1, 0, 0, -1, 1, 1);
                    -ms-transform: matrix(-1, 0, 0, -1, 1, 1);
                    transform: matrix(-1, 0, 0, -1, 1, 1);
                    position: absolute;
                    unicode-bidi: bidi-override;
                    direction: ltr;
                    letter-spacing: 0.8px;
                }

            .blade.minimised .head ul.controls {
                position: absolute;
                top: 5px;
                left: 5px;
                width: 30px;
            }

                .blade.minimised .head ul.controls li {
                    padding: 5px 7px 2px 0px;
                }

        .blade.minimised .frame {
            display: none;
        }
    /*change minimize icon to arrowright*/
    .view #blades .blade.minimised .head ul.controls li .icon-blademin {
        font-size: 10pt;
    }

        .view #blades .blade.minimised .head ul.controls li .icon-blademin:before {
            content: "\e908";
            /*change to arrowright*/
        }
    /*fixed header hide on minimised blade status*/
    .view #blades .blade.minimised .fixedHead {
        display: none;
    }
    /*===============================================================
 Blades highlight
===============================================================*/
    .view #blades .blade.highlight .head > h2 {
        color: #222;
    }

        .view #blades .blade.highlight .head > h2 span {
            font-size: 10pt;
        }
    /*===============================================================
 Blades etras when is minimised.
===============================================================*/
    .view #blades .blade.minimised .sidebar {
        display: none !important;
        /*important for hiding sidebar when blade is minimised.*/
    }

    .view #blades .blade.minimised .hide-on-minimize {
        display: none !important;
    }
    /*===============================================================
 Buttons
===============================================================*/
    .btn {
        display: inline-block;
        padding: 10px 16px;
        margin-bottom: 0;
        font-size: 8pt;
        font-weight: bold;
        text-align: center;
        white-space: nowrap;
        vertical-align: middle;
        -ms-touch-action: manipulation;
        touch-action: manipulation;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background-image: none;
        border: 1px solid transparent;
        border-radius: 4px;
        color: #fff;
        background: #e65925;
        text-decoration: none;
        text-transform: uppercase;
        box-sizing: border-box;
    }

        .btn:focus,
        .btn:active:focus,
        .btn.active:focus,
        .btn.focus,
        .btn:active.focus,
        .btn.active.focus {
            outline: thin dotted;
            outline: 5px auto -webkit-focus-ring-color;
            outline-offset: -2px;
        }

        .btn:hover,
        .btn:focus,
        .btn.focus {
            color: #fff;
            background: #d04f20;
        }

        .btn:active,
        .btn.active {
            background-image: none;
            outline: 0;
        }

        .btn.outline {
            background: transparent;
            color: #e65925;
            border-color: #e65925;
        }

            .btn.outline:hover {
                background: #e65925;
                color: #FFF;
            }

        .btn.btn-link {
            background: transparent;
            color: #e65925;
            border-color: transparent;
            font-weight: bold;
        }

            .btn.btn-link > .plus {
                color: #e65925 !important;
            }
        /* Mimic <a> element */
        .btn.btn-download-link {
            align-items: center;
            background-color: transparent;
            border-style: none;
            box-sizing: content-box;
            color: #e65925;
            border-color: transparent;
            cursor: pointer;
            display: inline;
            height: auto;
            padding: 0px 0px 2px 0px;
            perspective-origin: 0 0;
            text-align: start;
            transform-origin: 0 0;
            width: auto;
            max-height: unset;
            min-height: unset;
            /* Mozilla specific properties */
            -moz-appearance: none;
            /* Webkit specific properties */
            -webkit-logical-height: 1em; /* should be auto, but since Chrome ignores auto, we have to use this hack to set the correct height  */
            -webkit-logical-width: auto; /* ignored by Chrome, but here for completeness */
            font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
            font-size: 13px;
            font-weight: normal;
            text-transform: none;
        }


    .btnContainer .btn-link {
        text-align: left;
        margin: 4px;
    }

    .btn.btn-link:focus {
        outline: none;
        border-radius: 0;
    }

    .btn.disabled {
        opacity: 0.4;
    }

    .btn.btn-link:disabled {
        color: #dcdcdc;
    }
    /*============================================================
    Spin Loader
=============================================================*/
    .spin-loader {
        border-width: 2px;
        border-style: solid;
        border-radius: 50%;
        width: 16px;
        height: 16px;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }
    /*===============================================================
 Shared Styles
===============================================================*/
    .fleft {
        float: left;
    }

    .fright {
        float: right;
    }

    .shadow {
        -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    }

    .clearfix:after {
        content: ".";
        display: block;
        height: 0;
        clear: both;
        visibility: hidden;
    }

    .clearfix {
        display: inline-block;
        /* Hide from IE Mac \*/
        display: block;
        /* End hide from IE Mac */
    }

    .textTrim {
        white-space: nowrap;
        overflow: hidden;
        -ms-text-overflow: ellipsis;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
    }

    .hide {
        display: none;
    }
    /*===============================================================
 Bar
===============================================================*/
    .Bar {
        float: left;
        width: 100%;
        padding: 10px 7px;
        /*Important to align with .Tab and Search Bar when drops to secound line*/
        background: #fafafa;
        border-bottom: 1px solid #dcdcdc;
        border-top: 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

        .Bar .inner {
            float: left;
        }

        .Bar .right {
            float: right;
            position: relative;
            min-height: 30px;
        }

        .Bar .center {
            margin: 0 auto;
            float: inherit;
            min-width: 200px;
            height: 32px;
            display: inline-block;
            position: absolute;
            left: 50%;
            margin-left: -68px;
            text-align: center;
        }
        /*Advanced Search positioning*/
        .Bar .search {
            display: block;
            float: left;
            position: relative;
            min-width: 294px;
        }
        /*Nested Bars*/
        .Bar .Bar {
            border: 0;
            padding-left: 0;
            padding-right: 0;
            padding-bottom: 0;
        }
    /*===============================================================
 Panel Toggle  
===============================================================*/
    .panelToggle {
        width: 100%;
        background: #FFF;
        border: 1px solid #dcdcdc;
        float: left;
    }

        .panelToggle .panelHead {
            padding: 20px 15px;
            border: 0;
        }

        .panelToggle h2, .panel-head h2 {
            font-size: 10pt;
            padding: 0;
            margin-right: 0;
            text-transform: uppercase;
        }

        .panelToggle .panelHead .left {
            float: left;
        }

        .panelToggle .panelHead .right {
            float: right;
        }

        .panelToggle .panelHead .panelTitle {
            position: relative;
            cursor: pointer;
            line-height: 0;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

            .panelToggle .panelHead .panelTitle span {
                font-size: 11.5pt;
            }

            .panelToggle .panelHead .panelTitle .icon-arrowdown,
            .panelToggle .panelHead .panelTitle .icon-arrowup {
                position: absolute;
                font-size: 9pt;
                right: -25px;
                top: -5px;
                color: #B2B2B2;
            }

                .panelToggle .panelHead .panelTitle .icon-arrowdown.up {
                    -moz-transform: rotate(180deg);
                    -ms-transform: rotate(180deg);
                    -o-transform: rotate(180deg);
                    -webkit-transform: rotate(180deg);
                    transform: rotate(180deg);
                }

        .panelToggle .panelContent {
            display: block;
            padding: 15px;
            width: 100%;
            position: relative;
            min-height: 65px;
            border-top: 1px solid #DDD;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            background: #fff;
        }

    .inside-header {
        position: absolute;
        top: -33px;
        right: 0;
    }

    [hidden] {
        display: none !important;
    }

    .closed {
        animation: closeload 0.2s ease-out both;
        animation-delay: 0.2s;
    }

        .closed .loadingBox {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 999;
            background: #fff;
        }

    @keyframes closeload {
        to {
            opacity: 0;
            visibility: hidden;
        }
    }

    .btn-in-toggle-padding {
        padding: 5px 15px 5px 2px;
    }

    .inner-toggle-button-bar {
        padding: 10px 15px;
    }
    /*===============================================================
 noResults found message
===============================================================*/
    .noResults {
        display: inline-block;
        width: 100%;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        background: #FFF;
        padding: 60px 70px 70px 70px;
        border: 1px solid #dcdcdc;
        min-height: 183px;
    }

        .noResults h4 {
            font-size: 10pt;
        }

        .noResults p {
            font-size: 10pt;
            color: #888;
        }

    .list .noResults {
        border: 0;
    }

    .panelContent .noResults {
        border: 0;
        margin-top: 0;
        padding: 50px 70px;
    }
    /*===============================================================
 Containers | Boxes
===============================================================*/
    .Box .block .row {
        font-size: 9pt;
        background: #fff;
        padding: 15px;
    }

    .Box .Bar .inner,
    .Box .Bar .right {
        font-size: 8pt;
        min-height: auto;
    }

        .Box .Bar .inner span.label {
            color: #9D9D9D;
            font-weight: bold;
            text-transform: uppercase;
        }

    .Box .block .Bar,
    .Box .block .row {
        border: 1px solid #dcdcdc;
        border-bottom: 0;
        border-radius: 0;
    }

        .Box .block .row:last-child {
            border-bottom: 1px solid #dcdcdc;
        }

    .Box .block .row {
        clear: both;
        float: none;
    }

    .Box .inner {
        float: left;
    }

    .Box .right {
        float: right;
    }
    /*===============================================================
 Titles
===============================================================*/
    .Box .Bar h2,
    .Box .Bar h3 {
        font-size: 10pt;
        padding-right: 20px;
        text-transform: uppercase;
    }

    .Box .Bar h3 {
        font-size: inherit;
    }

    .Box .Bar .right h3:last-child {
        padding-right: 0;
    }

    .Box .block h3 {
        color: #909090;
    }

    h2.innerTitle {
        float: left;
        line-height: 36px;
        padding-left: 10px;
        font-size: 11pt;
    }
    /*===============================================================
 Tag Big Departure / Arrival
===============================================================*/
    .tagBig {
        background: #EEE;
        color: #555;
        padding: 6px 7px;
        border-radius: 5px;
        text-align: center;
        width: 100%;
        max-width: 95%;
        margin: 0 auto;
        font-weight: 500;
        font-size: 8pt;
        line-height: 19px;
        box-sizing: border-box;
        position: relative;
    }

        .tagBig sub {
            font-weight: normal;
            font-weight: normal;
            font-size: 9px;
            position: relative;
            top: 0px;
            padding: 0 5px;
        }

    a:hover .tagBig {
        opacity: 0.5;
    }
    /*===============================================================
 Welcome Messaage (Intro Tour Experience)
===============================================================*/
    .TourTip {
        display: none;
        z-index: 19997;
    }

        .TourTip p {
            margin: 0;
            padding: 10px;
        }

        .TourTip .TourTipCloseIcon {
            width: 20px;
            height: 20px;
            top: 20px;
            right: 15px;
            position: absolute;
            cursor: pointer;
            z-index: 19998;
        }

            .TourTip .TourTipCloseIcon:before {
                content: "\e936";
                font-family: 'PF-Icons' !important;
                speak: none;
                font-style: normal;
                font-weight: normal;
                font-variant: normal;
                text-transform: none;
                line-height: 1;
                font-size: 18px;
                text-align: center;
                color: #888;
            }

        .TourTip .TourTipContent {
            background-color: #fff;
            color: #888;
            padding: 10px;
            min-width: 100px;
            min-height: 50px;
            -webkit-box-shadow: 0px 0px 20px -1px rgba(0,0,0,0.29);
            -moz-box-shadow: 0px 0px 20px -1px rgba(0,0,0,0.29);
            box-shadow: 0px 0px 20px -1px rgba(0,0,0,0.29);
            font-family: "Roboto", Arial;
            text-align: center;
        }

        .TourTip .TourTipExternalContent {
            display: inline-block;
        }

        .TourTip .TourTipButtonsHolder {
            text-align: right;
        }

        .TourTip .TourTipButton {
            color: #fff;
            background-color: #509ddf;
            padding: 7px 15px;
            margin: 10px 0 0 4px;
            border: 0;
            font-weight: bold;
            text-transform: uppercase;
            font-family: "Roboto", Arial;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            border-radius: 3px;
        }

@supports (--css: variables) {
        .TourTip .TourTipButton {
            background-color: var(--theme-primary1-shd1-color);
        }
}

            .TourTip .TourTipButton:hover {
                background-color: #3481c2;
                cursor: pointer;
            }

        .TourTip .TourTipDesc {
            font-size: 10pt;
            text-align: left;
            line-height: 150%;
            margin-bottom: 15px;
        }

        .TourTip .TourTipTitle {
            font: bold 16px "Roboto";
            margin-bottom: 0;
            color: #888;
            text-align: left;
            border-bottom: 1px solid #ddd;
            padding-left: 0;
            margin-left: 10px;
            padding-bottom: 15px;
        }

        .TourTip .TourTipNub {
            width: 0;
            height: 0;
            border: 10px solid transparent;
            position: absolute;
            z-index: 19996;
        }

        .TourTip .TourTipLeftNub {
            top: 20px;
            right: -20px;
            border-left-color: #ffe;
        }

        .TourTip .TourTipTopNub {
            bottom: -20px;
            left: 20px;
            border-top-color: #ffe;
        }

        .TourTip .TourTipRightNub {
            top: 20px;
            left: -20px;
            border-right-color: #ffe;
        }

        .TourTip .TourTipBottomNub {
            top: -20px;
            left: 20px;
            border-bottom-color: #ffe;
        }

    .TourTipCover {
        background-color: #fff;
        box-shadow: 0 0 30px #fff;
        z-index: 19996;
        display: none;
        opacity: .6;
        padding: 10px;
        margin-left: -10px;
        margin-top: -10px;
    }

    .TourTipDisabledArea {
        z-index: 19995;
        background-color: rgba(128, 128, 128, .5);
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        padding: 15px;
    }

    .TourTipTransitOpacity {
        -moz-transition: opacity .5s;
        -o-transition: opacity .5s;
        -webkit-transition: opacity .5s;
        transition: opacity .5s;
    }
    /*===============================================================
 Form Controls
===============================================================*/
    form .ng-touched.ng-invalid {
        border: 1px solid #ff8989 !important;
    }

    @-moz-document url-prefix() {
        input {
            box-shadow: 0px 0px 0px 0px !important;
        }

        form .ng-touched.ng-invalid {
            border: 1px solid #dcdcdc !important;
        }
    }

    select.dropdown {
        background: -moz-linear-gradient(top,#fff 0,#f3f3f3 100%) !important;
        background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#fff),color-stop(100%,#f3f3f3 )) !important;
        background: -webkit-linear-gradient(top,#fff 0,#f3f3f3 100%) !important;
        background: -o-linear-gradient(top,#fff 0,#f3f3f3 100%) !important;
        background: -ms-linear-gradient(top,#fff 0,#f3f3f3 100%) !important;
        background: linear-gradient(to bottom,#fff 0,#f3f3f3 100%) !important;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#f3f3f3 ',GradientType=0) !important;
        outline: none;
        background: #fff;
        color: rgba(0,0,0,.87);
        font-weight: normal;
        box-sizing: inherit;
        min-width: 100% !important;
        min-height: 30px !important;
        line-height: 8px !important;
        border-radius: .28571429rem;
        font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
        letter-spacing: .4px;
        text-indent: 10px;
        border: 1px solid rgba(34,36,38,.15);
    }
    /*===============================================================
Toast notifications CSS customization
===============================================================*/
    .simple-notification.alert {
        background: #E09E28 !important;
    }

    .simple-notification.error {
        background: #B72025 !important;
    }

    .simple-notification.info {
        background: #69ABE3 !important;
    }

    .simple-notification.success {
        background: #A1BE4F !important;
    }
    /*lock textarea so user cannot resize it*/
    textarea {
        max-height: 100px;
        height: 100px;
        min-height: 100px;
        max-width: 100%;
        width: 100%;
        min-width: 100%;
        box-sizing: border-box;
    }

    @-moz-document url-prefix() {
        textarea {
            border-style: solid;
        }
    }
    /*used to wrap notifications*/
    .notification-div {
        margin-top: -24px !important;
        margin-bottom: 24px !important;
        padding-right: 0 !important;
        z-index: -1;
    }
    /*===============================================================
=================================================================
 TABLES SECTION
=================================================================
===============================================================*/
    .table {
        width: 100%;
        border: 1px solid rgb(220, 220, 220);
        border-top: 0;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border-radius: 0px;
    }

    .list .Box {
        min-height: 30px;
    }

        .list .Box .table {
            border: 0;
            border-top: 1px solid #dcdcdc;
        }

        .list .Box .Bar {
            border: 0;
            border-bottom: 1px solid #dcdcdc;
        }

    .frame.list .table {
        border: 0;
    }

    .table > * {
        background: #FFF;
        width: 100%;
        display: table;
        position: relative;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .table .heading {
        width: 100%;
        background: #f2f2f2;
        padding: 12px;
        display: table-row;
        font-weight: 500;
        color: #333;
    }
    /* the letter spacing in all grids: */
    .cell {
        letter-spacing: normal;
    }

        .cell.featured {
            width: 2% !important;
            text-align: center;
        }

    .table .heading .cell {
        padding: 7px 9px 7px 7px;
        font-size: 8pt;
        position: relative;
        justify-content: center;
        vertical-align: middle;
        text-transform: uppercase;
        width: 10%;
        /* default value Important to keep responsive tables and use with fixed headers*/
        -webkit-touch-callout: none;
        /* iOS Safari */
        -webkit-user-select: none;
        /* Chrome/Safari/Opera */
        -moz-user-select: none;
        /* Firefox */
        -ms-user-select: none;
        /* Internet Explorer/Edge */
        user-select: none;
        /* Non-prefixed version, currently not supported by any browser */
    }
    /* Clear heading filter */
    .pf-table .pf-heading i.clearHeadingFilter,
    .table .heading i.clearHeadingFilter {
        position: absolute;
        cursor: pointer;
        font-size: 11pt;
        left: 0;
        top: 30%;
        color: #e75b24;
        text-align: center;
        width: 95%;
        float: left;
    }

        .pf-table .pf-heading i.clearHeadingFilter span,
        .table .heading i.clearHeadingFilter span {
            position: absolute;
            display: none;
            padding: 4px 5px;
            background: #FFF;
            color: #000;
            font-size: 9pt;
            box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.15);
            border-radius: 0;
            font-weight: normal;
            border: 1px solid rgb(183, 183, 183);
            width: 99px;
            text-align: center;
            line-height: 11px;
            top: -48px;
            left: -74px;
        }

            .pf-table .pf-heading i.clearHeadingFilter span strong,
            .table .heading i.clearHeadingFilter span strong {
                float: left;
                width: 100%;
                margin-top: 3px;
                word-wrap: normal;
                overflow: hidden;
                text-overflow: ellipsis;
            }

        .pf-table .pf-heading i.clearHeadingFilter:hover,
        .table .heading i.clearHeadingFilter:hover {
            color: #CE2727;
        }

            .pf-table .pf-heading i.clearHeadingFilter:hover span,
            .table .heading i.clearHeadingFilter:hover span {
                display: block;
                font-family: Roboto, Arial, Helvetica, sans-serif;
            }

    .table .row {
        display: table-row;
        border-bottom: 1px solid #dcdcdc;
        position: relative;
        width: 100%;
    }

        .table .row:nth-of-type(even) {
            background: #fafafa;
        }

    .table .dark-row {
        background: #fafafa !important;
    }

    .table .cell {
        display: table-cell;
        padding: 7px 8px 8px 8px;
        padding-bottom: 9px;
        position: relative;
        border-bottom: 1px solid #dcdcdc;
        vertical-align: middle;
        word-wrap: normal;
        overflow: hidden;
        text-overflow: ellipsis;
        /*max-width: 300px;*/
    }
        /*Used to cell that contains input control*/
        .table .cell.low {
            padding-top: 2px;
            padding-bottom: 1px;
        }

        .table .cell:before {
            content: '';
            width: 1px;
            height: calc(100% - 20px);
            background: #e5e5e5;
            display: block;
            position: absolute;
            right: 0;
            top: 10px;
        }

        .table .cell:last-child:before,
        .pf-table .pf-cell:last-child:before {
            border: 0;
            background: transparent;
        }

        .table .cell:last-child {
            overflow: initial !important;
        }

        .table .cell.removeDivider:before {
            background: transparent !important;
            border: 0 !important;
        }

        .table .cell i {
            /*for IE*/
            color: #999999;
        }

    @supports(--css: variables) {
        .table .cell i {
            color: var(--theme-grayscale-text-color);
        }
    }

    .table .cell a {
        font-weight: normal;
    }

    .pf-table .pf-cell a {
        font-weight: normal;
    }

    .table .cell.actions,
    .pf-table .pf-cell.actions {
        width: 5% !important;
        /*default value Important to keep responsive tables and use with fixed headers*/
        overflow: initial !important;
    }

        .table .cell.actions.multi-menu-actions,
        .pf-table .pf-cell.actions.multi-menu-actions {
            padding: 0;
            text-align: center;
            width: 34px !important;
        }

            .table .cell.actions.multi-menu-actions .btnOptionsWrapper {
                position: relative;
                display: inline-block;
                width: 22px;
                height: 23px;
                padding-right: 6px;
                padding-left: 6px;
            }
        /*only if list take one action, otherwise delete this line*/
        .table .cell.actions ul,
        .pf-table .pf-cell.actions ul {
            height: 100%;
            position: absolute;
            display: block;
            top: -1px;
            right: 0;
            z-index: 99;
            float: left;
            width: 100%;
        }

            .table .cell.actions ul li,
            .pf-table .pf-cell.actions ul li {
                position: relative;
                height: 100%;
                display: inline-block;
                top: 0;
                width: 100%;
            }

                .table .cell.actions ul li a,
                .pf-table .pf-cell.actions ul li a {
                    font-size: 10.5pt;
                    color: #B2B2B2;
                    position: relative;
                    height: 100%;
                    display: inline-block;
                    width: 100%;
                    text-decoration: none;
                }

                .table .cell.actions ul li span,
                .pf-table .pf-cell.actions ul li span {
                    font-size: 13px;
                    display: block;
                    height: 100%;
                    text-align: center;
                }

    .table .cell[icon-cell],
    .pf-table .pf-cell[icon-cell] {
        padding: 0;
        text-align: center;
        width: 34px !important;
    }

    .table .cell [class^="icon-"]:before,
    .table .cell [class*=" icon-"]:before,
    .pf-table .pf-cell [class^="icon-"]:before,
    .pf-table .pf-cell [class*=" icon-"]:before {
        position: relative;
        top: calc(50% - 6px);
    }

    .table li.message,
    .table li.loading,
    .table li.loadMore,
    .pf-table li.message,
    .pf-table li.loading,
    .pf-table li.loadMore {
        display: table-caption !important;
        caption-side: bottom;
        border-top: 0;
        align-items: center;
        justify-content: center;
        text-align: center;
        vertical-align: middle;
    }

    .table li.message {
        padding: 150px 30px;
        color: #888;
    }

        .table li.message h3 {
            font-size: 14pt;
            float: left;
            width: 100%;
            display: block;
            clear: both;
            margin: 0 0 20px 0;
            font-style: normal;
            line-height: 0;
        }

        .table li.message span {
            font-size: 9pt;
        }

    .table li.loadMore,
    .pf-table li.loadMore {
        margin: 10px;
        height: 20px;
        border: 1px solid #DDD;
        background: #FFF;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        padding: 10px 0;
        line-height: 20px;
        font-weight: bold;
        font-size: 9pt;
        cursor: pointer;
        position: relative;
    }

        .table li.loadMore:hover,
        .pf-table li.loadMore:hover {
            text-decoration: underline;
        }

    .table li.loading,
    .pf-table li.loading {
        padding: 150px 30px;
        height: 200px;
        background: #FFF url('assets/spinner_gray.gif') no-repeat center center;
        background-size: 40px;
    }
    /*The following rules eliminate double borders on table variations*/
    /*exclude inline-table that has the next content seamless (looks have the next content as in same table)*/
    .table:not(.inline-table) tr:last-of-type td {
        border-bottom: none;
    }

    .table:not(.inline-table) .row:last-of-type .cell {
        border-bottom: none;
    }

    .table tr:first-of-type td {
        border-top: none;
    }

    .table .row:first-of-type .cell {
        border-top: none;
    }
    /*===============================================================
 Multiple Rows as One Row (maximum 20 items in a group)
===============================================================*/
    .table .row .cell {
        word-break: break-word;
    }

    .table .multiRows,
    .pf-table .multiRows {
        display: table-row-group;
    }
        /*Grouping cells in the same column*/
        .table .multiRows .row .cell:first-child,
        .pf-table .multiRows .pf-row .pf-cell:first-child {
            border-bottom-width: 0 !important;
        }
        /*second column*/
        .table .multiRows .row .cell:last-child,
        .pf-table .multiRows .pf-row .pf-cell:last-child {
            border-bottom-width: 0 !important;
        }
        /*last column*/
        .table .multiRows .row:last-child .cell:first-child,
        .pf-table .multiRows .pf-row:last-child .pf-cell:first-child {
            border-bottom-width: 1px !important;
        }
        /*first column*/
        .table .multiRows .row:last-child .cell:nth-child(2),
        .pf-table .multiRows .pf-row:last-child .pf-cell:nth-child(2) {
            border-bottom-width: 1px !important;
        }
        /*second column*/
        .table .multiRows .row:last-child .cell:last-child,
        .pf-table .multiRows .pf-row:last-child .pf-cell:last-child {
            border-bottom-width: 1px !important;
        }
        /*last column*/
        .table .multiRows .cell,
        .pf-table .multiRows .pf-cell {
            border-bottom: 1px solid #dcdcdc !important;
        }

    .table > * .multiRows li:last-child .cell:first-child,
    .pf-table > * .multiRows li:last-child .pf-cell:first-child {
        border-bottom-left-radius: 0px !important;
    }

    .table > * .multiRows li:last-child .cell:last-child,
    .pf-table > * .multiRows li:last-child .pf-cell:last-child {
        border-bottom-right-radius: 0px !important;
    }
    /*Vertically center action elements*/
    .table .multiRows .row:first-child .actions,
    .pf-table .multiRows .pf-row:first-child .actions {
        top: 50%;
    }
    /*Fixing arrow positions*/
    .table .multiRows .row:first-child .cell:last-child,
    .pf-table .multiRows .pf-row:first-child .pf-cell:last-child {
        z-index: 99;
    }

    .table .multiRows .row:first-child:nth-last-child(2) .cell:last-child,
    .pf-table .multiRows .pf-row:first-child:nth-last-child(2) .pf-cell:last-child {
        transform: translateY(47%);
    }

    .table .multiRows .row:first-child:nth-last-child(3) .cell:last-child,
    .pf-table .multiRows .pf-row:first-child:nth-last-child(3) .pf-cell:last-child {
        transform: translateY(100%);
    }

    .table .multiRows .row:first-child:nth-last-child(4) .cell:last-child,
    .pf-table .multiRows .pf-row:first-child:nth-last-child(4) .pf-cell:last-child {
        transform: translateY(143%);
    }

    .table .multiRows .row:first-child:nth-last-child(5) .cell:last-child,
    .pf-table .multiRows .pf-row:first-child:nth-last-child(5) .pf-cell:last-child {
        transform: translateY(189%);
    }

    .table .multiRows .row:first-child:nth-last-child(6) .cell:last-child,
    .pf-table .multiRows .pf-row:first-child:nth-last-child(6) .pf-cell:last-child {
        transform: translateY(246%);
    }

    .table .multiRows .row:first-child:nth-last-child(7) .cell:last-child,
    .pf-table .multiRows .pf-row:first-child:nth-last-child(7) .pf-cell:last-child {
        transform: translateY(289%);
    }

    .table .multiRows .row:first-child:nth-last-child(8) .cell:last-child,
    .pf-table .multiRows .pf-row:first-child:nth-last-child(8) .pf-cell:last-child {
        transform: translateY(346%);
    }

    .table .multiRows .row:first-child:nth-last-child(9) .cell:last-child,
    .pf-table .multiRows .pf-row:first-child:nth-last-child(9) .pf-cell:last-child {
        transform: translateY(400%);
    }

    .table .multiRows .row:first-child:nth-last-child(10) .cell:last-child,
    .pf-table .multiRows .pf-row:first-child:nth-last-child(10) .pf-cell:last-child {
        transform: translateY(444%);
    }

    .table .multiRows .row:first-child:nth-last-child(11) .cell:last-child,
    .pf-table .multiRows .pf-row:first-child:nth-last-child(11) .pf-cell:last-child {
        transform: translateY(495%);
    }

    .table .multiRows .row:first-child:nth-last-child(12) .cell:last-child,
    .pf-table .multiRows .pf-row:first-child:nth-last-child(12) .pf-cell:last-child {
        transform: translateY(545%);
    }

    .table .multiRows .row:first-child:nth-last-child(13) .cell:last-child,
    .pf-table .multiRows .pf-row:first-child:nth-last-child(13) .pf-cell:last-child {
        transform: translateY(597%);
    }

    .table .multiRows .row:first-child:nth-last-child(14) .cell:last-child,
    .pf-table .multiRows .pf-row:first-child:nth-last-child(14) .pf-cell:last-child {
        transform: translateY(646%);
    }

    .table .multiRows .row:first-child:nth-last-child(15) .cell:last-child,
    .pf-table .multiRows .pf-row:first-child:nth-last-child(15) .pf-cell:last-child {
        transform: translateY(698%);
    }

    .table .multiRows .row:first-child:nth-last-child(16) .cell:last-child,
    .pf-table .multiRows .pf-row:first-child:nth-last-child(16) .pf-cell:last-child {
        transform: translateY(748%);
    }

    .table .multiRows .row:first-child:nth-last-child(17) .cell:last-child,
    .pf-table .multiRows .pf-row:first-child:nth-last-child(17) .pf-cell:last-child {
        transform: translateY(796%);
    }

    .table .multiRows .row:first-child:nth-last-child(18) .cell:last-child,
    .pf-table .multiRows .pf-row:first-child:nth-last-child(18) .pf-cell:last-child {
        transform: translateY(848%);
    }

    .table .multiRows .row:first-child:nth-last-child(19) .cell:last-child,
    .pf-table .multiRows .pf-row:first-child:nth-last-child(19) .pf-cell:last-child {
        transform: translateY(897%);
    }

    .table .multiRows .row:first-child:nth-last-child(20) .cell:last-child,
    .pf-table .multiRows .pf-row:first-child:nth-last-child(20) .pf-cell:last-child {
        transform: translateY(945%);
    }
    /*===============================================================
 Tags into tables
===============================================================*/
    .table .tag,
    .pf-table .tag {
        padding: 5px;
        border-radius: 4px;
    }

    .table .cell.alignMiddle,
    .pf-table .pf-cell.alignMiddle {
        position: relative;
        justify-content: center;
        vertical-align: middle;
    }

    .table .cell.textAlignCenter,
    .pf-table .pf-cell.textAlignCenter {
        text-align: center;
    }

    .table .cell.textAlignRight,
    .pf-table .pf-cell.textAlignRight {
        text-align: right;
    }


    .table .tagBig,
    .pf-table .tagBig {
        padding: 6px 4px;
        border-radius: 5px;
        text-align: center;
        width: 100%;
        max-width: 91%;
        display: table;
        margin: 0 auto;
        font-weight: bold;
        font-size: 8pt;
        line-height: 19px;
        box-sizing: border-box;
        position: relative;
    }

        .table .tagBig sub,
        .pf-table .tagBig sub {
            font-weight: normal;
            font-weight: normal;
            font-size: 9px;
            position: relative;
            top: 0px;
            padding: 0 5px;
        }
    /*===============================================================
 Table >> Table  ( Nested tables)
===============================================================*/
    .table .table {
        border: 0;
    }

        .table .table > * {
            background: transparent;
        }

        .table .table .row:hover {
            background: transparent;
        }
    /*===============================================================
 Sortable Table >> heading >> cell
===============================================================*/
    /*Make 10px padding on the right for the up/down icon*/
    .table .heading .cell.sortable {
        padding-right: 17px;
    }

    .table .sortable,
    .pf-table .sortable {
        cursor: pointer;
    }

        .table .sortable:after,
        .pf-table .sortable:after {
            content: "\e90b";
            font-family: 'PF-Icons';
            position: absolute;
            top: calc(50% - 9px);
            right: 8px;
            z-index: 0;
            color: rgba(0, 0, 0, 0.25);
        }
        /*mouse hover*/
        .table .sortable:hover,
        .pf-table .sortable:hover {
            color: #000;
        }

            .table .sortable:hover:after,
            .pf-table .sortable:hover:after {
                color: rgba(0, 0, 0, 0.47);
            }

    .sortable.active:after {
        content: '';
        border-style: solid;
        top: calc(50% - 3px);
    }

    .sortable.up:after {
        border-width: 0 4px 7px 4px;
        border-color: transparent transparent rgba(0, 0, 0, 0.47) transparent;
    }

    .sortable.down:after {
        border-width: 7px 4px 0 4px;
        border-color: rgba(0, 0, 0, 0.47) transparent transparent transparent;
    }
    /*===============================================================
 Remove last cell divider.  Usage: (place it in the father element of a list eg: .table or the element that contain all the .cells )
===============================================================*/
    .removeLastDivider .cell:nth-last-of-type(2):before {
        background: transparent !important;
        border: 0 !important;
    }

    .table li.add {
        background: #fff;
        min-height: 37px;
    }

        .table li.add .cell {
            padding: 0;
            border: 0;
            position: absolute;
            width: 100%;
            border: 0;
        }

            .table li.add .cell a {
                padding: 10px 7px;
                display: block;
                font-weight: bold;
                text-transform: uppercase;
            }

                .table li.add .cell a i {
                    padding-right: 3px;
                }
    /*===============================================================
=================================================================
 FORMS SECTION
=================================================================
===============================================================*/
    .form-section {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        float: left;
        width: 100%;
    }

    .form-column-partition {
        display: inline-block;
        clear: both;
        width: 100%;
        float: left;
        border-right: 1px solid rgb(220,220,220);
        border-bottom: none;
    }

    hr {
        width: 100%;
        float: left;
        margin-bottom: 14px;
        margin-top: 0px;
        border: 0;
        border-bottom: 1px solid #dce1e3;
    }
    /*===================================================
    Details
 ===================================================*/
    /*Box*/
    .frame .inner .Box {
        -webkit-transition: all 0s ease;
        -moz-transition: all 0s ease;
        -o-transition: all 0s ease;
        transition: all 0s ease;
    }

    #mainContent .table {
        border: 0;
    }

    #mainContent .Bar {
        border: 0;
        border-bottom: 1px solid #dcdcdc;
    }

    #mainContent .uploadFileName {
        position: absolute;
        text-align: left;
        bottom: -18px;
        color: darkgrey;
        width: 85%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        direction: rtl;
    }
    /*Details container*/
    .details-container {
        background: white;
        box-sizing: border-box;
        width: 100%;
        float: left;
        overflow: hidden;
        border: 1px solid #dcdcdc;
        padding: 15px;
        padding-right: 0px;
    }
    /*hr {
    border: 0;
    border-bottom: 1px solid #dce1e3;
}*/
    .details-layout .frame {
        padding-right: 0px;
        left: -20px;
        height: calc(100% - 51px);
    }

    .details-layout .blade-inner {
        padding: 0px 20px 11px 220px;
        float: left;
        width: 100%;
        clear: both;
        box-sizing: border-box;
    }

    .details-layout .fline {
        left: 200px !important;
    }
    /*.details-layout span,
.details-layout input {
    color: #888787;
}*/
    /*More options*/
    .more-options {
        position: absolute;
        right: 5px;
        top: 5px;
        cursor: pointer;
        z-index: 9;
        background: transparent;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 19px;
    }

        .more-options:hover {
            border: 1px solid #d6dfe2;
            background: #e1e9ed;
            z-index: 99;
        }

            .more-options:hover ul {
                display: block !important;
            }

        .more-options ul {
            position: absolute;
            display: none !important;
            width: 200px;
            right: -1px;
            background: #FFFFFF;
            border: 1px solid #e1e9ed;
            border-radius: 4px;
            border-top-right-radius: 0;
            overflow: hidden;
            float: left;
            top: 22px;
        }

        .more-options li {
            margin-top: 0px !important;
            float: left;
            width: 100%;
            padding: 2px 0 !important;
        }

            .more-options li:hover {
                background: #e1e9ed;
            }

            .more-options li:last-child {
                border-bottom: 0 !important;
            }

            .more-options li i {
                padding: 8px;
                font-size: 11px;
                float: left;
            }

            .more-options li span {
                color: #555;
                font-size: 12px;
                float: left;
                padding: 6px 0;
            }
    /*Loading*/
    .load.section {
        position: relative;
        height: 10px;
    }
    /*Section*/
    .section {
        padding: 0 0 25px 0;
        float: left;
        width: 100%;
    }

        .section:last-of-type {
            margin-bottom: 100px;
        }

        .section:last-child .columns:last-child hr {
            display: none;
        }
        /*splitContentView*/
        .section .splitContentView {
            float: left;
            padding-right: 0;
        }
    /*show loading when image is uploading*/
    .loadingImageBox {
        border-radius: 4px;
        outline: none;
        float: left;
        height: 171px;
        width: 100%;
        border: 1px solid #DDD;
        background-size: cover;
        background-position: center center;
        position: relative;
        background: #FFF url(/assets/images/spinner_gray.gif) no-repeat center center;
    }
    /*profileContentView*/
    .section .profileContentView {
        float: right;
    }

    .profileContentView img {
        width: 100%;
    }

    .profileContentView span {
        display: inline-block;
        clear: both;
        width: 100%;
        line-height: 15px;
        color: #989898;
        margin: 0 0 5px 0;
        font-size: 8pt;
        text-transform: uppercase;
        font-weight: 500;
    }

    .profileContentView .profileInner {
        border-radius: 4px;
        outline: none;
        background: #fff;
        float: left;
        height: 171px;
        width: 100%;
        background-size: cover;
        border: 1px solid #DDD;
        background-position: center center;
        position: relative;
    }

        .profileContentView .profileInner .actionBtns {
            position: absolute;
            bottom: 0;
            background: #f5f5f5;
            width: 100%;
            border: 1px solid #e1e9ed;
            box-sizing: border-box;
            border-bottom-right-radius: 4px;
            border-bottom-left-radius: 4px;
        }

            .profileContentView .profileInner .actionBtns input[type="file"] {
                position: absolute;
                z-index: 1;
                top: -1px;
                right: 0px;
                width: 63% !important;
                height: 29px;
                opacity: 0;
                cursor: pointer !important;
            }

                .profileContentView .profileInner .actionBtns input[type="file"]:hover + button {
                    background: #e1e9ed;
                }

        .profileContentView .profileInner button,
        .profileContentView .profileInner input[type="file"] {
            float: left;
            cursor: pointer;
            text-align: center;
            border: 0;
            font-size: 7.5pt;
            font-weight: bold;
            text-transform: uppercase;
            background: transparent;
            padding: 7px 0;
            border: 1px solid transparent;
            box-sizing: border-box;
            color: #555555;
            overflow: hidden;
        }

            .profileContentView .profileInner button:hover {
                background: #e1e9ed;
                color: #000;
            }

            .profileContentView .profileInner button:first-child {
                width: 37%;
                border-right-color: #e1e9ed;
                border-bottom-left-radius: 4px;
            }

            .profileContentView .profileInner button:last-child {
                width: 63%;
                border-bottom-right-radius: 4px;
            }

    @media only screen and (max-width: 1840px) and (min-width:1480px) {
        /*fix button to prevent words braking into 2 lines */
        .profileContentView .profileInner button {
            width: 100% !important;
            padding: 4px 0;
        }

            .profileContentView .profileInner button:first-child {
                border-right-color: transparent;
                border-bottom-color: #e1e9ed;
                border-radius: 0;
            }

        .profileContentView .profileInner .actionBtns input[type="file"] {
            width: 100% !important;
            top: 20px !important;
            height: 23px;
        }
    }

    .btnContainer {
        background: white;
        float: left;
        width: 100%;
        border-top: 1px solid #dcdcdc;
    }

        .btnContainer.no-border-top {
            border-top: none !important;
        }


    h2, .form-title, .section-title {
        padding: 0;
        margin: 0 0 10px 0;
        text-transform: uppercase;
        font-weight: 500;
        color: #959595;
    }
    /*start of .blade-*/
    label, .input-label {
        display: inline-block;
        clear: both;
        width: 100%;
        line-height: 15px;
        margin: 0 0 5px 0;
        /*text-transform: uppercase;*/
        font-weight: 500;
    }

    input[type='radio'] {
        display: inline-block;
        -webkit-appearance: none;
        border: 1px solid;
        border-radius: 50%;
        outline: none;
    }

        input[type='radio']:checked:before {
            content: '';
            display: block;
            width: 10px;
            height: 10px;
            margin: 20% auto;
            border-radius: 50%;
            position: relative;
            top: -5px;
            left: -5px;
        }


    input {
        border: 1px solid #dcdcdc;
        padding: 8px;
        border-radius: 3px;
        width: 100%;
        outline: none;
        box-sizing: border-box;
        font-family: inherit;
    }

        input[type="number"] {
            text-align: right;
        }
    /*Columns*/
    .columns {
        display: block;
        float: left;
        position: relative;
        min-height: 1px;
        padding-right: 15px;
        margin-bottom: 15px;
        box-sizing: border-box;
    }

        .columns .combinedColumn {
            padding-right: 5px;
        }

    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12 {
        float: left;
    }

    .col-1 {
        width: 8.33333333%;
    }

    .col-2 {
        width: 16.66666667%;
    }

    .col-3 {
        width: 25%;
    }

    .col-4 {
        width: 33.33333333%;
    }

    .col-5 {
        width: 41.66666667%;
    }

    .col-6 {
        width: 50%;
    }

    .col-7 {
        width: 58.33333333%;
    }

    .col-8 {
        width: 66.66666667%;
    }

    .col-9 {
        width: 75%;
    }

    .col-10 {
        width: 83.33333333%;
    }

    .col-11 {
        width: 91.66666667%;
    }

    .col-12 {
        width: 100%;
    }

    .removeBottom,
    .removeBottom .Box {
        margin-bottom: 0 !important;
    }
    /*Media Queries*/
    @media only screen and (max-width: 1482px) {
        /*Convert columns in 4 column when Blade is Big*/
        .col-lg-3 {
            width: 25%;
        }
        /* Hidden fields  */
        .col-lg-hidden {
            display: none;
        }
        /*fix sizing on profile picture*/
        .splitContentView {
            width: 74%;
        }

        .profileContentView {
            width: 25.6%;
        }

        .profileInner {
            width: 97% !important;
        }
    }

    @media only screen and (max-width: 860px) {
        /*iPad view*/
        .col-1,
        .col-2,
        .col-3,
        .col-4,
        .col-5,
        .col-6,
        .col-7,
        .col-8,
        .col-9,
        .col-10,
        .col-11 {
            width: 49.5%;
        }

        .col-12 {
            width: 100%;
        }
    }

    @media only screen and (max-width: 730px) {
        /*smaller than iPad view*/
        .col-1,
        .col-2,
        .col-3,
        .col-4,
        .col-5,
        .col-6,
        .col-7,
        .col-8,
        .col-9,
        .col-10,
        .col-11,
        .col-12 {
            width: 100%;
        }
    }
    /*Add a New Item*/
    .newItem {
        background: #fafafa;
        padding: 15px 0 0px 15px;
        /*for IE*/
        border-top: 1px solid #dcdcdc !important;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        float: left;
        width: 100%;
        position: relative;
        top: -1px;
    }

    @supports(--css: variables) {
        .newItem {
            border-top: 1px solid var(--control-stroke-color) !important;
        }
    }


    .newItem:before,
    .newItem:after {
        bottom: 100%;
        left: 0;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
    }

    .newItem:before {
        border-color: rgba(194, 225, 245, 0);
        border-bottom-color: #d8d8d8;
        border-width: 9px;
        margin-left: 17px;
    }

    .newItem:after {
        border-color: rgba(255, 255, 255, 0);
        border-bottom-color: #fafafa;
        border-width: 8px;
        margin-left: 18px;
        top: -15px;
    }

    .newItem .Box {
        margin-bottom: 0;
    }

    .newItem button {
        font-weight: 500;
        text-transform: uppercase;
        font-size: 9pt;
    }

    .newItem .cancel {
        margin-right: 10px;
        right: 64px;
        /*for IE*/
        background: #959595;
        color: #ffffff;
        font-weight: 500;
        text-transform: uppercase;
        font-size: 9pt;
    }

    @supports(--css: variables) {
        .newItem .cancel {
            background: var(--theme-grayscale-shd4-color);
            color: var(--theme-grayscale-shd1-color);
        }
    }

    .panelContent.inline .newItem {
        border: 0;
    }

    .attachmentInfo {
        font-weight: normal;
        font-size: 8pt;
        text-transform: capitalize;
        letter-spacing: 0.5pt;
        color: #a1a1a1;
    }
    /*Spin Loader*/
    .spin-loader {
        border-style: solid;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    .ellipsis-clip {
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
    /*
========Administration templates=========
Many classes require slight calibrations
    to meet requirements
*/
    .admin-template-save {
        top: 2px;
        right: 45px;
    }

    .admin-template-cancel {
        top: 2px !important;
        right: 110px !important;
    }

    .capitalise {
        text-transform: capitalize;
    }

    .shaded {
        background-color: #fafafa;
    }

    .bg-doc /deep/ .form-section {
        background-color: #fafafa;
    }

    pf-toggle-panel-main.admin /deep/ h2 {
        color: #959595;
        font-weight: 500;
    }
