﻿/*Now the CSS*/
* {
    margin: 0;
    padding: 0;
}

.tree ul {
    padding-top: 20px;
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.tree li {
    float: left;
    text-align: center;
    list-style-type: none;
    position: relative;
    padding: 20px 5px 0 5px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

    /*We will use ::before and ::after to draw the connectors*/

    .tree li::before, .tree li::after {
        content: '';
        position: absolute;
        top: 0;
        right: 50%;
        border-top: 1px solid #ccc;
        width: 50%;
        height: 20px;
    }

    .tree li::after {
        right: auto;
        left: 50%;
        border-left: 1px solid #ccc;
    }

    /*We need to remove left-right connectors from elements without 
any siblings*/
    .tree li:only-child::after, .tree li:only-child::before {
        display: none;
    }

    /*Remove space from the top of single children*/
    .tree li:only-child {
        padding-top: 0;
    }

    /*Remove left connector from first child and 
right connector from last child*/
    .tree li:first-child::before, .tree li:last-child::after {
        border: 0 none;
    }
    /*Adding back the vertical connector to the last nodes*/
    .tree li:last-child::before {
        border-right: 1px solid #ccc;
        border-radius: 0 5px 0 0;
        -webkit-border-radius: 0 5px 0 0;
        -moz-border-radius: 0 5px 0 0;
    }

    .tree li:first-child::after {
        border-radius: 5px 0 0 0;
        -webkit-border-radius: 5px 0 0 0;
        -moz-border-radius: 5px 0 0 0;
    }

/*Time to add downward connectors from parents*/
.tree ul ul::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    border-left: 1px solid #ccc;
    width: 0;
    height: 20px;
}

.tree li a {
    border: 1px solid #ccc;
    padding-top: 6%;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    width: 90%;
    height: 120px;
    text-decoration: none;
    color: #666;
    font-family: inherit;
    font-size: 12px;
    display: inline-block;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

    /*Time for some hover effects*/
    /*We will apply the hover effect the the lineage of the element also*/
    .tree li a:hover, .tree li a:hover + ul li a {
        background: #c8e4f8;
        color: #000;
        border: 1px solid #94a0b4;
    }
        /*Connector styles on hover*/
        .tree li a:hover + ul li::after,
        .tree li a:hover + ul li::before,
        .tree li a:hover + ul::before,
        .tree li a:hover + ul ul::before {
            border-color: #94a0b4;
        }

/*Thats all. I hope you enjoyed it.
Thanks :)*/



/* YENÄ° tasarÄ±m */



.teskilatsemasi .content {
    font-size: 14px;
    position: relative;
}

    .teskilatsemasi .content * {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

.org-chart {
    display: block;
    clear: both;
    margin-bottom: 30px;
    position: relative;
    /**
  * For IE 6/7 only
  * Include this rule to trigger hasLayout and contain floats.
  */
    /* Box colors */
    /* 1 column */
    /* 2 column */
    /* 3 column */
    /* DEPARTMENTS COLUMNs */
}

    .org-chart.cf:before, .org-chart.cf:after {
        content: " ";
        /* 1 */
        display: table;
        /* 2 */
    }

    .org-chart.cf:after {
        clear: both;
    }

    .org-chart.cf {
        *zoom: 1;
    }

    .org-chart ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

        .org-chart ul li {
            position: relative;
        }

            .org-chart ul li span {
                display: block;
                border: 3px solid #dcdcdc;
                text-align: center;
                overflow: hidden;
                text-decoration: none;
                color: #252525;
                font-size: 12px;
                box-shadow: 4px 4px 9px -4px rgba(0, 0, 0, 0.4);
                -webkit-transition: all linear .1s;
                -moz-transition: all linear .1s;
                transition: all linear .1s;
                background: #fff;
                padding: 4px;
            }

    .org-chart .lvl-b {
        background: #e21e26;
        color: #fff;
        /* min-height:108px;	 */
    }

    .org-chart .board {
        width: 100%;
        margin: 0 auto;
        display: block;
        position: relative;
    }
    /*.org-chart .board:before {*/
    /*  content: "";*/
    /*  display: block;*/
    /*  position: absolute;*/
    /*  height: 600px;*/
    /*  width: 0px;*/
    /*  border-left: 2px solid #dcdcdc;*/
    /*  margin-left: 49%;*/
    /*  top: 15px;*/
    /*}*/
    .org-chart ul.columnOne {
        height: 90px;
        position: relative;
        width: 100%;
        display: block;
        clear: both;
    }

        .org-chart ul.columnOne li {
            width: 30%;
            margin: 0px auto;
            top: 20px;
        }

    .org-chart ul.columnTwo {
        position: relative;
        width: 100%;
        display: block;
        height: 90px;
        clear: both;
    }

        .org-chart ul.columnTwo li:first-child {
            width: 30%;
            float: left;
        }

        .org-chart ul.columnTwo li {
            width: 30%;
            float: right;
        }

        .org-chart ul.columnTwo:before {
            content: "";
            display: block;
            position: relative;
            width: 80%;
            height: 10px;
            border-top: 2px solid #dcdcdc;
            margin: 0 auto;
            top: 40px;
        }

    .org-chart ul.columnThree {
        position: relative;
        width: 100%;
        display: block;
        clear: both;
    }

        .org-chart ul.columnThree li:first-child {
            width: 30%;
            float: left;
            margin-left: 0;
        }

        .org-chart ul.columnThree li {
            width: 30%;
            margin-left: 5%;
            float: left;
        }

            .org-chart ul.columnThree li:last-child {
                width: 30%;
                float: right;
                margin-left: 0;
            }

        .org-chart ul.columnThree:before {
            content: "";
            display: block;
            position: relative;
            width: 80%;
            height: 10px;
            border-top: 2px solid #dcdcdc;
            margin: 0 auto;
            top: 40px;
        }




    .org-chart .departments {
        width: 100%;
        display: block;
        clear: both;
        margin: 0 auto;
    }

    .org-chart .department2 {
        width: 29%;
    }


    .org-chart .departments:before {
        content: "";
        display: block;
        width: 100%;
        height: 22px;
        /*border-top: 2px solid #dcdcdc;*/
        /*border-left: 2px solid #dcdcdc;*/
        /*border-right: 2px solid #dcdcdc;*/
        margin: 0 auto;
        top: 0px;
    }

    .org-chart .department {
        border-left: 2px solid #dcdcdc;
        width: 100%;
        float: left;
        margin: 0px 2%;
    }

        .org-chart .department:after {
            content: "";
            position: absolute;
            display: block;
            width: 10px;
            height: 22px;
            border-left: 2px solid #dcdcdc;
            left: 50%;
            top: -22px;
        }

        .org-chart .department.central {
        }

            .org-chart .department.central:after {
                display: none;
            }

        .org-chart .department span {
            border-left: 1px solid #dcdcdc;
            padding: 15px;
            font-size: 1.1em;
        }

        .org-chart .department li {
            padding-left: 25px;
            border-bottom: 2px solid #dcdcdc;
            height: 80px;
            margin-top: 15px;
        }


            .org-chart .department li span:hover {
                background-color: #dcdcdc;
            }


            .org-chart .department li span {
                background: #fff;
                top: 50px;
                position: absolute;
                z-index: 1;
                width: 95%;
                height: auto;
                vertical-align: middle;
                right: 0px;
                line-height: 14px;
                border: 3px solid #dcdcdc;
                font-size: 0.9em;
            }

        .org-chart .department .sections {
            margin-top: -20px;
        }

/* MEDIA QUERIES */
@media all and (max-width: 767px) {
    .org-chart .board {
        margin: 0px;
        width: 100%;
    }

    .org-chart .departments:before {
        border: none;
    }

    .org-chart .department {
        float: none;
        width: 100%;
        margin-left: 0;
        margin-bottom: 40px;
    }

        .org-chart .department:before {
            content: "";
            display: block;
            position: absolute;
            width: 15px;
            height: 60px;
            border-left: 2px solid #dcdcdc;
            z-index: 1;
            top: -45px;
            left: 0%;
            margin-left: -2px;
        }

        .org-chart .department:after {
            display: none;
        }

        .org-chart .department:first-child:before {
            display: none;
        }
}
/*--------- TO BE REMOVED FROM YOUR CSS --*/
/* this is just to display the behaviour of responsive on codepen */
.responsive-content {
    width: 767px;
    margin: 0px auto;
}

    .responsive-content .org-chart .board {
        margin: 0px;
        width: 100%;
    }

    .responsive-content .org-chart .departments:before {
        border: none;
    }

    .responsive-content .org-chart .department {
        float: none;
        width: 100%;
        margin-left: 0;
        margin-bottom: 40px;
    }

        .responsive-content .org-chart .department:before {
            content: "";
            display: block;
            position: absolute;
            width: 15px;
            height: 60px;
            border-left: 2px solid #dcdcdc;
            z-index: 1;
            top: -45px;
            left: 0%;
            margin-left: -2px;
        }

        .responsive-content .org-chart .department:after {
            display: none;
        }

        .responsive-content .org-chart .department:first-child:before {
            display: none;
        }

.board ul a {
    text-decoration: none;
}

    .board ul a li span:hover {
        background-color: #dcdcdc;
    }

.department a {
    text-decoration: none;
}

.org-chart .department span {
    padding: 7px;
    width: calc(100% + 2px);
    margin-left: -2px;
}

.main .page .teskilatsemasi ul li {
    list-style-type: none;
    margin-left: 0px;
    min-height: 65px;
    height: unset;
}

.teskilatsemasi {
    padding: 3%;
    margin-top: 30px;
    margin-bottom: 50px;
}

.org-chart:first-child .board:after {
    display: none;
}

.org-chart .board {
    min-height: 2em;
}

.board-content {
    width: 100%;
    background: #efefef;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    min-height: 2em;
    width: 100%;
}

.department .board-content {
    width: calc(100% + 2px);
    margin-left: -2px;
}
    .sections .section a span {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border: 1px solid #dcdcdc;
    font-size: 0.75em;
    padding: 8px;
}

.board-content-descp {
    padding-top: 0.7em;
    padding-bottom: 1.2em;
    color: #555555 !important;
}

.main .page > a, .main .page li a, .main .page em a, .main .page p a {
    text-decoration: none !important;
    color: #555555;
    font-size: 1.1em;
}


.org-chart .board:after {
    content: "";
    position: absolute;
    display: block;
    width: 10px;
    height: 25px;
    border-left: 2px solid #d5d5d5;
    left: 50%;
    top: -25px;
}

.org-chart .department:after {
    border-left: 2px solid #d5d5d5;
}

.org-chart .department {
    border-left: 2px solid #d5d5d5;
}

    .org-chart .department li {
        border-bottom: 2px solid #d5d5d5;
    }

.org-chart {
    margin-bottom: unset !important;
}

.departments .department span strong {
    font-weight: 500;
    color: #fff;
    font-size: 0.8em !important;
}

.main .page strong {
    font-weight: 500;
    color: #fff;
    font-size: 1.05em !important;
}

.org-chart .department li {
    margin-top: 0px;
}

.org-chart .department {
    border-top-left-radius: 12px;
}

.org-chart ul li span {
    border: unset;
    box-shadow: 2px 4px 5px -6px rgba(0, 0, 0, 0.4);
    background: #253065;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgb(16, 165, 222);
    background: linear-gradient(90deg, rgba(16, 165, 222, 1) 0%, rgba(43, 49, 101, 1) 100%);
}