/*--------------------
Leaderboard
--------------------*/
.leaderboard {
 /* position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  */width: 285px;
  height: 308px;
  background: -webkit-linear-gradient(top, #3a404d, #181c26);
  background: linear-gradient(to bottom, #3a404d, #181c26);
  border-radius: 10px;
  box-shadow: 0 7px 30px rgba(62, 9, 11, 0.3);
}
.leaderboard h1 {
  font-size: 18px;
  color: #e1e1e1;
  padding: 12px 13px 18px;
}
.leaderboard h1 svg {
  width: 25px;
  height: 26px;
  position: relative;
  top: 3px;
  margin-right: 6px;
  vertical-align: baseline;
}
.leaderboard ol {
  counter-reset: leaderboard;
}
.leaderboard ol li {
  position: relative;
  z-index: 1;
  font-size: 14px;
  counter-increment: leaderboard;
  padding: 18px 10px 18px 50px;
  cursor: pointer;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
          transform: translateZ(0) scale(1, 1);
}
.leaderboard ol li::before {
  content: counter(leaderboard);
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 15px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  color: #c24448;
  background: #fff;
  border-radius: 20px;
  text-align: center;
}
.leaderboard ol li mark {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 18px 10px 18px 50px;
  margin: 0;
  background: none;
  color: #fff;
}
.leaderboard ol li mark::before, .leaderboard ol li mark::after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -11px;
  left: -9px;
  border-top: 10px solid #c24448;
  border-left: 10px solid transparent;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
  opacity: 0;
}
.leaderboard ol li mark::after {
  left: auto;
  right: -9px;
  border-left: none;
  border-right: 10px solid transparent;
}
.leaderboard ol li small {
  position: relative;
  z-index: 2;
  display: block;
  text-align: right;
}
.leaderboard ol li::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fa6855;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.08);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  opacity: 0;
}
.leaderboard ol li:nth-child(1) {
  background: #fa6855;
}
.leaderboard ol li:nth-child(1)::after {
  background: #fa6855;
}
.leaderboard ol li:nth-child(2) {
  background: #e0574f;
}
.leaderboard ol li:nth-child(2)::after {
  background: #e0574f;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
}
.leaderboard ol li:nth-child(2) mark::before, .leaderboard ol li:nth-child(2) mark::after {
  border-top: 6px solid #ba4741;
  bottom: -7px;
}
.leaderboard ol li:nth-child(3) {
  background: #d7514d;
}
.leaderboard ol li:nth-child(3)::after {
  background: #d7514d;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.11);
}
.leaderboard ol li:nth-child(3) mark::before, .leaderboard ol li:nth-child(3) mark::after {
  border-top: 2px solid #b0433f;
  bottom: -3px;
}
.leaderboard ol li:nth-child(4) {
  background: #cd4b4b;
}
.leaderboard ol li:nth-child(4)::after {
  background: #cd4b4b;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.15);
}
.leaderboard ol li:nth-child(4) mark::before, .leaderboard ol li:nth-child(4) mark::after {
  top: -7px;
  bottom: auto;
  border-top: none;
  border-bottom: 6px solid #a63d3d;
}
.leaderboard ol li:nth-child(5) {
  background: #c24448;
  border-radius: 0 0 10px 10px;
}
.leaderboard ol li:nth-child(5)::after {
  background: #c24448;
  box-shadow: 0 -2.5px 0 rgba(0, 0, 0, 0.12);
  border-radius: 0 0 10px 10px;
}
.leaderboard ol li:nth-child(5) mark::before, .leaderboard ol li:nth-child(5) mark::after {
  top: -9px;
  bottom: auto;
  border-top: none;
  border-bottom: 8px solid #993639;
}
.leaderboard ol li:hover {
  z-index: 2;
  overflow: visible;
}
.leaderboard ol li:hover::after {
  opacity: 1;
  -webkit-transform: scaleX(1.06) scaleY(1.03);
          transform: scaleX(1.06) scaleY(1.03);
}
.leaderboard ol li:hover mark::before, .leaderboard ol li:hover mark::after {
  opacity: 1;
  -webkit-transition: all .35s ease-in-out;
  transition: all .35s ease-in-out;
}

.jumbotron {
    float: left;
    clear: both;
    width: 100%;
    margin: 50px 0px;
    padding: 10px !important;
}

.mvp {
    background: #fff;
}

.lvp {
    background: #f9f9f9;
}

.activitylog {
    width: 100%;
    height: auto;
    float: left;
    clear: both;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.recent-activity {
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #ddd;
}
.userwelcome {
    margin-top: 40px;
    background: #eeeeee;
    padding: 2%;
}
.jumbotron {
    margin-top: 10px;
    margin-bottom: 10px;
}
.activity-wrapper {
    height: 400px;
    overflow: auto;
}

input#points {
  /*  width: 18%;*/
}

input#for {
    /*width: 50%;*/
}


.welcome {
    font-weight: 700;
    font-size: 20px;
}

.userwelcome.alert.alert-info {
    background: #0161a5;
    color: #fff;
    outline: 0px;
    box-shadow: none;
    padding: 10px 20px;
}

.pointsFor input,.pointsFor label {
    width: 55%;
    display: inline;
}

.radioBtns input {
    box-shadow: none;
    vertical-align: middle;
    margin: 0px;
    width: auto;
    display: inline-block;
}



input#adrem {
    margin-left: 10px;
}
.remaining-points {
    background: #30ab56;
    color: #fff;
    padding: 8px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
}

.jumbotron {
    float: left;
    clear: both;
    width: 100%;
    margin: 10px 0px 40px !important;
    padding: 10px !important;
    background: #ffffff;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.08);
}
h2 {
    color: #0161a5;
    font-size: 23px;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
}

body {
    font-family: 'Poppins', sans-serif;
}

.recent-activity {
    background: none;
    border: 0px;
}

.activitylog {
    margin: 10px 0px 40px !important;
    padding: 10px !important;
    background: #ffffff;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.08);
    border: 1px solid #efefef;
}
.jumbotron.login-form-wrp {
    max-width: 480px;
    padding: 40px !important;
    float: none;
    margin: 80px auto 0px !important;
}

.jumbotron.login-form-wrp h2 {
    margin-top: 0px;
    margin-bottom: 20px;
}

.navbar-header.header-center {
    width: 100%;
    text-align: center;
}

.navbar-header.header-center a.navbar-brand {
    width: 100%;
}

.jumbotron.login-form-wrp {
    position: relative;
    padding-bottom: 60px !important;
    border-top: 15px solid #0161a5;
}

.error-msg {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: #da3a3a;
    color: #ffe8e8;
    padding: 10px 20px;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    font-size: 13px;
}
.error-msg a {
    color: #fff;
}

.btn {
    padding: 7px 20px;
    border: 0px;
    outline: 0px !important;
}

* {
    transition: all 400ms linear;
    -webkit-transition: all 400ms linear;
}


.updatedPoints {
    max-width: 100px;
    margin: 0px;
    padding: 0px;
    display: inline-block;
    width: 40%;
    float: left;
    font-weight: 600;
}

.updatedPoints li,ul.updatedDetails li {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

ul.updatedDetails {
    width: 60%;
    max-width: 600px;
    list-style: none;
    display: inline-block;
    float: left;
    padding: 0px;
}

.updatedPoints li:after {
    content: ' :';
    display: inline;
}
.updationsss p {
    font-size: 20px;
    color: #30ab56;
}

.updationsss {
    margin-top: 20px;
}

span.valid {
    color: #d20000;
}











