#popup-full {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: rgba(0,0,0,.8);
  display: flex;
  justify-content: center;
  align-items: center;
}

#popup-full .flex {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#popup-full .pp-content {
  width: 940px;
  display: block;
  position: relative;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: 5px solid #FFF;
}

#popup-full .pp-content_flex {
  display: flex;
}

#popup-full .pp-content_flex img{
  height: auto;
  width: 100%;
  max-width: 100%;
}

#popup-full .pp-content .pp-content_left,
#popup-full .pp-content .pp-content_right {
  position: relative;
  width: 50%;
}

#popup-full .pp-close {
  position: absolute;
  width: 25px;
  height: 25px;
  top: 7px;
  right: 7px;
  cursor: pointer;
  z-index: 9;
  display: block;
  background-image: url('https://sensoincomum.org/wp-content/themes/magplus-child/popup/close.png');
  background-position: center;
  background-repeat: no-repeat;
}

#popup-full .pp-link {
  position: absolute;
  z-index: 1;
  display: inline-block;
  text-decoration: none;
  color: #FFF;
  background-color: #917c45;
  font-size: 18px;
  padding: 10px 60px;
  left: 15%;
  right: 15%;
  bottom: 25%;
  text-align: center;
  font-family: "Roboto", sans-serif;
  border-radius: 8px;
  box-shadow: 0px 2px 3px 0px rgba(0,0,0,.5);
  transition: all .2s linear;
}

#popup-full .pp-link:hover {
  background-color: #745f29;
  box-shadow: 0px 0px 3px 0px rgba(0,0,0,.1);
}

@media only screen and (max-width: 991px) {
  #popup-full .pp-content {
    width: 80%;
    max-width: 80%;
  }
  #popup-full .pp-content .pp-content_left {
    display: none;
  }
  #popup-full .pp-content .pp-content_right  {
    width: 100%;
  }

  #popup-full .pp-link {
    left: 10%;
    right: 10%;
    padding: 10px;
    font-size: 16px;
  }
}