.bu-countdown.bu-timer{ width:100%;}

.bu-countdown.bu-fixed-date-countWeeks,
.bu-countdown.bu-fixed-date-countDays,
.bu-countdown.bu-fixed-date-countHours,
.bu-countdown.bu-fixed-date-countMinutes,
.bu-countdown.bu-fixed-date-countSeconds,
.bu-countdown.bu-evergreen-date-countWeeks,
.bu-countdown.bu-evergreen-date-countDays,
.bu-countdown.bu-evergreen-date-countHours,
.bu-countdown.bu-evergreen-date-countMinutes,
.bu-countdown.bu-evergreen-date-countSeconds {
    border: 4px solid #000;
    border-radius: 50%;
    padding: 30px;
    margin-right: 20px;
}

.bu-countdown-item .bu-countdown-label,
.bu-countdown-item .bu-countdown-digit {
    padding: 0;
    margin: 0;
}

.bu-countdown .bu-countdown-digit-wrapper.square {
    display: -webkit-box;
    display: -ms-flexbox;
	display: flex;
	box-pack: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
	justify-content: center;
	box-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
	align-items: center;
	box-orient: vertical;
	-webkit-box-orient: vertical;
	box-direction: normal;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

/*.countdown-rtl {
    direction: rtl;
}
.countdown-holding span {
    color: #888;
}
.countdown-row {
    clear: both;
    width: 100%;
    padding: 0px 2px;
    text-align: center;
}
.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: block;
    font-size: 75%;
    text-align: center;
}
.countdown-amount {
    font-size: 200%;
}
.countdown-period {
    display: block;
}
.countdown-descr {
    display: block;
    width: 100%;
}*/

.bu-countdown {
    width: 100%;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-direction: row;
}
.bu-countdown .bu-countdown-item {
    display: flex;
    align-items: center;
    justify-content: center;
	position: relative;
    flex-direction: column;
}

.bu-countdown-digit-wrapper,
.bu-countdown-label-wrapper {
    display: flex;
	align-items: center;
    justify-content: center;
	position: relative;
    width: 100%;
    height: 100%;
}

.bu-countdown-item.label-position-right {
    flex-direction: row-reverse;
}

.bu-countdown-item.label-position-left {
   flex-direction: row; 
}

/* Timer separator */
.bu-countdown-separator-line .bu-countdown-item {
	position: relative;
	padding: 0;
	margin-left: 0;
	margin-right: 0;
}

.bu-countdown-separator-colon .bu-countdown-digit-wrapper:after {
    content: ':';
    display: inline-block;
    font-size: 25px;
    line-height: 1.325;
    position: absolute;
    right: -10px;
    top: 45%;
    z-index: 10;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
            transform: translateY(-50%);
    text-align: center;
}
.bu-countdown-separator-colon .bu-countdown-digit-wrapper {
  margin-right: 15px;
}
.bu-countdown-separator-line .bu-countdown-item:after {
	content: '';
	display: inline-block;
	position: absolute;
	top: 0;
    right: -6px;
	bottom: 0;
	z-index: 10;
	border-right: 1px solid #ccc;
}
.bu-countdown-separator-colon .bu-countdown-item:not(.label-position-right):last-child .bu-countdown-digit-wrapper:after,
.bu-countdown-separator-line .bu-countdown-item:last-child:after {
	content: none;
}