/*
 * 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-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 google-visualization-orgchart-node-medium {
        padding-top: 35px !important;
        height: 100% !important;
        border: 3px solid #675959 !important;
        box-shadow: -10px 13px 18px #675959 !important;
        text-shadow: -2px 1px 10px black !important;
        background-size: 100% !important;
        transition: all 1s !important;
    }

        .orgchart google-visualization-orgchart-node:first-child {
            margin-top: 2px;
        }

    .orgchart .google-visualization-orgchart-node > td::before {
        content: '';
        border: 1px solid rgba(217, 83, 79, 0.8);
    }

    .orgchart .google-visualization-orgchart-node > 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 google-visualization-orgchart-node > li {
        position: relative;
    }

        .orgchart google-visualization-orgchart-node > li::before,
        .orgchart google-visualization-orgchart-node > 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 google-visualization-orgchart-node > li::before {
            top: -4px;
            height: 30px;
            width: 11px;
        }

        .orgchart google-visualization-orgchart-node > li::after {
            top: 1px;
            height: 100%;
        }

        .orgchart google-visualization-orgchart-node > li:first-child::after {
            box-sizing: border-box;
            top: 24px;
            width: 11px;
            border-width: 2px 0 0 2px;
        }

        .orgchart google-visualization-orgchart-node > 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:nth-child(3) td {
        box-sizing: border-box;
        height: 20px;
    }

    .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 {
        box-sizing: border-box;
        display: inline-block;
        position: relative;
        margin: 0;
        padding: 3px;
        border: 2px dashed transparent;
        text-align: center;
        width: 130px;
    }

    .orgchart.l2r .node, .orgchart.r2l .node {
        width: 50px;
        height: 130px;
    }

    .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 {
        background-color: rgba(238, 217, 54, 0.5);
        transition: .5s;
        cursor: default;
        z-index: 20;
    }

    .orgchart .node.focused {
        background-color: rgba(238, 217, 54, 0.5);
    }

    .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(217, 83, 79, 0.8);
        color: #fff;
        border-radius: 4px 4px 0 0;
    }

    .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 {
        box-sizing: border-box;
        width: 100%;
        height: 20px;
        font-size: 11px;
        line-height: 18px;
        border: 1px solid rgba(217, 83, 79, 0.8);
        border-radius: 0 0 4px 4px;
        text-align: center;
        background-color: #fff;
        color: #333;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .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;
        transition: .2s;
    }

    .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 .node {
    transition: transform 0.3s, opacity 0.3s;
}

.orgchart .slide-down {
    opacity: 0;
    transform: translateY(40px);
}

.orgchart.l2r .node.slide-down, .orgchart.r2l .node.slide-down {
    transform: translateY(130px);
}

.orgchart .slide-up {
    opacity: 0;
    transform: translateY(-40px);
}

.orgchart.l2r .node.slide-up, .orgchart.r2l .node.slide-up {
    transform: translateY(-130px);
}

.orgchart .slide-right {
    opacity: 0;
    transform: translateX(130px);
}

.orgchart.l2r .node.slide-right, .orgchart.r2l .node.slide-right {
    transform: translateX(40px);
}

.orgchart .slide-left {
    opacity: 0;
    transform: translateX(-130px);
}

.orgchart.l2r .node.slide-left, .orgchart.r2l .node.slide-left {
    transform: translateX(-40px);
}


/* Venky */

.bg-imge {
    min-height: 100px;
    min-width: 75px;
    height: 130px;
    width: 100px;
    color: black;
    /*text-shadow: 0px 0px 3px black;*/
    background-size: 75px !important;
    transition: all 1s;
}

.cursor-pointer, cursor-pointer * {
    cursor: pointer !important;
}

.bg-imge:hover img {
    box-shadow: 1px 1px 20px 5px #675959;
    transform: scale(1.2,1.2);
    transition: all 1s;
}

#chart .google-visualization-orgchart-nodesel, .google-visualization-orgchart-node {
    border: 2px solid transparent !important;
    background-color: transparent !important;
    background: transparent !important;
    -webkit-box-shadow: rgba(0, 0, 0, 0) 3px 3px 3px !important;
}

#chart .google-visualization-orgchart-table * {
    margin: auto !important;
    padding: 0 !important;
}

#chart .google-visualization-orgchart-table .bg-imge label {
    font-size: 10px;
    height: 15px;
    overflow: hidden;
    font-weight: bold;
}

#chart {
    margin: 0;
    margin-top: -48px;
}

    #chart table {
        margin-top: -30px;
    }

@media (min-width: 992px) {
    .adCenter {
        margin-left: -15px;
    }

    .Modal60 {
        width: 60%;
    }
}

@media (max-width:400px) {
    .sm-full-width {
        width: 100%;
    }
}

.pdftable th {
    padding-top: 15px;
    padding-bottom: 15px;
}

.pdftable {
    border: 2px solid #6d5cae;
}


.pdfDiv {
    border: 2px solid black;
    border-bottom: 0;
    margin-bottom: -10px;
    padding-bottom: 12px;
}

.underline {
    text-decoration: underline !important;
}

.font400 {
    font-weight: 400;
}


textarea:disabled {
    background: white !important;
}



*::-webkit-scrollbar-track {
    border: 1px solid black;
    background-color: #E6E6E6;
    width: 5px;
    height: 5px;
}

*::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: #E6E6E6;
}

*::-webkit-scrollbar-thumb {
    background-color: #6d5cae;
}



.dashboard-div {
    padding: 26px 13px;
    border: 2px solid black;
    border-radius: 5px;
}


.table > thead:first-child > tr:first-child > th {
    border-top: 1px solid !important;
}

.table .checkbox {
    margin: 0 !important;
}

.table > thead > tr > th {
    /*padding: 15px !important;*/
    border: 1px solid !important;
}

.table thead tr th:first-child {
    padding-left: 5px !important;
}

em {
    color: red;
}

.input-group-addon {
    display: none;
}

.google-visualization-orgchart-node {
    position: relative !important;
}

.tip {
    display: none;
}

.left-title {
    width: 50%;
    float: left;
}

.title-right {
    width: 50%;
    float: right;
}

.cursor-pointer:hover .tip {
    display: block !important;
    position: absolute;
    width: 150px;
    top: 90px;
    left: -74px;
    background: white;
    border: 2px solid;
    border-radius: 5px;
}