/* Equivalentes de los inline del modal de calculadora */
.calc-modal{
  display:none;
  position:fixed;
  z-index:9999;
  left:0; top:0;
  width:100vw; height:100vh;
  background:rgba(30,41,59,0.55);
  align-items:center;
  justify-content:center;
}
.calc-backdrop{
  background:transparent;
  display:flex;
  align-items:center;
  justify-content:center;
  width:100vw; height:100vh;
}
.calc-card{
  box-shadow:0 12px 30px rgba(0,0,0,0.25);
}
