body,
.ah-content{
    background: #f6f6fe !important;
}
.ah-student-header{
    font-family: DanaRegular !important;
    font-weight: bold;
    color: #008c44;
    /* text-align: center; */
    font-size: 21px;
    margin: 0 1% 30px;
    text-align: center;
}
.ah-student{
    width: 23%;
    margin: 0 1% 15px;
    background: #fff;
    position: relative;
    box-shadow: 0 4px 11px 1px #dddddd70;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    font-family: DanaRegular;
    font-weight: bold;
}
.ah-student-avatar img{
    width: 100%;
    height: auto;
    transition: all .25s ease-in-out;
}
.ah-student-name{
    font-size: 16px;
    text-align: center;
    color: #111;
    position: absolute;
    bottom: 0;
    background: #fff;
    width: 100%;
    height: 44px;
    line-height: 44px;
    white-space: nowrap;
}
.pagination{
    text-align: center;
    display: inline-block;
    border-radius: 0 5px 5px 0;
    overflow: hidden;
}
.ah-students-pg{
    text-align: center;
    margin-top: 25px;
}
.pagination div{
    margin: 2px;
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 42px;
    background: #fff;
    position: relative;
    text-align: center;
    font-family: DanaRegular;
    font-weight: bold;
    cursor: pointer;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 0 10px -2px #dddddd70;
    border: 1px solid #ddd;
    font-size: 14px;

    transition: all .22s ease-in-out;
}
.pagination div:last-child{
}
.pagination .start:before,
.pagination .start:after,
.pagination .end:before,
.pagination .end:after,
.pagination .prev:before,
.pagination .next:before{
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border: 2px solid #575757;
    border-bottom-color: transparent !important;
    border-left-color: transparent !important;
    border-radius: 4px;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.pagination .start:before{
    transform: rotate(45deg) translateY(-1px) translateX(1px);
}
.pagination .start:after{
    transform: rotate(45deg) translateY(3px) translateX(-3px);
}
.pagination .prev:before{
    transform: rotate(45deg) translateY(1px) translateX(-1px);
}
.pagination .end:before{
    transform: rotate(-135deg) translateY(-1px) translateX(1px);
}
.pagination .end:after{
    transform: rotate(-135deg) translateY(3px) translateX(-3px);
}
.pagination .next:before{
    transform: rotate(-135deg) translateY(1px) translateX(-1px);
}
.pagination div:hover,
.pagination div.active{
    background: #5caf21;
    color: #fff;
}
.pagination div:hover:before,
.pagination div:hover:after{
    border-color: #fff;
}
.ah-student-comment{
    display: none;
}
.ah-user-comment-modal{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 999;
    display: none;
}
.ah-user-comment-modal-overly{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #000000bf;
    z-index: 998;
}
.ah-user-comment-modal-content{
    width: 500px;
    background: #fff;
    margin: 0 auto;
    position: absolute;
    z-index: 999;
    left: 0;
    right: 0;
    text-align: center;
    height: auto;
    padding: 0 20px 20px;
    border-radius: 5px;

    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.ah-student-mdl-close{
    float: left;
    width: 15px;
    height: 15px;
    position: relative;
    cursor: pointer;
    margin-top: 15px;
}
.ah-student-mdl-close:before,
.ah-student-mdl-close:after{
    width: 2px;
    height: 15px;
    position: absolute;
    content: '';
    background: #ccc;
    border-radius: 2px;
}
.ah-student-mdl-close:before{
    transform: rotate(45deg);
}
.ah-student-mdl-close:after{
    transform: rotate(-45deg);
}
.ah-student-mdl-avatar img{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-top: -75px;
    border: 6px solid #fff;
}
.ah-student-mdl-name{
    margin: 10px 0;
    font-size: 18px;
    color: #008c44;
}
.ah-student-mdl-comment{
    padding: 5px;
}
.ah-student-cover{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 5;
    text-align: center;
    margin: auto;
    background: #ffffff77;
    opacity: 0;
    transition: all .25s ease-in-out;
}
.ah-student:hover .ah-student-avatar img{
    transform: scale(1.1);
}
.ah-student:hover .ah-student-cover{
    opacity: 1;
}
.ah-student-cover svg{
    width: 50px;
    vertical-align: middle;
    text-align: center;
    display: block;
    height: 100%;
    margin: 0 auto;
    padding-bottom: 20px;
}
.ah-student-cover path{
    fill: #fff;
}

@media only screen and (max-width: 870px) {
    .ah-student{
        width: 31.3%;
    }
}
@media only screen and (max-width: 670px) {
    .ah-student{
        width: 48%;
    }
}
