﻿.calculator-title-number {
    display: inline-block;
    text-align: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #F97400;    

}
.form-check-label-right {
    position: relative;
    cursor: pointer;
}
.form-check-label-right::after {
    content: "";
    position: absolute;
    left: -44px;
    top: -1px;
    width: 28px;
    height: 28px;
    border-radius: 3px;
    background-color: #CCCCCC;    
}
.form-check-input:checked~.form-check-label-right::after {
    background: linear-gradient(to top, #ffca0d, #F97400);
}

.form-check-label-top-with-img {
    position: relative;
    cursor: pointer;
    margin-bottom: 40px;
}
.form-check-label-top-with-img::after {
    content: "";
    position: absolute;
    bottom: -30px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 3px;
    background-color: #CCCCCC;
}
.form-check-input:checked~.form-check-label-top-with-img::after {
    background: linear-gradient(to top, #ffca0d, #F97400);
}
.form-check-label-top-with-img img {
    margin-bottom: 10px;
    display: block;
    width: 100%;
    height: auto;
}

.ui-slider {
    position: relative;
    height: 18px;
    background-color: #CCCCCC;
    margin-bottom: 15px;
    -webkit-box-shadow: inset 0 0 2px #c8c8c8;
    box-shadow: inset 0 0 2px #c8c8c8;
    border-radius: 10px;
}
.ui-slider-range {
    position: absolute;
    top: 0;
    height: 18px;
    background-color: #F97400;
    border-radius: 10px 0 0 10px;
}
.ui-slider-handle {
    position: absolute;
    top: -12px;
    margin-left: -24px;
    background: url(../img/kitchen/calc/dot1.png) center;
    background-size: cover;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 100;
}
.ui-slider-tooltip {
    position: absolute;
    top: -34px;
    left: 50%;
    width: 74px;
    color: #fff;
    height: 25px;
    margin-left: -37px;
    border-radius: 3px;
    background: #282b30;
    -webkit-box-shadow: inset 0 0 2px #fff;
    box-shadow: inset 0 0 2px #fff;
    text-align: center;
    font-family: "PT Sans", Arial, sans-serif;
    font-size: 18px;
    line-height: 25px;
    cursor: pointer;
}