/* CALCULATOR */
.calc-calc .half {
    padding: 0 30px!important;
}
.calc-calc p {
    margin: 20px 0!important;
    text-align: justify;
}
.calc-calc .calc-form {
    padding: 0 60px!important;
    position: relative;
}
.calc-calc form {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
  padding: 30px;
  position: absolute;
  top: -400px;
  z-index: 9;
  background: white;
  right: 5%;
  width: 80%;
}
.calc-calc .input-block {
    margin-bottom: 30px;
}
.calc-calc .input-title, .calc-calc .input-selection, .calc-calc input {
    width: 100%;
    display: block;
}
.calc-calc .input-title {
    font-size: 0.85rem;
}
.calc-calc .input-selection {
    border-radius: 5px;
    padding: 8px 10px;
    font-size: 1.2rem;
    background: lightgrey;
    background: -webkit-linear-gradient(#ffffff, #e4e4e4);
    background: -o-linear-gradient(#ffffff, #e4e4e4);
    background: -moz-linear-gradient(#ffffff, #e4e4e4);
    background: linear-gradient(#ffffff, #e4e4e4);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
}
.calc-calc input {
    border-radius: 5px;
    padding: 5px 10px;
    -webkit-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.2);
    box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.2);
    font-size: 1.2rem;
    border: 1px solid #e4e4e4;
}
.calc-calc .input-selection:focus,
.calc-calc input:focus {
  outline: none;
}
.calc-calc button {
    width: 90%;
    margin-left: 5%;
    padding: 5px;
    font-size: 1rem;
    border: 0;
    -webkit-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.2);
    box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.2);
    text-shadow: 0px 0px 5px rgb(103, 103, 103);
}
.calc-results {
    position: fixed;
    top: 0;
    z-index: 99;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}
.calc-results .calc-result-container {
    background: white;
    padding: 50px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    width: 90%;
    max-width: 1000px;
    overflow-x: scroll;
    padding-bottom: 20px;
    position: relative;
}
.calc-results .calc-result-container > div {
  min-width: 900px;
}
.calc-results .calc-result-container .calculator_output th {
    background-color: #0f4b91;
    color: #fff;
    font-family: DIN-Medium;
    font-size: 1.2rem;
    font-weight: normal;
}
.calc-results .calc-result-container table tr {
    border-bottom: 1px solid #d0d0d0;
}
.calc-results .calc-result-container  table {
    width: 100%;
    margin-bottom: 30px;
    border-bottom: 2px solid #999;
}
.calc-results .calc-result-container .calculator_output th:first-child {
    padding-left: 10px;
}
.calc-results .calc-result-container .calculator_output td {
    font-family: OpenSans,sans-serif;
    font-size: 0.85rem;
    text-transform: capitalize;
}
.calc-results .calc-result-container  i.closeResults {
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 2rem;
    color: #0f4b91;
    cursor: pointer;
}
@media (max-width: 900px) {
  .calc-calc .calc-form {
    padding: 0 30px!important;
    margin-top: 50px;
  }
  .calc-calc form {
    position: initial;
    width: 100%;
  }
  .calc-calc p {
      text-align: left;
  }
}
