/* ==========================================================================
# Pie Chart With Icon - begin
========================================================================== */

.qodef-pie-chart-with-icon-holder {
	position: relative;
	display: block;
	padding: 0 12px;
	box-sizing: border-box;

	.qodef-percentage-with-icon {
		position: relative;
		display: block;
        height: 156px;
        width: 156px;
        line-height: 156px;
		text-align: center;
		margin: 0 auto;
		opacity: 0;
		filter: alpha(opacity=0);
		-webkit-transition: opacity .3s ease 0s;
		-moz-transition: opacity .3s ease 0s;
		-o-transition: opacity .3s ease 0s;

		canvas {
			position: absolute;
			top: 0;
			left: 0;
		}

		i,
		span {
			float: none;
			margin: 0;
			color: $first-main-color;
			vertical-align: middle !important;
			display: inline;
            font-size: 45px;
		}

		.qode_icon_font_elegant {
			line-height: inherit;
		}

	}

	.qodef-percentage-with-text {
		font-size: 65px;

		span {
			vertical-align: top !important;
			color:#444;
		}
	}

    .qodef-pie-chart-text {
        text-align: center;
        margin: 30px 0 0;

        .qodef-pie-title {
            margin: 0 0 15px;
        }

        p {
            margin: 0;
        }

    }

}

/* ==========================================================================
# Pie Chart With Icon - end
========================================================================== */