#coupon-widget {
  position: fixed;
  z-index: 2;
  top: 30%;
  right: -86px;
  width: 132px;
  height: 60px;
  cursor: pointer;
  transition: .6s right;
  background-position: center;
  background-size: cover;
  background-image: url('/builds/img/coupon_bg.png');
}
#coupon-widget:hover {
  right: 0;
}
#coupon-widget .coupon-body {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
#coupon-widget .coupon-icon {
  width: 23px;
  height: 22px;
  text-align: center;
}
#coupon-widget .coupon-icon > div,
#coupon-widget .coupon-icon img {
  display: inline-block;
  width: 100%;
  height: 100%;
}
#coupon-widget .coupon-info {
  color: white;
  text-align: center;
  font-size: 17.9px;
  line-height: 21px;
}
@media (max-width: 480px) {
  #coupon-widget {
    right: 0;
    background-image: none;
    background-color: #AC2C5E;
    width: 48px;
    height: 55px;
  }
  #coupon-widget .coupon-info {
    display: none;
  }
}
