div#di_general table {
    width: 50%;
    border-collapse: separate;
    border-spacing: 0 5px;
}

div#di_general input[type=text],
div#di_general input[type=url],
div#di_general select {
    width: 100%;
}


/*--------- Slider button ----------*/

div#di_general .eabs_switch {
    display: inline-block;
    height: 34px;
    position: relative;
    width: 60px;
}

div#di_general .eabs_switch input {
    display: none;
}

div#di_general .eabs_slider {
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
}

div#di_general .eabs_slider:before {
    background-color: #fff;
    bottom: 4px;
    content: "";
    height: 26px;
    left: 4px;
    position: absolute;
    transition: .4s;
    width: 26px;
}

div#di_general input:checked+.eabs_slider {
    background-color: #3890ec;
}

div#di_general input:checked+.eabs_slider:before {
    transform: translateX(26px);
}

div#di_general .eabs_slider.eabs_round {
    border-radius: 34px;
}

div#di_general .eabs_slider.eabs_round:before {
    border-radius: 50%;
}

@media(max-width: 767px) {
    div#di_general table {
        width: 100%;
    }
}