.button-toggle {
    width: 107px;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid #cccccc;
    height: 30px;
    background-color: #363636;
    font-size: 14px;
    font-family: sans-serif;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    color: white;
    overflow: hidden;
    box-sizing: border-box;
}
.button-toggle .inner-scrollable {
    height: 100%;
    width: 214px;
    box-sizing: border-box;
    position: relative;
    left: 0;
    transition: left .2s ease;
}
.button-toggle .inner-scrollable.first {
    left: 0;
}
.button-toggle .inner-scrollable.second {
    left: -107px;
}
.button-toggle .item {
    float: left;
    line-height: 28px;
    width: 107px;
    height: 100%;
    box-sizing: border-box;
    text-align: center;
}