/* source-sans-pro-regular - latin */
@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/source-sans-pro-v10-latin-regular.eot'); /* IE9 Compat Modes */
    src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'),
    url('../fonts/source-sans-pro-v10-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/source-sans-pro-v10-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/source-sans-pro-v10-latin-regular.woff') format('woff'), /* Modern Browsers */
    url('../fonts/source-sans-pro-v10-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/source-sans-pro-v10-latin-regular.svg#SourceSansPro') format('svg'); /* Legacy iOS */
}
/* source-sans-pro-italic - latin */
@font-face {
    font-family: 'Source Sans Pro';
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/source-sans-pro-v10-latin-italic.eot'); /* IE9 Compat Modes */
    src: local('Source Sans Pro Italic'), local('SourceSansPro-Italic'),
    url('../fonts/source-sans-pro-v10-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/source-sans-pro-v10-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/source-sans-pro-v10-latin-italic.woff') format('woff'), /* Modern Browsers */
    url('../fonts/source-sans-pro-v10-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/source-sans-pro-v10-latin-italic.svg#SourceSansPro') format('svg'); /* Legacy iOS */
}
/* source-sans-pro-600 - latin */
@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/source-sans-pro-v10-latin-600.eot'); /* IE9 Compat Modes */
    src: local('Source Sans Pro SemiBold'), local('SourceSansPro-SemiBold'),
    url('../fonts/source-sans-pro-v10-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/source-sans-pro-v10-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/source-sans-pro-v10-latin-600.woff') format('woff'), /* Modern Browsers */
    url('../fonts/source-sans-pro-v10-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/source-sans-pro-v10-latin-600.svg#SourceSansPro') format('svg'); /* Legacy iOS */
}
body {
    font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555555;
    background-color: #ffffff;
}

/*// Sidebar*/

.sidebar {
    display: none;
}
@media (min-width: 768px) {
    .sidebar {
        position: fixed;
        top: 51px;
        bottom: 0;
        left: 0;
        z-index: 1000;
        display: block;
        padding: 20px;
        overflow-x: hidden;
        overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
        background-color: #f5f5f5;
        border-right: 1px solid #eee;
    }
}

/* Sidebar navigation */
.nav-sidebar {
    margin-right: -21px; /* 20px padding + 1px border */
    margin-bottom: 20px;
    margin-left: -20px;
}
.nav-sidebar > li > a {
    padding-right: 20px;
    padding-left: 20px;
}
.nav-sidebar > .active > a,
.nav-sidebar > .active > a:hover,
.nav-sidebar > .active > a:focus {
    color: #fff;
    background-color: #428bca;
}

/*// Main*/

.main {
    padding: 20px;
    top: 51px;
}

.main.busy {
    opacity: 0.6;
}
@media (min-width: 768px) {
    .main {
        padding-right: 40px;
        padding-left: 40px;
    }
}
.main .page-header {
    margin-top: 0;
}

.orgchart {
    background-image: none !important;
}

/*
 * jQuery OrgChart Plugin
 * https://github.com/dabeng/OrgChart
 *
 * Copyright 2016, dabeng
 * https://github.com/dabeng
 *
 * Licensed under the MIT license:
 * http://www.opensource.org/licenses/MIT
 */

.orgchart {
    box-sizing: border-box;
    display: inline-block;
    min-height: 202px;
    min-width: 202px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: linear-gradient(90deg, rgba(200, 0, 0, 0.15) 10%, rgba(0, 0, 0, 0) 10%), linear-gradient(rgba(200, 0, 0, 0.15) 10%, rgba(0, 0, 0, 0) 10%);
    background-size: 10px 10px;
    border: 1px dashed rgba(0,0,0,0);
    padding: 20px;
}

.orgchart .hidden, .orgchart~.hidden {
    display: none;
}

.orgchart.b2t {
    transform: rotate(180deg);
}

.orgchart.l2r {
    position: absolute;
    transform: rotate(-90deg) rotateY(180deg);
    transform-origin: left top;
}

.orgchart .verticalNodes ul {
    list-style: none;
    margin: 0;
    padding-left: 18px;
    text-align: left;
}
.orgchart .verticalNodes ul:first-child {
    margin-top: 2px;
}
.orgchart .verticalNodes>td::before {
    content: '';
    border: 1px solid rgba(217, 83, 79, 0.8);
}
.orgchart .verticalNodes>td>ul>li:first-child::before {
    box-sizing: border-box;
    top: -4px;
    height: 30px;
    width: calc(50% - 2px);
    border-width: 2px 0 0 2px;
}
.orgchart .verticalNodes ul>li {
    position: relative;
}
.orgchart .verticalNodes ul>li::before,
.orgchart .verticalNodes ul>li::after {
    box-sizing: border-box;
    content: '';
    position: absolute;
    left: -6px;
    border-color: rgba(217, 83, 79, 0.8);
    border-style: solid;
    border-width: 0 0 2px 2px;
}
.orgchart .verticalNodes ul>li::before {
    top: -4px;
    height: 30px;
    width: 11px;
}
.orgchart .verticalNodes ul>li::after {
    top: 1px;
    height: 100%;
}
.orgchart .verticalNodes ul>li:first-child::after {
    box-sizing: border-box;
    top: 24px;
    width: 11px;
    border-width: 2px 0 0 2px;
}
.orgchart .verticalNodes ul>li:last-child::after {
    box-sizing: border-box;
    border-width: 2px 0 0;
}

.orgchart.r2l {
    position: absolute;
    transform: rotate(90deg);
    transform-origin: left top;
}

