.link {
	text-underline-offset: .32em;
	text-decoration-thickness: 2px;
	text-decoration: underline;
	text-decoration-color: transparent;
	transition: color .2s ease-in-out,text-decoration-color .2s ease-in-out
}

.link:hover {
	text-decoration-color: #44a7c0!important;
}


.button {
	display: inline-block;
	padding: 1em 1.8em;
	color: white;
	background: #777;
	border: 0;
	font-size: 19px;
	font-weight: 600;
	letter-spacing: 1.4px;
	line-height: 1em!important;
	border-radius: 45px;
	transition: ease-in-out .2s;
	cursor: pointer;
}


.button-primary {
	background: #44a7c0;
}

.button-primary:hover {
	background: #178e9f;
}

.button-primary2 {
    background: #e46d2c;
}

.button-primary2:hover {
	background: #c95924;
}





/* inverse color*/
.button-primary-inverse {
    color: #00abc3;
	background: transparent;
	border: 2px solid #00abc3;
}

.button-primary-inverse:hover {
	color: white;
	background: #00abc3;
	border: 2px solid #00abc3;
}

.button-primary2-inverse {
    color: white;
	background: #f26522;
	border: 2px solid #f26522;
}

.button-primary2-inverse:hover {
	background: transparent;
	color: #f26522;
	border: 2px solid #f26522;
}



/*circle progress bar*/
.circle-container {
	width: 175px;
	height: 175px;
	transform: rotate(150deg);
	fill: none;
	stroke: white;
	stroke-dasharray: 75 100;
	stroke-linecap: round;
}

.circle-container__background {
	fill: none;
	stroke: #d5d5d5;
	stroke-width: 2.5px;
	stroke-dasharray: 67 100;
	stroke-linecap: round;
}

.circle-container__progress {
	fill: none;
	stroke-linecap: round;
	stroke: #35becc;
	stroke-linecap: round;
	stroke-width: 2.5px;
	transition: stroke-dashoffset 1s ease-in-out;
}

.circle-progress {
	display: inline-block;
	height: 153px;
	overflow: hidden;
}

.circle-progress .wrapper {
	display: inline-block;
	position: relative;
}

.circle-progress .progress-value {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 50px;
	font-weight: 600;
}

.circle-progress .progress-value .numerator {
	margin-left: 15px;
}

.circle-progress .progress-value .slash {
	background: #bebebe;
	width: 95px;
	height: 4px;
	border-radius: 5px;
	transform: rotate(-62deg);
}

.circle-progress .progress-value .denumerator {
	color: #bebebe;
	margin-left: 50px;
}


/*bar graph*/

.bar-graph {
	width: 400px;
	height: 270px;
}

.bar-graph .bar-container {
	position: relative;
	width: 100%;
	height: calc(100% - 60px);
	box-sizing: border-box;
	border-bottom: 3px solid #777;
	border-left: 3px solid #777;
}

.bar-graph .horisontal-lines .line {
	position: absolute;
	width: 100%;
	height: 1px;
	background: #00000017;
}

.bar-graph .column {
	background: #35becc;
	width: 9%;
	max-width: 32px;
	border-radius: 6px;
	position: absolute;
	bottom: 0;
}

.bar-graph .column.itsme {
	background: #f06522;
}

.bar-graph .numbers {
	width: 100%;
	height: 50px;
	font-size: 26px;
	font-weight: 600;
	color: #b1b1b1;
	padding-top: 6px;
	display: flex;
	justify-content: space-around;
	border-left: transparent solid;
}


@media (max-width: 768px) {
	.bar-graph .column {
		border-radius: 3px;
	}
}