.ws-admin-page {
    position: relative;
    font-size: 16px;
    padding: 2.5em;
    margin-top: 2em;
    background: rgba(255,255,255,.5);
    border: 1px solid rgba(0,0,0,.1);
}

.ws-admin-page .ws_width_100 {
    margin-bottom: 1em;
}

.ws-admin-page h1 {
    margin-bottom: 1em;
    border-bottom: 1px solid rgba(0,0,0,0.3);
}

.ws-woocommerce-donate {
    position: absolute;
    right: 3em;
    top: 1em;
}

.ws-woocommerce-donate > a > img {
    width: 4em;
}

.ws-admin-page input[type="checkbox"] {
    border: 1px solid transparent;
    border-top: none;
    border-bottom: 1px solid #DDD;
    box-shadow: inset 0 1px 2px rgba(0,0,0,.39);
    width: 3.5em;
    height: 2em;
    border-radius: 3em;
    position: relative;
    cursor: pointer;
    outline: none;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.ws-admin-page input[type="checkbox"]::before {
    content: '';
}

.ws-admin-page input[type="checkbox"]::after {
    position: absolute;
    content: "";
    width: 1em;
    height: 1em;
    border-radius: 50%;
    background: #f0f0f0;
    -webkit-box-shadow: 0 0 0.25em rgba(0,0,0,.3);
    box-shadow: 0 0 0.25em rgba(0,0,0,.3);
    -webkit-transform: scale(.7);
    transform: scale(.7);
    left: 10%;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    top: 22%;
}

.ws-admin-page input[type="checkbox"]:checked::after {
    left: calc(100% - 2em);
    background: #0085ba;
    width: 2em;
    height: 2em;
    top: 0;
}