.orgchart>.spinner {
    font-size: 100px;
    margin-top: 30px;
    color: rgba(68, 157, 68, 0.8);
}

.orgchart table {
    border-spacing: 0;
    border-collapse: separate;
}

.orgchart>table:first-child{
    margin: 20px auto;
}

.orgchart td {
    text-align: center;
    vertical-align: top;
    padding: 0;
}

.orgchart .lines .topLine {
    border-top: 2px solid rgba(217, 83, 79, 0.8);
}

.orgchart .lines .rightLine {
    border-right: 1px solid rgba(217, 83, 79, 0.8);
    float: none;
    border-radius: 0;
}

.orgchart .lines .leftLine {
    border-left: 1px solid rgba(217, 83, 79, 0.8);
    float: none;
    border-radius: 0;
}

.orgchart .lines .downLine {
    background-color: rgba(217, 83, 79, 0.8);
    margin: 0 auto;
    height: 20px;
    width: 2px;
    float: none;
}

/* node styling */
.orgchart .node {
    display: inline-block;
    position: relative;
    margin: 0;
    padding: 3px;
    border: 2px dashed transparent;
    text-align: center;
    width: 210px;
}

.orgchart.l2r .node, .orgchart.r2l .node {
    width: 50px;
    height: 210px;
}

.orgchart .node>.spinner {
    position: absolute;
    top: calc(50% - 15px);
    left: calc(50% - 15px);
    vertical-align: middle;
    font-size: 30px;
    color: rgba(68, 157, 68, 0.8);
}

.orgchart .node:hover {
    cursor: pointer;
    z-index: 20;

    box-shadow: 7px 6px 7px 0px rgba(0, 0, 0, 0.3);

}

.orgchart .node.focused {
    border: 1px solid #00adff;
    width: 350px;
}

.orgchart .ghost-node {
    position: fixed;
    left: -10000px;
    top: -10000px;
}

.orgchart .ghost-node rect {
    fill: #ffffff;
    stroke: #bf0000;
}

.orgchart .node.allowedDrop {
    border-color: rgba(68, 157, 68, 0.9);
}

.orgchart .node .title {
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    height: 20px;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background-color: rgba(156, 156, 156, 1);
    color: #fff;
    border-radius: 4px 4px 0 0;
}

.orgchart .fa {
    display: none;
}

