.t1052__container {
    justify-content: center;
}

.t650__container {
    justify-content: center;
}

.t446__leftwrapper {
    width: 80%;
    padding-right: 50px;
}

@media screen and (max-width: 786px) {
    .t446__leftwrapper {
        width: 100%;
    }
}

.calculator-wrap {
  display: flex;
  justify-content: center;
  width: 95%;
  padding: 0 0.5rem;
}

/*********** Baseline, reset styles ***********/
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
    max-width: 500px;
    width: 100%;
  }
  
  /* Removes default focus */
input[type="range"]:focus {
    outline: none;
  }
  
  /******** Chrome, Safari, Opera and Edge Chromium styles ********/
  /* slider track */
input[type="range"]::-webkit-slider-runnable-track {
    background-color: #b8c75b;
    border-radius: 0.5rem;
    height: 0.5rem;
  }
  
  /* slider thumb */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    margin-top: -4px; /* Centers thumb on the track */
    background-color: #606a1e;
    border-radius: 0.5rem;
    height: 1rem;
    width: 1rem;
  }
  
input[type="range"]:focus::-webkit-slider-thumb {
    outline: 3px solid #606a1e;
    outline-offset: 0.125rem;
  }
  
  /*********** Firefox styles ***********/
  /* slider track */
input[type="range"]::-moz-range-track {
    background-color: #b8c75b;
    border-radius: 0.5rem;
    height: 0.5rem;
  }
  
  /* slider thumb */
input[type="range"]::-moz-range-thumb {
    background-color: #606a1e;
    border: none; /*Removes extra border that FF applies*/
    border-radius: 0.5rem;
    height: 1rem;
    width: 1rem;
  }
  
input[type="range"]:focus::-moz-range-thumb{
    outline: 3px solid #606a1e;
    outline-offset: 0.125rem;
  }

.label-checkbox {
  font-family: system-ui, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.3;
  display: grid;
  grid-template-columns: 2rem auto;
  accent-color: #606a1e;
}

.calculator {
    max-width: 500px;
    width: 100%;
    color: #606a1e;
    font-weight: bold;
}

.calculator-item-header {
    display: flex;
    justify-content: space-between;
}

.calculator-item {
    margin-top: 1rem;
}

.calculator-item p {
    margin-bottom: 0;
}

.calculator-item-title {
  display: flex;
  align-items: center;
}

.calculator-item-title {
  display: flex;
  align-items: center;
}

.calculator-item-title a {
  margin-left: 0.5rem;
}

.bi::before, [class*=" bi-"]::before, [class^=bi-]::before {
  vertical-align: 0!important;
}

.calculator-price {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    font-size: 2rem;
}

.calculator-buttons {
  display: flex;
  justify-content: space-evenly;
  margin-top: 1rem;
}

.calculator-buttons button {
  padding: 0.5rem 1rem;
  border: 0;
  border-radius: 10px;
  font-weight: bold;
  color: #606a1e;
}

.calculator-buttons button:hover {
  background-color: #b8c75b;
}

.calculator-buttons button.active {
  background-color: #606a1e;
  color: #fff;
}

.calculator-result {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid #606a1e;
}

.button-reset {
  padding: 0.5rem 1rem;
  border: 0;
  border-radius: 10px;
  font-weight: bold;
  color: #606a1e;
}

.button-reset:hover {
  background-color: #b8c75b;
}

.total-price {
  font-size: 2rem;
  font-weight: bold;
}