/* --- popup css --- */
.overlay-oferta {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 300ms;
  visibility: hidden;
  opacity: 0;
  z-index: 10000!Important;
}
.overlay-oferta:target {
  visibility: visible;
  opacity: 1;
  z-index: 10000!Important;
  overflow: auto;
}
.popup-oferta {
  margin: 10% auto;
  padding: 30px;
  background: #fff;
  border-radius: 5px;
  width: 100%;
  max-width: 900px;
  position: relative;
  transition: all 1s ease-in-out;
  text-align: left!important;
}
.popup-oferta .close-oferta {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup-oferta .close-oferta:hover {
  color: #FF6700;
}
.popup-oferta .content-oferta {
  max-height: 100%;
}