/* #overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  filter:alpha(opacity=80);
  -moz-opacity:0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
  z-index: 100;


  } */

  #overlay {
    background-color: #000;
    background: rgba(0,0,0,.8);
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 101;
}




  .popup {
      z-index: 999;
      /*display: none;*/
      padding-top: 100px;
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      
  }


  @media (max-width: 768px){
    .popup {
        
    }  }

  

  .popup-contenido{
  min-width: 300px;
  width: 400px;
  min-height: 150px;

  margin: 0 auto;
  background: #fff;
  position: relative;
  z-index: 103;
  padding: 15px 35px;
  border-radius: 8px;
  box-shadow: 0 2px 5px #000;
  }
  .popup-contenido p{
  clear: both;
      color: #161616;
      text-align: center;
      font-size: 16px;
      font-family: sans-serif;
  }
  .popup-contenido p a{
  color: #d91900;
  font-weight: bold;
  }

  .popup-contenido a{
    text-decoration: none;
    }
  
  
  


  .popup-contenido .x{
  float: right;
  height: 35px;
  left: 22px;
  position: relative;
  top: -25px;
  width: 34px;
  }
  .popup-contenido .x:hover{
  cursor: pointer;
  }

  .close {
    background: #1272FF;
    border: none;
    color: white;
    padding: 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    margin: 4px 2px;
    border-radius: 200px;
    display: flex;
    flex-direction: column;
  }

  .close:hover {
    background: #E55C17;
    color:#fff
  }

  @media only screen and (max-width: 768px){
  
    .popup-contenido {
      width: auto;
  }
  
  }

  