.orgchart .person_name_function {
    float: left;
    text-align: left;
    width: 205px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.orgchart.b2t .node .title {
    transform: rotate(-180deg);
    transform-origin: center bottom;
}

.orgchart.l2r .node .title {
    transform: rotate(-90deg) translate(-40px, -40px) rotateY(180deg);
    transform-origin: bottom center;
    width: 120px;
}

.orgchart.r2l .node .title {
    transform: rotate(-90deg) translate(-40px, -40px);
    transform-origin: bottom center;
    width: 120px;
}

.orgchart .node .title .symbol {
    float: left;
    margin-top: 4px;
    margin-left: 2px;
}

.orgchart .node .content ul {
    clear: both;
    display: block;
}

.orgchart .node .content {
    box-sizing: border-box;
    width: 100%;
    min-height: 20px;
    height: auto;
    font-size: 11px;
    line-height: 18px;
    border: 1px solid rgba(156, 156, 156, 0.7);
    border-radius: 0 0 4px 4px;
    text-align: center;
    background-color: #fff;
    color: #333;
    /*overflow: hidden;*/
    text-overflow: ellipsis;
    white-space: nowrap;
    /*height: 115px;*/
}

.orgchart .person_colors {
    float: left; margin-right: 2px; width: 10px; height: 10px;

}

.node.hidePersonen ul {
    display: none !important;
}


.numColors_1 .node.afdeling  .colorlist:nth-of-type(1) {
    width: 98%;
    height: 60px;
    margin-left: 2px !important;
    float: left;
    margin-top: 2px !important;
    margin-bottom: 2px;
    margin-right: 2px;
}

.numColors_2 .node.afdeling  .colorlist:nth-of-type(1),
.numColors_2 .node.afdeling  .colorlist:nth-of-type(2) {

    width: 48%;
    height: 40px;
    margin-left: 2px !important;
    float: left;
    margin-top: 2px !important;

}

.numColors_3 .node.afdeling  .colorlist:nth-of-type(1),
.numColors_3 .node.afdeling  .colorlist:nth-of-type(2) {

    width: 48%;
    height: 40px;
    margin-left: 2px !important;
    float: left;
    margin-top: 2px !important;

}

.numColors_3 .node.afdeling .colorlist {
    width: 99%;
    height: 20px;
    margin: 2px !important;
    float: left;
}


.numColors_3 .node.afdeling  .colorlist:nth-of-type(3) {
    clear: both;
}

.numColors_4 .node.afdeling  .colorlist:nth-of-type(1),
.numColors_4 .node.afdeling  .colorlist:nth-of-type(2) {

    width: 48%;
    height: 40px;
    margin-left: 2px !important;
    float: left;
    margin-top: 2px !important;

}

.numColors_4 .node.afdeling .colorlist {
    width: 48%;
    height: 20px;
    margin: 2px !important;
    float: left;
}


.numColors_4 .node.afdeling  .colorlist:nth-of-type(3) {
    clear: both;
}



.numColors_5 .node.afdeling  .colorlist:nth-of-type(1),
.numColors_5 .node.afdeling  .colorlist:nth-of-type(2) {

    width: 48%;
    height: 40px;
    margin-left: 2px !important;
    float: left;
    margin-top: 2px !important;

}

.numColors_5 .node.afdeling .colorlist {
    width: 31%;
    height: 20px;
    margin: 2px !important;
    float: left;
}


.numColors_5 .node.afdeling  .colorlist:nth-of-type(3) {
    clear: both;
}


.numColors_6 .node.afdeling  .colorlist:nth-of-type(1),
.numColors_6 .node.afdeling  .colorlist:nth-of-type(2) {

    width: 48%;
    height: 40px;
    margin-left: 2px !important;
    float: left;
    margin-top: 2px !important;

}

.numColors_6 .node.afdeling .colorlist {
    width: 23%;
    height: 20px;
    margin: 2px !important;
    float: left;
}


.numColors_6 .node.afdeling  .colorlist:nth-of-type(3) {
    clear: both;
}


.numColors_7 .node.afdeling  .colorlist:nth-of-type(1),
.numColors_7 .node.afdeling  .colorlist:nth-of-type(2) {

    width: 48%;
    height: 40px;
    margin-left: 2px !important;
    float: left;
    margin-top: 2px !important;

}

.numColors_7 .node.afdeling .colorlist {
    width: 18%;
    height: 20px;
    margin: 2px !important;
    float: left;
}


.numColors_7 .node.afdeling  .colorlist:nth-of-type(3) {
    clear: both;
}


.orgchart.b2t .node .content {
    transform: rotate(180deg);
    transform-origin: center top;
}

.orgchart.l2r .node .content {
    transform: rotate(-90deg) translate(-40px, -40px) rotateY(180deg);
    transform-origin: top center;
    width: 120px;
}

.orgchart.r2l .node .content {
    transform: rotate(-90deg) translate(-40px, -40px);
    transform-origin: top center;
    width: 120px;
}

.orgchart .node .edge {
    font-size: 15px;
    position: absolute;
    color: rgba(68, 157, 68, 0.5);
    cursor: default;
}

.orgchart.noncollapsable .node .edge {
    display: none;
}

.orgchart .edge:hover {
    color: #449d44;
    cursor: pointer;
}

.orgchart .node .verticalEdge {
    width: calc(100% - 10px);
    width: -webkit-calc(100% - 10px);
    width: -moz-calc(100% - 10px);
    left: 5px;
}

.orgchart .node .topEdge {
    top: -4px;
}

.orgchart .node .bottomEdge {
    bottom: -4px;
}

.orgchart .node .horizontalEdge {
    width: 15px;
    height: calc(100% - 10px);
    height: -webkit-calc(100% - 10px);
    height: -moz-calc(100% - 10px);
    top: 5px;
}

.orgchart .node .rightEdge {
    right: -4px;
}

.orgchart .node .leftEdge {
    left: -4px;
}

.orgchart .node .horizontalEdge::before {
    position: absolute;
    top: calc(50% - 7px);
}

.orgchart .node .rightEdge::before {
    right: 3px;
}

.orgchart .node .leftEdge::before {
    left: 3px;
}

.orgchart .node .toggleBtn {
    position: absolute;
    left: 5px;
    bottom: -2px;
    color: rgba(68, 157, 68, 0.6);
}

.orgchart .node .toggleBtn:hover {
    color: rgba(68, 157, 68, 0.8);
}

.oc-export-btn {
    display: inline-block;
    position: absolute;
    right: 5px;
    top: 5px;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    user-select: none;
    color: #fff;
    background-color: #5cb85c;
    border: 1px solid transparent;
    border-color: #4cae4c;
    border-radius: 4px;
}

.oc-export-btn[disabled] {
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.3;
}

.oc-export-btn:hover,.oc-export-btn:focus,.oc-export-btn:active  {
    background-color: #449d44;
    border-color: #347a34;
}

.orgchart~.mask {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    text-align: center;
    background-color: rgba(0,0,0,0.3);
}

.orgchart~.mask .spinner {
    position: absolute;
    top: calc(50% - 54px);
    left: calc(50% - 54px);
    color: rgba(255,255,255,0.8);
    font-size: 108px;
}

.orgchart {
    transition: all 0s !important;
}

.orgchart i.edge {
    display: none !important;
}

.orgchart .node {
    opacity: 1;
    top: 0;
    left: 0;
    border: 1px;
}

.orgchart .slide-down {
    opacity: 0;
    top: 40px;
}

.orgchart.l2r .node.slide-down, .orgchart.r2l .node.slide-down {
    top: 130px;
}

.orgchart .slide-up {
    opacity: 0;
    top: -40px;
}

.orgchart.l2r .node.slide-up, .orgchart.r2l .node.slide-up {
    top: -130px;
}

.orgchart .slide-right {
    opacity: 0;
    left: 130px;
}

.orgchart.l2r .node.slide-right, .orgchart.r2l .node.slide-right {
    left: 40px;
}

.orgchart .slide-left {
    opacity: 0;
    left: -130px;
}

.orgchart.l2r .node.slide-left, .orgchart.r2l .node.slide-left {
    left: -40px;
}

.node .first,
.node .second {
    width:  50%;
    height: 18px;
    position: relative;
    border-radius: 5px;
    float: left;
    z-index: 1;
}

.node .closed {
    display: none;
}
.node.focused .closed {
    display: block;
    width: 100%;
    text-align: left;
    padding: 11px;
    clear: both;
    border: 1px solid #cecece;
    background-color: #fff;
}

.node.isStaf {
    left: 240px;
}

.node .lineContainer {
    float: left;
    width: 1px;
    height: 1px;
}

.node.isStaf.focused .lineContainer {
}


.node.isStaf .leftLine {
    /*border-left: 2px solid rgba(217, 83, 79, 0.8);*/
    /*width: 100px;*/
    /*height: 150px;*/
    /*float: left;*/
    /*position: relative;*/
    /*left: -141px;*/
    /*top: -140px;*/


    position: relative;
    height: 74px;
    border-left: 2px solid rgba(217, 83, 79, 0.8);
    left: -139px;
    top: -5px;
}
.node.isStaf.focused .leftLine {

    width: 20px;
    height: 180px;
    float: left;
    position: relative;
    left: -120px;
    top: -170px;
    display: none;

}
.node.lead .content {
    margin-top: 0px !important;
}
.node.lead .title {
    display: none;
}
.node.lead .content {

    border: 1px solid #fff;
    background-color: #fff;
    color: #000;
    margin-top: 15px;

}
.node.lead {
    border-radius: 200px;
    overflow: hidden;
    border: transparent;

    height: 125px;
    width: 125px;

}

.node.isStaf .topLine {

    left: -139px;
    top: -39px;
    width: 140px;
    height: 2px;
    position: relative;
    border-top: 2px solid rgba(217, 83, 79, 0.8);

}
.node.isStaf.focused {
    left: 0px;
}

.node.isStaf.focused .topLine,
.node.isStaf.focused .leftLine {
    display: none;
}


.node.isStaf.focused .topLine {
    width: 120px;
    height: 120px;
    float: left;
    position: relative;
    left: -119px;
    top: -257px;
    display: none;

}

.node .content > div > .node_title,
.node .content > div > .first,
.node .content > div > .second {
    position: static;
    float: left;
    width: 10px;
    height: 10px;
}

.node .content > div > .node_title {
    width: 80%;
}

.node .second  {
    position: relative;
    left: 100px;
    top: -19px;
}

.node .node_title {
    z-index: 3;
    /*position: relative;*/
    /*left: -53px;*/
    /*top: 1px;*/
    font-size: 17px;
}

ul.tree, ul.tree ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
ul.tree ul {
    margin-left: 10px;
}
ul.tree li {
    margin: 0;
    padding: 0 7px;
    line-height: 20px;
    color: #369;
    font-weight: bold;
    border-left:1px solid rgb(174, 174, 174);
    float: left;
    width: 100%;
    text-align: left;
    margin-left: 30px;

}
ul.tree li:last-child {
    border-left:none;
}
ul.tree li:before {
    position:relative;
    top:-0.3em;
    height:1em;
    width:12px;
    color:white;
    border-bottom:1px solid rgb(100,100,100);
    content:"";
    display:inline-block;
    left:-7px;
}
ul.tree li:last-child:before {
    border-left:1px solid rgb(100,100,100);
}

.afdelingshoofd.color.color_1 {
    x: 4px;
    y: 83px;
    height: 63px;
    width: 95px;
}

.afdelingshoofd.color.color_2 {
    x: 102px;
    y: 83px;
    height: 63px;
    width: 95px;
}


.afdeling.color.color_1 {
    x: 4px;
    y: 4px;
    height: 63px;
    width: 119px;
}

.afdeling.color.color_2 {
    x: 126px;
    y: 4px;
    height: 63px;
    width: 119px;
}


/*#org_chart_container-2 .node_red { fill: transparent }*/
/*#org_chart_container-2 .node_green { fill: transparent }*/
/*#org_chart_container-2 .node_blue { fill: transparent }*/
/*#org_chart_container-2 .node_yellow { fill: transparent }*/
/*#org_chart_container-2 .node_orange { fill: transparent }*/
/*#org_chart_container-2 .node_turquoise { fill: transparent }*/
/*#org_chart_container-2 .node_purple { fill: transparent }*/

/*#org_chart_container .resi_red { fill: transparent }*/
/*#org_chart_container .resi_green { fill: transparent }*/
/*#org_chart_container .resi_blue { fill: transparent }*/
/*#org_chart_container .resi_yellow { fill: transparent }*/
/*#org_chart_container .resi_orange { fill: transparent }*/
/*#org_chart_container .resi_turquoise { fill: transparent }*/
/*#org_chart_container .resi_purple { fill: transparent }*/

#chart-container-2 .color.resi_red,
#chart-container .color.node_red {
    fill: #e52625;
}
.node .colorlist.red,
.node.red .title {
    background-color: #e52625;
}
.node.red .content {
    border: 1px solid #e52625;
}
#chart-container-2 .color.resi_green,
#chart-container .color.node_green {
    fill: #3fa435;
}
.node .colorlist.green,
.node.green .title {
    background-color: #3fa435;
}
.node.green .content {
    border: 1px solid #3fa435;
}
#chart-container-2 .color.resi_blue,
#chart-container .color.node_blue {
    fill: #273582;
}
.node .colorlist.blue,
.node.blue .title {
    background-color: #273582;
}
.node.blue .content {
    border: 1px solid #273582;
}
#chart-container-2 .color.resi_yellow,
#chart-container .color.node_yellow {
    fill: #fee800;
}
.node .colorlist.yellow,
.node.yellow .title {
    background-color: #fee800;
}
.node.yellow .content {
    border: 1px solid #fee800;
}
#chart-container-2 .color.resi_orange,
#chart-container .color.node_orange {
    fill: #f08425;
}
.node .colorlist.orange,
.node.orange .title {
    background-color: #f08425;
}
.node.orange .content {
    border: 1px solid #f08425;
}
#chart-container-2 .color.resi_turquoise,
#chart-container .color.node_turquoise {
    fill: #02b4c2;
}
.node .colorlist.turquoise,
.node.turquoise .title {
    background-color: #02b4c2;
}
.node.turquoise .content {
    border: 1px solid #02b4c2;
}
#chart-container-2 .color.resi_purple,
#chart-container .color.node_purple {
    fill: #97358b;
}
.node .colorlist.purple,
.node.purple .title {
    background-color: #97358b;
}
.node.purple .content {
    border: 1px solid #97358b;
}

