article.popUp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    display: none;
    background: #000000b0;
}

article.popUp .wrapper {
    max-width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
}

article.popUp .message {
    background: #fff0;
}



article.popUp h2 {
    color: #2d50af;
    display: block;
    text-align: center;
    margin: 0 0 15px 0;
    position: relative;
    text-transform: uppercase;
    font-size: 24px;
}

article.popUp img {
    width: auto;
    height: auto;
    /* box-shadow: 2px 2px 10px #666; */
}

article.popUp a.close-img img {
    width: 2rem;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    box-shadow: none;
}

.displayOff {
    display: none;
}

.displayOn {
    display: block;
}

@media (min-width: 320px) {
    article.popUp img {
        height: 60vh;
    }
}

@media (min-width: 1400px) {
    article.popUp img {
        height: 60vh;
    }
}

@media (min-width: 1440px) {
    article.popUp img {
        height: 95vh;
    }
}


a.boton {
    padding: 1rem 2rem;
    background: #008dab;
    color: #FFE;
    font-weight: bold;
}

a.boton:hover {
    padding: 1rem 2rem;
    background: #34bacc ;
    color: #FFE;
    font-weight: bold;
}