/** Carbon Calc: Gallons to mT conversion **/
.carbon-calc {
    margin-top: 15px;
  }
  
  .tp_product_details_hero_section .terrapass-single-product-description .carbon-calc h2 {
    padding-bottom: 0;
    margin-bottom: 18px;
    font-size: 21px;
    color: #fff;
  }
  
  .carbon-calc-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 88%;
  }
  
  .fuel-type, .gallons {
    display: flex;
    flex-direction: column;
    width: 48%;
    position: relative;
  }
  
  .carbon-calc p.error {
    position: absolute;
    top: 71px;
    font-size: 16px;
    color:#000;
  }
  
  .tp_product_details_hero_section .fuel-type label, .tp_product_details_hero_section .gallons label, .tp_product_details_hero_section .result-wrapper, .tp_product_details_hero_section .carbon-calc p.error   {
    color: #fff;
  }
  
  .tp_product_details_hero_section .fuel-type label, .tp_product_details_hero_section .gallons label {
    font-size: 14px;
    font-family: "Roboto Medium";
    margin-bottom: 4px;
  }
  
  .fuel-type select, .gallons input {
    border-radius: 4px;
  }
  
  .fuel-type select {
    padding: 10px 5px;
    font-size: 16px;
    appearance: none;
    background: #fff url(../images/chevron-down-solid.png) no-repeat 95% center;
    background-size: 15px;
  }
  
  .gallons input {
    padding: 11px 5px;
    font-size: 16px;
  }
  
  .fuel-type select::-ms-expand {
    display: none;
  }
  
  .result-wrapper {
    font-size: 21px;
    margin-top: 30px;
    font-family: 'Roboto Regular';
  }
  
  @media screen and (min-width: 980px) {
    .result-wrapper {
      font-size: 30px;
    }
  }
  
  @media screen and (max-width:480px) {
    .carbon-calc-wrapper {
      width: 100%;
      flex-direction: column;
    }
  
    .fuel-type, .gallons {
      width: 100%;
    }
  
    .fuel-type {
      margin-bottom: 20px;
    }
  
    .carbon-calc p.error {
      font-size: 14px;
    }
  }