        .slider {
            -webkit-appearance: none;
            margin-bottom: 10px;
            border-radius: 25px;
            width: 200px;
            height: 100%;
            background: #c3def8;
            outline: none;
            opacity: 0.8;
            transition: opacity 0.3s;
        }
        .slider:hover {
            opacity: 1;
        }
        .slider:active {
            opacity: 0.5;
        }
        .slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 25px;
            height: 25px;
            opacity: 1;
            background: #fb8c64;
            cursor: pointer;
        }
