.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    max-width: 80%;
    max-height: 80%;
    overflow: auto;
}

.popup-content > img {
    height: 75vh;
    width: auto;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 5rem;
    cursor: pointer;
}

.btn-acepto { /* Para el botón del banner en Turnero (index)*/
    background: #009AAE;
    transition: background-color .2s ease 0s;
    border-radius: 1rem;
    border: none;
    text-align: center;
    font-family: inherit;
    color: #fff;
    display: block;
    padding: 1rem;
    margin: 1rem auto;
}

.btn-acepto:hover {
    background: #016c7a;
}