.toggle {
    width: 60px;
    height: 30px;
    border-radius: 30px;
    transition: all 200ms linear;
    position: absolute;
    background-color: #2c80b8;
    margin: 0 auto;
}
.toggle__wrapper {
    position: relative;
    width: 100%;
    height: 30px;
    margin: 5px 0px;
    padding-right: 5px;
    text-align: center;
}
.toggle__subWrapper {
    position: relative;
    height: 30px;
    width: 60px;
}
.toggle__circle {
    width: 26px;
    height: 26px;
    border-radius: 26px;
    background-color: white;
    border: 3px solid #E8E8E8;
    margin-top: 2px;
    position: absolute;
    transition: all 200ms linear;
    left: 2px;
}
.toggle__instructions {
    width: 100%;
    margin-bottom: 7px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #707070;
}
input[type=checkbox].toggle__checkbox {
    width: 60px;
    height: 30px;
    position: absolute;
    opacity: 0;
    margin: 0;
    z-index: 4;
    left: 0;
    cursor: pointer;
}
input[type=checkbox].toggle__checkbox:checked + .toggle .toggle__circle {
    left: 32px;
}

.toggle__leftIcon {
    position: absolute;
    color: white;
    left: 10px;
    top: 8px;
}

.toggle__rightIcon {
    position: absolute;
    color: white;
    right: 10px;
    top: 8px;
}