//css counter up

.counter-up-v1 {
	.ova-counter-up {
		background-color: #2c2734;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		max-width: 420px;
	    width: 100%;
	    border-bottom-left-radius: 8px;
	    border-bottom-right-radius: 8px;
	    padding: 33px 50px 30px;

		.icon {
			font-size: 65px;
		    color: #ff9d00;
		    line-height: 65px;
		}

		.content {
			margin-left: 30px;
			h4 {
				margin: 0;
			    color: #fff;
			    font-size: 46px;
			    line-height: 48px;
			    font-weight: 400;

			    .currency-symbol {
			    	display: inline-block;
			    }
			}
			.text {
				margin: 0;
			    color: #b5b1bc;
    			line-height: 24px;
			}
		}

		@media (max-width: 420px) {
		    flex-direction: column;
		    padding: 20px 20px;
		    border-radius: 8px;
		    .icon {
		    	text-align: center;
		    }
		    .content {
		    	margin: 20px 0 0 0;
		    	text-align: center;
		    }
		}
	}
}

.counter-up-v2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;

	.ova-counter-up {
	    max-width: 284px;
	    width: 100%;
	    text-align: center;
	    border-right: 1px solid rgba(255, 255, 255, .09);

	    .icon {
    	    padding-bottom: 26px;

    	    span {
    	    	font-size: 63px;
			    color: #ff9d00;
			    line-height: 63px;
    	    }
	    }

	    .price {
		    h4 {
		    	font-size: 50px;
			    line-height: 60px;
			    color: #fff;
			    font-weight: 400;
		    	margin: 0;

		    	.currency-symbol {
			    	display: inline-block;
			    }
		    }
	    }

	    .text {
	    	p {
	    		font-size: 24px;
			    color: #9c9ca5;
			    margin: 0;
			    line-height: 30px;
	    	}
	    }

	   	&:last-child {
	   		border-right: none !important;
	   	}

	   	@media only screen and (min-width: 992px) and (max-width: 1199px) {
		    max-width: 229px;
		}
		@media only screen and (min-width: 768px) and (max-width: 991px) {
		    max-width: 342px;
		    border: none !important;
		}
		@media only screen and (max-width: 767px) {
		    border: none !important;
		}
	}
}