.popup-container {
  text-align: center;
  position: absolute;
  background-color: #323232;
  width: 55rem;
  height: auto;
  z-index: 3000;
  left: 50%;
  transform: translateX(-50%);
  padding: 3rem;
  margin-top: 2rem;
  border-radius: 8px;
  -webkit-box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.2);
-moz-box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.2);
box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.2);
transition: all .25s;
opacity: 0;
}

@media only screen and (max-width: 768px)
{
  .popup-container {
    margin-top: 8rem;
    width: 90%;
    font-size: 2rem;
  }

  .popup-container p {
    font-size: 1.2rem!important;
  }
}

.popup-container h3 {
  color: #fff!important;
}

#popup-title {
  color: #fff;
}

.popup-container p {
  color: #fff!important;
  font-size: 1.1rem;
}

.popup-button {
  transition: all .25s;
  background-color: white;
  width: 2rem;
  height: 2rem;
  border-radius: 1000px;
  position: absolute;
  right: -.8em;
  top: -.8em;
  -webkit-box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.2);
-moz-box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.2);
box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.2);
}

.popup-button:hover {
  cursor: pointer;
}

#x-1 {
  width: 1.2rem;
  border-bottom: 2px solid #323232;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50% , -50%) rotate(45deg);
}

#x-2 {
  width: 1.2rem;
  border-bottom: 2px solid #323232;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50% , -50%) rotate(-45deg);
}

.popup-button:hover {
  background: red!important;
}

.hidden {
  opacity: 0!important;
  max-height: 1px!important;
  z-index: -1000!important;
  visibility: hidden!important;
  display: none!important;
}

.show {
  opacity: 1!important;
}
