.style-switcher {
    position: fixed;
    right: 100px;
    top: 0px;
    padding: 15px;
    width: 200px;
    border: 1px solid hsl(228, 15%, 40%);
    background: hsl(228, 15%, 15%);
    z-index: 101;
    border-radius: 5px;
    transition: all .3s ease;
    transform: translateX(300px);
    margin-top: 81px;
}

.clicked {
    position: absolute;
    right: 0;
}

.style-switcher.open {
    transform: translateX(20px);
}

.style-switcher .s-icon {
    position: absolute;
    height: 40px;
    width: 40px;
    text-align: center;
    font-size: 20px;
    background: var(--bg-black-100);
    color: var(--text-black-900);
    right: 100%;
    border: 1px solid var(--bg-black-50);
    margin-right: 25px;
    cursor: pointer;
    transition: all .3s ease;
    border-radius: 50%;
}

.style-switcher .s-icon {
    line-height: 40px;
}

.style-switcher-toggler {
    position: fixed;
    top: 25px;
    z-index: 101;
    right: 45px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 5px;
    transition: all .3s ease;
}

.style-switcher .day-night {
    top: 55px;
}

.style-switcher h4 {
    margin: 0 0 10px;
    color: var(--text-black-700);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}

.style-switcher .colors {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.style-switcher .colors span {
    display: inline-block;
    height: 30px;
    width: 30px;
    border-radius: 50%;
}

.style-switcher .color-1 {
    background: hsl(210, 100%, 70%);
    cursor: pointer;
}

.style-switcher .color-2 {
    background: hsl(14, 100%, 65%);
    cursor: pointer;
}

.style-switcher .color-3 {
    background: #37b182;
    cursor: pointer;
}

.style-switcher .color-4 {
    background: hsl(250, 100%, 75%);
    cursor: pointer;
}

.style-switcher .color-5 {
    background: hsl(356, 100%, 75%);
    cursor: pointer;
}

@media screen and (max-width: 1291px) {
    .style-switcher-toggler {
        position: fixed;
        /* top: 0px; */
        z-index: 101;
        right: 160px !important;
        font-size: 20px;
        border-radius: 5px;
        transition: all .3s ease;
    }
    .style-switcher {
        margin-top: 120px;
    }
    .clicked {
        display: none;
    }
}

@media screen and (max-width: 1022px) {
    .style-switcher-toggler  {
        top: 50px;
        right: 23px !important;
    }
    .style-switcher {
        top: -20px;
        right: 48px;
    }
    .clicked {
        display: block;
    } 
}