/**
 * @category    Mana
 * @package     ManaPro_FilterSlider
 * @copyright   Copyright (c) http://www.manadev.com
 * @license     http://www.manadev.com/license  Proprietary License
 */

/* Default style - style1 */
.m-filter-slider {
    height: 3px;
    position: relative;
    background:#e3e3e3;
    box-sizing: content-box;
    margin: 25px 0;
}
.m-filter-slider > .m-slider-from,
.m-filter-slider > .m-slider-to {
    height: 17px;
    width: 17px;
    position: absolute;
    -webkit-box-shadow: 0 0 6px 0 #A9A9A9;
    box-shadow: 0 0 6px 0 #A9A9A9;
    border-radius: 50%;
    background-color: #fff;
    top:-7px;
}
@media only screen and (max-width: 770px) {
    .m-filter-slider > .m-slider-from,
    .m-filter-slider > .m-slider-to {
        height: 24px;
        width: 24px;
        top: -11px;
    }
}

.m-filter-slider > .m-slider-span {
    height: 3px;
    position: absolute;
    background: #e34141;
    border: none;
    border-radius:0;
    margin-left: -10px;
    padding-left: 0;
}
.m-filter-slider > .m-slider-from {  cursor: e-resize; }
.m-filter-slider > .m-slider-to { cursor: w-resize; }


.m-slider-selected-value {
    text-align: center;
    display: block;
    height: 30px;
    line-height: 30px;
}
.left-price .input-icon,
.right-price .input-icon {
    position: absolute;
    right: 4px;
    top: 0;
    color: #a9a9a9;
}

.left-price,
.right-price {
    width: calc(50% - 20px);
    position: relative;
}
input.m-slider.m-to,
input.m-slider.m-from {
    height: 30px;
    padding-right: 13px;
}
.m-slider.m-from{
    text-align: right;
}

.left-price{
    float: left;
}

.right-price{
    float: right;
}