.tsel-wrapp {
    max-width: 410px;
    width: 100%;
    margin: 0px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tsel {
    width: 40px;
    height: 20px;
    position: relative;
    border: 2px solid #909090;
    margin: 0 0px;
    border-radius: 25px;
    cursor: pointer;
    background-color: #404040;
    transition: 200ms all;
}
.active.tsel {
    border: 2px solid #909090;
    background-color: #000000;
}
.tsel::after {
    position: absolute;
    content: "\f186";
    top: 0px;
    left: 4px;
    transition: 200ms all linear;
    font-family: fontawesome;
    font-size: 12px;
    color: #ffffff;
}
.active.tsel::after {
    left: 19px;
    content: "\f185";
    color: #ffffff;
}