/* ===== RESET TOTAL SOLO PARA ZOOMTOUR ===== */

#zt-container,
#zt-container *{
    box-sizing: border-box;
}

/* CONTENEDOR */

#zt-container{
    position: relative;
    width: 900px;
    height: 600px;
    margin: 40px auto;
    overflow: hidden;
    background: #000;
}

/* ITEMS */

.zt-item{
    position: absolute;
    inset: 0;
    display: none;
}

.zt-item.active{
    display: block;
}

/* IMÁGENES (ACÁ ESTABA EL PROBLEMA REAL) */

.zt-item img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;

    /* anula el display:none del css viejo */
    display: block !important;
}

/* TAGS */

.zt-tag{
    position: absolute;
    z-index: 20;
    cursor: pointer;
    border: 2px solid white;
    background: rgba(255,255,255,0.15);
}

.zt-tag-back{
    width: 30px;
    height: 20px;
    left: 50%;
    bottom: 0;
    margin-left: -15px;
    background: white;
    border: none;
}