#salespopups-container {
  position: fixed;
  bottom: 10px;
  left: 30px;
  width: 370px;
  font-family: 'Helvetica', Arial, sans-serif;
  z-index: 3000;
    overflow-y: hidden;
    overflow-x: hidden;
    display:none;
}

.salespopups-matty {
  position: relative;
  padding: 20px 17px;
  margin: 43px;
  background: #f5f5f5;
  cursor: pointer;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  animation-duration: .3s;
  animation-name: SalesPopups;
  animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

.salespopups-fadeOut {
  animation-name: SalesPopupsFadeOut;
  animation-duration: .3s;
  animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  animation-fill-mode: forwards;
}

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

.salespopups-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 10px;
    color: #666666;

}

.salespopups-text {
      font-size: 12px;
    line-height: 18px;
    color: #777;
    text-transform: capitalize;
}

.salespopups-icon {
  position: absolute;
  top: 5px;
  left: -40px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.salespopups-time-ago {
  position: absolute;
  bottom: 5px;
  right: 10px;
  font-size: 15px;
}

.salespopups-matty a,
.salespopups-matty a:hover {
  color: #549edb !important;
  text-decoration: none !important;
}

/** matty types */
.salespopups-success {
  border-bottom: 2px solid #51c625;
}

.salespopups-warning {
  border-bottom: 2px solid #db9215;
}

.salespopups-error {
  border-bottom: 2px solid #db2b1d;
}

.salespopups-info {
  border-bottom: 2px solid #7e1d4d;
}

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

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