﻿/* .dx-context-menu .dx-menu-items-container {  
    height: 100%;  
    overflow-y: auto;  
  } */


.dx-menu {
    font-size: 1.5rem;
    font-weight: 400;
}

.dx-menu-item {
    border: 2px solid transparent;
    /*font-size: 1rem;
    font-weight: 400;*/
}

.dx-menu-item.dx-state-hover {
    background-color: transparent;
    color: #FF6000;
    border-bottom: 2px solid #FF6000;
    /* border-top: 1px solid red; */
}



.dx-popup-bottom.dx-toolbar {
    background-color: #fcfcfc;
    border-top: 1px solid #eee;
    padding: 12px;
}

.dx-popup-content {
    padding: 12px;
}




html {
    font-size: 62.5%;
}

body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', 'Helvetica Neue', 'Segoe UI', Helvetica, Verdana, sans-serif;
    background-color: #fff;
    color: #333;
    font-size: 1.4rem;
}


#body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

#header, #nav, #content, #footer {
    padding: 0;
    margin: 0;
    width: 100%;
    background-color: transparent;
}

#nav {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

#content a {
    text-decoration: none;
    color: #FF6000;
    transition: all ease-in 0.5s;
}

.base {
    max-width: 1280px;
    min-width: 200px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    background-color: transparent;
}

a {
    text-decoration: none;
}





#load-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    /* background-color: rgba(0,0,0, 0.4); */
    color: #333;
    z-index: 9999;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    
    /*font-size: 1.0em;*/
}

/* #load-panel .spinner-area{
    box-shadow: 0 0 120px 10px rgba(255, 255, 255, 0.4);
} */


#load-panel > *{
    margin-bottom: 16px;
}


    #search-panel {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 9998;
        padding: 25px;
    }

    #search-panel .text-box {
        margin-right: 0px;
        font-size: 1.8rem;
    }

   
    #search-panel .search-area {
        position: relative;
        top: 20%;
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
        padding: 0px;
        border-radius: 5px;
        background-color: transparent !important;
        box-shadow: 0 0 120px 10px rgba(255, 255, 255, 0.4);
    }

    #search-panel .close-button {
        position: absolute;
        top: 20px;
        right: 20px;
    }


    .highlight {
        background-color: yellow;
    }
    
    .file-word-color{
        color: #225d9d !important;
    }
    
    .file-excel-color{
        color: #007233 !important;
    }
    
    .file-powerpoint-color{
        color: #cb4a32 !important;
    }
    .file-pdf-color{
        color: #bb0706 !important;
    }
    
    .file-archive-color{
        color: #9d48a1 !important;
    }
    
    .file-color{
        color: #888 !important;
    }
    
    .base-color {
        color: #FF6000;
    }


    .scroll-top {
        display:flex;
        position: fixed;
        right: 30px;
        bottom: 30px;
        width: auto ;
        height: auto;
        
        /* width: 80px; */
        
        text-align: center;
        /*vertical-align: middle;
        color: white; */

        z-index: 32768;
        font-size: 10pt;
        overflow: hidden;
        
    }
    
        .scroll-top a {
            box-sizing: border-box;
            display: block;
            height: 68px;
            padding: 12px;
            border-radius: 34px;
            border: 2px solid #FF6000;
            
            cursor: pointer;
            color: white;
            background-color: #ff6000; 
            
            transition: all ease-in-out 0.5s;
        }
    
            .scroll-top a:hover {
                color: #f60;
                background-color: white; 
            }


    .page-not-found-404 {
        background-image: url('../images/404.jpg');
        background-position: center center;
        background-size: cover;
    
        /*height: 100%;*/
        width: auto;
        display: flex;
        align-content: center;
        flex-flow: column wrap;
        align-items: center;
        padding: 85px 20px;
        margin: 0;
        color: white;
        overflow: hidden;
    }
        .page-not-found-404 .caption {
            font-size: 3.5rem;
        }
    
        .page-not-found-404 .code {
            font-size: 14rem;
            margin-bottom: 16px;
        }
    
        .page-not-found-404 .description {
            font-size: 1.6rem;
            margin-bottom: 32px;
        }



