/** Shopify CDN: Minification failed

Line 7:0 Unexpected "`"
Line 127:0 Unexpected "`"

**/
```css
#bazarteEmailPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
}

.bazarte-email-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;
  box-sizing: border-box;
}

.bazarte-email-box {
  position: relative;

  width: 100%;
  max-width: 450px;

  background: #ffffff;
  padding: 35px 30px;

  box-sizing: border-box;

  border-radius: 4px;

  text-align: center;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.bazarte-email-box h3 {
  margin: 0 0 15px;
  font-size: 24px;
}

.bazarte-email-box p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.5;
}

#bazarteCustomerEmail {
  width: 100%;
  height: 45px;

  padding: 0 12px;

  border: 1px solid #ccc;
  border-radius: 3px;

  box-sizing: border-box;

  font-size: 15px;
}

.bazarte-email-button {
  width: 100%;
  height: 45px;

  margin-top: 15px;

  border: 0;
  border-radius: 3px;

  background: #111111;
  color: #ffffff;

  cursor: pointer;

  font-size: 14px;
  font-weight: 600;
}

.bazarte-email-button:hover {
  opacity: 0.9;
}

.bazarte-email-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.bazarte-email-close {
  position: absolute;

  top: 10px;
  right: 12px;

  width: 35px;
  height: 35px;

  border: 0;
  background: transparent;

  font-size: 28px;
  line-height: 35px;

  cursor: pointer;
}

.bazarte-email-message {
  margin-top: 15px;

  font-size: 14px;
  line-height: 1.4;
}
```
