<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.cmn-toggle {
    position: absolute;
    margin-left: -9999px;
    visibility: hidden;
}
.cmn-toggle + label.vswitchlabel {
    display: block;
    position: relative;
    cursor: pointer;
    outline: none;
    user-select: none;
}

input.cmn-toggle-round-flat + label.vswitchlabel {
    background-color: #dddddd;
    border-radius: 60px;
    height: 28px;
    padding: 2px;
    transition: background 0.4s ease 0s;
    width: 45px;
}
input.cmn-toggle-round-flat + label.vswitchlabel:before,
input.cmn-toggle-round-flat + label.vswitchlabel:after {
    display: block;
    position: absolute;
    content: "";
}
input.cmn-toggle-round-flat + label.vswitchlabel:before {
    top: 2px;
    left: 2px;
    bottom: 2px;
    right: 2px;
    background-color: #fff;
    border-radius: 60px;
    transition: background 0.4s;
}
input.cmn-toggle-round-flat + label.vswitchlabel::after {
    background-color: #dddddd;
    border-radius: 52px;
    bottom: 4px;
    left: 4px;
    top: 4px;
    transition: margin 0.4s ease 0s, background 0.4s ease 0s;
    width: 20px;
}
input.cmn-toggle-round-flat:checked + label.vswitchlabel {
    background-color: darkorange;
}
input.cmn-toggle-round-flat:checked + label.vswitchlabel::after {
    background-color: darkorange;
    margin-left: 17px;
}

.vswitchlabel{
    margin-bottom: 0px;
}
</pre></body></html>