@import "https://s3-us-west-2.amazonaws.com/s.cdpn.io/584938/dashboard.scss";
 @import url(https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900);
@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700);
body {
  background-color: #383c55;
  color: #202020;
  font-family: "Roboto", Arial, sans-serif;
  font-size:14px;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  margin-right: 0;
  margin-left: 0;
}
.help{
	margin-top:10%;
	flex: 50%;
}

.card-list:before, .card-list:after {
  content: " ";
  display: table;
}
.card-list:after {
  clear: both;
}


.card {
  display: flex;
  border-radius: 8px;
  color: white;
  padding: 10px;
  position: relative;
  padding-bottom: 10%;
}

.card:hover{
  transform: scale(1.1); 
  transition: .2s;
  cursor: pointer;
}
.card .stat {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 35px;
  padding: 10px 10px 0;
  text-transform: uppercase;
}
.card .title {
  display: inline-block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 30px;
  padding: 10px 10px 0;
  text-transform: uppercase;
  text-align: center;
}
.card .value {
  font-size: 28px;
  padding: 10px 10px 0;
  text-align: center;
  font-weight: bold;
  height: 100px;
}
.card.blue {
  background-color: #2298F1;
  margin-left:30%;
  margin-right:5%;
  width:70%;

}

.card.orange {
  background-color: #DA932C;
  margin-left:5%;
  margin-right:35%;
  width:70%;
  
}