.header-top-container {
    box-sizing: border-box;
    padding: 0 16px;
    width: 100%;
    background-color: #42474c;
}

    .header-top-container .bar {
        height: 44px;
        display: flex;
        flex-flow: row wrap;
        color: #999;
        font-weight: 500;
    }


        .header-top-container .bar .left {
            flex: none;
            background-color: transparent;
            display: flex;
            flex-flow: row nowrap;
            justify-content: flex-start;
            align-items: center;
        }


            .header-top-container .bar .left .item {
                margin-right: 12px;
            }

                .header-top-container .bar .left .item i {
                    color: white;
                    margin-right: 4px;
                }


                .header-top-container .bar .left .item a {
                    cursor: pointer;
                    color: #999;
                    text-decoration: none;
                    transition: all ease-in-out 0.5s;
                }

                    .header-top-container .bar .left .item a:hover {
                        color: white;
                    }


        .header-top-container .bar .right {
            flex: auto;
            display: flex;
            flex-flow: row nowrap;
            justify-content: flex-end;
            align-items: center;
        }

            .header-top-container .bar .right .item {
                margin-left: 6px;
            }

                .header-top-container .bar .right .item a {
                    cursor: pointer;
                    color: #999;
                    text-decoration: none;
                    transition: all ease-in-out 0.5s;
                }

                    .header-top-container .bar .right .item a:hover {
                        color: white;
                    }


                .header-top-container .bar .right .item .lang .separator {
                    padding: 2px 6px;
                    color: white;
                    color: #999;
                }

                .header-top-container .bar .right .item .lang .lang-passive {
                    color: #eee;
                    font-weight: 300;
                }

                .header-top-container .bar .right .item .lang .lang-active {
                    cursor: pointer;
                    text-decoration: none;
                    transition: all ease-in-out 0.5s;
                }

                    .header-top-container .bar .right .item .lang .lang-active:hover {
                        color: white;
                    }



.nav-container {
    box-sizing: border-box;
    padding: 0 16px;
    width: 100%;
    height: auto;
    background-color: #fff;
    box-shadow: 0 5px 20px 5px rgba(238,238,238, 0.3); /*#eee*/
    border-bottom: 1px solid #eee;
}

    .nav-container .bar {
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        justify-content: space-between;
    }

        .nav-container .bar .left {
            padding: 6px 0;
            flex: none;
            /* margin-top: -40px; */
        }

        
        .nav-container .bar .right {
            padding: 2px 0;
            flex: none;
            width: calc(100% - 80px);/*DOKUNMA*/
            margin-left: auto;/*DOKUNMA*/
            display: flex; /*DOKUNMA*/
            flex-flow: row nowrap; /*DOKUNMA*/
            justify-content: flex-end;/*DOKUNMA*/
        }