/*numColors_2*/

.numColors_1 .node.lead .colorlist.color_0  {
    position: relative;
    top: -20px;
    left: -20px;
    height: 160px;
    width: 160px;
}

/*numColors_2*/

.numColors_2 .node.lead .colorlist.color_0  {
    position: relative;
    top: -20px;
    left: -20px;
    height: 160px;
    width: 75px;
}

.numColors_2 .node.lead .colorlist.color_1  {
    position: relative;
    top: -170px;
    left: 60px;
    height: 160px;
    width: 75px;
}

/*numColors_3*/

.numColors_3 .node.lead {
    width: 160px;
}

.numColors_3 .node.lead .colorlist.color_0  {
    position: relative;
    top: -20px;
    left: -20px;
    height: 160px;
    width: 75px;
}

.numColors_3 .node.lead .colorlist.color_1  {
    position: relative;
    top: -170px;
    left: 60px;
    height: 160px;
    width: 30px;
}

.numColors_3 .node.lead .colorlist.color_2  {
    position: relative;
    top: -330px;
    left: 95px;
    height: 160px;
    width: 75px;
}


/*numColors_4*/

.numColors_4 .node.lead {
    width: 190px;
}

.numColors_4 .node.lead .colorlist.color_0  {
    position: relative;
    top: -20px;
    left: -20px;
    height: 160px;
    width: 75px;
}

