#admin_plugin_settings {
    .setting_description {
        font-style: italic;
    }

    .ewfp_header_element th {
        font-size: 1.3em;
    }

    .settings_plugin_switch_settings {
        position: relative;
        display: inline-block;
        width: 50px;
        height: 24px;

        input {
            display: none
        }

        .slider {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            cursor: pointer;
            background-color: #ccc;
            -webkit-transition: .4s;
            transition: .4s;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 22px;
            width: 22px;
            left: 1px;
            bottom: 1px;
            background-color: white;
            -webkit-transition: .4s;
            transition: .4s;
        }

        input:checked+.slider {
            background-color: #0085ba;
        }

        input:focus+.slider {
            box-shadow: 0 0 1px #0085ba;
        }

        input:checked+.slider:before {
            -webkit-transform: translateX(26px);
            -ms-transform: translateX(26px);
            transform: translateX(26px);
        }

        .slider.round {
            border-radius: 4px;
        }

        .slider.round:before {
            border-radius: 3px;
        }
    }
}