.countdown-section {
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	position: relative;
	color: #fff;
	font-weight: 700;
	padding: 20px;
}

.countdown-section[data-poz='center'],
.countdown-section.mobile-countdown-section {
	flex-flow: row wrap;
}

.countdown-section.mobile-countdown-section {
	padding: 0;
	color: #000;
}

.countdown-section[data-image='2'] {
	background-position: center center !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
}

.countdown-section:not(.mobile-countdown-section) a.countdown-link {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.countdown-section.mobile-countdown-section a.countdown-link {
	margin: 0 auto;
}

.countdown-section .countdown-information {
	font-size: 20px;
}

.countdown-section .countdown-information[data-info-poz='center'] {
	flex-grow: 1;
	width: 100%;
	text-align: center;
	padding-bottom: 10px;
}

.countdown-section .countdown-information[data-info-poz='left'] {
	text-align: left;
}

.countdown-section .countdown-information[data-info-poz='right'] {
	order: 2;
	text-align: right;
}

.countdown-section .countdown-offer {
	flex-grow: 1;
}

#countdown {
	display: flex;
	align-items: center;
	list-style-type: none;
}

#countdown[data-offer-poz='center'] {
	flex-grow: 1;
	justify-content: center;
	width: 100%;
}

#countdown[data-offer-poz='left'] {
	order: 1;
	justify-content: flex-start;
}

#countdown[data-offer-poz='right'] {
	justify-content: flex-end;
}

.countdown-section.mobile-countdown-section #countdown[data-offer-poz='left'],
.countdown-section.mobile-countdown-section #countdown[data-offer-poz='right'] {
	justify-content: center;
}

#countdown .countdown-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	font-size: 20px;
	font-weight: 700;
	margin: 15px;
}

.countdown-section.mobile-countdown-section #countdown .countdown-wrapper {
	font-size: 15px;
	margin: 5px;
}

#countdown .countdown-wrapper .countdown-text {
	padding-right: 5px;
}

#countdown .countdown-wrapper .countdown-info::after {
	position: absolute;
	content: ":";
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	right: -20px;
}

.countdown-section.mobile-countdown-section #countdown .countdown-wrapper .countdown-info::after {
	right: -7px;
}

#countdown .countdown-wrapper:last-child .countdown-info::after {
	content: none;
}