.numColors_4 .node.lead .colorlist.color_1  {
    position: relative;
    top: -170px;
    left: 60px;
    height: 160px;
    width: 30px;
}


.numColors_4 .node.lead .colorlist.color_2  {
    position: relative;
    top: -350px;
    left: 94px;
    height: 160px;
    width: 30px;
}

.numColors_4 .node.lead .colorlist.color_3  {
    position: relative;
    top: -490px;
    left: 129px;
    height: 160px;
    width: 75px;
}

/*numColors_5*/

.numColors_5 .node.lead {
    width: 230px;
}

.numColors_5 .node.lead .colorlist.color_0  {
    position: relative;
    top: -20px;
    left: -20px;
    height: 160px;
    width: 75px;
}

.numColors_5 .node.lead .colorlist.color_1  {
    position: relative;
    top: -170px;
    left: 60px;
    height: 160px;
    width: 30px;
}


.numColors_5 .node.lead .colorlist.color_2  {
    position: relative;
    top: -350px;
    left: 94px;
    height: 160px;
    width: 30px;
}

.numColors_5 .node.lead .colorlist.color_3  {
    position: relative;
    top: -490px;
    left: 129px;
    height: 160px;
    width: 30px;
}

.numColors_5 .node.lead .colorlist.color_4  {
    position: relative;
    top: -650px;
    left: 164px;
    height: 160px;
    width: 75px;
}

/*numColors_6*/

.numColors_6 .node.lead {
    width: 260px;
}

.numColors_6 .node.lead .colorlist.color_0  {
    position: relative;
    top: -20px;
    left: -20px;
    height: 160px;
    width: 75px;
}

.numColors_6 .node.lead .colorlist.color_1  {
    position: relative;
    top: -170px;
    left: 60px;
    height: 160px;
    width: 30px;
}


.numColors_6 .node.lead .colorlist.color_2  {
    position: relative;
    top: -350px;
    left: 94px;
    height: 160px;
    width: 30px;
}

.numColors_6 .node.lead .colorlist.color_3  {
    position: relative;
    top: -490px;
    left: 129px;
    height: 160px;
    width: 30px;
}

.numColors_6 .node.lead .colorlist.color_4  {
    position: relative;
    top: -650px;
    left: 164px;
    height: 160px;
    width: 30px;
}

.numColors_6 .node.lead .colorlist.color_5  {
    position: relative;
    top: -820px;
    left: 200px;
    height: 160px;
    width: 75px;
}

/*numColors_7*/

.numColors_7 .node.lead {
    width: 290px;
}

.numColors_7 .node.lead .colorlist.color_0  {
    position: relative;
    top: -20px;
    left: -20px;
    height: 160px;
    width: 75px;
}

.numColors_7 .node.lead .colorlist.color_1  {
    position: relative;
    top: -170px;
    left: 60px;
    height: 160px;
    width: 30px;
}


.numColors_7 .node.lead .colorlist.color_2  {
    position: relative;
    top: -350px;
    left: 94px;
    height: 160px;
    width: 30px;
}

.numColors_7 .node.lead .colorlist.color_3  {
    position: relative;
    top: -490px;
    left: 129px;
    height: 160px;
    width: 30px;
}

.numColors_7 .node.lead .colorlist.color_4  {
    position: relative;
    top: -650px;
    left: 164px;
    height: 160px;
    width: 30px;
}

.numColors_7 .node.lead .colorlist.color_5  {
    position: relative;
    top: -820px;
    left: 200px;
    height: 160px;
    width: 30px;
}

.numColors_7 .node.lead .colorlist.color_6  {
    position: relative;
    top: -980px;
    left: 235px;
    height: 160px;
    width: 75px;
}

.node.focused .colorlist {
    /*display: none;*/
}

