/*Pop Up Box*/
.popupOverlay{
  background-color: rgba(0, 0, 0, 0.75);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  z-index: 10;
}
.popupBox{
  background-color: white;
  border: #2FA9AF 9px solid;
  width: 650px;
  padding: 40px 35px 35px;
  text-align: left;
  position: /*absolute*/fixed;
  margin-left: -325px;
  overflow: hidden;
  display:none;
  z-index: 11;
  box-sizing: border-box;
  left: 50%;
  top: /*70px*/170px;
}

.popupBox li{
	width:500px;
	height:0px;
}

a.closeBtn {
  display:block;
  text-decoration:none;
  margin-top: -38px;
  margin-right: -34px;
  background-color:#F26C57;
  color:#fff;
  border-radius: 15px;
  padding: 6px 10px;
  font-size: 13px;
  float:right;
}

a.closeBtn:hover{
  background-color:#CE4A35;
}

.showPopup{
  display: block;
}

@media all and (max-width: 797px) {
  .popupBox{
    width: auto;
    margin-left: 0;
    margin-right: 0;
    left: 15px;
    right: 15px;
  }
}