
/* http://danielstern.ca/range.css/#/ */		
input[type=range].calcWidget-range {
    width: 100%;
    margin: 12.4px 0;
    background-color: transparent;
    -webkit-appearance: none;
  }
  input[type=range].calcWidget-range:focus {
    outline: none;
  }
  input[type=range].calcWidget-range::-webkit-slider-runnable-track {
    background: #336699;
    border: 0.9px solid #010100;
    border-radius: 3.4px;
    width: 100%;
    height: 7.2px;
    cursor: pointer;
  }
  input[type=range].calcWidget-range::-webkit-slider-thumb {
    margin-top: -13.3px;
    width: 16px;
    height: 32px;
    background: #5c97cb;
    border: 2px solid #00006c;
    border-radius: 8px;
    cursor: pointer;
    -webkit-appearance: none;
  }
  input[type=range].calcWidget-range:focus::-webkit-slider-runnable-track {
    background: #3d7ab8;
  }
  input[type=range].calcWidget-range::-moz-range-track {
    background: #336699;
    border: 0.9px solid #010100;
    border-radius: 3.4px;
    width: 100%;
    height: 7.2px;
    cursor: pointer;
  }
  input[type=range].calcWidget-range::-moz-range-thumb {
    width: 16px;
    height: 32px;
    background: #5c97cb;
    border: 2px solid #00006c;
    border-radius: 8px;
    cursor: pointer;
  }
  input[type=range].calcWidget-range::-ms-track {
    background: transparent;
    border-color: transparent;
    border-width: 13.4px 0;
    color: transparent;
    width: 100%;
    height: 7.2px;
    cursor: pointer;
  }
  input[type=range].calcWidget-range::-ms-fill-lower {
    background: #29527a;
    border: 0.9px solid #010100;
    border-radius: 6.8px;
  }
  input[type=range].calcWidget-range::-ms-fill-upper {
    background: #336699;
    border: 0.9px solid #010100;
    border-radius: 6.8px;
  }
  input[type=range].calcWidget-range::-ms-thumb {
    width: 16px;
    height: 32px;
    background: #5c97cb;
    border: 2px solid #00006c;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 0px;
  }
  input[type=range].calcWidget-range:focus::-ms-fill-lower {
    background: #336699;
  }
  input[type=range].calcWidget-range:focus::-ms-fill-upper {
    background: #3d7ab8;
  }
  
  @supports (-ms-ime-align:auto) {
    input[type=range].calcWidget-range {
      margin: 0;
    }
  }