/* jQuery Countdown styles 2.0.0. */
.is-countdown {
    position: relative;
    overflow: hidden;
    display: flex;
}
/*
.is-countdown:before {
	content: "";
	position: absolute;
	width: 130%;
	height: 100%;
	background: linear-gradient(270deg,hsla(0,0%,100%,0),hsla(0,0%,100%,.5),hsla(0,0%,100%,0)) no-repeat 1em 0;
	background-size: 5em 100%;
	-moz-transform: skewX(-30deg);
	-o-transform: skewX(-30deg);
	-webkit-transform: skewX(-30deg);
	transform: skewX(-30deg);
	-khtml-transform: skewX(-30deg);
	left: 0;
	top: 0;
	animation-timing-function: ease-in-out;
	transition: all .1s;
	-moz-transition: all .1s;
	-webkit-transition: all .1s;
	-o-transition: all .1s;
	-khtml-transition: all .1s;
	-ms-transition: all .1s;
	animation-name: slideme;
	animation-duration: 3s;
	animation-iteration-count: infinite
}

@keyframes slideme {
	0% {
			left: -110%;
	}
	to {
			left: 110%;
	}
}
	*/
.countdown-rtl {
	direction: rtl;
}
.countdown-holding span {
	color: #fff;
}
.countdown-row {
	display: flex;
}

/*
.countdown-show1 .countdown-section {
	width: 98%;
}
.countdown-show2 .countdown-section {
	width: 48%;
}
.countdown-show3 .countdown-section {
	width: 32.5%;
}
.countdown-show4 .countdown-section {
	width: 24.5%;
}
.countdown-show5 .countdown-section {
	width: 19.5%;
}
.countdown-show6 .countdown-section {
	width: 16.25%;
}
.countdown-show7 .countdown-section {
	width: 14%;
}
*/
.countdown-section {
	display: flex!important;
	flex-direction: column!important;
	justify-content: center!important;
	align-items: center!important;
	padding: 0;
	width: 56px;
	height: 56px;
	border: 2px solid #fff;
	/*
	background-image: url(ball-green.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	*/
	background: transparent;
	color: #fff ;
}
.countdown-amount {
	width: 100%;
	text-align: center;
  font-size: 21px;
	line-height: 1.5;
	font-weight: bold;
}
.countdown-period {
	width: 100%;
	text-align: center;
  font-size: 10px;
	line-height: 1;
}
.countdown-row .countdown-section:last-child {
	color: #fff ;
}
.countdown-row .countdown-section {
	position: relative;
}
.countdown-row .countdown-section + .countdown-section {
	margin-left: 8px;
}
/*
.countdown-row .countdown-section:after {
	position: absolute;
	content: '';
	width: 1px;
	height: 100%;
	background: #eee;
	right: -4px;
	
}
*/
.countdown-row .countdown-section:last-child:after {
	display: none;
}