
.poppy {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 15px;
  box-sizing: border-box;
  padding: 20px !important;
  pointer-events: none;
  z-index: 1000;
}
.poppy, .poppy * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.poppy__notification {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #ffffff;
  max-width: 20em;
  border-radius: 5px;
  box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.08);
  padding: 1em;
  transition: transform 0.25s ease, opacity 0.25s ease;
  width: 300px;
  user-select: none;
  -webkit-user-select: none;
  cursor: default;
  z-index: 1000;
  pointer-events: all;
}
.poppy__notification--no-animation {
  transition: none !important;
}
.poppy__notification--invisible {
  visibility: hidden;
}
.poppy__notification--dismissing {
  opacity: 0;
}
.poppy__notification--top-right {
  top: 20px;
  right: 20px;
  margin-bottom: 10px;
}
.poppy__notification--top-left {
  top: 20px;
  left: 20px;
  margin-bottom: 10px;
}
.poppy__notification--top-center {
  top: 20px;
  left: 50%;
  margin-bottom: 10px;
}
.poppy__notification--bottom-right {
  bottom: 20px;
  right: 20px;
  margin-top: 10px;
}
.poppy__notification--bottom-left {
  bottom: 20px;
  left: 20px;
  margin-top: 10px;
}
.poppy__notification--bottom-center {
  bottom: 20px;
  left: 50%;
  margin-top: 10px;
}
.poppy__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.poppy__body {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.poppy__icon {
  position: relative;
  max-width: 2em;
  transition: all 0.2s ease;
  transform: rotate(0);
}
.poppy__icon i {
  position: relative;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  height: 2em;
  width: 2em;
  line-height: 2.15em;
  font-size: 0.8em;
  top: -0.4em;
  background: #E1F5FD;
  color: #00a4ff;
}
.poppy__icon i::before {
  font-size: 1.15em !important;
}
.poppy__icon:empty {
  width: 0;
}
.poppy__icon--spinning i {
  -webkit-animation: spin 4s linear infinite;
  -moz-animation: spin 4s linear infinite;
  animation: spin 4s linear infinite;
}
.poppy__notification--success .poppy__icon i {
  background: #E3FCCA;
  color: #71BE34;
}
.poppy__notification--warning .poppy__icon i {
  background: #ffeecc;
  color: #fbb100;
}
.poppy__notification--error .poppy__icon i {
  background: #ffddcc;
  color: #ff4422;
}
.poppy__title {
  position: relative;
  font-size: 1em;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  color: #102B43;
}
.poppy__message {
  font-size: 0.875em;
  line-height: 1.5;
  margin-top: 0.5em;
  font-weight: 400;
  color: #627D98;
}
.poppy__title:empty + .poppy__message, .poppy__message:empty {
  margin-top: 0;
}
.poppy__dismiss-button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.25em;
  width: 1.25em;
  height: 1.25em;
  border-radius: 50%;
  right: 0.25em;
  top: 0.25em;
  color: #ADB7BB;
  cursor: pointer;
}
.poppy__dismiss-button svg {
  fill: #ADB7BB;
  width: 8px;
}
.poppy__dismiss-button:hover {
  background: #EFF1F3;
}
.poppy__dismiss-button:active {
  background: #e2e6e9;
}
.poppy__button-container {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  margin: 0 -0.25em;
}
.poppy__button {
  margin: 0 0.25em;
  width: 100%;
  background: #fff;
  color: #102B43;
  border: 1px solid #dadada;
  border-radius: 5px;
  cursor: pointer;
  padding: 0.6em 0.5em;
  font-size: 0.8em;
  font-weight: 500;
}
.poppy__button--primary {
  background: #00B1FF;
  border-color: transparent;
  color: #ffffff;
}
.poppy__progressbar {
  display: none;
  position: relative;
  width: 100%;
  bottom: 0;
  height: 4px;
  background: #e2e2e2;
  border-radius: 10px;
  margin-top: 10px;
}
.poppy__progressbar-line {
  position: absolute;
  background: #77dd22;
  left: 0;
  bottom: 0;
  width: 0;
  height: inherit;
  border-radius: inherit;
}

:not(:empty) + .poppy__footer:not(:empty) {
  margin-top: 0.5em;
}

@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.poppy__icon:not(:empty) + .poppy__content {
  padding-left: 0.5em;
}

.poppy__notification--progressbar .poppy__progressbar {
  display: block;
}