.checkbox-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

label {
    margin-bottom: 10px;
}

.checkbox-option {
    display: flex;
    align-items: center;
}

.checkbox-option input {
    margin-right: 10px;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #007BFF;
    border-radius: 4px;
    outline: none;
    transition: background-color 0.3s;
}

.checkbox-option input:checked {
    background-color: #007BFF;
}

.checkbox-option input+span {
    background-color: #f9f9f9;
    padding: 5px 10px;
    border-radius: 5px;
    transition: 0.1s;
    width: 100%;
}

.checkbox-option input:checked + span {
    background-color: #007BFF;
    color: white;
}

.checkbox-option input:focus {
    box-shadow: 0 0 5px #007BFF;
}

.select-all input {
    margin-right: 10px;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #007BFF;
    border-radius: 4px;
    outline: none;
}

.select-all input:checked {
    background-color: #007BFF;
}

.select-all input:focus {
    box-shadow: 0 0 5px #007BFF;
}

.selectAllBt {
    margin: 0px 0px 15px 0px;
    width: fit-content;
    background-color: #d7eaff;
    border: 2px solid #007bff;
    color: #1988ff;
    padding: 5px 10px;
    /* border: none; */
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    font-weight: bolder;
    width: 100%;
    box-shadow: #B8B8B9 0px 0px 3px 0px;
}



input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
}

input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    background: #ddd;
    border: none;
    border-radius: 4px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: #333;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -4px;
}

input[type="range"]::-moz-range-track {
    width: 100%;
    height: 8px;
    background: #ddd;
    border: none;
    border-radius: 4px;
}

input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #333;
    border-radius: 50%;
    cursor: pointer;
}

input[type="range"]::-ms-track {
    width: 100%;
    height: 8px;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

input[type="range"]::-ms-fill-lower {
    background: #ddd;
    border-radius: 4px;
}

input[type="range"]::-ms-fill-upper {
    background: #ddd;
    border-radius: 4px;
}

input[type="range"]::-ms-thumb {
    width: 16px;
    height: 16px;
    background: #333;
    border-radius: 50%;
    cursor: pointer;
}

.range-cont {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 0px 50px 10px 50px;
}

.range-cont span:nth-child(2) {
    align-items: center;
    vertical-align: middle;
    text-align: center;
    display: flex;
    padding-left: 10px;
    padding-right: 5px;
}