/* Copyright (C) YOOtheme GmbH, YOOtheme Proprietary Use License (http://www.yootheme.com/license) */

/* ========================================================================
   Use this file to add custom CSS easily
 ========================================================================== */
 
 /*------------------------ Responsive iframe ------------------------- */
/* iframe 16:9 responsive (da applicare al div contenitore) */
.iframe_16_9  {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0px;
    height: 0;
    overflow: hidden;
}
/* iframe posizionato in maniera assoluta */
.iframe_16_9 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* iframe 4:3 responsive (da applicare al div contenitore) */
.iframe_4_3  {
    position: relative;
    padding-bottom: 75%;
    padding-top: 0px;
    height: 0;
    overflow: hidden;
}
/* iframe posizionato in maniera assoluta */
.iframe_4_3 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
