﻿
/* Faculty list page */

.blue {
    position:relative;
}

.faculty-filter li a, .faculty-filter li a:visited, .faculty-filter li a:hover {
    color: white;
}

.cf:after, .cf:before {
    content: " ";
    display: table
}

.cf:after {
    clear: both
}

.faculty-search input[type=text] {
    width: 87%;
    background: #efefef;
    border: none;
    height: 35px;
    outline: none;
}

.faculty-search input[type=submit] {
    width: 13%;
    background: red;
    border: none;
    height: 35px;
    outline: none;
}

.search-results-container {
    margin-top: 20px;
}

.faculty-filter h3 {
    position: relative;
    margin-bottom: 0;
    padding: 7px;
    cursor: pointer;
    color: #fff;
    vertical-align: text-bottom;
    background: #01a6aa;
    font-size: 18px;
}

.faculty-filter ul {
    list-style: none;
    padding: 0;
}

.faculty-filter > ul {
    display: none;
    margin-top: 2px;
}

.faculty-filter li a {
    position: relative;
    display: block;
    padding: 6px;
    color: #fff;
    background: rgb(188,182,168);
}

.faculty-filter li div {
    display: none;
    padding-bottom: 15px;
    background: #aaa598;
}

    .faculty-filter li div.open {
        display: block;
        z-index: 10;
    }

    .faculty-filter li div li a {
        background: none;
        padding-left: 20px;
    }

.soon {
    background: #F5ECD7;
    display: flex;
    color: #b58105;
    padding: 7px 5px 2px 7px;
    margin-top: 4px;
}

.faculty-filter li div li:hover {
    background: #867f6d;
}

.faculty-filter h3 .icon, .faculty-filter li a .icon {
    position: absolute;
    right: 8px;
    top: 8px;
}

.faculty-filter li:first-child a .icon {
    visibility: hidden;
}

.faculty-filter li a.active {
    background: #aaa598;
}

    .faculty-filter h3.active .icon:before, .faculty-filter li a.active .icon:before {
        content: "l";
        font-size: 12px !important;
    }

.faculty-tag-new {
    margin-top: 1em;
}

.faculty-tag {
    margin-top: 1em;
    border-top: 1px solid #eee;
}



ul.faculty {
    display: table;
    list-style: none;
    padding: 0;
    margin-left: -4%;
    overflow: hidden;
}

    ul.faculty li {
        display: inline-block;
        /* float: left;*/
        margin: 0 0 4% 4%;
        width: 46%;
        vertical-align: top;
    }

        ul.faculty li:nth-last-child(-n+4) {
            margin-bottom: 1%;
        }

        ul.faculty li a {
            display: block;
        }

            ul.faculty li a:hover img {
                opacity: 0.5;
            }

        ul.faculty li img {
            display: block;
            width: 100%;
            opacity: 1;
            min-height: 100%;
            object-fit: cover;
            object-position: center;
        }

        ul.faculty li .faculty-list-img {
            opacity: 1;
            height: 166px;
            overflow: hidden;
        }

        ul.faculty li .info {
            padding: 10px 0px !important;
            height: auto;
            overflow: hidden;
            font-size: 16px;
            color: #939393;
        }

            ul.faculty li .info span.name {
                font-family: "Work Sans", sans-serif;
                display: block;
                text-transform: uppercase;
                font-size: 18px;
                color: #2a3036;
                margin-bottom: 5px;
            }

.autocomplete-suggestion,
.autocomplete-no-suggestion {
    overflow: hidden;
    padding: 2px 5px;
    white-space: nowrap;
}

.autocomplete-suggestions {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #999;
    box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
    cursor: default;
    overflow: auto;
    width: 318px !important;
}

.autocomplete-suggestions {
    position: absolute !important;
}

ul.faculty-position {
    padding-left: 0px;
}

    ul.faculty-position li {
        list-style-type: none;
        padding: 10px 0px;
        border-bottom: 1px solid #eee;
    }

        ul.faculty-position li:last-child {
            border-bottom: none;
        }

        ul.faculty-position li .info {
            padding: 10px 0px !important;
            height: auto;
            overflow: hidden;
            font-size: 16px;
            color: #939393;
        }

            ul.faculty-position li .info div.division-fc {
                width: 80%;
                overflow-wrap: break-word;
                float: left;
            }

            ul.faculty-position li .info div.apply-fp {
                width: 20%;
                float: right;
            }

        ul.faculty-position li a.category.button.faculty-apply {
            float: right;
        }

        ul.faculty-position li .info .position-date {
            padding: 5px 0px !important;
            height: auto;
            overflow: hidden;
            font-size: 15px;
            color: #5C5C5C;
        }

            ul.faculty-position li .info .position-date b {
                padding: 0px 0px 0px 10px;
            }

        ul.faculty-position li .info span.name {
            font-family: "Work Sans", sans-serif;
            display: block;
            text-transform: uppercase;
            font-size: 20px;
            color: #2a3036;
            margin-bottom: 5px;
        }

