| 1 |
/*FixIn: 8.7.11.10 */ |
| 2 |
/**********************************************************************************************************************/ |
| 3 |
/* Group */ |
| 4 |
.wpbc_times_selector { |
| 5 |
display: flex; |
| 6 |
flex-flow: row wrap; |
| 7 |
justify-content: flex-start; |
| 8 |
align-items: flex-start; |
| 9 |
white-space: nowrap; |
| 10 |
word-wrap: normal; |
| 11 |
width: 100%; |
| 12 |
gap: 15px; |
| 13 |
} |
| 14 |
/* Button */ |
| 15 |
.wpbc_times_selector div { |
| 16 |
margin: 7px 0; |
| 17 |
padding: 0.1em 1.5em; |
| 18 |
cursor: pointer; |
| 19 |
width: auto; |
| 20 |
line-height: 2; |
| 21 |
|
| 22 |
flex: 1 1 auto; |
| 23 |
max-width: Min(250px, 100%); |
| 24 |
white-space: wrap; |
| 25 |
word-break: normal; |
| 26 |
|
| 27 |
} |
| 28 |
.wpbc_times_selector div.wpbc_time_picker_disabled:hover, |
| 29 |
.wpbc_times_selector div.wpbc_time_picker_disabled { |
| 30 |
cursor: not-allowed; |
| 31 |
color:#fff; |
| 32 |
background: #dc3400; |
| 33 |
} |
| 34 |
|
| 35 |
@media (max-width: 400px) { |
| 36 |
.wpbc_times_selector div { |
| 37 |
min-width: Min(200px, 100%); |
| 38 |
white-space: normal; |
| 39 |
} |
| 40 |
} |
| 41 |
|
| 42 |
/* All times booked message *******************************************************************************************/ |
| 43 |
.wpbc_times_selector span.wpbc_no_time_pickers { |
| 44 |
/*flex: 1 0 auto;*/ |
| 45 |
/*padding: 5px 0;*/ |
| 46 |
/*width: 130px;*/ |
| 47 |
flex: 1 0 130px; |
| 48 |
padding: 5px 10px; |
| 49 |
width: auto; |
| 50 |
|
| 51 |
margin: 10px 15px 0 0; |
| 52 |
text-align: center; |
| 53 |
color: #959595; |
| 54 |
font-weight: 400; |
| 55 |
background: #f6f6f6; |
| 56 |
border: 1px solid #dcdcdc; |
| 57 |
border-radius: 5px; |
| 58 |
cursor: pointer; |
| 59 |
} |