.trama-kinto
{
    position: fixed;
    background-color: rgba(0, 0, 0, .4);
    width: 100%;
    height: 100%;
    display: none;
    top: 0;
    left: 0;
    z-index: 9999;
}

.trama-kinto.open
{
	display: flex;
}

.contenedor-imagen-kinto
{
    width: 66.666%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.imagen-kinto
{
    display: inline-block;
    width: 100%;
}

.cerrar-kinto
{
    position: absolute;
    color: #fff;
    top: 1rem;
    right: 1.5rem;
    font-size: 2.5rem;
    line-height: 1;
    display: flex;
    cursor: pointer;
    width: 3rem;
    height: 3rem;
    justify-content: center;
    align-items: center;
}

@media(max-width:767px)
{
	.contenedor-imagen-kinto
	{
	    width: 75%;
	}

	.cerrar-kinto {
	    top: 0rem;
	    right: 0.5rem;
	}
}