.pop-up {
  background: var(--popup-bg);
  border: 1px solid #717785;
  border-radius: 8px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  min-height: 136px;
  opacity: 0;
  padding: 12px;
  position: fixed;
  left: -100%;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  max-width: 460px;
  width: 100%;
  z-index: 10000;
}
.pop-up__info {
  display: flex;
}
.pop-up__box {
  margin-left: 15px;
}
.pop-up__img {
  width: 130px;
  height: 100%;
}
.pop-up__title {
  font-size: 24px;
  font-weight: 600;
}
.pop-up__sub-title {
  margin-top: 10px;
}
.pop-up__btn {
  width: 240px;
  height: 50px;
  margin: 10px auto 0 auto;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.pop-up__btn:hover{
  background: var(--contrast-3);
} 
.pop-up__close {
  width: 30px;
  height: 30px;
  background-color: #eee;
  position: absolute;
  left: -15px;
  top: -15px;
  border-radius: 15px;
  border: 1px solid #1e232f;
  cursor: pointer;
}
.pop-up__close-wrap {
  position: relative;
}
.pop-up__close-wrap::after {
  content: "";
  position: absolute;
  display: block;
  width: 22px;
  height: 3px;
  background-color: #1e232f;
  transform: rotate(-45deg);
  top: 12px;
  left: 3px;
}
.pop-up__close-wrap::before {
  content: "";
  position: absolute;
  display: block;
  width: 22px;
  height: 3px;
  background-color: #1e232f;
  transform: rotate(45deg);
  top: 12px;
  left: 3px;
}
.pop-up__show {
  opacity: 1;
  left: 40px;
  transition: all 0.3s ease-in-out;
  visibility: visible;
}
@media(max-width: 576px){
  .pop-up{
    max-width: 340px;
    left: 20px;
    padding-right: 15px;
  }
  .pop-up__img {
    width: 70px;
  }
  .pop-up__sub-title {
    margin-right: 15px;
  }
  .pop-up__btn{
    width: 220px;
  }
}