body{
    background-color: #1e1e1e;
}

.main{
    width: 100%;
    height: 100vh;
    padding-top: 80px;
}
.main .inner{
    width: 94%;
    margin: 0 auto;
    height: 100%;
    padding:30px;
}
.main .inner .top{
    display: flex;
    justify-content: space-between;
}
.main .inner .left_wrap,
.main .inner .right_wrap{
    width: 38%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
.main .inner .left_wrap .box,
.main .inner .right_wrap .box{
    width: 48%;
    height: 230px;
    position: relative;
    min-width: 200px;
}

.main .inner .left_wrap .box:first-child,
.main .inner .left_wrap .box:nth-child(2),
.main .inner .right_wrap .box:first-child,
.main .inner .right_wrap .box:nth-child(2){
    margin-bottom: 20px;
}



.main .inner .center{
    margin: 0 2%;
    min-width: 320px;
    height: 320px;
    border-radius: 200px;
	background-color:#2b2a2f;
    margin-top: 80px;
    position: relative;
    box-shadow: 0 0 15px rgba(0,0,0,.2);
}




.main .inner .bottom_wrap{
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}
.main .inner .bottom_wrap > .box{
    width: 60%;
    height: 270px;
}
.main .inner .bottom_wrap > .box .chart{
    padding: 10px 20px;
}
.main .inner .bottom_inner{
    width: 38%;
    display: flex;
    justify-content: space-between;
    margin-left: 2%;
}
.main .inner .bottom_inner .box{
    width: 48%;
    height: 270px;
    position: relative;
}





.main .inner .box{
    border-radius: 4px;
	background-color:#2b2a2f;
    box-shadow: 0 0 15px rgba(0,0,0,.2);
}
.main .inner .box h5{
    color: #fff;
    padding: 15px 25px 0;
    font-size: 15px;
    /* border-bottom: 1px solid #3b3b3b; */
    font-weight: 400;
    opacity: .8;
}
.main .inner .box h5 i{
    color: #fff;
    font-size: 14px;
    margin-right: 5px;
}
.main .inner .box p{
    font-family: 'Roboto';
    letter-spacing: 0;
    font-weight: 400;
    /* color: #78F8EC; */
    color: #fff;
    padding: 0 30px;
}
.main .inner .box p:nth-child(2){
    font-size: 38px;
    padding-top: 10px;
    line-height:38px;
    /* color: #6E4AE2; */
}
.main .inner .box p:nth-child(3){
    font-size: 20px;
    line-height: 16px;
    /* color: #78F8EC; */
    color: #fff;
    opacity: .5;
    font-weight: 300 !important;
}
.main .inner .box p:nth-child(3) i{
    font-size: 16px;
}

.center p{
    position: absolute;
    color: #fff;
    width: 100%;
    top: 42%;
    text-align: center;
}
.center .wrapper {
	position: absolute;
	width: 320px;
	height: 320px;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	flex-direction: row;
}

.center .container {
	flex: 1;
}



.box.pink p{
    color: #f15660 !important;
}


















.box .line_chart{
    width: 100%;
    padding: 0 20px;
    position: absolute;
    bottom: 0;
    right: 0%;
}

/* GRAPH - 1 */
.box #graph-1 {
  stroke: #24c1ed;
  stroke-width: 1;
  fill: transparent;
  stroke-linecap: round;
  stroke-linejoin: round;
  -moz-animation: lineani 1.3s linear forwards;
  -webkit-animation: lineani 1.3s linear forwards;
  animation: lineani 1.3s linear forwards;
  opacity: .7;
}

.box #poly-1 {
  fill: url(#gradient-3);
}

.box #graph-2 {
    stroke: #954ce9;
    stroke-width: 1;
    fill: transparent;
    stroke-linecap: round;
    stroke-linejoin: round;
    -moz-animation: lineani 1.3s linear forwards;
    -webkit-animation: lineani 1.3s linear forwards;
    animation: lineani 1.3s linear forwards;
  }

  #poly-2 {
    fill: url(#gradient-4);
  }

@-moz-keyframes lineani {
  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes lineani {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes lineani {
  to {
    stroke-dashoffset: 0;
  }
}

.box .charts-container {
  width: 100%;
  max-width: 1024px;
  display: inline-block;
}

.box .charts {
  position: relative;
  float: right;
  position: relative;
  width: 100%;
  height: auto;
}

