body{
    background-color: #f2f3f0;
}

.container{
	width: 100%;
	height: 100vh;
	position: relative;
}

.main{
    width: calc(100% - 60px);
	height: calc(100vh - 80px);
	position: fixed;
	bottom: 0;
	right: 0;
}

.inner{
    width: 1500px;
	height: 100%;
    margin: 0 auto;
	display: flex;
	align-items: center;
}

.main .box-wrapper .top, .main .box-wrapper{
	width: 100%;
}

.main .box-wrapper .top, .main .box-wrapper .bottom{
	display: flex;
	justify-content: space-between;
	position: relative;
}

.main .inner .top .left-box, .main .inner .top .right-box{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 43%;
}

.main .inner .bottom .left-box{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 56%;
}

.main .inner .bottom .right-box{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 43%;
}

.main .inner .box:nth-child(odd){
	margin-right: 10px;
}

.main .inner .box:nth-child(even){
	margin-left: 10px;
}

.main .inner .box{
	width: 48%;
	height: 230px;
	background-color: #FFFFFF;
	border-radius: 4px;
	box-shadow: 0 0 15px rgba(0,0,0,.2);
	margin: 10px 0;
}

.main .inner .bottom .left-box .box{
	width: 100%;
}

.p10{
	padding: 10px;
}

.main .inner .box h5{
	border-bottom: 2px solid #FAFAFA;
	color: #404040;
	text-align: center;
	padding: 5px 0;
}

.main .inner .box p{
	text-align: center;
	font-size: 36px;
	font-weight: 700;
	color: #404040;
	display: flex;
	align-items: center;
	height: calc(100% - 38px);
	padding: 10px;
}

.main .inner .box p span{
	margin: 0 auto;
	text-align: center;
}


.main .inner .center-box{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 320px;
	height: 320px;
	background-color: #2b2a2f;
	border-radius: 50%;
	display: flex;
	align-items: center;
	box-shadow: 0 0 3px 7px #d9d9d9;
}

.main .inner .center-box .chart p{
	position: absolute;
	top: 42%;
	text-align: center;
	width: 100%;
	color: #FFFFFF;
}

.main .inner .center-box .chart .input-div.on{
	position: absolute;
	top: 95px;
	margin: 0 auto;
	left: 0;
	right: 0;
	text-align: center;
}

.main .inner .center-box .center-wrapper .center-content{
	text-align: center;
}



.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%;
}



.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: none;
}

.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:  none;
  }

@-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;
}

.input-div {
    width: 200px;
    position: absolute;
    top: 95px;
    left: 63px;
    text-align: center;
    display: none;
}

.input-div.on {
    display: block;
}

.input-div span {
    color: #FFF;
}

.input-div input {
    background-color: #FFF;
    padding: 10px 5px;
    border-radius: 5px;
    width: 70px;
}

.input-div button {
    background-color: #FFF;
    padding: 7px 5px;
    border-radius: 5px;
    margin: 0 5px;
}

#cancle_btn {
    margin: 0;
}

@media (max-width: 1440px){
	.inner{
		width: 1200px;
	}

	.main .inner .box:nth-child(odd){
		margin-right: 8px;
	}

	.main .inner .box:nth-child(even){
		margin-left: 8px;
	}

	.main .inner .box{
		height: 200px;
	}
}

@media (max-width: 1200px){
	.inner{
		width: 1000px;
	}
}

@media (max-width: 1024px){
	.inner{
		width: 98%;
		margin: 0 auto;
	}

	.main .inner .box:nth-child(odd){
		margin-right: 5px;
	}

	.main .inner .box:nth-child(even){
		margin-left: 5px;
	}

	.main .inner .box p{
		font-size: 24px;
	}
}

@media (max-width: 1000px){
	.main{
		height: 100%;
		position: relative;
		margin-left: 60px;
		margin-top: 60px;
	}

	.main .inner .box:nth-child(odd){
		margin-right: 0;
	}

	.main .inner .box:nth-child(even){
		margin-left: 0;
	}

	.main .inner .box{
		width: 100%;
	}

	.main .box-wrapper{
		height: 100%;
	}
}

@media (max-width: 768px){
	.main .box-wrapper .top, .main .box-wrapper .bottom{
		display: block;
		width: 100%;
		height: auto;
	}

	.main .inner .center-box{
		position: relative;
		transform: none;
		top: 0;
	}

	.main .inner .top .left-box, .main .inner .top .right-box{
		width: 100%;
	}

	.main .inner .bottom .left-box{
		width: 100%;
	}

	.main .inner .bottom .right-box{
		width: 100%;
	}
}