.node .content span {
    width: 100%;
    height: 27px;
    display: block;
}

.colorlist.undefined {
    display: none;
}

.SyncPopupOpen i {
    clear: both;
}
.SyncPopupOpen label {
    width: 310px;
    float: left;
    text-align: left;
}
.SyncPopupOpen input {
    width: 210px;
    margin-left: 10px;
    float: left;
}
.SyncPopupOpen .row {
    margin-bottom: 5px;
}
.SyncPopupOpen {
    width: 555px;
    border: 1px solid #e7e7e7;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    z-index: 1000000;
    position: fixed;
    background-color: #fff;
    border: 1px solid #b7b7b7;
    top: 100px;
    left: 590px;
    padding: 20px;
}

.checkmark {
    display:inline-block;
}
.checkmark:before{
    /*Add another block-level blank space*/
    content: '';
    display: block;
    width: 8px;
    height: 15px;
    transform: rotate(45deg);
    position: relative;
    top: 15px;
    left: -18px;
}

.checkmark.red:before{
    border: solid #ff2500;
    /*Add a white border on the bottom and left, creating that 'L' */
    border-width: 0 2px 2px 0;

}


.checkmark.green:before{
    border: solid #00e009;
    /*Add a white border on the bottom and left, creating that 'L' */
    border-width: 0 2px 2px 0;

}

.error_message {
    margin-left: 33px;
}


.backgroundGrey {
    position: fixed;
    background-color: #cecece;
    opacity: 0.5;
    z-index: 10000;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}
.buttonHolder {
    width: 1px;
    height: 1px;
}
.feedbackButton {
    position: relative;
    background-color: #e2e2de;
    border-radius: 3px;
    color: #000;
    top: 10px;
    left: 220px;
    width: 48px;
    height: 22px;
    z-index: 90;
    border: 1px solid #0000000f;
    text-align: center;
    cursor: pointer;
}

.feedbackGraphs div hr {
    float: left;
    width: 99%;
    clear:both;
}
.feedbackGraphs div div {
    float: left;
}
.feedbackRemoveHolder {
    float: right;
    width: 1px;
    height: 1px;
}
a.showFeedback {
    padding-right: 20px !important;
}
a.closeFeedback {
    background-color: transparent !important;
    position: relative;
    left: -15px !important;
    top: -45px !important;
    margin: 0px !important;
    border: 0px !important;
    font-size: 17px;
}

.grey_block {
    margin-top: 25px;
    border-top: 1px solid #000;
    padding-top: 15px;
}
.grey_block div div {
    /*background-color: #eeeeee;*/
}

.ui-state-highlight {
    float: left;
    width: 300px;
    height: 250px;
    background-color: #ececec;
}
.ui-state-people-highlight {
    float: left;
    width: 90%;
    height: 25px;
    background-color: #ececec;
}

#grafiek {
    min-height: 350px;
}

.people_list {
    padding: 3px;
}
.people_list li {
    float: left;
    width: 100%;
    padding: 3px;
    list-style-type: none;
}

.divider_version a {
    color: #e7e7e7;
}
.divider_version {
    border-right: 1px solid #e7e7e7;
    border-left: 1px solid #e7e7e7;
}

#loading_bar {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 1%;
    height: 3px;
    background-color: #23408e;
    z-index: 10000;
}

#grafiek div.grey {
    color: #dadada;
    cursor: not-allowed;
}
.dropdown a.grey:hover,
.dropdown a.grey {
    color: #dadada;
    cursor: not-allowed;
}

span.button {
    border: 1px solid #bbbbbb;
    border-radius: 4px;
    background-color: #cecece;
    float: left;
    clear: left;
    margin: 10px;
    margin-top: 25px;
    padding: 5px;
    width: 30px;
    height: 30px;
}

#organigramGraph .google-visualization-orgchart-lineleft {
    border-left: 1px solid #3388dd !important;
}

#organigramGraph .google-visualization-orgchart-lineright {
    border-right: 1px solid #3388dd !important;
}

#organigramGraph  .google-visualization-orgchart-linebottom {
    border-bottom: 1px solid #3388dd !important;
}

#chart-container.loading {

    opacity: 0.1;

}

#chart-container {
    overflow: auto;
}

.hideMe {
    position: absolute;
    top: -1500px;
    left: -1500px;
    display: block;
}

.showMe {
    display: block !important;
    /*height: 250px;*/
}

.showMe.feedback .feedbackButton {
    position: relative;
    width: 36px;
    height: 37px;
    border: 1px solid #cecece;
    background-color: rgba(206, 206, 206, 0.31);
    padding: 6px;
    border-radius: 5px;
    top: -234px;
    left: 210px;
    display: block !important;
    cursor: pointer;
}

#popup_holder {
    width: 100%;
    height: 100%;
    /*background-color: rgba(0, 0, 0, 0.65);*/
    position: absolute;
    z-index: 10000;
    display: none;
}

#popup_background {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 100001;
    position: fixed;
}

#chart-container.mirrorMode,
#chart-container-2.mirrorMode {
    float: left;
    width: 50% !important;
    display: block;
    overflow: hidden;
    /*height: auto !important;*/
}

#chart-container-2 {
    display: none;
}

#chart-container {
    width: 100%;
}

#popup {
    margin: auto;
    width: 50%;
    height: 90%;
    border: 1px solid #cdcdcd;
    background-color: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-top: 30px;
    z-index: 100002;
    position: fixed;
    top: 5%;
    left: 25%;
    overflow: auto;
    padding-bottom: 20px;
}

