html, body {
    margin: 0;
    padding: 0;
    font-family: 'PT Sans', Arial, Helvetica, sans-serif;
}
.fusion-row * {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 13px;
}
#bitCalc {
    padding: 0;
    background: #ffffff;
    max-width: 1100px;
}
.unitsFrame {
    margin: 0 auto 20px auto;
    border: 1px solid #f1f1f1;
    border-radius: 10px;
    background-color: #f6f6f6;
    width: 360px;
}

.unitsFrame .unitsBlock {
    display: inline-table;
    height: 300px;
    vertical-align: middle;
    border: 3px solid rgba(0,0,0,0);
}
.unitsFrame .unitsBlock i {
    position: absolute;
    font-size: 20em;
    margin: 18px 0px;
    color: #fff;
}

.unitsFrame .unitsBlock-left {
    cursor: pointer;
    width: 100px;
}
.unitsFrame .unitsBlock-left .unitsBlockIn {
    opacity: 0.25;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.unitsFrame .unitsBlock-middle {
    width: 158px;
    background-color: #ffffff;
    border-color: #c5edff;
    border-radius: 10px;
}
.unitsFrame .unitsBlock-right {
    cursor: pointer;
    width: 100px;
}
.unitsFrame .unitsBlock-right .unitsBlockIn {
    opacity: 0.25;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.unitsFrame .unitsBlock .unitsBlockIn {
    width: 100%;
}

.unitsFrame .unitsBlock .unitsBlock-row {
    display: inline-table;
    width: 100%;
    height: 74px;
}
.unitsFrame .unitsBlock .unitsBlock-row div {
    vertical-align: middle;
    display: table-cell;
}

.unitsFrame .unitsBlock .unitsBlock-row label {
    display: inline-block;
    text-align: center;
    width: 60%;
    font-weight: bold;
    font-size: 1.35em;
    color: #777777;
}
.unitsFrame .unitsBlock .unitsBlock-row input {
    display: inline-block;
    width: 30%;
    border: 2px solid #cecece;
    border-radius: 5px;
    font-size: 1.35em;
    text-align: center;
    font-weight: bold;
    color: #5d5d5d;
}

.unitsFrame .unitsBlock .unitsBlock-slideleft-sm {
    transition: all 0.25s;
    margin-left: -100px;
    width: 94px;
    opacity: 0.25;
}
.unitsFrame .unitsBlock .unitsBlock-slideleft-md {
    transition: all 0.25s;
    margin-left: -158px;
    width: 152px;
    opacity: 0.9;
}
.unitsFrame .unitsBlock .unitsBlock-slideright-md {
    transition: all 0.25s;
    margin-left: 100px;
    margin-right: -164px;
    width: 152px;
    opacity: 0.9;
}
.unitsFrame .unitsBlock .unitsBlock-slideright-sm {
    transition: all 0.25s;
    margin-left: 158px;
    margin-right: -158px;
    width: 94px;
    opacity: 0.25;
}

.slidersFrame {
    margin: 0 auto;
    height: 260px;
    max-width: 800px;
}
.unitsPrice {
    height: 16px;
    text-align: center;
    font-size: 1.1em;
    color: #5d5d5d;
    font-style: italic;
}
.unitsPrice * {
    display: inline-block;
    margin: 0 5px;
    max-width: 800px;
}

.slidersFrame .slidersFrame-row {
    padding: 15px 10px;
    text-align: center;
}
.slidersFrame .slidersFrame-row div {
    vertical-align: middle;
    display: inline-block;
}
.slidersFrame .slidersFrame-row .slidersFrame-label {
    vertical-align: middle;
    display: inline-block;
    width: 140px;
    color: #777777;
    font-weight: bold;
    font-size: 1.35em;
}
.slidersFrame .slidersFrame-row .slidersFrame-slider {
    vertical-align: middle;
    -webkit-appearance: none;
    display: inline-block;
    width: 80%;
    margin: 20px;
    height: 12px;
    border-radius: 10px;
    background: #c5edff;
    opacity: 0.8;
    -webkit-transition: .2s;
    transition: opacity .2s;
    outline: none;
}
.slidersFrame .slidersFrame-row .slidersFrame-slider:hover {
    opacity: 1;
}
.slidersFrame .slidersFrame-row .slidersFrame-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 15px;
    background: #ee7d03;
    cursor: pointer;
}
.slidersFrame .slidersFrame-row .slidersFrame-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 15px;
    background: #ee7d03;
    cursor: pointer;
    border: none;
}
.slidersFrame .slidersFrame-row .slidersFrame-slider::-moz-range-track {
    background: #c5edff;
}
.slidersFrame .slidersFrame-row .slidersFrame-slider::-moz-focus-outer {
    border: 0;
}
.slidersFrame .slidersFrame-row .slidersFrame-input {
    display: inline-block;
    width: 75px;
    border: 2px solid #cecece;
    border-radius: 5px;
    font-size: 1.35em;
    text-align: center;
    font-weight: bold;
    color: #5d5d5d;
}
.slidersFrame .slidersFrame-row .slidersFrame-xrate {
    display: inline-block;
    font-weight: bold;
    font-size: 1.1em;
    text-align: center;
    margin-left: 5px;
    width: 15px;
    color: #777777;
}
.slidersFrame .slidersFrame-row .slidersFrame-rate {
    display: inline-block;
    font-weight: bold;
    font-size: 1.1em;
    margin-left: 5px;
    width: 70px;
    color: #777777;
}
.bitTotalRow {
    text-align: center;
    /*margin-top: 10px;*/
    margin: 10px auto 0 auto;
    max-width: 800px;
}
/* stable height for iframe */
.bitTotalRow[one]{
    height: 25px;
}
.bitTotalRow[two]{
    height: 75px;
}
.bitTotalRow label {
    display: inline-block;
    margin: 0 10px;
    font-weight: bold;
    font-size: 1.5em;
    color: #5d5d5d;
}
.bitTotalRow t {
    margin: 0 auto;
    padding: 0 5%;
    display: block;
    font-size: 1.15em;
}
.rateBox .rateBtn {
    cursor: pointer;
    display: inline-block;
    width: 45px;
    height: 45px;
    padding: 14px 0;
    /* border: 2px solid #ee7d03; */
    border-radius: 32px;
    margin: 0 5px;
    background-color: #f8cd6f;
    font-weight: bold;
    font-size: 15.6px;
    color: #ffffff;
    font-family: sans-serif;
}
.rateBox .rateBtn:hover {
    background-color: #ee7d03;
    color: white;
}
.rateBox .rateBtn.rateBtn-active {
    box-shadow: 0px 0px 10px 25px #ee7d03 inset;
}

