input {
    display: inline;
    width: auto;
}

.light .tco-calculator {
    color: #efefef;
    font-weight: 600;
}

.tco-calculator .inputGroup {
    clear: both;
    overflow: hidden;
    margin-bottom: 20px;
}

.tco-calculator .input {
    margin-left: 80px;
}

.tco-calculator .input-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tco-calculator .increment-input {
    display: flex;
}
.tco-calculator .unitDescriptor__before,
.tco-calculator .unitDescriptor {
    font-weight: 600;
    font-size: 14px;
    margin: 0 5px;
}

.tco-calculator .tco-heading {
    color: #efefef;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.tco-calculator .savings {
    margin: 0;
    color: #ffffff;
    font-weight: 700;
}

.tco-calculator .cost {
    color: white;
    font-size: 30px;
    font-weight: 700;
}

.tco-calculator .compare-totals {
    margin-left: 40px;
}

.tco-calculator .banner {
    background-color: #8997a4;
    padding: 20px 10px;
    margin: 0 20px 20px;
}

.tco-calculator small {
    font-weight: normal;
    text-transform: uppercase;
    opacity: .7;
}

.tco-calculator .legend {
    display: block;
    margin-left: 50px
}

.tco-calculator .legend span {
    padding: 3px 10px;
    margin-top: 20px;
    margin-right: 10px;
    text-align: center;
    width: 35%;
    display: inline-block;
}

.light .c3 .c3-axis-x path,
.light .c3 .c3-axis-x line,

.light .c3 .c3-axis-y path,
.light .c3 .c3-axis-y line {
    stroke: white;
}

.light .c3 .c3-axis-x g,
.light .c3 .c3-axis-y g,
.light .c3 .c3-legend-item-data text {
    fill: whitesmoke;
}

.c3 svg g g.c3-axis.c3-axis-x {
    font-size: 16px;
    font-weight: 700;
}

.tco-calculator .tco-left-pane input[type="radio"],
.tco-calculator .tco-left-pane input[type="checkbox"] {
    margin: 15px 5px 15px 0;
    font-size: 14px;
}

.tco-calculator .icon {
    float: left;
}

.tco-calculator .icon img {
    width: 90%;
    height: auto;
    display: block;
    margin: 10px auto;
}

.tco-calculator label {
    display: inline;
    font-size: 13px;
    font-weight: 600;
}

.tco-calculator input {
    display: inline;
    background-color: #8997a4;
    border: none;
    max-width: 75px;
    width: 100%;
    margin: 0;
    color: white;
    text-align: center;
}

.increment, .decrement {
    background-color: #8997a4;
    padding: 5px 10px;
    border: none;
    transition: color .1s ease-in-out;
    height: 30px;
    margin: 0 -1px;
    font-weight: 700;
}

.increment:hover, .decrement:hover {
    color: #333;
}

/* Rangeslider styles*/

.tco-calculator .rangeslider {
    display: inline-block;
}

.tco-calculator .rangeslider--horizontal {
    height: 5px;
    max-width: 90%;
}

.tco-calculator .rangeslider__fill {
    background: #8997a4;
}

.tco-calculator .rangeslider__handle {
    top: -5px !important;
    width: 15px;
    height: 15px;
}

.tco-calculator input[type=number]::-webkit-inner-spin-button,
.tco-calculator input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    margin: 0;
}

.tco-calculator .tco-left-pane #slider {
    margin: 15px 0 15px 1%;
    border: none;
    height: 5px;
    width: 200px;
}

.tco-calculator #slider .tooltip-slider {
    position: absolute;
    bottom: -29px;
    visibility: visible;
    display: block;
    color: #000000;
    font-size: 10px;
}

.tco-calculator .ui-slider-horizontal .ui-slider-range {
    background-color: #0DB9F0;
}

.tco-calculator .range-limit {
    font-size: 12px;
}

.tco-calculator .ui-slider .ui-slider-handle.ui-corner-all.ui-state-default {
    background-color: #ffffff;
    border-radius: 12px;
    border: 3px solid #0db9f0;
    top: -8px;
    z-index: 10;
    outline: none;
    cursor: pointer;
    height: 22px;
    width: 22px;
}