.openPopup {
    display: block !important;
}

#popup_selection_holder {
    width: 100%;
    height: 100%;
    /*background-color: rgba(0, 0, 0, 0.65);*/
    position: absolute;
    z-index: 10000;
    display: none;
}

#popup_selection_background {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 100001;
    position: fixed;
}

#popup_selection .sidebar_insert {
    padding: 20px;
}

#popup_selection {
    margin: auto;
    width: 90%;
    /*height: 850px;*/
    border: 1px solid #cdcdcd;
    background-color: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-top: 30px;
    z-index: 100002;
    top: 1%;
    left: 1%;
    height: 95%;
    overflow: auto;
    position: fixed;
}

.notifier {


    position: fixed;
    top: 10px;
    left: 5%;
    width: 90%;
    z-index: 100000;

}


.openSelectiePopup {
    display: block !important;
}

.graphOverlayRightClicker {
    position: relative;
    width: 500px;
    height: 300px;
    border: 1px solid #f00;
    z-index: 100;
    left: 0px;
    top: 0px;
    cursor: crosshair;
}

.grafiekOpties {
    z-index: 99;
}

.context_menu button:hover {
    color: #000;
}
.context_menu button {
    color: #666;
}
.context_menu {
    position: fixed;
    top: -190px;
    /*height: 90px;*/
    width: 260px;
    left: 240px;
    border: 1px solid #cdcdcd;
    background-color: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    display: none;
    padding: 5px;
    padding-bottom: 25px;
    padding-right: 9px;
    padding-left: 20px;
    z-index: 10000;
}

#popup_graph {
    position: fixed;
    width: auto;
    height: auto;
    top: 200px;
    left: 200px;
    display: none;
    border: 1px solid #cecece;
    background-color: #fff;
    z-index: 100000;
    cursor:move;
}

#inner_popup_graph {
    height: 100%;
    width: 100%;
}

.openGraphPopup {
    display: block!important;
}

#app {
    display: none;
}

#app.loaded {
    display: block;
}

#ms-selectie_uitgebreid > div {
    float: left;
    width: 250px;
    margin-right: 50px;
    height: 400px;
}
#ms-selectie_uitgebreid  .ms-list {
    border: 1px solid #cecece;
    height: 375px;
}


.icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px
}

.icon-bar+.icon-bar {
    margin-top: 4px
}

.icon-bar {
    background-color: #888
}

.top-bar {
    transform: rotate(0);
}
.middle-bar {
    opacity: 1;
}
.bottom-bar {
    transform: rotate(0);
}

.right {
    float: right;
}
.font20 {
    font-size: 20px;
}

.nIsNumberOfPeopleChecked {
    margin-top: 4px;
}

.icon-bar {
    width: 22px;
    transition: all 1s;
}
.crossed .top-bar {
    transform: rotate(45deg);
    transform-origin: 10% 10%;
}
.crossed .middle-bar {
    opacity: 0;
}
.crossed .bottom-bar {
    transform: rotate(-45deg);
    transform-origin: 10% 90%;
}

.sidebar, .main {
    transition: all 1s;
}

.small .sidebar {
    width: 46px;
    padding: 1px !important;
}

.small .sidebar .crossed {
    margin-top: 15px;
}

@-webkit-keyframes fadein {
    from { opacity: 0.2; }
    to { opacity: 0.6; }
}

@-moz-keyframes fadein {
    from { opacity: 0.2; }
    to { opacity: 0.6; }
}

@keyframes fadein {
    from { opacity: 0.2; }
    to { opacity: 0.6; }
}
.sidebar .waitNotice img {
    width: 30px;
    margin: 13px
}
.sidebar .waitNotice
{
    display: none;

    background-color: #dadada;
    padding: 5px;
    margin: 17px;
    border-radius: 5px;
}

.waitNoticeOrgChart img {
    width: 30px;
    margin: 13px
}
.waitNoticeOrgChart
{
    background-color: #dadada;
    padding: 5px;
    margin: 17px;
    border-radius: 5px;
}

.org_chart_sidebar {
    border: 1px solid #e7e7e7;
    border-top: 0px solid #e7e7e7;
    padding: 10px;
}

.sidebar_orgchart input,
.sidebar_orgchart select,
.org_chart_sidebar input {
    width: 100%;
    height: 25px;
}

#people_department {
    width: 100%;
    padding-left: 2px;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(206, 206, 206);
    overflow: auto;
    min-height: 25px;
}

.main_fullscreen {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 1000000;
    border: 1px solid #cecece;
    padding: 10px;
    margin: 10px;
    background-color: #fff;
    height: 100%;
    opacity: 1 !important;
    overflow: scroll;
}

.fullScreenLinks i {
    float: right;
    width: 45px;
    margin-left: 10px;
    margin-right: 10px;
    border-left: 1px solid #e7e7e7;
    padding-left: 25px;
    margin-top: 11px;
}

#org_chart_container .fullscreenOrgChart {
    position: fixed !important;
    top: 1px;
    left: 1px;
    width: 100%;
    height: 100% !important;
    z-index: 1000;
    background-color: #f5f5f5;
}

#org_chart_container .fullscreenOrgChart.mirrorMode {
    position: fixed !important;
    top: 1px;
    left: 1px;
    width: 49%;
    height: 100% !important;
    z-index: 1000;
    background-color: #f5f5f5;
}

#org_chart_container #chart-container-2.fullscreenOrgChart.mirrorMode {
    position: fixed !important;
    top: 1px;
    left: 50%;
    width: 49%;
    height: 100% !important;
    z-index: 1000;
    background-color: #f5f5f5;
}



