/*@import url('https://fonts.googleapis.com/css?family=Abel');*/

html, body {
    font-family: Abel, Arial, Verdana, sans-serif;
}

.center {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
}

.student-card {
    width: 100%;
    height: 250px;
    background-color: #fff;
    background: linear-gradient(#f8f8f8, #fff);
    box-shadow: 0 8px 16px -8px rgba(0,0,0,0.4);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin: 0.8rem;
}

.student-card h1 {
    text-align: center;
}

.student-card .additional {
    position: absolute;
    width: 150px;
    height: 100%;
    background: linear-gradient(#dE685E, #EE786E);
    transition: width 0.4s;
    overflow: hidden;
    z-index: 2;
}

.student-card.green .additional {
    background: linear-gradient(#92bCa6, #A2CCB6);
}


.student-card:hover .additional {
    width: 100%;
    border-radius: 0 5px 5px 0;
}

.student-card .additional .user-card {
    width: 150px;
    height: 100%;
    position: relative;
    float: left;
}

.student-card .additional .user-card::after {
    content: "";
    display: block;
    position: absolute;
    top: 10%;
    right: -2px;
    height: 80%;
    border-left: 2px solid rgba(0,0,0,0.025);
}

.student-card .additional .user-card .level,
.student-card .additional .user-card .points {
    top: 15%;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.75em;
    font-weight: bold;
    background: rgba(0,0,0,0.15);
    padding: 0.125rem 0.75rem;
    border-radius: 100px;
    white-space: nowrap;
}

.student-card .additional .user-card .points {
    top: 85%;
}

.student-card .additional .user-card svg {
    top: 50%;
}

.student-card .additional .more-info {
    width: 60%;
    float: left;
    position: absolute;
    left: 150px;
    height: 100%;
}

.student-card .additional .more-info h1 {
    color: #fff;
    margin-bottom: 0;
}

.student-card.green .additional .more-info h1 {
    color: #224C36;
}

.student-card .additional .coords {
    margin: 0 1rem;
    color: #fff;
    font-size: 1rem;
}

.student-card.green .additional .coords {
    color: #325C46;
}

.student-card .additional .coords span + span {
    float: right;
}

.student-card .additional .stats {
    font-size: 2rem;
    display: flex;
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    top: auto;
    color: #fff;
}

.student-card.green .additional .stats {
    color: #325C46;
}

.student-card .additional .stats > div {
    flex: 1;
    text-align: center;
}

.student-card .additional .stats i {
    display: block;
}

.student-card .additional .stats div.title {
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.student-card .additional .stats div.value {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5rem;
}

.student-card .additional .stats div.value.infinity {
    font-size: 2.5rem;
}

.student-card .general {
    width: 68%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    box-sizing: border-box;
    padding: 1rem;
    padding-top: 0;
}

.student-card .general .more {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 0.9em;
}

.default-page-student-records-image{
    position: relative;
    top: 20%;
    width: 100%;
    height: 60%;
    overflow: hidden;
    text-align: center;
    -webkit-border-radius: 20%;
    -moz-border-radius: 20%;
    border-radius: 20%;
}


/* Styles for Bar Charts */


.wrap {
    width: 50%;
    margin: 0 auto;
    height: 50%;
}

.bar {
    width: 50%;
    margin: .25em 0;
    position: relative;
    transition: width 2s, background .2s;
    -webkit-transform: translate3d(0, 0, 0);
    clear: both;
    text-align: left;
}

.bar .label {
    font-size: .25em;
    padding: 0.5em;
    background: #3d3d3d;
    width: 10em;
    display: inline-block;
    position: relative;
    z-index: 2;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
}

.bar .label.light {
    background: #575757;
}

.count {
    position: absolute;
    right: .25em;
    top: .75em;
    padding: .15em;
    font-size: .25em;
    font-weight: bold;
    color: #000;
    font-family: "Montserrat", sans-serif;
}

.light-orange-background{
    background: #ff9900;
}

.light-green-background{
    background-color: #40ff00;
}

.light-blue-background{
    background: #3399ff;
}

.light-purple-background{
    background: #d24dff;
}

.light-pink-background{
    background: #ff66cc;
}

.light-yellow-background{
    background-color: #ffff1a;
}
