/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 29 2026 | 20:41:25 */
.cp-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 0;
    border-top:1px solid rgba(255,255,255,.08);
}

.cp-label{
    color:#fff;
    font-size:15px;
    font-weight:500;
}

.cp-right{
    display:flex;
    align-items:center;
    gap:12px;
}

.cp-switch{
    position:relative;
    display:inline-block;
    width:46px;
    height:24px;
}

.cp-switch input{
    opacity:0;
    width:0;
    height:0;
}

.cp-slider{
    position:absolute;
    inset:0;
    background:#5c6668;
    border-radius:30px;
    cursor:pointer;
    transition:.25s;
}

.cp-slider:before{
    content:"";
    position:absolute;
    width:18px;
    height:18px;
    left:3px;
    top:3px;
    background:#fff;
    border-radius:50%;
    transition:.25s;
    box-shadow:0 2px 6px rgba(0,0,0,.3);
}

/* Active (ON) */
.cp-switch input:not(:checked) + .cp-slider{
    background:#00d4d8;
}

.cp-switch input:not(:checked) + .cp-slider:before{
    transform:translateX(22px);
}

#cpConsistencyStatus{
    min-width:30px;
    font-size:13px;
    font-weight:600;
    color:#fff;
}