.set-left-color {
    margin-top: 50px !important;
}

.controllSpinleftmenu {
    color: #fff;
    display: none;
}

.pro_data_list {
    background-color: aqua !important;
}

.checkbox-container {
    display: flex;
    flex-direction: column;
    padding: 19px 0px;
    padding-left: 12px;
    background: #f1f5ff;
    border-radius: 0px 0px 15px 15px;
}

/* Style for checkbox input */
.checkbox-container input[type="checkbox"] {
    display: none;
}

/* Style for custom checkbox */
.custom-checkbox {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    cursor: pointer;
}

/* Style for checkbox label */
.custom-checkbox span {
    font-size: 16px;
}

/* Style for checkbox checkmark */
.custom-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border-radius: 3px;
    /* box-shadow: 10px 10px 10px #fff; */
    border: 1px solid #000;
    border-radius: 4px;
}

/* Style for checked checkbox */
.custom-checkbox input:checked~.checkmark:after {
    content: "";
    position: absolute;
    display: block;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-control {
    border-radius: 8px !important;
}

.toggle-container {
    display: inline-block;
    position: relative;
    width: 35px;
    height: 20px;
    margin-left: 23px;
}

/* Style for toggle input */
.toggle-container input[type="checkbox"] {
    display: none;
}

/* Style for toggle switch */
.toggle-switch {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 20px;
    /* Adjusted border radius */
    transition: background-color 0.3s;
}

/* Style for toggle slider */
.toggle-slider {
    position: absolute;
    height: 16px;
    /* Adjusted height */
    width: 16px;
    /* Adjusted width */
    border-radius: 50%;
    background-color: white;
    top: 2px;
    /* Adjusted top position */
    left: 2px;
    /* Adjusted left position */
    transition: transform 0.3s;
}

/* Style for checked toggle switch */
.toggle-container input:checked+.toggle-switch {
    background-color: #7ccf7c;
}

/* Style for checked toggle slider */
.toggle-container input:checked+.toggle-switch .toggle-slider {
    transform: translateX(19px);
    /* Adjusted transform */
}