/*
.sliderContainer{

    width: 100%;
    margin-top: 20px;

}
.card
{
    background: rgb(243, 243, 217);
    width: 500px;
    height: 450px ;
    margin-top: 20px;
}

.slider{
    -webkit-appearance: none;
    width: 100%;
    height: 20px;
    background: rgb(238, 238, 228);
    outline: none;
    opacity: 0.7;
    -webkit-transition: 0.5s;
    transition: opacity 0.2s;
    border-radius: 12px;
    
}
.slider:hover{
    opacity: 1.5;
}

.slider::-webkit-slider-thumb{
    -webkit-appearance: none;
    appearance: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border-color: black;
    cursor: pointer;
    background-image: url('../assets/icons/Calculator Car Wheel.png');
    background-repeat: no-repeat; 
    background-size: cover;
}

*/


.sliderContainer{

    width: 100%;
    margin-top: 20px;

}
.card
{
    background: rgb(243, 243, 217);
    width: 500px;
    height: 450px ;
    margin-top: 20px;
}

.slider{

    -webkit-appearance: none;
    width: 100%;
    height: 20px;
    background: rgb(238, 238, 228);
    outline: none;
    opacity: 0.7;
    -webkit-transition: 0.5s;
    transition: opacity 0.2s;
    border-radius: 12px;
    
}
.slider:hover{
    opacity: 1.5;
}

.slider::-webkit-slider-thumb{

    -webkit-appearance: none;
    appearance: none;
    width: 30px;
    height: 30px;
    background:orange;
    border-radius: 50%;
    border-color: black;
    cursor: pointer;
}
