
.pushBottom {
  width: 130px;
  position: fixed;
  z-index: 10;
  right: -130px;
  bottom: 0;
  opacity: 1;
  transition: all ease 3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pushBottom__close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.4rem;
  /* line-height: .7; */
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: all ease 1s;
}
.pushBottom__close .pushBottom__close__text {
  position: relative;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgb(255, 0, 0, .8);
  color: white;
  right: 2px;
  cursor: pointer;
}
.pushBottom img {
  width: 130px;
  position: absolute;
  opacity: 1;
  transition: all ease 3s;
}
.pushBottom__price {
  position: relative;
  display: inline-block;
  padding: 2px 10px;
  opacity: 0;
  transition: all ease 1s;
}
.pushBottom__price::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 20px;
  background: red;
  opacity: .7;
}
.pushBottom__price div {
  position: relative;
  cursor: pointer;
}
.pushBottom__price a {
  text-decoration: none;
  color: white;
}