@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600);


body .ui {
  width: 960px;
  margin: 0 auto;
  font-family: 'Source Sans Pro', sans-serif;
  color: white;
  border-top: 1px solid #4a4a4a;
  box-shadow: none;
}
body .ui ul {
  margin: 0px 30px 10px 0px;
  padding: 0;
  list-style-type: none;
  font-size: 11px;
  font-weight: 400;
  line-height: 20px;
}
body .ui .drop {
  z-index: -3;
  opacity: 0;
  width: 240px;
  height: 10px;
  background: #3e8368;
  position: absolute;
  color: white;
  bottom: 0;
  padding: 12px 30px 21px 30px;
  transition-property: bottom,opacity;
  transition-duration: .3s;
}
body .ui .drop p {
  color: #f8fbfa;
}
body .ui_box {
  width: 320px;
  height: 220px;
  position: relative;
  background: #3d3d3d;
  float: left;
  box-shadow: -1px 0px rgba(255, 255, 255, 0.07);
  transform: scale(1);
  transition-property: transform,background;
  transition-duration: .3s;
}
body .ui_box__inner {
  padding: 20px;
  padding-left: 50px;
  padding-right: 50px;
}
body .ui_box__inner span {
  font-size: 36px;
  font-weight: 700;
}
body .ui_box__inner .progress {
  width: 100%;
  margin-top: 10px;
  height: 6px;
  background: rgba(0, 0, 0, 0.3);
  margin-bottom: 15px;
}


body .ui_box__inner .progress_bar {
  height: 6px;
  float: left;
  width: 0;
  /* width: 58%; */
  background:  rgb(0,156,170);
  -webkit-animation: bar 2s;
}

body .ui_box h2 {
  color:white;
  font-weight: normal;
  font-size: 14px;
  margin:0;
  padding-bottom: 10px;
  }
body .ui_box p {
  font-size: 12px;
  color: #b6b6b6;
  clear: left;
  font-weight: 300;
  width: 250px;
  margin: 2px 0px 15px 0px;
}
body .ui_box:hover {
  background: rgb(0,156,170);
  transform: scale(1.1);
  transition-property: transform,background;
  transition-duration: .3s;
  position: relative;
  z-index: 1;
  }

body .ui_box:hover > p{
  color:yellow;
}

.ui_box:hover > .ui_box__inner p {
  color: black;
  font-size: 13px;
  font-weight: 400;
}

.ui_box:hover > .drop {
  transition-property: bottom,opacity;
  transition-duration: .3s;
  bottom: -42px;
  opacity: 1;
}


.ui_box:hover > .ui_box__inner .progress_graph > div {
  background: white;
}

.ui_box:hover > .ui_box__inner .progress .progress_bar, .ui_box:hover > .ui_box__inner .progress .progress_bar--two {
  background: white;
}

.stat_left {
  float: left;
}


@keyframes bar {
  from {
    width: 0px;
  }
  to {
    width: 58%;
  }
}
@keyframes bar2 {
  from {
    width: 0px;
  }
  to {
    width: 78%;
  }
}
@keyframes graph {
  from {
    height: 0px;
  }
  to {
    height: 20px;
  }
}
@keyframes graph2 {
  from {
    height: 0px;
  }
  to {
    height: 30px;
  }
}
@keyframes graph3 {
  from {
    height: 0px;
  }
  to {
    height: 24px;
  }
}
@keyframes graph4 {
  from {
    height: 0px;
  }
  to {
    height: 13px;
  }
}
