# merchant/1.10.4/assets/css/modules/wait-list/wait-list.css

Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together &amp; More for WooCommerce – Merchant, version 1.10.4. 93 lines.

- Page: https://pluginprobe.com/plugins/merchant/1.10.4/code/assets/css/modules/wait-list/wait-list.css
- Raw: https://pluginprobe.com/plugins/merchant/1.10.4/raw/assets/css/modules/wait-list/wait-list.css
- Modified: 2024-11-13T13:52:18+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/merchant/1.10.4/code/assets/css/modules/wait-list/wait-list.css#L10-L20`.

```css
/**
 * Wait list.
 *
 */
.merchant-wait-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  -webkit-transition: ease opacity 200ms;
  transition: ease opacity 200ms;
}

.merchant-wait-list-success {
  color: green;
}

.merchant-wait-list-error {
  color: red;
}

#merchant-wait-list p {
  font-weight: bold;
  margin: 0;
}

.merchant-wait-list-email label {
  display: none;
}

#merchant-wait-list input {
  width: 100%;
  margin-bottom: 5px;
}

#merchant-wait-list button {
  width: 100%;
}

.merchant-wait-list-container {
  position: relative;
  margin-bottom: 1rem;
}
.merchant-wait-list-container.merchant-loading .merchant-cover {
  visibility: visible;
}
.merchant-wait-list-container.merchant-loading .merchant-wait-list {
  opacity: 0.2;
}
.merchant-wait-list-container.merchant-loading .merchant-wait-list-loader {
  opacity: 1;
  visibility: visible;
}
.merchant-wait-list-container.merchant-loading button:focus {
  outline: none;
}
.merchant-wait-list-container .merchant-cover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  visibility: hidden;
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0.5;
  cursor: progress;
}

.merchant-wait-list-loader {
  position: absolute;
  z-index: 2;
  display: block;
  font-size: 26px;
  -webkit-animation: merchant-fa-spin 0.75s linear infinite;
          animation: merchant-fa-spin 0.75s linear infinite;
  opacity: 0;
  visibility: hidden;
}
.merchant-wait-list-loader svg {
  width: 1em;
  height: 1em;
  fill: #212121;
}
```
