.settings{
    position: fixed;
    z-index: 9;
    height: calc(100% - 140px);
    min-height: 400px;
    width: 220px;
    top: 70px;
    bottom: 70px;
    left: -220px;
    padding: 10px 20px 50px;
    border-radius: 0 10px 10px 0;
    background: #eee;
    padding: 10px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    box-shadow: inset 0 0 20px 0px #c9c9c9;
    font-size: 13px;
}
.setting-content{
    height: calc(100vh - 90px);
    overflow: auto;
}
.settings .h6{
    margin: 10px 0;
}
.settings.active{
    left: 0;
}
#toggle-setting{
    position: absolute;
    background: #eee;
    right: -42px;
    z-index: 10;
    width: 42px;
    height: 42px;
    box-shadow: inset 0 0 20px 0px #c9c9c9;
    top: 97px;
    border-radius: 0 5px 5px 0;
    padding: 8px;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
}
#toggle-setting i{
    font-size: 24px;
    line-height: 24px;
}

.theme-colors {
    margin: 0;
    text-align: center;
}
.theme-bg-colors {
    display: block;
    min-height: 90px;
}
.theme-colors .btn, .theme-bg-colors .btn{
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    display: inline-block;
}
.theme-colors .btn.active:before, .theme-bg-colors .btn.active:before{
    content: "\f00c";
    position: absolute;
    font-family: "FontAwesome";
    top: -4px;
    left: 1px;
    right: 0;
    bottom: 0;
    margin: auto;
    color: #fff;
    font-weight: normal;
}
.settings .form-check-label{
    font-size: 13px;
}

body.dark .settings, body.dark #toggle-setting{
    color: var(--dark-fg-2);
    background: #333;
    box-shadow: none;
}