.mycred-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}
.mycred-switch input { opacity: 0; width: 0; height: 0; }
.mycred-slider {
    position: absolute;
    cursor: pointer;
    background-color: #ccc;
    border-radius: 34px;
    top: 0; left: 0; right: 0; bottom: 0;
    transition: .4s;
}
.mycred-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: .4s;
}
.mycred-switch input:checked + .mycred-slider { background-color: #007cba; }
.mycred-switch input:checked + .mycred-slider:before { transform: translateX(26px); }

.mycred-pagination {
    text-align: left;
    margin: 20px 0;
    clear: both;
}

.mycred-page-button {
    display: inline-block;
    min-width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin-right: 5px;
    padding: 0 5px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    color: #555;
    text-decoration: none;
    border-radius: 2px;
    box-shadow: none;
}

.mycred-page-button.current {
    background: #2271b1;
    color: #fff;
    border-color: #2271b1;
}

.mycred-page-button:hover {
    background: #f0f0f0;
    border-color: #ccc;
}

.mycred-page-button.current:hover {
    background: #135e96;
    border-color: #135e96;
}