@CHARSET "ISO-8859-1";

/* ----- Options / Settings Table Format ----- */

#claps-main-form{
    display: block;
}

#claps-main-form td,  #claps-main-form th {
    padding: 14px !important;
}

tr.claps-input-hdr {
    background: #dedede;
}

/* ----- Option Page Toggle Switch ----- */
.claps_switch {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 30px;
}

.claps_switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.claps_slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 30px;
    -webkit-transition: .4s;
    transition: .4s;
}

.claps_slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    border-radius: 50%;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .claps_slider {
    background-color: #2196F3;
}

input:focus + .claps_slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .claps_slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

