/* iPad Mini in portrait & landscape */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) {
    .centerer.mobile .player{
        
    }
}

/* iPad Mini in landscape only */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) { 
    .item{
        width:270px;
        height:auto;
    }
    .item div.screenshot{
        overflow:hidden;
        width:270px;
    }
    .item div.screenshot, .item div.overlay{
        width:100%;
        height:150px;
        line-height:150px;
    }
    .item div.overlay span{
        padding: 10px 25px;
        font-size: 20px;
    }
    div#ViewDemo.mobile .player iframe{
        top:160px;
        left:55px;
    }
}

/* iPad Mini in portrait only */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) {
    .item{
        width:270px;
        height:auto;
    }
    .item div.screenshot{
        overflow:hidden;
        width:270px;
    }
    .item div.screenshot, .item div.overlay{
        width:100%;
        height:150px;
        line-height:150px;
    }
    .item div.overlay span{
        padding: 10px 25px;
        font-size: 20px;
    }
}
