/* Popup container */
.popupRespnse {
  position: absolute;
  z-index:20;
  top: 40%;
  left:10%;
  width:70%;
}

/* The actual popupRespnse (appears on top) */
.popupRespnse .popuptext {
  visibility: hidden;
  width: auto;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 30px 30px;
  position: absolute;
  z-index: 5;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
  font-weight:bolder;
  font-size:16px;
}

/* Popup arrow */
.popupRespnse .p16opuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class when clicking on the popupRespnse container (hide and show the popupRespnse) */
.popupRespnse .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s
}

/* Add animation (fade in the popupRespnse) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}

@media screen and (min-width: 1200px) and (max-width: 6000px) {
	.popupRespnse {
	  width:70%;
	}
	.popupRespnse .popuptext {
	  font-size:16px;
	}
}
@media screen and (min-width: 480px) and (max-width: 1200px) {
	.popupRespnse {
	  top:30%;
	  left:0px;
	  width:70%;
	}
	.popupRespnse .popuptext{
	  font-size:16px;
	  left: 20%;
	  margin-left:0px;
	  width:100%;
	}
}
@media screen and (min-width: 40px) and (max-width: 480px) {
	.popupRespnse {
	  top:50%;
	  left:0px;
	  width:80%;
	}
	.popupRespnse .popuptext{
	  font-size:12px;
	  left: 10%;
	  margin-left:0px;
	  width:100%;
	}
}