#fullScreenOrgChartHolder.big {
    z-index: 10000;
    position: fixed;
    right: 10px;
    top: 70px;
}

#fullScreenOrgChartHolder {
    float: right;
}

#editForm {
    display: block;
    padding: 20px;

    width: 350px;
    background-color: rgb(255, 255, 255);
    z-index: 1029;
    right: 50px;
    position: absolute;
    border: 1px solid #cCC;
    top: 40px;

}

.sidebar.loading .waitNotice
{

    display: block;
    /*-webkit-animation: fadein 1s ease-in alternate infinite;*/
    /*-moz-animation: fadein 1s ease-in alternate infinite;*/
    /*animation: fadein 1s ease-in alternate infinite;*/
}

.small .form-vertical {
    display: none;
}

.small .main {
    width: 95%;
    margin-left: 47px;
}

#org_chart_container svg .Zonder_afdelingshoofd text {
    /*paint-order: stroke;*/
    font-size: 20px;
    /*color: #fff;*/
    /*stroke: #000000;*/
    /*stroke-width: 3px;*/
    /*stroke-linecap: butt;*/
    /*stroke-linejoin: miter;*/
    fill: #000;
}
#org_chart_container svg .Afdelingshoofd_met_team text {
    paint-order: stroke;
    font-size: 20px;
    color: #fff;
    fill: #ececec;
    stroke: #000000;
    stroke-width: 3px;
    stroke-linecap: butt;
    stroke-linejoin: miter;
}
#org_chart_container svg .Afdelingshoofd_zonder_team text {
    paint-order: stroke;
    font-size: 20px;
    color: #fff;
    stroke: #000000;
    stroke-width: 3px;
    stroke-linecap: butt;
    stroke-linejoin: miter;
    fill: #ffffff;
}

#org_chart_container {
    background-color: #f5f5f5;
    padding: 10px;
    padding-bottom: 50px;
    border-radius: 15px;
}

#weerstand_pie {
    opacity: 0.1;
}
#weerstand_pie.display {
    opacity: 1;
}

#energiebalans_graph {
    opacity: 0.1;
}
#energiebalans_graph.display {
    opacity: 1;
}

li.hide {
    display: none;
}

.sidebar label {
    padding-left: 0px;
    padding-bottom: 5px;
    padding-top: 5px;
}

@keyframes example {
    from {transform: rotate(0deg); /* Equal to rotateZ(45deg) */}
    to {transform: rotate(360deg);}
}

/* The element to apply the animation to */
.sidebar label svg {
    position: relative;
    top: 5px;
    left: 5px;
}

.sidebar label svg:hover {
    animation-name: example;
    animation-duration: 1s;
    animation-iteration-count:infinite;
}

.sidebar_inset {
    float: left;
    border: 1px solid #f5f5f5;
    background-color: #fff;
    height: 100%;
    /* margin: 0px; */
    margin-top: -1px;
    width: 100%;
}

div.bold {
    font-weight:600;
    color: #000;
}

@keyframes flickerAnimation {
    0%   { opacity:1; }
    50%  { opacity:0.6; }
    100% { opacity:1; }
}
@-o-keyframes flickerAnimation{
    0%   { opacity:1; }
    50%  { opacity:0.6; }
    100% { opacity:1; }
}
@-moz-keyframes flickerAnimation{
    0%   { opacity:1; }
    50%  { opacity:0.6; }
    100% { opacity:1; }
}
@-webkit-keyframes flickerAnimation{
    0%   { opacity:1; }
    50%  { opacity:0.6; }
    100% { opacity:1; }
}
.animate-flicker {
    -webkit-animation: flickerAnimation 1s infinite;
    -moz-animation: flickerAnimation 1s infinite;
    -o-animation: flickerAnimation 1s infinite;
    animation: flickerAnimation 1s infinite;
}

.graphTop {
    border-right: 1px solid #e7e7e7;
    /*margin-top: 20px;*/
    padding-bottom: 15px;
    min-width: 405px;
}

.graphTop:last-child {
    border: 0px solid;
}


.hide {
    display: none;
}

#show_filter span {
    float: left;
    margin-top: 9px;
    margin-right: 10px;
    text-transform: capitalize;
}

.graphPlaceholder > div {

    text-align: center;
    height: 315px;

}

.graphPlaceholder img {
    margin-left: auto;
    margin-right: auto;
    opacity: 0.08;
    width: 70%;
}
.graphTitles h2 {
    font-size: 24px;
    text-align: center;
}

#expressie_pie, #weerstand_pie {
    width: 400px;
    height: 300px;

    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1800px) {


    #expressie_pie, #weerstand_pie {
        /*width: 250px;*/
        /*height: 200px;*/

        margin-left: auto;
        margin-right: auto;
    }

}

.nav-tabs>li>a:hover {
    background-color: #efefef;
}
.nav-tabs>li.active>a {
    background-color: #e6e6e6
}

.login_screen_holder {
    position: absolute;
    background-color: rgba(0,0,0,0.5);
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 10000000;
}

.mt-2 {
    margin-top: 20px;
}

.login_screen .button {
    background-color: #cecece;
}
.login_screen h1 {
    margin-top: 0px;
}
.login_screen {
    margin-left: auto;
    margin-right: auto;
    width: 390px;
    margin-top: 100px;
    background-color: #fff;
    padding: 20px;
    border-radius: 4px;
    height: 320px;
}

.cover_fit {
    object-fit: contain;
    width: 99%;
    height: 99%;
}