@import url("https://fonts.googleapis.com/css?family=Raleway:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i");
.toast-container {
  display: table-cell;
  vertical-align: middle;
}
.toast-container.fixed-bottom {
  z-index: 1050;
}

.toast-cell {
  display: inline-block;
}

.add-margin {
  margin-top: 20px;
}

.toast-svg {
  fill: #fff;
}

.toast {
  text-align: left;
  padding: 12px 0;
  background-color: #1b2126;
  border-radius: 4px;
  max-width: 320px;
  min-width: 320px;
  height: 70px;
  top: 0px;
  position: relative;
  box-shadow: 1px 7px 14px -5px rgba(0, 0, 0, 0.2);
  transition: 0.7s;
  float: right;
}

.position-bottom {
  width: calc(100% - 90px);
  margin-left: 90px;
  margin-bottom: 5px;
}

.toast:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.toast-icon {
  position: absolute;
  top: 50%;
  left: 22px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  padding: 7px;
  border-radius: 50%;
  display: inline-block;
}

.toast-type {
  color: #dadbe0;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0;
}

.toast-message {
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 0;
  color: #a5aabe;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.toast-content {
  padding-left: 60px;
  padding-right: 60px;
}

.toast:hover .toast-message {
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.toast:hover {
  max-width: 500px;
}

.toast:hover .toast-link {
  opacity: 1;
  width: 35px;
}

.toast-link {
  width: 0;
  cursor: pointer;
  height: 24px;
  transform: translateY(-50%);
  margin-left: 5px;
  transition: 0.7s;
  opacity: 0;
  padding-left: 10px;
}

.toast-link path {
  fill: #a5aabe;
}

.toast-close {
  position: absolute;
  right: 22px;
  top: 50%;
  width: 14px;
  cursor: pointer;
  height: 14px;
  fill: #a5aabe;
  transform: translateY(-50%);
}

.toast-close svg {
  display: flex;
  justify-content: center;
  align-items: center;
}

.success .toast-icon {
  background-color: #2BDE3F;
}

.success:before {
  background-color: #2BDE3F;
}

.error .toast-icon {
  background-color: #FF0000;
}

.error:before {
  background-color: #FF0000;
}/*# sourceMappingURL=z.toast.css.map */