.container{
    position: relative;
    width: 100%;
    height: 55px;
}

.scale {
    display: flex;
    justify-content: space-between;
}

.scale div {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    font-family: 'Bellota Text', cursive;
}

input[type="range"]{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    outline: none;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    background-color: transparent;
    pointer-events: none;
}

.slider-track {
    width: 100%;
    height: 2px;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    border-radius: 5px;
}

.slider-track::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #c20000;
    left: 0px;
    top: -4px;
}

.slider-track::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #c20000;
    right: 0px;
    top: -4px;
}

input[type="range"]::-webkit-slider-runnable-track{
    -webkit-appearance: none;
    height: 5px;
}
input[type="range"]::-moz-range-track{
    -moz-appearance: none;
    height: 5px;
}
input[type="range"]::-ms-track{
    appearance: none;
    height: 5px;
}
input[type="range"]::-webkit-slider-thumb{
    -webkit-appearance: none;
    height: 10px;
    width: 10px;
    background-color: #000;
    cursor: pointer;
    margin-top: -2px;
    pointer-events: auto;
    transform: rotate(45deg);
}
input[type="range"]::-moz-range-thumb{
    -webkit-appearance: none;
    height: 10px;
    width: 10px;
    cursor: pointer;
    background-color: #000;
    pointer-events: auto;
    transform: rotate(45deg);
}
input[type="range"]::-ms-thumb{
    appearance: none;
    height: 10px;
    width: 10px;
    cursor: pointer;
    transform: rotate(45deg);
    background-color: #000;
    pointer-events: auto;
}

.values{
    position: relative;
    margin: auto;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    color: #000;
}

.checkbox-container {
    display: block;
    position: relative;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Bellota Text', cursive;
    font-weight: 600;
}
  
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
  
.checkmark {
    position: absolute;
    top: 0;
    right: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border: 1px solid #000;
}
  
.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}
  
.checkbox-container input:checked ~ .checkmark {
    background-color: #000;
}
  