
.setting{
    position: fixed;
    right: 0;
    background-color: #fff;
    max-width: 200px;
    width: 100%;
    padding: 15px;
    top: 100px;
    z-index: 98;
    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;
    cursor: pointer;
}
.setting h4{
    font-size: 16px;
    color: #555555;
    font-weight: 500;
    border-bottom: 1px sol4 #cccccc;
    padding-bottom: 5px;
}
.setting .colors span{
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-top: 5px;
    margin-right: 8px;
    cursor: pointer;
}

.setting label{
    font-size: 16px;
    color: #000;
    margin-right: 5px;
    display: inline-block;
    margin-top: 5px;
    cursor: pointer;
}

body.dark .setting{
    background-color: #222222;
}
body.dark .setting label{
    color: #fff;
}
body.dark .setting h4{
    color: #fff;
    border-color: #333333;
}