.switch-button {
    background: #deefff;
    border-radius: 30px;
    overflow: hidden;
    width: 240px;
    text-align: center;
    font-size: 15px;
    letter-spacing: 1px;
    color: #155FFF;
    position: relative;
    padding-right: 120px;
    position: relative;
    margin: auto;
}

.switch-button:before {
    content: attr(data-segundo);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
}

.switch-button-checkbox {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
}

.switch-button-checkbox:checked+.switch-button-label:before {
    transform: translateX(120px);
    transition: transform 300ms linear;
}

.switch-button-checkbox+.switch-button-label {
    position: relative;
    padding: 4px 10px;
    display: block;
    user-select: none;
    pointer-events: none;
}

.switch-button-checkbox+.switch-button-label:before {
    content: "";
    background: #fff;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 20px;
    transform: translateX(0);
    transition: transform 300ms;
    border: 1px solid #017fff;
}

.switch-button-checkbox+.switch-button-label .switch-button-label-span {
    position: relative;
}

.seleccionadaPildora {
    color: #017fff;
    border: #017fff 1px solid;
    border-radius: 30px;
    display: block;
    min-width: 20px;
    margin: auto;
    width: auto;
    max-width: 113px;
    text-align: center;
    padding: 4px 10px;
}

.can-toggle__switch {
    border-radius: 20px;
    border: 1px solid #017fff;
}