#content {
    width: 100%;
    background-color: transparent;
}

    #content .content-view {
        min-height: 400px;
        width: 100%;
        background-color: #fdfdfd;
    }




    .page-container {
        margin: 0;
        padding: 0 16px;
        box-sizing: border-box;
        width: 100%;
        
    }
    
            .page-container .top .header {
                background-color: white;
                background-color: #fafafa;
                box-shadow: 0 3px 20px 5px rgba(238,238,238, 0.3); /*#eee*/
                border-bottom: 1px solid #eee;
            }
    
                .page-container .top .header .bar {
                    padding: 16px 0;
                }
    
                    .page-container .top .header .bar .route {
                        font-size: 1.4rem;
                        /* margin-bottom: 16px; */
                    }
    
                        .page-container .top .header .bar .route a {
                            color: #e27d60 !important;
                            text-decoration: none !important;
                            transition: all ease-in-out 0.5s;
                        }
    
                        .page-container .top .header .bar .route a i {
                            margin-right: 4px;
                        }
    
                            .page-container .top .header .bar .route a:visited,
                            .page-container .top .header .bar .route a:hover {
                                color: #FF6000 !important;
                            }
    
    
                            .page-container .top .header .bar .route .item {
                                color: #FF6000;
                            }
    
                        .page-container .top .header .bar .route .separator {
                            color: #bbb;
                            font-size: 1.4rem;
                            padding: 0 6px;
                        }
    
                        .page-container .top .header .bar .route .passive-item {
                            color: #666;
                        }
    
    
                    .page-container .top .header .bar .caption {
                        color: #FF6000;
                        font-size: 3rem;
                        font-weight: 500;
                    }
    
        .page-container .content {
            margin: 16px auto;

            width: 100%;
            border-radius: 4px;
            background-color: white;
            border: 1px solid #eee;
            padding: 16px;
            box-sizing: border-box; 
        }
    
      
        .page-container .sayfa-baslik {
            color: #FF6000;
            font-size: 3.0rem;
            font-weight: 500;
            margin-bottom: 16px;
            width: 100%;
        }
    
        .page-container .sayfa-alt-baslik {
            color: #888;
            font-size: 1.5rem;
            line-height: 150%;
            text-align: justify;
            margin-bottom: 16px;
            color: #111111;
            font-weight: 600;
        }
            /* .page-container .content .left {
                width: 280px;
                margin: 0 8px;
                border-radius: 4px;
                background-color: white;
                border: 1px solid #eee;
                padding: 16px;
                box-sizing: border-box;
            } */
    
    
    
            /* .page-container .content .right {
                width: 100%;
                border-radius: 4px;
                background-color: white;
                border: 1px solid #eee;
                padding: 16px;
                
                box-sizing: border-box;
                
            } */
    
            .page-container p {
                line-height: 150%;
                text-align: justify;
                margin-bottom: 6px;
                color: #111;
            }
            
            .page-container  ul,
            .page-container  ol {
                list-style-position: outside;
                padding-left: 14px;
                margin-left: 0px;
            }
            
            .page-container  ul {
                list-style-image: url(../images/li-square.gif);
            }
            
            .page-container  ol {
                list-style-type: decimal;
                text-indent: 10px;
            }
            
                .page-container  ul li,
                .page-container  ol li {
                    line-height: 140%;
                    text-align: justify;
                    margin-bottom: 6px;
                    margin-left: 0;
                }
            
    
                .page-container h1, 
                .page-container h2,
                .page-container h3, 
                .page-container h4,
                .page-container h5{
                    color: #ff6000;
                    margin-top: 16px;
                    margin-bottom: 16px;
                }
    
                .page-container h1,
                .page-container h1{
                    font-size: 1.6rem;
                }
    
                .page-container h1{
                    font-weight: 600;
                }
        
                .page-container h2{
                    font-weight: 400;
                }
        
        
                .page-container h3, 
                .page-container h4,
                .page-container h5{
                    font-size: 1.4rem;
                }
        
                .page-container h3{
                    font-weight: 600;
                }
        
                .page-container h4{
                    font-weight: 400;
                }
                .page-container h5{
                    font-weight: 300;
                } 




