/* ========= INFORMATION ============================

  - document:  Wpcalc - Set of calculators
	- author:    Wpcalc
	- version:   1.0
	- email:     ad@wpcalc.com
	- url:       https://wpcalc.com/

 ==================================================== */
.wpcalc {
  margin-bottom: 15px;
  border-radius: 2px;
  border: 1px solid #ccc;
  padding: 15px;
  background: #fff;
  box-shadow: 0 0 10px #000;
  /* Zebra striping */
}
.wpcalc input[type=number],
.wpcalc input[type=date],
.wpcalc input[type=text],
.wpcalc select,
.wpcalc textarea {
  width: 100%;
  border-radius: 0;
  border: 1px solid #cecece;
  padding: 10px;
  line-height: 1;
  background: #f3f3f3;
}
.wpcalc input[type=number]:read-only,
.wpcalc input[type=text]:read-only,
.wpcalc input[type=date]:read-only,
.wpcalc textarea:read-only {
  border: 1px solid #f07d7d;
}
.wpcalc input[type=submit],
.wpcalc input[type=reset] {
  border-radius: 0;
  font-weight: bold;
  padding: 10px 20px;
  cursor: pointer;
  color: #ffffff;
  line-height: 1;
}
.wpcalc input[type=submit] {
  background: #37c781;
}
.wpcalc input[type=submit]:hover {
  background: #20a866;
}
.wpcalc input[type=reset] {
  background: #4C4C4C;
}
.wpcalc input[type=reset]:hover {
  background: #4d4d4d;
}
.wpcalc table {
  width: 100%;
  border: none;
  table-layout: fixed;
  margin: 0;
}
.wpcalc tr:nth-of-type(odd) {
  border: none;
}
.wpcalc th {
  font-weight: bold;
  border: none;
  text-align: center;
}
.wpcalc td {
  padding: 6px;
  text-align: left;
  border: none;
}
.wpcalc table.zebra {
  font-size: 14px;
  background: #ffffff;
}
.wpcalc table.zebra tr:nth-of-type(odd) {
  background: #eee;
}
.wpcalc .font-normal {
  font-weight: normal;
}
.wpcalc .result-number {
  font-weight: bold;
  color: #1bbc9b;
}

.calc-row {
  display: flex;
  padding: 0;
  margin: 0;
}

.calc-column {
  flex: 1;
}
.calc-column-2 {
  flex-basis: 50%;
}
.calc-column-3 {
  flex-basis: 33.3333%;
}
.calc-column-4 {
  flex-basis: 25%;
}

[class^=calc-column] {
  margin: 0;
  padding: 10px;
}
[class^=calc-column]#result {
  text-align: center;
}
[class^=calc-column]#result span {
  color: #1bbc9b;
}

.calc-button {
  text-align: center;
}

.calc-result {
  font-weight: bold;
  margin: 0 -15px -15px;
  padding: 15px;
  background: #e4ddcb;
}

.calc-error {
  display: none;
  color: #e57673;
  font-size: 13px;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .calc-row {
    flex-wrap: wrap;
  }

  .calc-column {
    flex-basis: 100%;
    margin: 0;
    padding: 10px;
  }
  .calc-column-2 {
    flex-basis: 100%;
  }
  .calc-column-3 {
    flex-basis: 100%;
  }
  .calc-column-4 {
    flex-basis: 25%;
  }

  .wpcalc {
    /* Force table to not be like tables anymore */
    /* Hide table headers (but not display: none;, for accessibility) */
  }
  .wpcalc input[type=submit],
.wpcalc input[type=reset] {
    width: 100%;
    margin: 10px 0;
  }
  .wpcalc table, .wpcalc thead, .wpcalc tbody, .wpcalc th, .wpcalc td, .wpcalc tr {
    display: block;
  }
  .wpcalc thead tr,
.wpcalc tfoot tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .wpcalc td {
    /* Behave  like a "row" */
    border: none;
    position: relative;
    padding-left: 70%;
  }
  .wpcalc td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
  }
}

/*# sourceMappingURL=style.css.map */
