#notif-container {
  position: fixed;
  top: 45px;
  right: 0;
  width: auto;
  z-index: 999999;
}

.notif-toast {
  position: relative;
  padding: 8px 12px;
  margin: 16px;
  border-radius: 20px;
  background: #979797;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.19);
  border: 1px solid black;
  animation-duration: 0.3s;
  animation-name: notif;
  animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.notif-fadeOut {
  animation-name: notifFadeOut;
  animation-duration: 0.3s;
  animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  animation-fill-mode: forwards;
}

#notif-container p,
#notif-container h4 {
  margin: 3px 0 !important;
}

.notif-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 10px;
}

.notif-text {
  font-size: 14px;
  color: #000;
}

.notif-icon {
  position: absolute;
  top: 5px;
  left: -40px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #FFF;
}

.notif-toast a, .notif-toast a:hover {
  color: #549EDB !important;
  text-decoration: none !important;
}

/** toast types */
.notif-success {
  border-bottom: 2px solid #51C625;
}

.notif-warning {
  border-bottom: 2px solid #DB9215;
}

.notif-error {
  border-bottom: 2px solid #DB2B1D;
}

.notif-info {
  border-bottom: 2px solid #27ABDB;
}

@keyframes notif {
  from {
    transform: translate3d(400px, 0, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes notifFadeOut {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  to {
    transform: translate3d(400px, 0, 0);
    opacity: 0;
  }
}

/*# sourceMappingURL=sharing.css.map */