.footer-container {
    width: 100%;
    background-color: #ffffff;
}


    /*QUICKLINKS*/

    .footer-container .links-content {
        box-sizing: border-box;
        padding: 32px 0px;
        background-color: #111;
        color: #aaa;
        /* border: 1px solid red; */
    }

        .footer-container .links-content .links {
            display: flex;
            flex-flow: row wrap;
            align-content: flex-start;
            justify-content: space-between;
        }


            .footer-container .links-content .links .group {
                flex: 1 1 25%;
                width: 25%;
                padding: 16px;
                display: flex;
                flex-flow: column nowrap;
                box-sizing: border-box;
                
            }

                .footer-container .links-content .links .group .caption {
                    font-size: 1.6rem;
                    color: #fff;
                    margin-bottom: 20px;
                }

                .footer-container .links-content .links .group .link {
                    font-size: 1.4rem;
                    margin-bottom: 12px;
                    display: flex;
                    flex-flow: row nowrap;
                }

                    .footer-container .links-content .links .group .link .icon {
                        color: #FF6000;
                        margin-right: 8px;
                    }

                    .footer-container .links-content .links .group .link a,
                    .footer-container .links-content .links .group .link a:visited {
                        color: #aaa;
                        text-decoration: none;
                        transition: color ease 0.5s;
                        /* display: flex;
                        flex-flow: row nowrap;
                        justify-content: flex-start;
                        align-items: baseline; */
                    }

                        .footer-container .links-content .links .group .link a:hover,
                        .footer-container .links-content .links .group .link a:active {
                            color: #FF6000;
                            text-shadow: 0 0 20px rgba(0,0,0, 0.8);
                        }




    /*COPYRIGHT*/

    .footer-container .copyright-content {
        font-size: 1.4rem;
        box-sizing: border-box;
        padding: 16px 16px;
        width: 100%;
        background-color: #222;
        color: #ccc;
    }

        .footer-container .copyright-content .copyright {
            display: flex;
            flex-flow: row wrap;
            align-items: center;
            align-content: center;
            justify-content: space-between;
        }

            .footer-container .copyright-content .copyright .item {
                flex: 1 1;
            }

                .footer-container .copyright-content .copyright .item:nth-of-type(2) {
                    text-align: center;
                }

                .footer-container .copyright-content .copyright .item a {
                    color: #ccc;
                    text-decoration: none;
                    transition: color ease-in-out 0.5s;
                }

                    .footer-container .copyright-content .copyright .item a:hover {
                        color: #fff;
                        /*color: #FF6000;*/
                    }

            .footer-container .copyright-content .copyright .social {
                display: flex;
                flex-flow: row wrap;
                align-items: center;
                align-content: center;
                justify-content: flex-end;
            }

                .footer-container .copyright-content .copyright .social a {
                    margin: 4px;
                }







.map-container {
    border: 1px solid #eee;
    overflow: hidden;
}







           



    .view-animate.ng-enter, .view-animate.ng-leave {
        transition: all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s;
        transition: all ease-in-out 0.5s;
    }

        .view-animate.ng-enter, .view-animate.ng-leave.ng-leave-active {
            opacity: 0;
            height: 0;
            /*display: none;*/
        }

            .view-animate.ng-leave, .view-animate.ng-enter.ng-enter-active {
                opacity: 1;
                height: 100%;
                /*display:block;*/
            }

/*.view-animate.ng-enter, .view-animate.ng-leave {
        transition: all cubic-bezier(0.250, 0.460, 0.450, 0.940) 1.5s;
        display: block;
        width: 100%;
        border-left: 1px solid black;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 10px;
    }

    .view-animate.ng-enter {
        left: 100%;
    }

        .view-animate.ng-enter.ng-enter-active {
            left: 0;
        }

    .view-animate.ng-leave.ng-leave-active {
        left: -100%;
    }*/










.baskanlar-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-content: stretch;
    
}


    .baskanlar-container .baskan {
        /*max-width: 25%;*/ /*todo*/
        min-width: 120px;
        flex: 1 1 20%;
        height: auto;
        box-sizing: border-box;
        padding: 5px;
        border: 0px solid orange;
        display: flex;
        flex-flow: column wrap;
        align-items: center;
        /*justify-content: flex-start;*/
    }


        .baskanlar-container .baskan .foto {
            border: 1px solid #ddd;
            border-radius: 5px;
            width: 120px;
            height: 160px;
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        .baskanlar-container .baskan .ad-soyad {
            color: #FF6000;
            padding: 4px;
            font-weight: 600;
            text-align: center;
        }

        .baskanlar-container .baskan .donem {
            padding: 2px;
            color: #555;
            text-align: center;
        }








.member-search-box {
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 16px;
}

    .member-search-box .item {
        flex: none;
        margin-right: 2px;
    }





.committee-member {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
}

    .committee-member .img {
        height: 60px;
        width: 46px;
        min-height: 60px;
        min-width: 46px;
        background-size: cover;
        background-position: center center;
        border: 1px solid #ddd;
        border-radius: 4px;
        margin-right: 12px;
    }

    .committee-member .info .item {
        margin-bottom: 4px;
        word-wrap: normal;
        word-spacing: normal;
        
    }

        .committee-member .info .item:not(:first-child) {
            font-size: 1.25rem;
            color: #999;
        }
