.c-switch {
    position: relative;
    display: flex;
    height: 40px;
    width: max-content;
    border-radius: 0.5rem;
    background-color: #E9E9E9;
    cursor: pointer;
}
.c-switch-inner {
    position: absolute;
    width: 50%;
    height: 100%;
    transition: .5s;
}
.c-switch-section {
    flex: 0.5;
    padding: 0 1rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    color: #C0AFA9;
    z-index: 1;
}
.c-switch.c-switch-on .c-switch-inner {
    left: 0;
    border-radius: 0.5rem 0 0 0.5rem;
    background-color: #34a853;
}
.c-switch.c-switch-off .c-switch-inner {
    left: 50%;
    border-radius: 0 0.5rem 0.5rem 0;
    background-color: #D74046;
}
.c-switch.c-switch-on .on-part, .c-switch.c-switch-off .off-part { color: #FFFFE7; }