@media (min-width: 576px) {
    .unitsFrame {
        width: 540px;
    }
    .unitsFrame .unitsBlock-left {
        width: 150px;
    }
    .unitsFrame .unitsBlock-middle {
        width: 238px;
    }
    .unitsFrame .unitsBlock-right {
        width: 150px;
    }
    .unitsFrame .unitsBlock .unitsBlock-slideleft-sm {
        margin-left: -150px;
        width: 144px;
    }
    .unitsFrame .unitsBlock .unitsBlock-slideleft-md {
        margin-left: -238px;
        width: 232px;
    }
    .unitsFrame .unitsBlock .unitsBlock-slideright-md {
        margin-left: 150px;
        margin-right: -244px;
        width: 232px;
    }
    .unitsFrame .unitsBlock .unitsBlock-slideright-sm {
        margin-left: 238px;
        margin-right: -238px;
        width: 144px;
    }
    .unitsFrame .unitsBlock i {
        margin: 18px 26px;
    }
    .slidersFrame .slidersFrame-row .slidersFrame-slider {
        width: 35%;
    }
    /* stable height for iframe */
    .slidersFrame {
        height: 164px;
    }
    .bitTotalRow[two] {
        height: 51px;
    }
}
@media (min-width: 768px) {
    .unitsFrame {
        width: 730px;
    }
    .unitsFrame .unitsBlock-left {
        width: 209px;
    }
    .unitsFrame .unitsBlock-middle {
        width: 310px;
    }
    .unitsFrame .unitsBlock-right {
        width: 209px;
    }
    .unitsFrame .unitsBlock .unitsBlock-slideleft-sm {
        margin-left: -209px;
        width: 203px;
    }
    .unitsFrame .unitsBlock .unitsBlock-slideleft-md {
        margin-left: -310px;
        width: 304px;
    }
    .unitsFrame .unitsBlock .unitsBlock-slideright-md {
        margin-left: 209px;
        margin-right: -316px;
        width: 304px;
    }
    .unitsFrame .unitsBlock .unitsBlock-slideright-sm {
        margin-left: 310px;
        margin-right: -310px;
        width: 203px;
    }
    .unitsFrame .unitsBlock .unitsBlock-row label {
        width: 50%;
    }
    .unitsFrame .unitsBlock i {
        font-size: 23em;
        margin: 0px 48px;
    }
    .slidersFrame .slidersFrame-row .slidersFrame-slider {
        width: 48%;
    }
    .slidersFrame .slidersFrame-row .slidersFrame-input {
        width: 95px;
    }
    /* stable height for iframe */
    .slidersFrame {
        height: 164px;
    }
    .bitTotalRow[two] {
        height: 36px;
    }
}