

.popup-body {
  background-color: #fff;
  position: static;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 240px;
  text-align: center;
}

@media all and (-webkit-min-device-pixel-ratio:0) {



}

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



}

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



}

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



}

  .popup-container {
  max-width: 400px;
  margin: 0 auto;
  padding: 30px;
  text-align: center;
  background:rgba(0,0,0,0.8);
  border-radius: 10px;
  border: 5px solid #fff;
  box-sizing: border-box;
}

 button {
  font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 100;
  letter-spacing: 0.5px;
}

h5 {
  font-size: 34px;
  text-align: center;
  color: #fff;
  margin: 0 0 30px 0;
}

p-popup{
  color:#fff;
}
p-popup:focus {
  outline: none;
}
p-popup:hover {
  background: #aed2e1;
}

button {
  background: #fff;
  border: 0;
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 15px;
  color: #0C0C0C;
  cursor: pointer;
}
button:focus {
  outline: none;
  color:#fff;
}
button:hover {
  background: #f5f5f5;
}

.popup {
  background: rgba(100, 100, 100, 0.6);
  position: auto;
  display: none;
  z-index: 5000;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.popup > div {
  border-radius: 10px;
  position: auto;
  background: #000;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
  padding: 30px 15px;
  /* Width of popup can be changed */
  width: 70%;
  max-width: 600px;
  z-index: 5001;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  text-align: center;
  font-family: "NidLightRegular", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  border: 5px solid #BF1124;
}