@media screen and (max-width: 767px) {
  #someone-purchased {
    bottom: 0 !important;
    left: 0 !important;
    top: auto !important;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    max-width: auto !important;
  }
  #someone-purchased div img {
    max-height: auto;
  }
  #someone-purchased div p {
    font-size: 11px;
    width: 80%;
  }
}
@keyframes nFadeIn {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
#someone-purchased.fade-in {
  opacity: 0;
  animation-name: nFadeIn;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@keyframes nFadeIn {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes nFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
    bottom: 0;
  }
}
#someone-purchased.fade-out {
  opacity: 0;
  animation-name: nFadeOut;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@keyframes nFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
    bottom: 0;
  }
}
#someone-purchased {
  background: #2fb66a;
  border: 0;
  display: none;
  left: 20px;
  right: auto;
  bottom: 20px;
  top: auto !important;
  padding: 0;
  position: fixed;
  text-align: left;
  width: 300px;
  height: auto;
  z-index: 99999;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.4);
  border-radius: 50px;
  min-height: 80px;
}
#someone-purchased div p {
  color: #fff;
  font-size: 13px;
  width: auto;
  max-width: 300px;
}
.desc {
  width: 100%;
  float: right;
  padding: 0 20px 3px 80px;
  font-size: 12px;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  text-align: left;
}
.avatar {
  position: absolute;
  top: 10px;
  left: 10px;
}
.avatar img {
  border-radius: 50%;
  float: left;
  width: 60px;
  height: 60px;
}
.title {
  padding: 5px 0 0 80px;
  font-size: 12px;
  color: #fff;
  font-weight: 700;
}
