.popup-wrap {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  content: '';
  background: rgba(0, 0, 0, 0.8);
  z-index: 9900;

  -moz-animation-name: popumove;
  -moz-animation-duration: 1s;
  -moz-animation-iteration-count: 1;
  -moz-animation-fill-mode: forwards;
  -webkit-animation-name: popumove;
  -webkit-animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  -ms-animation-name: popumove;
  -ms-animation-duration: 1s;
  -ms-animation-fill-mode: 1;
  -ms-animation-fill-mode: forwards;
  -o-animation-name: popumove;
  -o-animation-duration: 1s;
  -o-animation-fill-mode: 1;
  -o-animation-fill-mode: forwards;
  animation-name: popumove;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}


  @keyframes popumove {
      0%    {opacity: 0}
      100%  {opacity: 1}
  }

.popup-box {
  width: 50%;
  padding: 50px 75px;
  transform: translate(-50%, -50%) scale(0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  background: #fff;
  text-align: center;
}


.close-btn {
  position: absolute;
  width: 50px;
  height: 50px;
  display: block;
  top: 0;
  right: 0;
  border-radius: 0;
  background: #666;
  font-weight: bold;
  text-decoration: none;
  color: #FFF;
  line-height: 45px;
  font-size: 32px;
  font-family: "serif";
  z-index: 999;
  cursor: pointer;
}

.close-btn:hover {
	background: #FB4C27;
	color: #FFF;
    transition: transform .5s;
}

.transform-in, .transform-out {
  display: block;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.transform-in {
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.transform-out {
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.htitle {
	font-size: 2.2em;
	font-weight: bold;
	color: #FB4027;
}

.s-li {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
	margin: 2em auto 0 auto;
	
}

    .s-li-div {
	    display: block;
		margin: 5px auto;
		padding: 5px 10px;
		width: 55%;
		font-size: 130%;
		letter-spacing: 1px;
		color: #FFF;
		background: #009847;
		border: solid 1px #009847;
		border-radius: 10px;
    }

    .s-li-div:hover {
		color: #009847;
		background: #FFF;
		border: solid 1px #009847;
    }



@media screen and (max-width: 1440px) {

.close-btn {
  width: 40px;
  height: 40px;
  border-radius: 0;
  line-height: 35px;
  font-size: 25px;
}
	
    .s-li-div {
		width: 80%;
    }

}	


@media screen and (max-width: 1024px) {

.close-btn {
  width: 40px;
  height: 40px;
  border-radius: 0;
  line-height: 35px;
  font-size: 25px;
}
	
    .s-li-div {
		width: 100%;
    }

}	


@media screen and (max-width: 840px) {

.popup-box {
  width: 80%;
  padding: 40px 20px;
  transform: translate(-50%, -50%) scale(1);
  position: absolute;
  top: 50%;
  left: 50%;
  box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  background: #fff;
  text-align: center;
}

.close-btn {
  width: 45px;
  height: 45px;
  top: 10;
  right: 0;
  border-radius: 0;
  line-height: 40px;
  font-size: 25px;
}

    .s-li-div {
	    display: block;
		margin: 5px auto;
		padding: 5px 10px;
		width: 60%;
		font-size: 130%;
		letter-spacing: 1px;
		color: #FFF;
		background: #009847;
		border: solid 1px #009847;
    }

	
	
}	


@media screen and (max-width: 600px) {

.close-btn {
  width: 40px;
  height: 40px;
  border-radius: 0;
  line-height: 35px;
  font-size: 30px;
}
	
    .s-li-div {
		width: 90%;
    }

}


@media screen and (max-width: 400px) {

.close-btn {
  width: 25px;
  height: 25px;
  border-radius: 0;
  line-height: 22px;
  font-size: 20px;
}

.htitle {
	font-size: 1.7em;
}

    .s-li-div {
		font-size: 120%;
    }
	
	
	
	
}



