.famisp-sales-popup-wrap {
  display: none;
  position: fixed;
  border-radius: 5px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, .4);
  top: auto;
  left: 30px;
  bottom: 30px;
  right: auto;
  padding: 0;
  text-align: left;
  width: auto;
  background-color: #fff;
  z-index: 1000;
  .famisp-sales-popup {
    display: flex;
    position: relative;
    padding: 15px 30px 15px 15px;
    .famisp-close {
      position: absolute;
      top: 5px;
      right: 5px;
      width: 22px;
      height: 22px;
      line-height: 20px;
      text-align: center;
      border-radius: 50%;
      border: 1px solid #333;
      background-color: #333;
      color: #fff;
      cursor: pointer;
      &:hover {
        background-color: #ff0000;
        border-color: #ff0000;
      }
    }
  }
  .famisp-product-thumb {
    width: 80px;
    margin-right: 5px;
    img {
      width: 100%;
      height: auto;
    }
  }
  .famisp-product-name {
    display: block;
    font-size: 15px;
    font-weight: 700;
    width: 100%;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0;
  }
  p {
    margin: 0;
  }
  * {
    box-sizing: border-box;
  }
}

@media (max-width: 767px) {
  .famisp-sales-popup-wrap {
    left: 0;
    bottom: 0;
    width: 100%;
  }
}