.switchBtn {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 20px;
    font-size: 12px;
    top: 3px;
}

.switchBtn input {
    display: none;
}

.slide {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    padding: 4px 4px 4px 22px;
    line-height: 1;
    border: solid 1px rgba(0, 0, 0, 0.1);
}

.slide:before {
    position: absolute;
    content: "";
    width: 18px;
    height: 18px;
    background-color: #ffffff;
    box-shadow:
        0 3px 3px 0 rgba(0, 0, 0, 0.05),
        0 2px 2px 0 rgba(0, 0, 0, 0.1),
        0 3px 1px 0 rgba(0, 0, 0, 0.05);
    border: solid 0.5px rgba(0, 0, 0, 0.1);
    left: 0px;
    bottom: 0px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    color: #999999;
}

input:checked + .slide {
    background-color: #44db5e;
    padding-left: 7px;
    color: #fff;
    line-height: 1;
}

input:focus + .slide {
    box-shadow: 0 0 1px #01aeed;
}

input:checked + .slide:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
    left: 10px;
}

.slide.round {
    border-radius: 15.5px;
}

.slide.round:before {
    border-radius: 50%;
}

.has-error {
    transition: all linear 0.5s;
    color: red !important;
}

.data-label {
    font-size: 11px;
    color: #666666;
    letter-spacing: 0.2px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
