.card {
  background-color: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  /*position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);*/
  display: block;
  position: relative;
  max-width: 400px;
  height: 295px;
  border-radius: 10px;
  overflow: hidden;
  margin: auto;
  margin-bottom: 15px;
}

.card .about {
  height: 140px;
  padding: 20px;
  box-sizing: border-box;
}

.card .about h3,
.card .about .lead {
  font-weight: 300;
  margin: 0;
}

.card .about h3 {
  font-size: 24px;
}

.card .about .lead {
  color: #aaa;
}

.card .info {
  float: left;
  padding: 10px 30px 10px 0;
  min-width: 110px;
}

.card .info p {
  font-size: 11px;
  color: #aaa;
  font-weight: 300;
}

.style_1 .legends {
  padding-top: 20px;
  overflow: hidden;
}

.style_1 .legend {
  display: block;
  width: 8px;
  height: 8px;
  margin-top: 4px;
  margin-bottom: 15px;
  border-radius: 50%;
  float: left;
  margin-right: 5px;
}

.style_1 .legend--this {
  background-color: #5555FF;
}

.style_1 .legend--prev {
  background-color: #FF55B8;
}

.style_1 .axis {
  position: absolute;
  color: #fff;
  z-index: 1;
  text-transform: uppercase;
  display: flex;
  width: 100%;
  bottom: 0;
}

.style_1 .axis .tick {
  flex: 1;
  position: relative;
  overflow: hidden;
  opacity: 1;
  font-size: 11px;
  text-align: center;
  line-height: 40px;
  padding-top: 150px;
}

.style_1 .axis .tick:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.2);
}

.style_1 .axis .tick .value {
  display: block;
  /*transform: translateY(-40px);
  transition: 0.3s transform;*/
  position: absolute;
  top: 42px;
  color: #ff55b8;
  border-radius: 2px;
  width: 100%;
  line-height: 20px;
}

.style_1 .axis .tick .value.value--prev {
    top: 25px;
    color: #5555ff;
    font-weight: bold;
}

/*.style_1 .axis .tick:hover .value.value--this {
  transform: translateY(0);
  display: block;
}*/

.style_1 .value.value--this {
  color: #5555FF;
  font-weight: bold;
}

