/*****************************
	Counter
*****************************/
.counter {
	display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    line-height: 20px;
}

.counter {
	.counter-icon {
		i {
			font-size: 42px;
			color: $primary;
			line-height: 42px;
		}
	}
}

.counter {
	.counter-content {
		vertical-align: top;
		color: $gray-8;
		.timer {
			font-size: 28px;
			font-weight: 600;
			margin-bottom: 8px;
			font-weight: 600;
			line-height: 28px;
			font-family: $font-heading;
            display: block;
            margin: 15px auto;
		}

		.label {
            max-width: 200px;
			display: block;
		}
	}
}

.bg-light {
	.counter {
		.counter-content {
			.label {
				color: $gray-4;
			}
		}
	}
}
