* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}
.wrapper__calc {
  width: 1024px;
  padding: 10px;
  margin: 0 auto;
}
.header__calc {
  padding: 10px;
  text-align: center;
}
.heading__primary--calc {
  text-transform: uppercase;
  display: block;
  text-align: center;
}
.total__row {
  background-color: #333 !important;
  color: #fff !important;
}
.heading__tertiary--calc {
  text-align: center;
  color: #206690;
}
.grid2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 6px;
}
.container__calc {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 10px;
  background-color: #f1f1f150;
  padding: 20px;
}
.wrapper__2x2 {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 10px;
}
.row__calc {
}
.label__calc {
  font-size: 17px;
}
.selected__value {
  font-size: 17px;
  background-color: #206690;
  color: #fff;
  border-radius: 50px;
  width: 50px;
  text-align: center;
  position: relative;
}

.row__calc-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0px;
}
.start_value {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
}
.output__container--calc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 40px;
}
.output__container--extra {
  margin-top: 40px;
}
.table__calc {
}
.table__calc thead tr {
  text-align: center;
}
.table__calc tr {
  text-align: center;
}
.table__calc tr th {
  text-align: center;
}
.table__calc tr td {
}

/* Slider style */
.slider {
  z-index: -4;
  -webkit-appearance: none;
  padding: 0px !important;
  width: 100%;
  height: 5px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #206690;
  cursor: pointer;
  border: 3px solid #206690;
}
.slider::-webkit-slider-thumb:active {
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #3ab64a;
  cursor: pointer;
}
.input__calc {
  padding: 10px !important;
  width: 100% !important;
  padding: 10px !important;
  border: 1px solid #f8f7f1;
  background-color: #efeeea;
  border-radius: 5px;
  display: block;
  font-size: 17px;
}
.input__calc:focus {
  outline: 0px;
}
.privacy__calc {
  display: block;
  font-size: 12px;
  padding: 10px 0px;
  width: 100%;
}
.form__email {
  display: block;
  width: 100%;
  padding: 10px;
}
.asterisk__calc {
  color: red;
}
.btn__calc {
  padding: 10px 30px;
  border: 0px;
  background-color: #206690;
  color: #fff;
  text-align: center;
  width: 300px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}
/* TABLE STYLING */
table {
  border: 1px solid #333;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

table caption {
  font-size: 1.5em;
  margin: 0.5em 0 0.75em;
}

table tr {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 0.35em;
}
table td {
  font-size: 13px;
  white-space: nowrap;
}

table th,
table td {
  padding: 7px !important;
  text-align: center;
}

table th {
  font-size: 12px;
  text-transform: uppercase;
  background-color: #206690;
  color: #fff !important;
}

tr:nth-child(even) {
  background-color: #edf2f4; /* Change this to the desired color */
}
@media screen and (max-width: 1024px) {
  .wrapper__calc {
    width: 100%;
  }
}
@media screen and (max-width: 900px) {
  .wrapper__2x2 {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 720px) {
.grid2x2{
  display: block;
}
}

@media screen and (max-width: 600px) {
  table {
    border: 0;
  }

  table caption {
    font-size: 1.3em;
  }

  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  table tr {
    border-bottom: 3px solid #333;
    display: block;
    margin-bottom: 0.625em;
  }

  table td {
    border-bottom: 1px solid #333;
    display: block;
    font-size: 0.8em;
    text-align: right;
  }

  table td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }

  table td:last-child {
    border-bottom: 0;
  }
}
@media screen and (max-width: 550px) {
  .container__calc {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 400px) {
  .output__container--calc {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 340px) {
  .btn__calc {
    width: 100%;
  }
}
