| 1 |
/** |
| 2 |
* Countdown Timer. |
| 3 |
* |
| 4 |
*/ |
| 5 |
.merchant-countdown-timer { |
| 6 |
display: -webkit-box; |
| 7 |
display: -ms-flexbox; |
| 8 |
display: flex; |
| 9 |
-webkit-box-align: center; |
| 10 |
-ms-flex-align: center; |
| 11 |
align-items: center; |
| 12 |
margin: 25px 0; |
| 13 |
} |
| 14 |
|
| 15 |
.merchant-countdown-timer.center { |
| 16 |
-webkit-box-pack: center; |
| 17 |
-ms-flex-pack: center; |
| 18 |
justify-content: center; |
| 19 |
} |
| 20 |
|
| 21 |
.merchant-countdown-timer.right { |
| 22 |
-webkit-box-pack: right; |
| 23 |
-ms-flex-pack: right; |
| 24 |
justify-content: right; |
| 25 |
} |
| 26 |
|
| 27 |
.merchant-countdown-timer svg { |
| 28 |
margin-right: 5px; |
| 29 |
fill: var(--merchant-icon-color); |
| 30 |
} |
| 31 |
|
| 32 |
.merchant-countdown-timer-text { |
| 33 |
color: var(--merchant-sale-ending-color); |
| 34 |
} |
| 35 |
|
| 36 |
.merchant-countdown-timer-countdown { |
| 37 |
color: var(--merchant-digits-color); |
| 38 |
font-weight: bold; |
| 39 |
} |