| 1 |
/** |
| 2 |
* Wait list. |
| 3 |
* |
| 4 |
*/ |
| 5 |
.merchant-wait-list { |
| 6 |
display: -webkit-box; |
| 7 |
display: -ms-flexbox; |
| 8 |
display: flex; |
| 9 |
-webkit-box-orient: vertical; |
| 10 |
-webkit-box-direction: normal; |
| 11 |
-ms-flex-direction: column; |
| 12 |
flex-direction: column; |
| 13 |
gap: 15px; |
| 14 |
} |
| 15 |
|
| 16 |
.merchant-wait-list-success { |
| 17 |
color: green; |
| 18 |
} |
| 19 |
|
| 20 |
.merchant-wait-list-error { |
| 21 |
color: red; |
| 22 |
} |
| 23 |
|
| 24 |
#merchant-wait-list p { |
| 25 |
font-weight: bold; |
| 26 |
margin: 0; |
| 27 |
} |
| 28 |
|
| 29 |
.merchant-wait-list-email label { |
| 30 |
display: none; |
| 31 |
} |
| 32 |
|
| 33 |
#merchant-wait-list input { |
| 34 |
width: 100%; |
| 35 |
margin-bottom: 5px; |
| 36 |
} |
| 37 |
|
| 38 |
#merchant-wait-list button { |
| 39 |
width: 100%; |
| 40 |
} |
| 41 |
|