.setting{
    position: fixed;
    right: 0;
    background-color: #fff;
    max-width: 155px;
    width: 100%;
    padding: 15px;
    top: 175px;
    z-index: 999;
    border-radius: 0 0 0 5px;
    transition: all 0.5s ease;
    transform: translateX(100%);
}
.setting.open{
    transform: translateX(0%);
}
.setting .s-toggle-btn{
    position: absolute;
    height: 40px;
    width: 40px;
    color: #fff;
    left: -40px;
    top: 0;
    font-size: 16px;
    text-align: center;
    line-height: 40px;
    border-radius: 5px 0 0 5px;
}
.setting h4{
    font-size: 16px;
    color: #555;
    font-weight: 500;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}
.setting .colors span{
    display: inline-block;
    align-content: center;
    width: 25px;
    height: 25px;
    margin-top: 6px;
    margin-right: 6px;
    cursor: pointer;
}
.setting label{
    font-size: 16px;
    color: #555;
    margin-right: 5px;
    display: inline-block;
    margin-top: 5px;
    cursor: pointer;
}

body.dark .setting{
    background-color: #222;
}
body.dark .setting h4{
color: #fff;
border-color: #333;
}
body.dark .setting label{
color: #bbb;

}