/*normalize slider styling */
.am-slider {
    -webkit-appearance: none;
    width: 100%;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.am-slider:focus {
    outline: none;
}

/*Chrome reset*/
.am-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 3px;
    background: #DDDDDD;
}

.am-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    top: -20px;
    position: relative;
    opacity: 0;
}

/*Firfox reset*/
.am-slider::-moz-range-track {
    width: 100%;
    height: 3px;
    background: #DDDDDD;
}

.am-slider::-moz-range-thumb {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    opacity: 0;
}

/*IE reset*/
.am-slider::-ms-track {
    width: 100%;
    height: 20px;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

.am-slider::-ms-fill-lower {
    background: #DDDDDD;
    height: 3px;
}

.am-slider::-ms-fill-upper {
    background: #DDDDDD;
    height: 3px;
}

.am-slider::-ms-thumb {
    height: 50px;
    width: 50px;
    opacity: 0;
}

.am-slider::-ms-tooltip {
    display: none;
}
/****normalize styling end****/


/*slider thumb styling-*/
.am-thumb {
    width: 35px;
    height: 35px;
    line-height: 35px;
    overflow: hidden;
    border-radius: 50%;
    color: #FFFFFF;
    background-color: #2CADC3;
    text-align: center;
    position: relative;
    cursor: pointer;
    display: inline-block;
    top: 32px;
}
/****slider thumb styling end-****/


/*slider tooltip styling*/
/*normal state*/
.am-tooltip {
    display: none;
}

/*active state*/
.am-tooltip-active-state {
    background-color: #444A4A;
    color: #FFFFFF;
    width: 50px;
    height: 40px;
    line-height: 40px;
    border-radius: 7px;
    text-align: center;
    position: absolute;
    display: block;
}
/****slider tooltip styling end****/