| 1 |
/*! == Align Form Elements ====================================================================================== */ |
| 2 |
/*! == Right == */ |
| 3 |
.wpbc_aling_right, |
| 4 |
.wpbc_aling_right .wpbc_times_selector { |
| 5 |
justify-content: flex-end !important; |
| 6 |
} |
| 7 |
@media (max-width: 400px) { |
| 8 |
.wpbc_aling_right .wpbc_times_selector div { |
| 9 |
margin: 7px 0 0 15px; |
| 10 |
} |
| 11 |
} |
| 12 |
/*! == Center == */ |
| 13 |
.wpbc_aling_center, |
| 14 |
.wpbc_aling_center .wpbc_times_selector { |
| 15 |
justify-content: center !important; |
| 16 |
} |
| 17 |
/*! == Center Calendar ? == */ |
| 18 |
.wpbc_aling_center .wpbc_calendar_wraper{ |
| 19 |
display: flex; |
| 20 |
flex-flow: column nowrap; |
| 21 |
justify-content: center; |
| 22 |
align-items: center; |
| 23 |
} |
| 24 |
@media (max-width: 400px) { |
| 25 |
.wpbc_aling_center .wpbc_times_selector div { |
| 26 |
margin: 7px 15px; |
| 27 |
} |
| 28 |
} |
| 29 |
/*! == Wizard Form Tmeplate - Bordered Well Padding ============================================================= */ |
| 30 |
.wpbc_wizard__border_container { |
| 31 |
box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 6px 0px; |
| 32 |
border: 1px solid rgb(204, 204, 204); |
| 33 |
border-radius: 2px; |
| 34 |
background: #FFF; |
| 35 |
padding: 10px 30px; |
| 36 |
box-sizing: border-box; |
| 37 |
margin: auto; |
| 38 |
max-width: 100%; |
| 39 |
width: 100%; |
| 40 |
} |
| 41 |
.wpbc_wizard__border_container .wpbc_times_selector div { |
| 42 |
flex: 0 0 120px; |
| 43 |
} |
| 44 |
.wpbc_theme_dark_1 .wpbc_wizard__border_container { |
| 45 |
border: 1px solid rgb(0, 0, 0); |
| 46 |
background: #626262; |
| 47 |
color: #999; |
| 48 |
color: #bbb; |
| 49 |
box-shadow: 0 0px 3px #3b3b3b; |
| 50 |
} |
| 51 |
.wpbc_theme_dark_1 .wpbc_wizard__border_container label { |
| 52 |
color: #fff; |
| 53 |
} |