/**
 * TEMPORANEO — Box Teleborsa legacy in HP (#tb-iframe-cont).
 *
 * Le regole di dimensionamento dell'iframe boxpereconomia.html vivevano in
 * local-custom.css, file rimosso nel commit ff5fa9c86 ("Removed ie8 support
 * code and files."). Su master/produzione le regole sono state ri-aggiunte in
 * stili.css; su questo branch mancano. Per non toccare i bundle CSS attuali le
 * isoliamo qui e le accodiamo SOLO finché il box legacy è attivo (fase 1).
 *
 * Caricato da functions.php solo quando ! Quifinanza_Borse::is_hp_widget_live():
 * al go-live del widget in-house il toggle spegne l'enqueue e questo file non
 * viene più servito. Eliminabile (file + enqueue) una volta dismesso l'iframe.
 *
 * Valori identici a produzione (master:css/stili.css).
 */
#tb-iframe-cont {
  margin: 0 -2.4rem;
  background-color: #F7F7F7;
}
#tb-iframe-cont iframe {
  height: 66rem;
  width: 100%;
  margin: 0 auto;
  display: block;
}
@media only screen and (max-width: 20.0625em) {
  #tb-iframe-cont {
    margin: 0 -1rem;
  }
}
@media only screen and (min-width: 48em) {
  #tb-iframe-cont iframe {
    height: 38rem;
    width: 100%;
  }
}
@media only screen and (min-width: 64em) {
  #tb-iframe-cont {
    margin: 0;
    float: right;
  }
  #tb-iframe-cont iframe {
    height: 66rem;
    width: 33rem;
  }
}
