form .check-group{
    display: flex;
    width: 100%;
    padding: 15px 0;
    /* background-color: red; */
    justify-content: space-between;
    border-top: 1px solid var(--gray_l);
}
form .check-group.last{
    border-bottom: 1px solid var(--gray_l);
}
form .check-group .custom-switches-stacked .custom-switch .custom-switch-indicator{
    border-width: 2px;
}
form .check-group .custom-switches-stacked .custom-switch .custom-switch-indicator::before{
    background-color: red;
    background-color: var(--secondary_color);
}
form .check-group .custom-switches-stacked .custom-switch .custom-switch-input:checked ~ .custom-switch-indicator{
    background-color: var(--secondary_color_l);
    border: 3px solid white;
    outline: 2px solid var(--gray_l);
    height: 1rem;
}
.custom-switch-input:checked ~ .custom-switch-indicator::before {
    left: calc(1rem + 1px);
    top: -2.5px;
}