#calculator, #calculator * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: inherit;
}
#calculator{
    width: 100%;
    margin: 15px 0;
}
.sliderValues{
    display: flex;
    align-items: center;
    justify-content: space-between;
        font-size: 14px;

}
#slider{
    position: relative;
    appearance: none;
    width: 100%;
    height: 20px;
    background: #003399;
    border-radius: 10px;
    outline: none;
    margin-top: 8px;
    z-index: 3;

}
#slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #003399;
    z-index: 4;
}
.sliderValues span{
    position: relative;
}
.sliderValues span::after{
    content: "";
    display: block;
    position: relative;
    width: 1px;
    height: 6px;
    background: #000;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    overflow: hidden;
}
.currentValue__container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: -6px;
    margin-bottom: 14px !important;
}
#currentValue{
    text-align: center;
    display: inline-block;
    border: 2px solid #003399;
    width: 20%;
    padding: 6px 0;
    margin: 0 auto;
    border-top: none;
        font-size: 14px;

}
#calculator p{
    text-align: center;
    margin-bottom: 4px;
}