#vk,
.kbTitle {
    margin-inline-start: 10px;
}

#vk .keyboard {
    width: 30px;
    border-radius: 2px;
    transition: .4s;
}

#vk .keyboard:hover {
    background-color: #b2b2c1;
}

.kbTitle {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    width: max-content;
    cursor: pointer;
}

.kbTitle span {
    font-size: 1.5em;
    font-weight: bold;
    user-select: none;
    color: #767676;
    transition: .4s;
    margin-bottom: 1px;
}

body:not(.show-vk) #vk {
    display: none;
}

.switch {
    display: block;
    position: relative;
    background-color: #767676;
    transition: .4s;
    border-radius: 34px;
    width: 1.8em;
    height: calc(1.8em / 2 + 4px);
}

.switch:before {
    position: absolute;
    content: "";
    height: calc(100% - 4px * 2);
    width: calc(50% - 4px);
    inset-inline-start: 4px;
    top: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

body:not(.show-vk) .kbTitle:hover span {
    color: #323232;
}

body:not(.show-vk) .kbTitle:hover .switch {
    background-color: #323232;
}

body.show-vk .kbTitle span {
    color: #4e4fad;
}

body.show-vk .switch {
    background-color: #4e4fad;
}

body.show-vk .switch:before {
    inset-inline-start: 50%;
}