Make Mobile Uniform (CSS): To ensure boxes have identical width on mobile, add this code to the CSS Class field in the element’s General tab or to your child theme’s style.css:

@media only screen and (max-width: 640px) {
.uniform-countdown .fusion-countdown-box {
flex: 1 1 45% !important; /* Forces equal width */
margin: 5px !important;
}
.uniform-countdown .fusion-countdown-wrapper {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
}

 

OR—- Apply CSS Class: Give the countdown element the class: uniform-countdown in the Extras tab.