.color-switcher{
    position: fixed;
    width: 220px;
    top: 30px;
    right: -220px;
    background: #fdf9ff;
    padding: 15px;
    border: 1px solid #d4d4e3;
    border-right: none;
    transition: 0.3s;
    z-index: 111;
}
.color-switcher.active{
    right: 0;
}
.color-switcher h5{
    text-transform: capitalize;
    color: #504e70;
    font-size: 18px;
    font-weight: 700;
    border-bottom: 1px solid #d4d4e3;
    margin: 10px 0;
}

.color-switcher ul li{
    display: inline-block;
}

.color-switcher ul li a{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 0px 1px;
    cursor: pointer;
    display: inline-block;
}
.color-switcher ul li a.active{
    border: 5px solid #d4d4e3;
}
.dark-light{
    display: flex;
    justify-content: center;
    align-items: center;
}
label{
    flex: 0 0 45%;
    cursor: pointer;
    margin: 0 5px;
}
.dark-class,
.light-class{
    display: flex;
    justify-content: center;
    align-items: center;
}
.dark-class p,
.light-class p{
    margin-left: 5px;
    text-transform: capitalize;
    font-weight: 500;
}
.radio_input{
    display: none;
}

.dot{
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-block;
}
.dot::after{
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: #72b626;
    border-radius: 50%;
    transform: scale(0);
    transition: 0.4s;
}
.radio_input:checked + .dot::after{
    transform: scale(1);
}





.color-switcher .toggle-switch{
    position: absolute;
    top: -1px;
    left: -41px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #fdf9ff;
    border-radius: 5px 0px 0px 5px;
    border-top: 1px solid #d4d4e3;
    border-left: 1px solid #d4d4e3;
    border-bottom: 1px solid #d4d4e3;
    text-align: center;
    cursor: pointer;
}