| 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 |
-webkit-transition: ease opacity 200ms; |
| 15 |
transition: ease opacity 200ms; |
| 16 |
} |
| 17 |
|
| 18 |
.merchant-wait-list-success { |
| 19 |
color: green; |
| 20 |
} |
| 21 |
|
| 22 |
.merchant-wait-list-error { |
| 23 |
color: red; |
| 24 |
} |
| 25 |
|
| 26 |
#merchant-wait-list p { |
| 27 |
font-weight: bold; |
| 28 |
margin: 0; |
| 29 |
} |
| 30 |
|
| 31 |
.merchant-wait-list-email label { |
| 32 |
display: none; |
| 33 |
} |
| 34 |
|
| 35 |
#merchant-wait-list input { |
| 36 |
width: 100%; |
| 37 |
margin-bottom: 5px; |
| 38 |
} |
| 39 |
|
| 40 |
#merchant-wait-list button { |
| 41 |
width: 100%; |
| 42 |
} |
| 43 |
|
| 44 |
.merchant-wait-list-container { |
| 45 |
position: relative; |
| 46 |
margin-bottom: 1rem; |
| 47 |
} |
| 48 |
.merchant-wait-list-container.merchant-loading .merchant-cover { |
| 49 |
visibility: visible; |
| 50 |
} |
| 51 |
.merchant-wait-list-container.merchant-loading .merchant-wait-list { |
| 52 |
opacity: 0.2; |
| 53 |
} |
| 54 |
.merchant-wait-list-container.merchant-loading .merchant-wait-list-loader { |
| 55 |
opacity: 1; |
| 56 |
visibility: visible; |
| 57 |
} |
| 58 |
.merchant-wait-list-container.merchant-loading button:focus { |
| 59 |
outline: none; |
| 60 |
} |
| 61 |
.merchant-wait-list-container .merchant-cover { |
| 62 |
display: -webkit-box; |
| 63 |
display: -ms-flexbox; |
| 64 |
display: flex; |
| 65 |
-webkit-box-align: center; |
| 66 |
-ms-flex-align: center; |
| 67 |
align-items: center; |
| 68 |
-webkit-box-pack: center; |
| 69 |
-ms-flex-pack: center; |
| 70 |
justify-content: center; |
| 71 |
visibility: hidden; |
| 72 |
position: absolute; |
| 73 |
height: 100%; |
| 74 |
width: 100%; |
| 75 |
opacity: 0.5; |
| 76 |
cursor: progress; |
| 77 |
} |
| 78 |
|
| 79 |
.merchant-wait-list-loader { |
| 80 |
position: absolute; |
| 81 |
z-index: 2; |
| 82 |
display: block; |
| 83 |
font-size: 26px; |
| 84 |
-webkit-animation: merchant-fa-spin 0.75s linear infinite; |
| 85 |
animation: merchant-fa-spin 0.75s linear infinite; |
| 86 |
opacity: 0; |
| 87 |
visibility: hidden; |
| 88 |
} |
| 89 |
.merchant-wait-list-loader svg { |
| 90 |
width: 1em; |
| 91 |
height: 1em; |
| 92 |
fill: #212121; |
| 93 |
} |