/* Profile page */

.coming {
}



.tint {
    position: relative;
    cursor: pointer;
}

    .tint:before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(155,155,155, 0.7);
        -moz-transition: background .3s linear;
        -webkit-transition: background .3s linear;
        -o-transition: background .3s linear;
        transition: background .3s linear;
        content: "Joining Soon";
        margin: 120px 10px 10px 10px;
        text-align: center;
        color: #fff;
        padding-top: 3px;
    }




    .tint:hover::before {
        background: none;
        z-index: 0;
        content: "";
    }

.faculty-profile {
    overflow: hidden;
    padding-bottom: 5px;
    margin-top: 0.5em;
}

    .faculty-profile .image {
        float: left;
        width: 25%;
    }

        .faculty-profile .image img {
            width: 100%;
        }

    .faculty-profile .bio {
        float: right;
        width: 71%;
    }


        .faculty-profile .bio h1 {
            margin: 0;
            padding: 0 0;
            text-transform: uppercase;
        }

        .faculty-profile .bio h4 {
            margin: 0;
            font-size: 1.1em;
        }

        .faculty-profile .bio ul {
            padding-left: 1.5em;
        }

        .faculty-profile .bio a {
            display: block;
            padding: 5px 0;
        }

        .faculty-profile .bio p a {
            display: inline;
        }

        .faculty-profile .bio span a {
            margin: 20px 0;
        }

        .faculty-profile .bio .center-membership {
            display: inline-block;
        }

.faculty-cv h2 {
    border-bottom: 1px solid #eee;
    margin: 20px 0;
}

ul.publications {
    padding-left: 1.5em;
}

    ul.publications li {
        padding: 10px 0;
    }


/*Students and Alumni Profile Style*/

ul.students {
    display: table;
    list-style: none;
    padding: 0;
    overflow: hidden;
    width: 100%;
}

    ul.students li {
        text-align: center;
        margin-bottom: 15px;
    }

        ul.students li a {
            display: block;
            padding: 15px;
            border-bottom: none;
        }

            ul.students li a:hover img {
                opacity: 0.5;
            }

        ul.students li img {
            width: 130px;
            opacity: 1;
        }


        ul.students li .info {
            padding: 0 10px 10px 20px;
            overflow: hidden;
            font-size: 16px;
            color: #939393;
        }



            ul.students li .info span {
                display: block;
                margin-bottom: 7px;
                font-size: 17px;
            }

                ul.students li .info span.name {
                    font-size: 17px;
                    font-family: "Work Sans", sans-serif;
                    color: #2a3036;
                    text-transform: uppercase;
                }

                ul.students li .info span.title {
                    font-family: "Work Sans", sans-serif;
                    margin: 0;
                }

/* BREAKPOINT 502-Mobile */

@media screen and (max-width: 500px) {

    .faculty-profile .image {
        width: 40%;
        padding-left: 30%;
    }

        .faculty-profile .image a, .faculty-profile .image i {
            visibility: hidden;
        }



    .faculty-profile .bio {
        width: 100%;
    }

    @-moz-document url-prefix() {
        ul.faculty li {
            width: 45%;
        }
    }
}

/* BREAKPOINT 502 */
@media screen and (min-width: 510px) {

    ul.students li {
        text-align: left;
    }

        ul.students li a {
            padding: 0;
            overflow: hidden;
        }

        ul.students li img {
            float: left;
            width: 160px;
        }

    /* Faculty list page */

    .faculty-search {
        position: absolute;
        top: 70px !important;
        right: 20px;
        width: 280px;
        background: #efefef;
    }


    ul.faculty li {
        width: 29.3333%;
    }

    @-moz-document url-prefix() {
        ul.faculty li {
            width: 20%;
        }
    }
}

/* Intermediate breakpoint for content columns */
/* Footer into columns */
@media screen and (min-width: 680px) {

    /* Faculty list page */

    /*.page.faculty .left_column h1 {
        margin-bottom: 0.8em;
    }*/
    .faculty-search {
        right: 20px;
        top: 36px !important;
    }



    .faculty-sort {
        font-size: 16px;
        text-align: right;
    }



    /* Profile page */
    .faculty-profile .image {
        width: 25%;
    }

    .faculty-profile .bio {
        width: 70.5%;
    }
}