.tco-calculator .ui-slider .ui-slider-handle.ui-corner-all.ui-state-default:after {
    content: '';
    width: 8px;
    height: 8px;
    position: absolute;
    top: 4px;
    left: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background: #a5d012;
}

.tco-calculator .tco-left-pane .scale {
    height: 20px;
}

.tco-calculator .scale #right-mark,
.tco-calculator .scale #left-mark {
    color: #999999;
    font-size: 10px;
}

.tco-calculator .scale #right-mark {
    margin-left: 170px;
}

.tco-calculator .tco-left-pane .radio-custom,
.tco-calculator .tco-left-pane .check-custom {
    display: inline;
}

.tco-calculator .radio-custom label,
.tco-calculator .check-custom label {
    cursor: pointer;
    margin-bottom: 0;
    padding-left: 32px;
    position: relative;
    display: inline-block;
    font-weight: normal;
}

.tco-calculator .radio-custom label:before,
.tco-calculator .check-custom label:before {
    border: 1px solid #DDDEDF;
    content: "";
    height: 14px;
    left: 10px;
    position: absolute;
    top: 5px;
    width: 14px;
    background-color: #ffffff;
}

.tco-calculator .radio-custom input[type="radio"]:checked + label:after,
.tco-calculator .check-custom input[type="checkbox"]:checked + label:after {
    background-color: #a5d012;
    color: #666;
    content: "";
    height: 8px;
    left: 13px;
    position: absolute;
    top: 8px;
    width: 8px;
}

.tco-calculator .radio-custom label:before {
    border-radius: 64px;
}

.tco-calculator .check-custom label:before {
    margin-bottom: 10px;
}

.tco-calculator .radio-custom input[type="radio"]:checked + label:after {
    border-radius: 64px;
}

.tco-calculator .radio-custom input {
    display: none;
}

.tco-calculator .tco-right-pane {
    padding: 0;
    margin-bottom: 60px;
}

.tco-calculator .text-graph #x-axis-label #conventional {
    left: 408px;
    position: absolute;
}

.tco-calculator .text-graph.small-text #x-axis-label #conventional {
    left: 175px;
}

.tco-calculator .tco-top #savings-text {
    color: #576B7A;
    text-align: center;
}

.tco-calculator .tco-bottom .form-submitted {
    margin-top: 25px;
    text-align: center;
    color: #576B7A;
    font-size: 18px;
}

.tco-calculator .tco-bottom .form-submitted i {
    font-size: 36px;
    top: 5px;
    margin-right: 10px;
    position: relative;
    color: #BED231;
}

.tco-calculator .tco-bottom .text {
    color: #576B7A;
    padding: 0 30px;
    margin-bottom: 40px;
    line-height: 2;
}

.tco-calculator .c3-grid .c3-xgrid-focus {
    visibility: hidden !important;
}

.tco-calculator .text-graph #komprise-total-value,
.tco-calculator .text-graph #no-komprise-total-value {
    white-space: nowrap;
}

@media only screen and (max-width: 1000px) {

    .tco-calculator .tco-bottom .text {
        text-align: center;
    }

    .tco-calculator .tco-bottom .form form {
        width: 100%;
    }

    .tco-calculator .c3-legend-background {
        stroke: #ffffff;
    }
}

@media only screen and (max-width: 767px) {
    .header-menu p, .header-menu i {
        padding: 5px 13px !important;
    }

    .header-menu ul {
        padding-left: 10px;
    }
}

@media only screen and (max-width: 480px) {
    .start-selling-link {
        margin: 0;
    }

    #chart svg {
        width: 276px !important;
    }

    .tco-bottom .form_container {
        padding: 0 !important;
    }

    #page-title {
        min-height: 136px !important;
    }

    footer .mainnav {
        padding: 0 15px !important;
    }

    body footer .mainnav ul.menu > li > a {
        padding: 20px 0 10px !important;
    }
}

