/**
 * @Project NUKEVIET 4.x
 * @Author VINADES.,JSC (contact@vinades.vn)
 * @Copyright (C) 2017 VINADES. All rights reserved
 * @License: Not free
 * @Createdate Sat, 02 Apr 2016 09:59:03 GMT
 */

.list-tab{
    padding: 0px;
}

.list-tab ul{
    padding: 0px;
    border-bottom: 0px;
}
.list-tab ul li{
    width: 100%;
    border-bottom: 1px solid #d8d8d8;
    border-left: 0px;
    border-right: 0px;
    border-top: 0px;
    margin: 0px;
}
.list-tab ul li:last-child{
    border-bottom: 0px;
}

.list-tab ul li a{
    margin: 0px;
    padding: 10px;
    background-color: #fff;
    line-height: normal;
    border: 0px !important;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    transition: color .2s linear 0s,padding-left .2s linear 0s;
    -moz-transition: color .2s linear 0s,padding-left .2s linear 0s;
    -ms-transition: color .2s linear 0s,padding-left .2s linear 0s;
    -o-transition: color .2s linear 0s,padding-left .2s linear 0s;
    -webkit-transition: color .2s linear 0s,padding-left .2s linear 0s;
}

.list-tab ul li a:hover{
    padding-left: 20px;
    background-color: #2888d2;
    color: #FFFFFF;
}
.list-tab ul li.active a, .list-tab ul li:active a, .list-tab ul li:focus a, .list-tab ul li.active a:focus, .list-tab ul li.active a:active{
    padding-left: 20px;
    background-color: #2888d2;
    color: #FFFFFF;
}

.list-tab .nav-tabs>li.active>a:hover,
.list-tab .nav-tabs>li.active>a:focus {
    background-color: #2888d2;
    color: #eee;
}

.avatas-faculty {
    margin: 30px 0;
    position: relative;
}

.avatas-faculty .avata-join {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    background-size: cover;
    background-position: center center;
    -webkit-box-shadow: 0 0 0 6px rgba(255,255,255,.5), 0 0 25px 2px rgba(0,0,0,.3);
    -moz-box-shadow: 0 0 0 6px rgba(255,255,255,.5), 0 0 25px 2px rgba(0,0,0,.3);
    box-shadow: 0 0 0 6px rgba(255,255,255,.5), 0 0 25px 2px rgba(0,0,0,.3);
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    border-radius: 999px;
}

.avatas-faculty .avata-join img {
    display: none;
}

