.switch-button {
    border-radius: 100px;
    width: 200px;
    height: 32px;
    text-align: center;
    position: relative;
    left: 90px;
    bottom: -30px;
    font-size: 13px;
    font-weight: bold;
    font-family: Muli;
    -webkit-transform: translate3D(-50%, -50%, 0);
    transform: translate3D(-50%, -50%, 0);
    will-change: transform;
    z-index: 197 !important;
    cursor: pointer;
    -webkit-transition: color .3s ease, left .3s ease;
    transition: color .3s ease, left .3s ease;
    background: #e0e0e0;
    -webkit-box-shadow: inset 0 0 5px #c5c5c5;
    box-shadow: inset 0 0 5px #c5c5c5;
}
.switch-button-case {
    display: inline-block;
    background: none;
    width: 49%;
    height: 100%;
    color: #000;
    position: relative;
    border: none;
    -webkit-transition: color .3s ease, left .3s ease;
    transition: color .3s ease, left .3s ease;
    padding-bottom: 1px;
}
.switch-button-case:hover {
    color: grey;
    cursor: pointer;
}
.switch-button-case:focus {
    outline: none;
}
.switch-button .active {
    color: #151515;
    background-color: white;
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
    -webkit-transition: color .3s ease-out, left .3s ease-out,right .3s ease-out;
    transition: color .3s ease-out, left .3s ease-out,right .3s ease-out;
    border-radius: 100px;
    -webkit-box-shadow: 0 0 10px gray;
    box-shadow: 0 0 10px gray;
}
.switch-button .active-case {
    color: #ea5a58;
}