.twp-desktop-only {
    display: block;
}
table.twp-desktop-only {
    display: table;
}
.twp-mobile-only {
    display: none;
}
@media(max-width: 1000px) {
    .twp-desktop-only,
    table.twp-desktop-only {
        display: none;
    }
    .twp-mobile-only {
        display: block;
    }
}

/* ELements */

.twp-unavailable {
    border: 1px solid gray;
    border-radius: 3px;
    padding: 0.3rem 0.5rem;
    color: gray;
    font-style: italic;
}

/* Popup */

.twpPopup {
    display: none; /* Por defecto, la ventana emergente estará oculta */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5); /* Fondo oscuro semi-transparente */
}

.twpPopupContenido {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 30px;
    border: 1px solid #888;
    width: auto;
    max-width: 800px;
}
.twpPopupContenido h2 {
    margin-top: 0;
}

.twpPopupCerrar {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    margin-top: -14px;
}

.twpPopupCerrar:hover,
.twpPopupCerrar:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}