.responsive-desktop {
  height: 10px;
}
@media only screen and (max-width: 799px) {
  .responsive-desktop {
    display: none;
  }
}
.Calc {
  min-width: 900px;
  max-width: 960px;
  margin: 0 auto;
  background: #158db0;
  border-radius: 10px;
  padding: 16px 16px;
  font-family: Lato, sans-serif;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 799px) {
  .Calc {
    display: none !important;
  }
}
.Calc * {
  box-sizing: border-box;
}
.Calc input {
  border-style: none;
}
.Calc-ItemGroup.chromeType-section > .Calc-Item-Heading {
  color: #fcd450;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: 16px;
}
.Calc-ItemGroup.chromeType-section .Calc-ItemGroup-ItemsContainer {
  margin: 0 16px 16px 16px;
  border: solid 1px #3cb65d;
  border-radius: 8px;
  padding: 16px;
}
@media only screen and (min-width: 800px) {
  .Calc-ItemGroup .Calc-ItemGroup-ItemsContainer {
    display: flex;
    flex-flow: wrap;
  }
}
.Calc-ItemGroup .Calc-ItemGroup-ItemsContainer > *.maxColumnSplit-1 {
  width: 100% !important;
}
@media only screen and (min-width: 800px) {
  .Calc-ItemGroup.maxColumns-2 > .Calc-ItemGroup-ItemsContainer > * {
    width: 50%;
  }
}
.Calc-Item {
  padding: 8px;
}
.Calc-Item-Heading {
  color: white;
  font-size: 24px;
  font-weight: 700;
}
.Calc-Item-Description {
  color: #fcd450;
  font-weight: 500;
  font-size: 18px;
  padding: 4px 0;
}
.Calc-Item table {
  background: white;
  border: solid 1px black;
  border-radius: 8px;
  border-spacing: 0;
  overflow: hidden;
  width: 100%;
}
.Calc-Item table thead tr {
  background: #fcd450;
}
.Calc-Item table tbody th {
  background: #ccc;
}
.Calc-Item table th,
.Calc-Item table td {
  padding: 8px;
  vertical-align: top;
}
.Calc-Item table tr td,
.Calc-Item table tr th {
  text-align: right;
}
.Calc-Item table tr td:first-child,
.Calc-Item table tr th:first-child {
  text-align: left;
}
.Calc-Item-Field-Text {
  display: flex;
}
.Calc-Item-Field-Text-Prefix {
  flex: 0 0 40px;
  text-align: center;
  font-size: 20px;
  border-radius: 4px 0 0 4px;
  background: white;
  padding: 8px;
}
.Calc-Item-Field-Text input[type=text] {
  flex: auto;
  flex-grow: 1;
  font-size: 24px;
  color: #555;
  border-radius: 0 4px 4px 0;
  background: white;
  padding: 8px;
  font-family: "Courier New", Serif;
  font-weight: bold;
}
.Calc-Item-Field input[type=range] {
  margin-top: 16px;
  margin-left: 0;
  margin-bottom: 24px;
  width: 100%;
  -webkit-appearance: none;
  background: none;
}
.Calc-Item-Field input[type=range]::-webkit-slider-runnable-track {
  background: #3cb65d;
  height: 8px;
  border-radius: 8px;
}
.Calc-Item-Field input[type=range]::-moz-range-track {
  background: #3cb65d;
  height: 8px;
  border-radius: 8px;
}
.Calc-Item-Field input[type=range]::-ms-track {
  background: #3cb65d;
  height: 8px;
  border-radius: 8px;
}
.Calc-Item-Field input[type=range]::-webkit-slider-thumb {
  margin-top: -11px;
  background-image: url(/wp-content/plugins/bci-calculator2/view/images/range-thumb.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #fcd450;
  border: solid 2px #fcd450;
  -webkit-appearance: none;
  height: 30px;
  width: 50px;
  border-radius: 12px;
}
.Calc-Item-Field input[type=range]::-webkit-slider-thumb:hover {
  background-color: #e1c66b;
  cursor: grabbing;
}
.Calc-Item-Field input[type=range]::-moz-range-thumb {
  margin-top: -11px;
  background-image: url(/wp-content/plugins/bci-calculator2/view/images/range-thumb.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #fcd450;
  border: solid 2px #fcd450;
  -webkit-appearance: none;
  height: 30px;
  width: 50px;
  border-radius: 12px;
}
.Calc-Item-Field input[type=range]::-moz-range-thumb:hover {
  background-color: #e1c66b;
  cursor: grabbing;
}
.Calc-Item-Field input[type=range]::-ms-thumb {
  margin-top: -11px;
  background-image: url(/wp-content/plugins/bci-calculator2/view/images/range-thumb.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #fcd450;
  border: solid 2px #fcd450;
  -webkit-appearance: none;
  height: 30px;
  width: 50px;
  border-radius: 12px;
}
.Calc-Item-Field input[type=range]::-ms-thumb:hover {
  background-color: #e1c66b;
  cursor: grabbing;
}
.Calc-Item-Field.hasCurrency .Calc-Item-Field-Text-Prefix {
  background: #fcd450;
  color: #0A2941;
}
.Calc-Item-Field.readOnly input[type=text] {
  background: #32974d;
  color: white;
}
.Calc-Item-Field.readOnly.hasCurrency .Calc-Item-Field-Text-Prefix {
  background: #3cb65d;
  color: #eee;
}
.Calc-BodyText-Indent {
  padding: 4px 0 0 0;
}
.Calc-BodyText-CurrencyColumn {
  width: 80px;
  display: inline-block;
  text-align: right;
  margin-right: 8px;
}
.Calc-BodyText-Accent-1 {
  font-style: italic;
  color: white;
}
.Calc-BodyText-Accent-2 {
  color: #fcd450;
}