.pulse1 {
    position: absolute;
    width: 160px;
    height: 160px;
    margin: auto;
    top: 0px;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    opacity: 0;
    border: 3px solid rgba(255,255,255,.1);

    -webkit-animation: pulsejg1 4s linear infinite;
    -moz-animation: pulsejg1 4s linear infinite;
    animation: pulsejg1 4s linear infinite;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    border-radius: 999px;
    -webkit-box-shadow: inset 0px 0px 15px 10px rgba(0, 0, 0, .6);
    -moz-box-shadow: inset 0px 0px 15px 10px rgba(0, 0, 0, .6);
    box-shadow: inset 0px 0px 15px 10px rgba(0, 0, 0, .6);
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.pulse2 {
    position: absolute;
    width: 160px;
    height: 160px;
    margin: auto;
    top: 0px;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    opacity: 0;
    border: 1px solid rgba(255,255,255,0);

    -webkit-animation: pulsejg2 4s linear infinite;
    -moz-animation: pulsejg2 4s linear infinite;
    animation: pulsejg2 4s linear infinite;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    border-radius: 999px;
    -webkit-box-shadow: inset 0px 0px 12px 5px rgba(255, 255, 255, .8);
    -moz-box-shadow: inset 0px 0px 12px 5px rgba(255, 255, 255, .8);
    box-shadow: inset 0px 0px 12px 5px rgba(255, 255, 255, .8);
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@-webkit-keyframes pulsejg1 {
    0% {
        -webkit-transform: scale(.6);
        opacity: 0;
    }

    50% {
        -webkit-transform: scale(.6);
        opacity: 0;
    }

    60% {
        -webkit-transform: scale(.9);
        opacity: .2;
    }

    70% {
        -webkit-transform: scale(1.1);
        opacity: .35;
    }

    80% {
        -webkit-transform: scale(1.25);
        opacity: .2;
    }

    100% {
        -webkit-transform: scale(1.4);
        opacity: 0;
    }
}

@-moz-keyframes pulsejg1 {
    0% {
        -moz-transform: scale(.6);
        opacity: 0;
    }

    50% {
        -moz-transform: scale(.6);
        opacity: 0;
    }

    60% {
        -moz-transform: scale(.9);
        opacity: .2;
    }

    70% {
        -moz-transform: scale(1.1);
        opacity: .35;
    }

    80% {
        -moz-transform: scale(1.25);
        opacity: .2;
    }

    100% {
        -moz-transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes pulsejg1 {
    0% {
        transform: scale(.6);
        opacity: 0;
    }

    50% {
        transform: scale(.6);
        opacity: 0;
    }

    60% {
        transform: scale(.9);
        opacity: .1;
    }

    70% {
        transform: scale(1.1);
        opacity: .25;
    }

    80% {
        transform: scale(1.25);
        opacity: .1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@-webkit-keyframes pulsejg2 {
    0% {
        -webkit-transform: scale(.6);
        opacity: 0;
    }

    40% {
        -webkit-transform: scale(.8);
        opacity: .05;
    }

    50% {
        -webkit-transform: scale(1);
        opacity: .1;
    }

    60% {
        -webkit-transform: scale(1.1);
        opacity: .3;
    }

    80% {
        -webkit-transform: scale(1.2);
        opacity: .1;
    }

    100% {
        -webkit-transform: scale(1.3);
        opacity: 0;
    }
}

@-moz-keyframes pulsejg2 {
    0% {
        -moz-transform: scale(.6);
        opacity: 0;
    }

    40% {
        -moz-transform: scale(.8);
        opacity: .05;
    }

    50% {
        -moz-transform: scale(1);
        opacity: .1;
    }

    60% {
        -moz-transform: scale(1.1);
        opacity: .3;
    }

    80% {
        -moz-transform: scale(1.2);
        opacity: .1;
    }

    100% {
        -moz-transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes pulsejg2 {
    0% {
        transform: scale(.6);
        opacity: 0;
    }

    40% {
        transform: scale(.8);
        opacity: .05;
    }

    50% {
        transform: scale(1);
        opacity: .1;
    }

    60% {
        transform: scale(1.1);
        opacity: .3;
    }

    80% {
        transform: scale(1.2);
        opacity: .1;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Content Size
 -----------------------------------------------------------------------------*/
.w20 {
    width: 20px
}

.w50 {
    width: 50px
}

.w100 {
    width: 100px
}

.w150 {
    width: 150px
}

.w200 {
    width: 200px
}

.w250 {
    width: 250px
}

.w300 {
    width: 300px
}

.w350 {
    width: 350px
}

.w400 {
    width: 400px
}

.w500 {
    width: 500px
}

.text-middle {
    height: 32px;
    line-height: 32px;
}
.name_faculty{
    width: 300px;
}
.text-center{
    text-align: center;
}
.form-inline .input-group > .form-control {
    width: auto;
}
.main_style_grid {
    margin-bottom: 10px;
    margin-top: 20px;
}
.info_faculty{
    display: block;
    width: 100%;
    margin-bottom: 5px;
}

.margin-bottom-lg {
    margin-bottom: 15px!important;
}

/* Danh sách cán bộ dạng lưới */
.faculty-gird-item {
    display: flex;
}

.faculty-gird-item .item-avata {
    width: 144px;
    text-align: center;
}

.faculty-gird-item .item-info {
    flex-grow: 1;
    flex-shrink: 1;
    padding-left: 20px;
}

.faculty-gird-item .item-avata .img {
    display: block;
    width: 144px;
    height: 144px;
    margin: 0 auto;
    background-size: cover;
    background-position: center center;
    -webkit-box-shadow: 0 0 0 6px rgba(255,255,255,.5), 0 0 25px 2px rgba(0,0,0,.3);
    -moz-box-shadow: 0 0 0 6px rgba(255,255,255,.5), 0 0 25px 2px rgba(0,0,0,.3);
    box-shadow: 0 0 0 6px rgba(255,255,255,.5), 0 0 25px 2px rgba(0,0,0,.3);
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    border-radius: 999px;
}

.faculty-gird-item .item-avata .img img {
    display: none;
}

.faculty-detail-html ul {
    padding-left: 30px;
    list-style: disc;
}

.faculty-detail-html ol {
    padding-left: 30px;
    list-style: decimal;
}

@media (max-width: 499.98px) {
    .faculty-gird-item {
        flex-wrap: wrap;
    }

    .faculty-gird-item .item-avata {
        width: 100%;
        margin-bottom: 15px;
    }

    .faculty-gird-item .item-info {
        padding-left: 0;
    }
}
