body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}

.custom-range {
    -webkit-appearance: none;
}
.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: #FFC700;
    cursor: pointer;
    margin-top: -7px;
}
.custom-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: #222222;
    border-radius: 2px;
}
.custom-range::-moz-range-thumb {
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: #FFC700;
    cursor: pointer;
    border: none;
}
.custom-range::-moz-range-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: #222222;
    border-radius: 2px;
}