.jo-message-container {
  z-index: 6000;
  position: fixed;
  top: 12px;
  left: 0;
  right: 0;
  height: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.jo-message-wrapper {
  margin-bottom: 8px;
}

.jo-message {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  overflow: hidden;

  padding: 8px 18px;
  max-width: 75vh;

  background: var(--background-color);
  font-size: 14px;
  border-radius: 3px;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
}
.jo-message--error-type {
  background-color: #f56c6c;
  color: #fff;
}
.jo-message--success-type {
  background-color: #67c23a;
  color: #fff;
}
.jo-message--warning-type {
  background-color: #e6a23c;
  color: #fff;
}
.jo-message__icon {
  width: 20px;
  position: relative;
  top: 3px;
  left: -3px;
}
