/* --------------------
  Checkout Popup Modal
  ---------------------- */

  #eniary-message-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    display: none; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.6); z-index: 10003;
  }
  #eniary-message-modal > div {
    background: #fff; padding: 50px 20px; border-radius: 6px;
    max-width: 400px; width: 90%; text-align: center; position: relative;
  }
  #eniary-message-close {
    position: absolute; top: 10px; right: 10px;
    cursor: pointer; font-size: 24px;
    background: crimson;
    padding: 4px;
    color: #fff;
  }
  #eniary-message-text.error { color: crimson; }
  #eniary-message-text.success { color: #333; }

  #eniary-message-icon {
  font-size: 2rem;
  margin-bottom: 0.5em;
  display: block;
  text-align: center;
  }

  #eniary-message-icon.error {
    color: crimson;
  }

  #eniary-message-icon.success {
    color: forestgreen;
  }
