/* jQuery Countdown styles 2.0.0. */
.is-countdown {
	width: 100%;
	display: flex;
}
.countdown-rtl {
	direction: rtl;
}
.countdown-holding span {
	color: #888;
}
.countdown-row {
	clear: both;
	width: 100%;
	column-gap: 1rem;
	padding: 0px 5px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.countdown-show1 .countdown-section {
	width: 100%;
}
.countdown-show2 .countdown-section {
	width: 50%;
}
.countdown-show3 .countdown-section {
	width: 33.3333%;
}
.countdown-show4 .countdown-section {
	width: 25%;
}
.countdown-show5 .countdown-section {
	width: 20%;
}
.countdown-show6 .countdown-section {
	width: 16.25%;
}
.countdown-show7 .countdown-section {
	width: 14%;
}
.countdown-section {
	padding: 0.75rem;
	display: block;
	font-size: 75%;
	text-align: center;
	background-color: #fbfbfb;
	border: 1px solid #eaeaea;
	border-radius: 0.25rem;
	position: relative;
	border-bottom-color: rgba(0,0,0,0.1);
}
.countdown-section::before {
	content: "";
	position: absolute;
	width: 100%;
	border-radius: 0 0 0.125rem 0.125rem;
	left: 0.375rem;
	right: 0.375rem;
	max-width: calc(100% - 0.75rem);
	height: 0.375rem;
	background-color: rgba(242, 242, 242, 0.9);
	bottom: -0.395rem;
}

.countdown-amount {
    font-size: 200%;
	font-weight: 800;
	line-height: 1;
}
.countdown-period {
    display: block;
	color: rgba(0,0,0,0.5);
}
.countdown-descr {
	display: block;
	width: 100%;
}

@media screen and (min-width: 768px) and (max-width: 1024.98px) {
	.countdown-row {
		column-gap: 0.25rem;
	}
	.countdown-section {
		padding: 0.375rem 0.75rem;
	}
}
