.switch {
    position: relative;
    height: 36px;
    width: 192px;
    border-radius: 0.25rem;
    border: 1px solid #CFD9DF;
    padding: 4px;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.switch-label {
    position: relative;
    z-index: 2;
    float: left;
    width: 58px;
    line-height: 25px;
    font-size: 14px;
    color: #0D9CFF;
    text-align: center;
    cursor: pointer;
}
.switch-label.guideflow_hovered {
    font-weight: 500;
}

.switch-input {
    display: none;
}
.switch-input:checked + .switch-label {
    font-weight: bold;
    color: white;
}
.switch-input:checked + .switch-label-2 ~ .switch-selection {
    left: 62px;
}
.switch-input:checked + .switch-label-3 ~ .switch-selection {
    left: 122px;
}
.switch-input:not(:checked) + .switch-label .fas {
    display: none;
}
.switch-selection {
    position: absolute;
    z-index: 1;
    top: 4px;
    left: 4px;
    display: block;
    width: 58px;
    height: 26px;
    border-radius: 0.25rem;
    background-color: #1F8EFA;
    -webkit-transition: left 0.15s ease-out;
    -moz-transition: left 0.15s ease-out;
    -o-transition: left 0.15s ease-out;
    transition: left 0.15s ease-out;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}