.style-switcher {
    position: fixed;
    z-index: 100;
    right: 0;
    top: 30px;
    padding: 15px;
    width: 200px;
    border: 1px solid var(--bg-black-50);
    border-radius: 5px;
    background-color: var(--bg-black-100);
    transition: all 0.5s ease;
    transform: translateX(100%);
}

.style-switcher .s-icon {
    position: absolute;
    right: 100%;
    height: 40px;
    width: 40px;
    text-align: center;
    font-size: 20px;
    color: var(--text-black-900);
    border: 1px solid var(--bg-black-50);
    border-radius: 50%;
    background-color: var(--bg-black-100);
    margin-right: 25px;
    cursor: pointer;
    transition: all 0.5s ease;
}

.style-switcher.open {
    transform: translateX(-25px);
}

.style-switcher .s-icon i {
    line-height: 40px;
}

.style-switcher .style-switcher-toggler {
    top: 0;
}

.style-switcher .day-night {
    top: 45px;
}

.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%;
    cursor: pointer;
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.style-switcher .colors span:hover {
    border: 2px solid var(--text-black-900);
    transform: scale(1.2);
}

.style-switcher .lang-switcher {
    margin-top: 10px;
    display: flex;
    justify-content: space-evenly;
}

.style-switcher .lang-switcher svg {
    width: 50px;
    height: 30px;
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.style-switcher .lang-switcher svg:hover {
    transform: scale(1.2);
}