Descrição produtos Responsiva

Boa tarde! Estou com um produto onde a fabrica enviou uma descrição em HTML para inserirmos e padronizar os produtos, porém a Classe que inseriram para fazer o responsivo não funciona. Poderiam me informar qual a melhor forma de fazer, pois se coloco o HTML como esta corta no celular, e se coloco para aparecer tudo no celular, fica muito grande no desktop. Segue o codigo:

<style type="text/css">@media screen and(max-width:768px){#k2-plus-turbo{height:9000px !important;}}
@media screen and(max-width:425px){#k2-plus-turbo{height:8300px !important;}}
</style>
<p><iframe frameborder="0" height="5000" id="k2-plus-turbo" scrolling="no" src="https://mktkarcher.com.br/rbianco/k2-plus-turbo/" width="100%"></iframe></p>

Agradeço pela ajuda!

Website:

tente assim:

<style type="text/css">
@media only screen and (max-width: 768px){
    iframe#k2-plus-turbo {height:9000px !important;}
}
@media only screen and (max-width: 425px){
    iframe#k2-plus-turbo {height:8300px !important;}
}
</style>
<p><iframe frameborder="0" height="5000" id="k2-plus-turbo" scrolling="no" src="https://mktkarcher.com.br/rbianco/k2-plus-turbo/" width="100%"></iframe></p>

1 curtida

Leonardo, muitissimo obrigada! Vi que havia um colchete a mais no final de cada Style. Obrigada!