/*----------- BUTTON ----------*/
.btn-holder {
    width: 200px;
    height: 100px;
    margin: 25px auto 0;
}
.btn-lg.btn-toggle {
    padding: 0;
    margin: 0 2.5rem;
    position: relative;
    height: 1.25rem;
    width: 3rem;
    border-radius: 1.25rem;
    color: #6b7381;
    background: #cf2200;
    margin-bottom: 15px;
}
.btn-toggle.btn-lg > .switch {
    position: absolute;
    top: 0.08rem;
    left: 0.1rem;
    width: 1rem;
    height: 1rem;
    border-radius: 1.875rem;
    background: #fff;
    transition: left .25s;
}
.btn-toggle.active {
    background-color: #0088ff;
}
.btn-toggle.btn-lg.active > .switch {
    left: 1.80rem;
    transition: left .25s;
}

.btn-lg.btn-toggle:after {
    content: "Active";
    right: -4rem;
    opacity: 0.5;
    line-height: 1.25rem;
    width: 4rem;
    text-align: center;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 2px;
    position: absolute;
    bottom: 0;
    transition: opacity .25s;
}

.btn-lg.btn-toggle.active:after {
    opacity: 1;
}

/*------------ CHECKBOX -------------*/
.toggle-switch {
    margin: 0 auto;
    width: 120px;
    margin-top: 10px;
    position: relative;
}
.toggle-switch label {
    padding: 0;
}
input#cb-switch {
    display: none;
}
.toggle-switch label input + span {
    position: relative;
    display: inline-block;
    margin-right: 5px;
    width: 3rem;
    height: 1.35rem;
    background: #cf2200;
    border: 1px solid #eee;
    border-radius: 25px;
    transition: all 0.3s ease-in-out;
    box-shadow: inset 0 0 3px #828282;
}
.toggle-switch label input + span small {
    position: absolute;
    display: block;
    width: 1rem;
    height: 1rem;
    border-radius: 1.875rem;
    background: #fff;
    transition: all 0.3s ease-in-out;
    top: 0.1rem;
    left: 0.1rem;
}
.toggle-switch label input:checked + span {
    background-color: #0088ff;
}
.toggle-switch label input:checked + span small{
    left: 1.75rem;
    transition: left .25s;
}
.toggle-switch span:after {
    content: "Active";
    line-height: 1.25rem;
    width: 4rem;
    text-align: center;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 2px;
    position: absolute;
    bottom: 0;
    transition: opacity .25s;
    left: 3rem;
    opacity: 0.5;
    color: #6b7381;
}
.toggle-switch label input:checked + span:after {
    opacity: 1;
}