html,
body {
  background: var(--color-bg);

  color: var(--color-fg);

  font-family: var(--font-base);
}

.calculator-main {
  width: 100%;
  min-height: 590px;
  background: #ffffff;
}

.calculator-content {
  width: 100%;
  min-height: 590px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #ffffff;
}

.calculator-content iframe {
  display: block;
  width: min(600px, 100%) !important;
  height: 550px;
  max-width: 100%;
  border: 0;
}

.mobile-calculator {
  display: none !important;
}

@media (max-width: 600px) {
  .calculator-content {
    min-height: 800px;
    padding: 0;
  }
  .calculator-content .desktop-calculator {
    display: none;
  }
  .calculator-content .mobile-calculator {
    display: block !important;
    width: 223px !important;
    height: 800px;
  }
}