/* BREAKPOINT 788 */
/* Margins and gutters 24px */
/* Full menu */
@media screen and (min-width: 788px) {

    ul.students {
        width: 102.4%;
        margin-left: -2.4%;
    }

        ul.students li {
            display: inline-block;
            float: left;
            margin: 0 0 2.4% 2.4%;
            width: 47.6%;
            vertical-align: top;
        }

            ul.students li a {
                height: 190px;
            }

            ul.students li img {
                padding: 10px 6px 10px 10px;
                width: 30%;
            }

    /* Faculty list page */
    .faculty-search {
        top: 68px !important;
        width: 320px;
        background: #efefef;
    }

    ul.faculty {
        margin-left: -2.5%;
        width: 102.5%;
    }

        ul.faculty li {
            margin-left: 2.5%;
            width: 17%;
        }

    /*IE hacks*/
    :root ul.faculty li {
        width: 16% \0/IE9 !important;
    }

    /* Profile page */
    .faculty-profile .bio {
        width: 72%;
    }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    /* IE10+ specific styles go here */

    ul.faculty li {
        width: 16.5% !important;
    }
}

/* Microsoft Edge Browser 12+ (All) - @supports method */

@supports (-ms-ime-align:auto) {
    ul.faculty li {
        width: 21% !important;
    }
}

/* Intermediate breakpoint to expand nav */
@media screen and (min-width: 890px) {

    ul.students li a {
        height: 170px;
    }
}


/* BREAKPOINT 1024 */
/* Margins and gutters 24px */
@media screen and (min-width: 1024px) {

    ul.students li a {
        /*        height: auto;*/
    }

    ul.students li img {
        padding: 0;
        width: 160px;
    }


    /* Faculty list page */
    .faculty-filter {
        font-size: 16px;
        margin-top: 10px;
        position: relative;
        background: rgb(188,182,168);
    }

        .faculty-filter h3 {
            float: left;
            display: block;
            cursor: auto;
            margin: 0;
            font-size: 1em;
            padding: 14px 12px 11px;
            line-height: 1;
        }

        .faculty-filter > ul {
            display: block !important;
            float: left;
            margin: 0;
        }

        .faculty-filter .ksticon-nav-arrow {
            padding-top: 3px !important;
        }

        .faculty-filter li {
            display: block;
            float: left;
        }

            .faculty-filter li, .faculty-filter li a {
                border-bottom: none;
                line-height: 1;
                padding: 0 7px;
            }

                .faculty-filter li a {
                    padding: 15px 26px 10px 10px;
                }

                    .faculty-filter li a.all {
                        padding: 15px 15px 10px 15px !important;
                    }


                .faculty-filter li div {
                    position: absolute;
                    top: 41px;
                    left: 0;
                    width: 100%;
                }

                    .faculty-filter li div ul {
                        -moz-column-count: 2;
                        -webkit-column-count: 2;
                        column-count: 2;
                        -webkit-column-gap: 24px;
                        -moz-column-gap: 24px;
                        column-gap: 20px;
                    }

                    .faculty-filter li div li {
                        float: none;
                        display: block;
                        padding: 0px 5px 0px 5px;
                    }

                        .faculty-filter li div li a {
                            display: inline-block;
                            padding: 8px;
                            margin-top: 10px;
                        }

        .faculty-filter h3 .icon {
            display: none;
        }

        .faculty-filter li a .icon {
            right: 6px;
            top: 11px;
        }
}


/*Css by Sadiq*/
@media (max-width: 767px) {

    ul.faculty-position li a.category.button.faculty-apply {
        float: left;
    }
}

ul.faculty-position li .info span.name a {
    color: #2a3036;
}

/*Css by Sadiq - Fix search box issue in unpublihsed mode*/
@media screen and (min-width: 510px) {
    .interfolio-search-box.loggedInMode {
        top: 82px !important;
    }
}

@media screen and (min-width: 680px) {
    .interfolio-search-box.loggedInMode {
        top: 115px !important;
    }
}

@media screen and (min-width: 788px) {
    .interfolio-search-box.loggedInMode {
        top: 145px !important;
    }
}
/*End of search box fix*/

/*Css by Sadiq - For filter Indicator*/
.faculty-filter .filter {
    float: right;
    color: white;
    margin: 0;
    font-size: 1em;
    padding: 13px 12px 11px;
    line-height: 1;
    background: #01a6aa;
}

    .faculty-filter .filter i {
        margin-right: 10px;
    }

    .faculty-filter .filter a {
        color: #fff;
        background: #017e81;
        float: right;
        margin: -13px -12px -11px 10px;
        padding: 14px 8px 10px 8px;
    }

@media (max-width: 1023px) {
    .faculty-filter .filter {
        margin-top: 10px;
        padding: 0;
        background: none;
        color: #707070;
    }

        .faculty-filter .filter i {
            margin-right: 5px;
        }

        .faculty-filter .filter a {
            color: #01a9e7;
            background: none;
            float: right;
            margin: -2px 0 0 10px;
            padding: 0;
            font-size: 20px;
        }
}
/*--End for filter Indicator CSS--*/
