.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;
}

/* BOOTSTRAP ELEMENTS ADMIN */

.ws-admin-show-shortcode {
    margin-right: 3%;
    margin-top: 2%;
    display: inline-block;
    float: left;
    width: 20%;
    min-height: 35vh;
    background: #fff;
    border: 1px solid #fefe;
    text-align: center;
    box-shadow: 5px 5px 10px;
}

.ws-admin-show-shortcode h3 { 
    background: #ededed;
    margin: 0;
    padding: 1rem;
}

.ws-admin-show-shortcode h5 {
    text-decoration: underline;
}

.ws-upgrade-info {
    position: absolute;
    bottom: 2rem;
}
