/**
 * Profile image component
 */
.profile-header-img {
    padding: 30px;
    text-align: center;
}

.profile-header-img-green {
    padding: 30px;
    text-align: center;
    position: relative;
}

.profile-header-img-red {
    padding: 30px;
    text-align: center;
    position: relative;
}

.profile-header-img > img.img-thumbnail {
    width: 200px;
    height: auto;
    border: 2px solid #51D2B7;
}

.profile-header-img-green > a > img.img-thumbnail {
    width: 200px;
    height: 200px;
    border: 2px solid rgb(117, 255, 51);
}
.profile-header-img-red > a > img.img-thumbnail {
    width: 200px;
    height: 200px;
    border: 2px solid rgb(255, 87, 51);
}

.profile-header {
    margin-top: 43px;
}

/**
 * Ranking component
 */
.rank-label-container {
    margin-top: -12px;
    /* z-index: 1000; */
    text-align: center;
}
.online {
    background-color:rgb(117, 255, 51);
    color:white;
    padding:5px;
    position: absolute;
    border-radius: 10px;
    left: 40px;
    top: 15px;
}
.offline {
    background-color:rgb(255, 87, 51);
    color:white;
    padding:5px;
    position: absolute;
    border-radius: 10px;
    left: 40px;
    top: 15px;
}
.sign {
    position: absolute;
    right:45px;
    top: 35px;
    font-size:35px;
    font-weight:bold;
}
i.fa-mars {
    color:blue;
}
i.fa-venus {
    color:red;
}


.online-moderator {
    background: linear-gradient(90deg, rgb(117, 255, 51) 43%, rgb(255, 0, 127) 43%);
    color:white;
    padding:5px;
    position: absolute;
    border-radius: 10px;
    left: 40px;
    top: 15px;
}

.online-moderator > a{
    color:white;
    text-decoration: none;
    cursor: pointer;
}

.online-moderator > a:hover{
    color:white;
    text-decoration: none;
    cursor: pointer;
}

.online-moderator > a:visited {
    color:white;
    text-decoration: none;
    cursor: pointer;
}

.label.label-default.rank-label {
    background-color: rgb(81, 210, 183);
    padding: 5px 10px 5px 10px;
    border-radius: 27px;
}
.label.label-default.rank-label-green {
    background-color: rgb(117, 255, 51);
    padding: 5px 10px 5px 10px;
    border-radius: 27px;
}
.label.label-default.rank-label-red {
    background-color: rgb(255, 87, 51);
    padding: 5px 10px 5px 10px;
    border-radius: 27px;
}