.popup-fechado {
  display: none;
}

.popup-aberto {
  display: block;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 111, 0.2) none repeat scroll 0% 0%;
}

.popup-conteudo {
  background: #180439 none repeat scroll 0% 0%;
  opacity: 100%;
  color: #ffffff;
  padding: 20px;
  border: 1px solid #13172b;
  border-radius: 20px;
  width: 60%;
  height: auto;
  overflow: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 80;
}

.popup-conteudo2 {
  background: #180439 none repeat scroll 0% 0%;
  opacity: 100%;
  color: #ffffff;
  padding: 20px;
  border: 1px solid #13172b;
  border-radius: 20px;
  width: 60%;
  height: 70%;
  overflow: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 80;
}

.fechar-popup {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 14px;
}

.fechar-popup2 {
  cursor: pointer;
  position: relative;
  font-size: 14px;
}

@media all and ( max-width : 768px ) {
.popup-conteudo {
  width: 86%;
  }
.popup-conteudo2 {
  width: 86%;
  }
}