.global-toast-notifications .notification-container {
  width: 100vw;
  -ms-flex-pack: center;
      justify-content: center;
  z-index: 10002;
}
.global-toast-notifications .notification-container .notification {
  width: unset;
  max-width: 600px;
}
.global-toast-notifications .notification-container .notification .type-icon,
.global-toast-notifications .notification-container .notification .close-icon {
  -ms-flex-positive: 0;
      flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}
.global-toast-notifications .notification-container .notification .notification-message {
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}
.notification-container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
  position: fixed;
  z-index: 10002;
  width: 100vw;
  -ms-flex-pack: center;
      justify-content: center;
}
.notification-container .notification {
  word-break: break-word;
  width: unset;
  max-width: 600px;
  text-align: left;
  -webkit-box-shadow: 0px 2px 6px #999ba2;
          box-shadow: 0px 2px 6px #999ba2;
  background-color: #444855;
  color: white;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.notification-container .notification .type-icon {
  text-align: center;
}
.notification-container .notification .type-icon.success {
  background-color: #67cc9d;
}
.notification-container .notification .type-icon.info {
  background-color: #5ca2ec;
}
.notification-container .notification .type-icon.inprogress {
  background-color: #f58026;
  border-radius: none;
}
.notification-container .notification .type-icon.error {
  background-color: #f44123;
}
.notification-container .notification .close-icon {
  -ms-flex-item-align: start;
      align-self: flex-start;
  cursor: pointer;
}
.notification-container .notification .close-icon,
.notification-container .notification .type-icon {
  -ms-flex: 1 1;
      flex: 1 1;
  -ms-flex-positive: 0;
      flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  padding: 12px 8px;
}
.notification-container .notification .notification-message {
  -ms-flex: 10 1;
      flex: 10 1;
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  padding: 10px 8px 12px;
  font-size: 12pt;
}
.notification-container .notification a {
  color: #8abcf1;
}
.notification-container .notification-left {
  float: left;
}
.notification-container .notification-right {
  float: right;
}

.spinner-container {
  text-align: center;
}
.spinner-container .spinner {
  border-radius: 50%;
}
.spinner-container .spinner {
  color: #fff;
  font-size: 2px;
  width: 20px;
  height: 20px;
  -webkit-box-shadow: inset 0 0 0 2em;
          box-shadow: inset 0 0 0 2em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.spinner-container .spinner:before,
.spinner-container .spinner:after {
  position: absolute;
  content: "";
}
.spinner-container .spinner:before {
  width: 12px;
  height: 22px;
  background: #f58026;
  border-radius: 10em 0 0 10em;
  left: -2px;
  -webkit-transform-origin: center right;
      -ms-transform-origin: center right;
          transform-origin: center right;
  -webkit-animation: indeterminate-spin 2s infinite ease 1.5s;
          animation: indeterminate-spin 2s infinite ease 1.5s;
}
.spinner-container .spinner:after {
  width: 12px;
  height: 22px;
  background: #f58026;
  border-radius: 0 10em 10em 0;
  -webkit-transform-origin: center left;
      -ms-transform-origin: center left;
          transform-origin: center left;
  -webkit-animation: indeterminate-spin 2s infinite ease;
          animation: indeterminate-spin 2s infinite ease;
}
@-webkit-keyframes indeterminate-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes indeterminate-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.hl-icon svg {
  width: 1em;
  height: 1em;
}

/*# sourceMappingURL=GlobalToastProvider.f2a35c59.chunk.css.map*/