#mask {
  display: none;
  position: fixed; left: 0; top: 0; 
  width: 100%; height: 100%;
  background: #000;
  opacity: 0.7;
  z-index: 999;
}

.popup-box {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 32%;
  border-radius: 1vw;
  box-shadow: 0.75vw 0.75vw 2.2vw rgba(0,0,0,0.25);
  background: #fff;
  z-index: 9999;
  font-size: 1vw;
  color: #414042;
/*  overflow: hidden;*/
}

img.popup-close {
  float: right; 
  margin: -15px -15px 0 0;
}

.popup-box .content {
  position: relative;
  margin: 0 auto;
  padding: 1%;
  height: 28vh;
  width: 90%;
}

.popup-box .content p {
  margin: 0;
  padding: 8px 0;
  font-size: 0.95vw;
  font-weight: bold;
  text-align: center;
  color: #000;
}

.popup-box .content input {
	width: 70%;
	display: block;
	margin: 2vw auto;
	padding: 0.8vw 2.8vw;
	background-color: #fff;
	color: #000;
	border-radius: 1.5vw;
	font-size: 0.95vw;
	border: 2px solid #0099a9;
}

.popup-box .content button {
	display: block;
	margin: 0 auto 0 auto;
	padding: 0.8vw 2.8vw;
	border: none;
	border-radius: 1.5vw;
	box-shadow: 0.75vw 0.75vw 2.2vw rgba(0,0,0,0.18);
	background-color: #0099a9;
	text-transform: uppercase;
	font-size: 0.95vw;
	font-weight: bold;
	color: #fff;
	box-sizing: border-box;
	cursor: pointer;
}

.popup-box .content button:hover {
	background-color: #3d66c0;
	color: #fff;
}


.popup-box .title {
  width: 100%;
  background: linear-gradient(to bottom, rgba(0,153,170, 1) 40%, rgba(60,120,194, 1) 100%);
  border-radius: 1vw 0 0 0;
}

.popup-box .title p {
  margin: 0;
  padding: 2vw 0;
  font-size: 0.95vw;
  font-weight: bold;
  text-align: center;
  color: #fff;
}


@media all and (max-width: 720px) {
  .popup-box {
    width: 80%;
    font-size: 2vw;
  }

  .popup-box .content p {
    font-size: 2vw;
  }
}
