﻿.toggle-switch {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 24px;
    margin-bottom: 0;
}

    .toggle-switch input[type=checkbox] {
        display: none;
    }

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #848484;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

    .toggle-slider:before {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        left: 2px;
        bottom: 2px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
        border-radius: 50%;
    }

input:checked + .toggle-slider {
    background-color: #1f821f;
}

    input:checked + .toggle-slider:before {
        -webkit-transform: translateX(18px);
        -ms-transform: translateX(18px);
        transform: translateX(18px);
    }
