.notification {
  display: none;
  background: url('../images/notificacion/fondo.png') repeat 0 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 4;
  left: 0;
  top: 0;
}

  .notification .popup {
    background: #fff url('../images/notificacion/fondo-popup.png') no-repeat 5px 5px;
    border-radius: 10px;
    width: 430px;
    height: 220px;
    margin: -100px auto;
    position: relative;
    top: 50%;
    -webkit-box-shadow: 0 0 15px 0 rgba(51, 51, 51, 0.5);
    -moz-box-shadow: 0 0 15px 0 rgba(51, 51, 51, 0.5);
    box-shadow: 0 0 15px 0 rgba(51, 51, 51, 0.5);
  }

  .notification .close {
    width: 15px;
    height: 14px;
    background: url('../images/notificacion/cerrar.png') repeat 0 0;
    position: absolute;
    right: 12px;
    top: 10px;
    cursor: pointer;
  }

  .notification .content {
    padding: 44px 40px;
  }

    .notification .content p {
      font: normal 0.8125em/120% 'GothamBookRegular', Arial, Helvetica, sans-serif;
      color: #313131;
      text-align: justify;
    }

    .notification .content a {
      font-family: 'GothamBookItalic';
      color: #006C99;
      text-decoration: underline;
    }

  .notification .botones {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 20px;
  }

  .notification .boton {
    font: normal 0.8125em/120% 'GothamBookRegular', Arial, Helvetica, sans-serif;
    color: #fff;
    background-color: #000000;
    margin: 0 15px;
    padding: 6px 28px;
    cursor: pointer;
    display: inline-block;
    border: 0 none;
     -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
  }