/*! Handmade by http://esmes.fi <3 */
@font-face {
  font-family: 'ChevinStd Light';
  src: url("../fonts/chevin-light-subset.woff") format("woff"); }

html {
  margin: 0;
  padding: 0; }

body {
  background: #c5cbbc;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'ChevinStd Light'; }

body * {
  margin: 0;
  padding: 0; }

a img {
  border: none; }

#root {
  position: relative;
  cursor: default;
  width: 420px;
  height: 620px;
  background: #c5cbbc url("../img/bg.jpg") no-repeat 0 0;
  background-size: 420px 620px;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  outline: 1px solid #d0d0d0; }
  #root #logo {
    position: absolute;
    right: 20px;
    bottom: 24px;
    width: 96px;
    height: 48px;
    background: url("../img/op.png") no-repeat 0 0;
    background-size: 96px 48px;
    text-indent: -9999em;
    font-size: 0;
    color: transparent;
    z-index: 900; }
  #root #disclaimer {
    position: absolute;
    left: 24px;
    bottom: 22px;
    width: 240px;
    color: #fff;
    font-size: 10px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.020em;
    line-height: 1.2em; }
    #root #disclaimer p {
      margin-bottom: 0.8em; }
  #root #content {
    position: absolute;
    left: 24px;
    top: 15px;
    color: #000;
    z-index: 20;
    letter-spacing: -0.01em; }
    #root #content h1 {
      font-size: 32px;
      font-weight: normal;
      margin-bottom: 0.6em;
      letter-spacing: -0.02em; }
    #root #content .calculator {
      font-size: 16px; }
      #root #content .calculator .row {
        margin-bottom: 18px; }
        #root #content .calculator .row.text {
          margin-bottom: 21px; }
        #root #content .calculator .row .text {
          padding-bottom: 3px; }
        #root #content .calculator .row input[type="text"] {
          background: #fff;
          border: 1px solid #CDCDCD;
          outline: none;
          border-radius: 0;
          -webkit-appearance: none;
          margin-top: 8px;
          padding: 4px 8px;
          margin-left: 2px;
          margin-right: 25px;
          width: 135px;
          font-family: 'ChevinStd Light';
          font-size: 16px; }
        #root #content .calculator .row .range {
          margin-top: 5px;
          position: relative;
          width: 280px;
          display: inline-block;
          height: 16px;
          /* Special styling for WebKit/Blink */
          /* All the same stuff for Firefox */
          /* All the same stuff for IE */ }
          #root #content .calculator .row .range .progress {
            position: absolute;
            left: 2px;
            right: 2px;
            top: 5px;
            height: 6px;
            z-index: 1;
            background: #fff;
            overflow: hidden;
            border-radius: 3px; }
            #root #content .calculator .row .range .progress .bar {
              position: absolute;
              top: 0;
              left: 0;
              bottom: 0;
              width: 0%;
              background: #ff6a10; }
          #root #content .calculator .row .range input[type=range] {
            -webkit-appearance: none;
            /* Hides the slider so that custom slider can be made */
            width: 100%;
            /* Specific width is required for Firefox. */
            background: transparent;
            /* Otherwise white in Chrome */
            position: relative;
            z-index: 2;
            outline: 0; }
          #root #content .calculator .row .range input[type=range]::-moz-focus-outer {
            border: 0; }
          #root #content .calculator .row .range input[type=range]::-webkit-slider-thumb {
            -webkit-appearance: none; }
          #root #content .calculator .row .range input[type=range]:focus {
            outline: none;
            /* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */ }
          #root #content .calculator .row .range input[type=range]::-ms-track {
            width: 100%;
            cursor: pointer;
            /* Hides the slider so custom styles can be added */
            background: transparent;
            border-color: transparent;
            color: transparent; }
          #root #content .calculator .row .range input[type=range]::-webkit-slider-thumb {
            -webkit-appearance: none;
            height: 16px;
            width: 16px;
            border-radius: 8px;
            background: #f37021;
            cursor: pointer;
            margin-top: 1px;
            /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */
            border: none; }
          #root #content .calculator .row .range input[type=range]::-moz-range-thumb {
            height: 16px;
            width: 16px;
            border-radius: 8px;
            background: #f37021;
            cursor: pointer;
            border: none; }
          #root #content .calculator .row .range input[type=range]::-ms-thumb {
            height: 16px;
            width: 16px;
            border-radius: 8px;
            background: #f37021;
            cursor: pointer;
            border: none; }
          #root #content .calculator .row .range input[type=range]::-webkit-slider-runnable-track {
            width: 100%;
            height: 16px;
            cursor: pointer;
            background: transparent; }
          #root #content .calculator .row .range input[type=range]:focus::-webkit-slider-runnable-track {
            background: transparent; }
          #root #content .calculator .row .range input[type=range]::-moz-range-track {
            width: 100%;
            height: 16px;
            cursor: pointer;
            background: transparent; }
          #root #content .calculator .row .range input[type=range]::-ms-track {
            width: 100%;
            height: 16px;
            cursor: pointer;
            background: transparent;
            border-color: transparent;
            border-width: 0;
            color: transparent; }
          #root #content .calculator .row .range input[type=range]::-ms-fill-lower {
            background: transparent; }
          #root #content .calculator .row .range input[type=range]:focus::-ms-fill-lower {
            background: transparent; }
          #root #content .calculator .row .range input[type=range]::-ms-fill-upper {
            background: transparent; }
          #root #content .calculator .row .range input[type=range]:focus::-ms-fill-upper {
            background: transparent; }
        #root #content .calculator .row .value-container {
          display: inline-block;
          margin-left: 1px;
          white-space: nowrap; }
          #root #content .calculator .row .value-container .value {
            display: inline-block;
            width: 65px;
            text-align: center; }
          #root #content .calculator .row .value-container .unit {
            display: inline-block;
            margin-left: 0;
            width: 13px;
            text-align: center; }
      #root #content .calculator .result {
        text-align: left;
        line-height: 1.5em;
        margin-bottom: 15px; }
        #root #content .calculator .result img {
          position: relative;
          top: 0px;
          left: -1px; }
        #root #content .calculator .result .result-container {
          padding-top: 4px; }
          #root #content .calculator .result .result-container .value {
            font-size: 20px;
            margin-right: 5px; }
          #root #content .calculator .result .result-container .unit {
            width: auto; }
    #root #content .button-container {
      text-align: left; }
      #root #content .button-container a.button {
        display: inline-block;
        padding: 0 30px;
        cursor: pointer;
        background: #ffffff;
        line-height: 38px;
        border-radius: 19px 19px;
        text-decoration: none;
        color: #000;
        margin-top: 0px;
        font-size: 16px;
        border: 1px solid #a8a8a8; }
        #root #content .button-container a.button:hover {
          border: 1px solid #ed6823; }
        #root #content .button-container a.button:active {
          background: #f0f0f0; }

html.old-ie body #root #content .calculator .row {
  margin-bottom: 20px; }
  html.old-ie body #root #content .calculator .row .range {
    text-align: left;
    width: 174px; }
    html.old-ie body #root #content .calculator .row .range .progress {
      display: none; }
    html.old-ie body #root #content .calculator .row .range input[type=range] {
      background: #fff;
      border: 1px solid #CDCDCD;
      outline: none;
      border-radius: 0;
      -webkit-appearance: none;
      margin-top: 8px;
      padding: 4px 8px;
      margin-left: 2px;
      margin-right: 25px;
      width: 135px;
      font-family: 'ChevinStd Light';
      font-size: 16px; }
  html.old-ie body #root #content .calculator .row .value-container {
    position: relative; }
    html.old-ie body #root #content .calculator .row .value-container .value {
      display: none; }
