.ui-switcher {
    background-color: #ccc;
    display: inline-block;
    height: 40px;
    width: 88px;
    border-radius: 20px;
    box-sizing: border-box;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
    transition: border-color 0.25s;
    margin: 7px 4px 0 0;
    box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.15);
}

    .ui-switcher:before {
        font-family: sans-serif;
        font-weight: 400;
        color: #ffffff;
        line-height: 1;
        display: inline-block;
        position: absolute;
        top: 6px;
        height: 12px;
        width: 50px;
        text-align: center;
    }

    .ui-switcher[aria-checked=false]:before {
        content: 'Yok';
        right: 10px;
        font-size: 14px;
        top: 12px;
    }

    .ui-switcher[aria-checked=true]:before {
        content: 'Var';
        left: 10px;
        font-size: 14px;
        top: 12px;
    }

    .ui-switcher[aria-checked=true] {
        background-color: #8a4638;
    }

    .ui-switcher:after {
        background-color: #ffffff;
        content: '\0020';
        display: inline-block;
        position: absolute;
        top: 5px;
        height: 26px;
        width: 26px;
        border-radius: 50%;
        transition: left 0.25s;
    }

    .ui-switcher[aria-checked=false]:after {
        left: 8px;
        top:7px !important;
    }

    .ui-switcher[aria-checked=true]:after {
        left: 55px;
        top: 7px !important;
    }
