.pop-up {
  background: #051c00;
  border: 1px solid #717785;
  border-radius: 8px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  min-height: 136px;
  opacity: 0;
  padding: 12px;
  position: fixed;
  right: -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-color: #081506;
    color: rgb(108 193 98);
	border: 2px solid rgb(108 193 98);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  	text-shadow: 2px 2px 3px #000;
	position: relative;
    overflow: hidden;
	border-radius: 30px;
}
.pop-up__btn::before{
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100px;
  height: 50px;
  border-radius: inherit;
  scale: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgb(23, 88, 15), rgb(18, 151, 3));
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}
.pop-up__btn:hover::before{
  scale: 3;
}

.pop-up__btn:hover{
  scale: 1;
	color: rgb(108 193 98);
  box-shadow: 0 0px 20px rgba(193, 163, 98,0.4);
}

.pop-up__btn:active{
  scale: 1;
}
.pop-up__close {
  width: 30px;
  height: 30px;
  background-color: #eee;
  position: absolute;
  right: -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;
  right: 40px;
  transition: all 0.3s ease-in-out;
  visibility: visible;
}
/*Media*/
@media(max-width: 576px){
	.pop-up {
		max-width: 360px;
	}
	.pop-up__img {
    	width: 80px;
	}
	.pop-up ul{
		margin: 0 0 1em 1em;
	}
	.pop-up__show {
    	left: 20px;
	}
}
@media(max-width: 400px){
		.pop-up {
		max-width: 325px;
	}
	.pop-up__img{
		display: none;
	}    
}