/*! use full link http://www.cssscript.com/pretty-checkbox-radio-inputs-bootstrap-awesome-bootstrap-checkbox-css */

.checkbox {
    padding-left: 20px;
}

    .checkbox label {
        display: inline-block;
        vertical-align: middle;
        position: relative;
        padding-left: 5px;
    }

        .checkbox label::before {
            content: "";
            display: inline-block;
            position: absolute;
            width: 17px;
            height: 17px;
            left: 0;
            margin-left: -20px;
            border: 1px solid #cccccc;
            border-radius: 3px;
            background-color: #fff;
            -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
            -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
            transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
        }

        .checkbox label::after {
            display: inline-block;
            position: absolute;
            width: 16px;
            height: 16px;
            left: 0;
            top: 0;
            margin-left: -20px;
            padding-left: 3px;
            padding-top: 1px;
            font-size: 11px;
            color: #555555;
        }

    .checkbox input[type="checkbox"],
    .checkbox input[type="radio"] {
        opacity: 0;
        z-index: 1;
    }

        .checkbox input[type="checkbox"]:focus + label::before,
        .checkbox input[type="radio"]:focus + label::before {
            outline: thin dotted;
            outline: 5px auto -webkit-focus-ring-color;
            outline-offset: -2px;
        }

        .checkbox input[type="checkbox"]:checked + label::after,
        .checkbox input[type="radio"]:checked + label::after {
            font-family: "FontAwesome";
            content: "\f00c";
        }

        .checkbox input[type="checkbox"]:indeterminate + label::after,
        .checkbox input[type="radio"]:indeterminate + label::after {
            display: block;
            content: "";
            width: 10px;
            height: 3px;
            background-color: #555555;
            border-radius: 2px;
            margin-left: -16.5px;
            margin-top: 7px;
        }

        .checkbox input[type="checkbox"]:disabled + label,
        .checkbox input[type="radio"]:disabled + label {
            opacity: 0.65;
        }

            .checkbox input[type="checkbox"]:disabled + label::before,
            .checkbox input[type="radio"]:disabled + label::before {
                background-color: #eeeeee;
                cursor: not-allowed;
            }

    .checkbox.checkbox-circle label::before {
        border-radius: 50%;
    }

    .checkbox.checkbox-inline {
        margin-top: 0;
    }

.checkbox-primary input[type="checkbox"]:checked + label::before,
.checkbox-primary input[type="radio"]:checked + label::before {
    background-color: #337ab7;
    border-color: #337ab7;
}

.checkbox-primary input[type="checkbox"]:checked + label::after,
.checkbox-primary input[type="radio"]:checked + label::after {
    color: #fff;
}

.checkbox-danger input[type="checkbox"]:checked + label::before,
.checkbox-danger input[type="radio"]:checked + label::before {
    background-color: #d9534f;
    border-color: #d9534f;
}

.checkbox-danger input[type="checkbox"]:checked + label::after,
.checkbox-danger input[type="radio"]:checked + label::after {
    color: #fff;
}

.checkbox-info input[type="checkbox"]:checked + label::before,
.checkbox-info input[type="radio"]:checked + label::before {
    background-color: #5bc0de;
    border-color: #5bc0de;
}

.checkbox-info input[type="checkbox"]:checked + label::after,
.checkbox-info input[type="radio"]:checked + label::after {
    color: #fff;
}

.checkbox-warning input[type="checkbox"]:checked + label::before,
.checkbox-warning input[type="radio"]:checked + label::before {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}

.checkbox-warning input[type="checkbox"]:checked + label::after,
.checkbox-warning input[type="radio"]:checked + label::after {
    color: #fff;
}

.checkbox-success input[type="checkbox"]:checked + label::before,
.checkbox-success input[type="radio"]:checked + label::before {
    background-color: #5cb85c;
    border-color: #5cb85c;
}

.checkbox-success input[type="checkbox"]:checked + label::after,
.checkbox-success input[type="radio"]:checked + label::after {
    color: #fff;
}

.checkbox-primary input[type="checkbox"]:indeterminate + label::before,
.checkbox-primary input[type="radio"]:indeterminate + label::before {
    background-color: #337ab7;
    border-color: #337ab7;
}

.checkbox-primary input[type="checkbox"]:indeterminate + label::after,
.checkbox-primary input[type="radio"]:indeterminate + label::after {
    background-color: #fff;
}

.checkbox-danger input[type="checkbox"]:indeterminate + label::before,
.checkbox-danger input[type="radio"]:indeterminate + label::before {
    background-color: #d9534f;
    border-color: #d9534f;
}

.checkbox-danger input[type="checkbox"]:indeterminate + label::after,
.checkbox-danger input[type="radio"]:indeterminate + label::after {
    background-color: #fff;
}

.checkbox-info input[type="checkbox"]:indeterminate + label::before,
.checkbox-info input[type="radio"]:indeterminate + label::before {
    background-color: #5bc0de;
    border-color: #5bc0de;
}

.checkbox-info input[type="checkbox"]:indeterminate + label::after,
.checkbox-info input[type="radio"]:indeterminate + label::after {
    background-color: #fff;
}

.checkbox-warning input[type="checkbox"]:indeterminate + label::before,
.checkbox-warning input[type="radio"]:indeterminate + label::before {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}

.checkbox-warning input[type="checkbox"]:indeterminate + label::after,
.checkbox-warning input[type="radio"]:indeterminate + label::after {
    background-color: #fff;
}

.checkbox-success input[type="checkbox"]:indeterminate + label::before,
.checkbox-success input[type="radio"]:indeterminate + label::before {
    background-color: #5cb85c;
    border-color: #5cb85c;
}

.checkbox-success input[type="checkbox"]:indeterminate + label::after,
.checkbox-success input[type="radio"]:indeterminate + label::after {
    background-color: #fff;
}

.radio {
    padding-left: 20px;
}

    .radio label {
        display: inline-block;
        vertical-align: middle;
        position: relative;
        padding-left: 5px;
    }

        .radio label::before {
            content: "";
            display: inline-block;
            position: absolute;
            width: 17px;
            height: 17px;
            left: 0;
            margin-left: -20px;
            border: 1px solid #cccccc;
            border-radius: 50%;
            background-color: #fff;
            -webkit-transition: border 0.15s ease-in-out;
            -o-transition: border 0.15s ease-in-out;
            transition: border 0.15s ease-in-out;
        }

        .radio label::after {
            display: inline-block;
            position: absolute;
            content: " ";
            width: 11px;
            height: 11px;
            left: 3px;
            top: 3px;
            margin-left: -20px;
            border-radius: 50%;
            background-color: #555555;
            -webkit-transform: scale(0, 0);
            -ms-transform: scale(0, 0);
            -o-transform: scale(0, 0);
            transform: scale(0, 0);
            -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
            -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
            -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
            transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
        }

    .radio input[type="radio"] {
        opacity: 0;
        z-index: 1;
    }

        .radio input[type="radio"]:focus + label::before {
            outline: thin dotted;
            outline: 5px auto -webkit-focus-ring-color;
            outline-offset: -2px;
        }

        .radio input[type="radio"]:checked + label::after {
            -webkit-transform: scale(1, 1);
            -ms-transform: scale(1, 1);
            -o-transform: scale(1, 1);
            transform: scale(1, 1);
        }

        .radio input[type="radio"]:disabled + label {
            opacity: 0.65;
        }

            .radio input[type="radio"]:disabled + label::before {
                cursor: not-allowed;
            }

    .radio.radio-inline {
        margin-top: 0;
    }

.radio-primary input[type="radio"] + label::after {
    background-color: #337ab7;
}

.radio-primary input[type="radio"]:checked + label::before {
    border-color: #337ab7;
}

.radio-primary input[type="radio"]:checked + label::after {
    background-color: #337ab7;
}

.radio-danger input[type="radio"] + label::after {
    background-color: #d9534f;
}

.radio-danger input[type="radio"]:checked + label::before {
    border-color: #d9534f;
}

.radio-danger input[type="radio"]:checked + label::after {
    background-color: #d9534f;
}

.radio-info input[type="radio"] + label::after {
    background-color: #5bc0de;
}

.radio-info input[type="radio"]:checked + label::before {
    border-color: #5bc0de;
}

.radio-info input[type="radio"]:checked + label::after {
    background-color: #5bc0de;
}

.radio-warning input[type="radio"] + label::after {
    background-color: #f0ad4e;
}

.radio-warning input[type="radio"]:checked + label::before {
    border-color: #f0ad4e;
}

.radio-warning input[type="radio"]:checked + label::after {
    background-color: #f0ad4e;
}

.radio-success input[type="radio"] + label::after {
    background-color: #5cb85c;
}

.radio-success input[type="radio"]:checked + label::before {
    border-color: #5cb85c;
}

.radio-success input[type="radio"]:checked + label::after {
    background-color: #5cb85c;
}

input[type="checkbox"].styled:checked + label:after,
input[type="radio"].styled:checked + label:after {
    font-family: 'FontAwesome';
    content: "\f00c";
}

input[type="checkbox"] .styled:checked + label::before,
input[type="radio"] .styled:checked + label::before {
    color: #fff;
}

input[type="checkbox"] .styled:checked + label::after,
input[type="radio"] .styled:checked + label::after {
    color: #fff;
}



/**
 * IMPORTANT
 * 
 * iOS Switcher uses Bootstrap grid (http://getbootstrap.com/css/#grid)
 */
/* line 21, ../sass/switcher.scss */
.form-switcher input[type="checkbox"] {
    display: none;
}
    /* line 23, ../sass/switcher.scss */
    .form-switcher input[type="checkbox"]:disabled + .switcher {
        opacity: 0.6;
        cursor: not-allowed;
        -moz-box-shadow: 0px 0px 0px transparent !important;
        -webkit-box-shadow: 0px 0px 0px transparent !important;
        box-shadow: 0px 0px 0px transparent !important;
    }
    /* line 28, ../sass/switcher.scss */
    .form-switcher input[type="checkbox"]:checked:disabled + .switcher {
        border-color: #cccccc !important;
        -moz-box-shadow: 0px 0px 0px 15px #cccccc inset !important;
        -webkit-box-shadow: 0px 0px 0px 15px #cccccc inset !important;
        box-shadow: 0px 0px 0px 15px #cccccc inset !important;
    }
    /* line 32, ../sass/switcher.scss */
    .form-switcher input[type="checkbox"]:checked + .switcher {
        -moz-transition: box-shadow 0.2s ease-out, border-color 0.2s ease-out 0.02s;
        -o-transition: box-shadow 0.2s ease-out, border-color 0.2s ease-out 0.02s;
        -webkit-transition: box-shadow 0.2s ease-out, border-color 0.2s ease-out;
        -webkit-transition-delay: 0s, 0.02s;
        transition: box-shadow 0.2s ease-out, border-color 0.2s ease-out 0.02s;
    }
/* line 36, ../sass/switcher.scss */
.form-switcher .switcher {
    background: #ffffff;
    border: 2px solid #e6e6e6;
    padding: 0;
    position: relative;
    display: block;
    cursor: pointer;
    -moz-border-radius: 100px;
    -webkit-border-radius: 100px;
    border-radius: 100px;
    -moz-transition: box-shadow 0.2s ease-out 0.02s, border-color 0.2s ease-out;
    -o-transition: box-shadow 0.2s ease-out 0.02s, border-color 0.2s ease-out;
    -webkit-transition: box-shadow 0.2s ease-out, border-color 0.2s ease-out;
    -webkit-transition-delay: 0.02s, 0s;
    transition: box-shadow 0.2s ease-out 0.02s, border-color 0.2s ease-out;
}
    /* line 45, ../sass/switcher.scss */
    .form-switcher .switcher:after {
        background: #ffffff;
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -moz-transition: all 0.2s ease-out;
        -o-transition: all 0.2s ease-out;
        -webkit-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
        -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
        -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
        -moz-border-radius: 100px;
        -webkit-border-radius: 100px;
        border-radius: 100px;
    }
/* line 9, ../sass/_switcher-mixin.scss */
.form-switcher .switcher {
    width: 43px;
    height: 25px;
}
    /* line 12, ../sass/_switcher-mixin.scss */
    .form-switcher .switcher:hover:active {
        -moz-box-shadow: 0px 0px 0px 13px #e6e6e6 inset;
        -webkit-box-shadow: 0px 0px 0px 13px #e6e6e6 inset;
        box-shadow: 0px 0px 0px 13px #e6e6e6 inset;
    }
        /* line 14, ../sass/_switcher-mixin.scss */
        .form-switcher .switcher:hover:active:after {
            width: 28.35px !important;
        }
    /* line 18, ../sass/_switcher-mixin.scss */
    .form-switcher .switcher:after {
        height: 21px;
        width: 21px;
    }
/* line 25, ../sass/_switcher-mixin.scss */
.form-switcher input[type="checkbox"]:disabled + .switcher:after {
    height: 21px !important;
    width: 21px !important;
}
/* line 31, ../sass/_switcher-mixin.scss */
.form-switcher input[type="checkbox"]:disabled:checked + .switcher:after {
    -moz-transform: translateX(18px) !important;
    -ms-transform: translateX(18px) !important;
    -webkit-transform: translateX(18px) !important;
    transform: translateX(18px) !important;
}
/* line 35, ../sass/_switcher-mixin.scss */
.form-switcher input[type="checkbox"]:checked + .switcher {
    border-color: #16b85f;
    -moz-box-shadow: 0px 0px 0px 12.5px #16b85f inset;
    -webkit-box-shadow: 0px 0px 0px 12.5px #16b85f inset;
    box-shadow: 0px 0px 0px 12.5px #16b85f inset;
}
    /* line 38, ../sass/_switcher-mixin.scss */
    .form-switcher input[type="checkbox"]:checked + .switcher:after {
        -moz-transform: translateX(18px);
        -ms-transform: translateX(18px);
        -webkit-transform: translateX(18px);
        transform: translateX(18px);
    }
    /* line 42, ../sass/_switcher-mixin.scss */
    .form-switcher input[type="checkbox"]:checked + .switcher:hover:active:after {
        -moz-transform: translateX(10.65px);
        -ms-transform: translateX(10.65px);
        -webkit-transform: translateX(10.65px);
        transform: translateX(10.65px);
    }
/* line 9, ../sass/_switcher-mixin.scss */
.form-switcher.form-switcher-sm .switcher {
    width: 31px;
    height: 18px;
}
    /* line 12, ../sass/_switcher-mixin.scss */
    .form-switcher.form-switcher-sm .switcher:hover:active {
        -moz-box-shadow: 0px 0px 0px 13px #e6e6e6 inset;
        -webkit-box-shadow: 0px 0px 0px 13px #e6e6e6 inset;
        box-shadow: 0px 0px 0px 13px #e6e6e6 inset;
    }
        /* line 14, ../sass/_switcher-mixin.scss */
        .form-switcher.form-switcher-sm .switcher:hover:active:after {
            width: 18.9px !important;
        }
    /* line 18, ../sass/_switcher-mixin.scss */
    .form-switcher.form-switcher-sm .switcher:after {
        height: 14px;
        width: 14px;
    }
/* line 25, ../sass/_switcher-mixin.scss */
.form-switcher.form-switcher-sm input[type="checkbox"]:disabled + .switcher:after {
    height: 14px !important;
    width: 14px !important;
}
/* line 31, ../sass/_switcher-mixin.scss */
.form-switcher.form-switcher-sm input[type="checkbox"]:disabled:checked + .switcher:after {
    -moz-transform: translateX(13px) !important;
    -ms-transform: translateX(13px) !important;
    -webkit-transform: translateX(13px) !important;
    transform: translateX(13px) !important;
}
/* line 35, ../sass/_switcher-mixin.scss */
.form-switcher.form-switcher-sm input[type="checkbox"]:checked + .switcher {
    border-color: #16b85f;
    -moz-box-shadow: 0px 0px 0px 9px #16b85f inset;
    -webkit-box-shadow: 0px 0px 0px 9px #16b85f inset;
    box-shadow: 0px 0px 0px 9px #16b85f inset;
}
    /* line 38, ../sass/_switcher-mixin.scss */
    .form-switcher.form-switcher-sm input[type="checkbox"]:checked + .switcher:after {
        -moz-transform: translateX(13px);
        -ms-transform: translateX(13px);
        -webkit-transform: translateX(13px);
        transform: translateX(13px);
    }
    /* line 42, ../sass/_switcher-mixin.scss */
    .form-switcher.form-switcher-sm input[type="checkbox"]:checked + .switcher:hover:active:after {
        -moz-transform: translateX(8.1px);
        -ms-transform: translateX(8.1px);
        -webkit-transform: translateX(8.1px);
        transform: translateX(8.1px);
    }
/* line 9, ../sass/_switcher-mixin.scss */
.form-switcher.form-switcher-lg .switcher {
    width: 53px;
    height: 30px;
}
    /* line 12, ../sass/_switcher-mixin.scss */
    .form-switcher.form-switcher-lg .switcher:hover:active {
        -moz-box-shadow: 0px 0px 0px 13px #e6e6e6 inset;
        -webkit-box-shadow: 0px 0px 0px 13px #e6e6e6 inset;
        box-shadow: 0px 0px 0px 13px #e6e6e6 inset;
    }
        /* line 14, ../sass/_switcher-mixin.scss */
        .form-switcher.form-switcher-lg .switcher:hover:active:after {
            width: 35.1px !important;
        }
    /* line 18, ../sass/_switcher-mixin.scss */
    .form-switcher.form-switcher-lg .switcher:after {
        height: 26px;
        width: 26px;
    }
/* line 25, ../sass/_switcher-mixin.scss */
.form-switcher.form-switcher-lg input[type="checkbox"]:disabled + .switcher:after {
    height: 26px !important;
    width: 26px !important;
}
/* line 31, ../sass/_switcher-mixin.scss */
.form-switcher.form-switcher-lg input[type="checkbox"]:disabled:checked + .switcher:after {
    -moz-transform: translateX(23px) !important;
    -ms-transform: translateX(23px) !important;
    -webkit-transform: translateX(23px) !important;
    transform: translateX(23px) !important;
}
/* line 35, ../sass/_switcher-mixin.scss */
.form-switcher.form-switcher-lg input[type="checkbox"]:checked + .switcher {
    border-color: #16b85f;
    -moz-box-shadow: 0px 0px 0px 15px #16b85f inset;
    -webkit-box-shadow: 0px 0px 0px 15px #16b85f inset;
    box-shadow: 0px 0px 0px 15px #16b85f inset;
}
    /* line 38, ../sass/_switcher-mixin.scss */
    .form-switcher.form-switcher-lg input[type="checkbox"]:checked + .switcher:after {
        -moz-transform: translateX(23px);
        -ms-transform: translateX(23px);
        -webkit-transform: translateX(23px);
        transform: translateX(23px);
    }
    /* line 42, ../sass/_switcher-mixin.scss */
    .form-switcher.form-switcher-lg input[type="checkbox"]:checked + .switcher:hover:active:after {
        -moz-transform: translateX(13.9px);
        -ms-transform: translateX(13.9px);
        -webkit-transform: translateX(13.9px);
        transform: translateX(13.9px);
    }

@media (max-width: 767px) {
    /* line 9, ../sass/_switcher-mixin.scss */
    .form-switcher.form-switcher-sm-phone .switcher {
        width: 31px;
        height: 18px;
    }
        /* line 12, ../sass/_switcher-mixin.scss */
        .form-switcher.form-switcher-sm-phone .switcher:hover:active {
            -moz-box-shadow: 0px 0px 0px 13px #e6e6e6 inset;
            -webkit-box-shadow: 0px 0px 0px 13px #e6e6e6 inset;
            box-shadow: 0px 0px 0px 13px #e6e6e6 inset;
        }
            /* line 14, ../sass/_switcher-mixin.scss */
            .form-switcher.form-switcher-sm-phone .switcher:hover:active:after {
                width: 18.9px !important;
            }
        /* line 18, ../sass/_switcher-mixin.scss */
        .form-switcher.form-switcher-sm-phone .switcher:after {
            height: 14px;
            width: 14px;
        }
    /* line 25, ../sass/_switcher-mixin.scss */
    .form-switcher.form-switcher-sm-phone input[type="checkbox"]:disabled + .switcher:after {
        height: 14px !important;
        width: 14px !important;
    }
    /* line 31, ../sass/_switcher-mixin.scss */
    .form-switcher.form-switcher-sm-phone input[type="checkbox"]:disabled:checked + .switcher:after {
        -moz-transform: translateX(13px) !important;
        -ms-transform: translateX(13px) !important;
        -webkit-transform: translateX(13px) !important;
        transform: translateX(13px) !important;
    }
    /* line 35, ../sass/_switcher-mixin.scss */
    .form-switcher.form-switcher-sm-phone input[type="checkbox"]:checked + .switcher {
        border-color: #16b85f;
        -moz-box-shadow: 0px 0px 0px 9px #16b85f inset;
        -webkit-box-shadow: 0px 0px 0px 9px #16b85f inset;
        box-shadow: 0px 0px 0px 9px #16b85f inset;
    }
        /* line 38, ../sass/_switcher-mixin.scss */
        .form-switcher.form-switcher-sm-phone input[type="checkbox"]:checked + .switcher:after {
            -moz-transform: translateX(13px);
            -ms-transform: translateX(13px);
            -webkit-transform: translateX(13px);
            transform: translateX(13px);
        }
        /* line 42, ../sass/_switcher-mixin.scss */
        .form-switcher.form-switcher-sm-phone input[type="checkbox"]:checked + .switcher:hover:active:after {
            -moz-transform: translateX(8.1px);
            -ms-transform: translateX(8.1px);
            -webkit-transform: translateX(8.1px);
            transform: translateX(8.1px);
        }
    /* line 9, ../sass/_switcher-mixin.scss */
    .form-switcher.form-switcher-md-phone .switcher {
        width: 43px;
        height: 25px;
    }
        /* line 12, ../sass/_switcher-mixin.scss */
        .form-switcher.form-switcher-md-phone .switcher:hover:active {
            -moz-box-shadow: 0px 0px 0px 13px #e6e6e6 inset;
            -webkit-box-shadow: 0px 0px 0px 13px #e6e6e6 inset;
            box-shadow: 0px 0px 0px 13px #e6e6e6 inset;
        }
            /* line 14, ../sass/_switcher-mixin.scss */
            .form-switcher.form-switcher-md-phone .switcher:hover:active:after {
                width: 28.35px !important;
            }
        /* line 18, ../sass/_switcher-mixin.scss */
        .form-switcher.form-switcher-md-phone .switcher:after {
            height: 21px;
            width: 21px;
        }
    /* line 25, ../sass/_switcher-mixin.scss */
    .form-switcher.form-switcher-md-phone input[type="checkbox"]:disabled + .switcher:after {
        height: 21px !important;
        width: 21px !important;
    }
    /* line 31, ../sass/_switcher-mixin.scss */
    .form-switcher.form-switcher-md-phone input[type="checkbox"]:disabled:checked + .switcher:after {
        -moz-transform: translateX(18px) !important;
        -ms-transform: translateX(18px) !important;
        -webkit-transform: translateX(18px) !important;
        transform: translateX(18px) !important;
    }
    /* line 35, ../sass/_switcher-mixin.scss */
    .form-switcher.form-switcher-md-phone input[type="checkbox"]:checked + .switcher {
        border-color: #16b85f;
        -moz-box-shadow: 0px 0px 0px 12.5px #16b85f inset;
        -webkit-box-shadow: 0px 0px 0px 12.5px #16b85f inset;
        box-shadow: 0px 0px 0px 12.5px #16b85f inset;
    }
        /* line 38, ../sass/_switcher-mixin.scss */
        .form-switcher.form-switcher-md-phone input[type="checkbox"]:checked + .switcher:after {
            -moz-transform: translateX(18px);
            -ms-transform: translateX(18px);
            -webkit-transform: translateX(18px);
            transform: translateX(18px);
        }
        /* line 42, ../sass/_switcher-mixin.scss */
        .form-switcher.form-switcher-md-phone input[type="checkbox"]:checked + .switcher:hover:active:after {
            -moz-transform: translateX(10.65px);
            -ms-transform: translateX(10.65px);
            -webkit-transform: translateX(10.65px);
            transform: translateX(10.65px);
        }
    /* line 9, ../sass/_switcher-mixin.scss */
    .form-switcher.form-switcher-lg-phone .switcher {
        width: 53px;
        height: 30px;
    }
        /* line 12, ../sass/_switcher-mixin.scss */
        .form-switcher.form-switcher-lg-phone .switcher:hover:active {
            -moz-box-shadow: 0px 0px 0px 13px #e6e6e6 inset;
            -webkit-box-shadow: 0px 0px 0px 13px #e6e6e6 inset;
            box-shadow: 0px 0px 0px 13px #e6e6e6 inset;
        }
            /* line 14, ../sass/_switcher-mixin.scss */
            .form-switcher.form-switcher-lg-phone .switcher:hover:active:after {
                width: 35.1px !important;
            }
        /* line 18, ../sass/_switcher-mixin.scss */
        .form-switcher.form-switcher-lg-phone .switcher:after {
            height: 26px;
            width: 26px;
        }
    /* line 25, ../sass/_switcher-mixin.scss */
    .form-switcher.form-switcher-lg-phone input[type="checkbox"]:disabled + .switcher:after {
        height: 26px !important;
        width: 26px !important;
    }
    /* line 31, ../sass/_switcher-mixin.scss */
    .form-switcher.form-switcher-lg-phone input[type="checkbox"]:disabled:checked + .switcher:after {
        -moz-transform: translateX(23px) !important;
        -ms-transform: translateX(23px) !important;
        -webkit-transform: translateX(23px) !important;
        transform: translateX(23px) !important;
    }
    /* line 35, ../sass/_switcher-mixin.scss */
    .form-switcher.form-switcher-lg-phone input[type="checkbox"]:checked + .switcher {
        border-color: #16b85f;
        -moz-box-shadow: 0px 0px 0px 15px #16b85f inset;
        -webkit-box-shadow: 0px 0px 0px 15px #16b85f inset;
        box-shadow: 0px 0px 0px 15px #16b85f inset;
    }
        /* line 38, ../sass/_switcher-mixin.scss */
        .form-switcher.form-switcher-lg-phone input[type="checkbox"]:checked + .switcher:after {
            -moz-transform: translateX(23px);
            -ms-transform: translateX(23px);
            -webkit-transform: translateX(23px);
            transform: translateX(23px);
        }
        /* line 42, ../sass/_switcher-mixin.scss */
        .form-switcher.form-switcher-lg-phone input[type="checkbox"]:checked + .switcher:hover:active:after {
            -moz-transform: translateX(13.9px);
            -ms-transform: translateX(13.9px);
            -webkit-transform: translateX(13.9px);
            transform: translateX(13.9px);
        }
}

@media (max-width: 991px) {
    /* line 9, ../sass/_switcher-mixin.scss */
    .form-switcher.form-switcher-sm-tablet .switcher {
        width: 31px;
        height: 18px;
    }
        /* line 12, ../sass/_switcher-mixin.scss */
        .form-switcher.form-switcher-sm-tablet .switcher:hover:active {
            -moz-box-shadow: 0px 0px 0px 13px #e6e6e6 inset;
            -webkit-box-shadow: 0px 0px 0px 13px #e6e6e6 inset;
            box-shadow: 0px 0px 0px 13px #e6e6e6 inset;
        }
            /* line 14, ../sass/_switcher-mixin.scss */
            .form-switcher.form-switcher-sm-tablet .switcher:hover:active:after {
                width: 18.9px !important;
            }
        /* line 18, ../sass/_switcher-mixin.scss */
        .form-switcher.form-switcher-sm-tablet .switcher:after {
            height: 14px;
            width: 14px;
        }
    /* line 25, ../sass/_switcher-mixin.scss */
    .form-switcher.form-switcher-sm-tablet input[type="checkbox"]:disabled + .switcher:after {
        height: 14px !important;
        width: 14px !important;
    }
    /* line 31, ../sass/_switcher-mixin.scss */
    .form-switcher.form-switcher-sm-tablet input[type="checkbox"]:disabled:checked + .switcher:after {
        -moz-transform: translateX(13px) !important;
        -ms-transform: translateX(13px) !important;
        -webkit-transform: translateX(13px) !important;
        transform: translateX(13px) !important;
    }
    /* line 35, ../sass/_switcher-mixin.scss */
    .form-switcher.form-switcher-sm-tablet input[type="checkbox"]:checked + .switcher {
        border-color: #16b85f;
        -moz-box-shadow: 0px 0px 0px 9px #16b85f inset;
        -webkit-box-shadow: 0px 0px 0px 9px #16b85f inset;
        box-shadow: 0px 0px 0px 9px #16b85f inset;
    }
        /* line 38, ../sass/_switcher-mixin.scss */
        .form-switcher.form-switcher-sm-tablet input[type="checkbox"]:checked + .switcher:after {
            -moz-transform: translateX(13px);
            -ms-transform: translateX(13px);
            -webkit-transform: translateX(13px);
            transform: translateX(13px);
        }
        /* line 42, ../sass/_switcher-mixin.scss */
        .form-switcher.form-switcher-sm-tablet input[type="checkbox"]:checked + .switcher:hover:active:after {
            -moz-transform: translateX(8.1px);
            -ms-transform: translateX(8.1px);
            -webkit-transform: translateX(8.1px);
            transform: translateX(8.1px);
        }
    /* line 9, ../sass/_switcher-mixin.scss */
    .form-switcher.form-switcher-md-tablet .switcher {
        width: 43px;
        height: 25px;
    }
        /* line 12, ../sass/_switcher-mixin.scss */
        .form-switcher.form-switcher-md-tablet .switcher:hover:active {
            -moz-box-shadow: 0px 0px 0px 13px #e6e6e6 inset;
            -webkit-box-shadow: 0px 0px 0px 13px #e6e6e6 inset;
            box-shadow: 0px 0px 0px 13px #e6e6e6 inset;
        }
            /* line 14, ../sass/_switcher-mixin.scss */
            .form-switcher.form-switcher-md-tablet .switcher:hover:active:after {
                width: 28.35px !important;
            }
        /* line 18, ../sass/_switcher-mixin.scss */
        .form-switcher.form-switcher-md-tablet .switcher:after {
            height: 21px;
            width: 21px;
        }
    /* line 25, ../sass/_switcher-mixin.scss */
    .form-switcher.form-switcher-md-tablet input[type="checkbox"]:disabled + .switcher:after {
        height: 21px !important;
        width: 21px !important;
    }
    /* line 31, ../sass/_switcher-mixin.scss */
    .form-switcher.form-switcher-md-tablet input[type="checkbox"]:disabled:checked + .switcher:after {
        -moz-transform: translateX(18px) !important;
        -ms-transform: translateX(18px) !important;
        -webkit-transform: translateX(18px) !important;
        transform: translateX(18px) !important;
    }
    /* line 35, ../sass/_switcher-mixin.scss */
    .form-switcher.form-switcher-md-tablet input[type="checkbox"]:checked + .switcher {
        border-color: #16b85f;
        -moz-box-shadow: 0px 0px 0px 12.5px #16b85f inset;
        -webkit-box-shadow: 0px 0px 0px 12.5px #16b85f inset;
        box-shadow: 0px 0px 0px 12.5px #16b85f inset;
    }
        /* line 38, ../sass/_switcher-mixin.scss */
        .form-switcher.form-switcher-md-tablet input[type="checkbox"]:checked + .switcher:after {
            -moz-transform: translateX(18px);
            -ms-transform: translateX(18px);
            -webkit-transform: translateX(18px);
            transform: translateX(18px);
        }
        /* line 42, ../sass/_switcher-mixin.scss */
        .form-switcher.form-switcher-md-tablet input[type="checkbox"]:checked + .switcher:hover:active:after {
            -moz-transform: translateX(10.65px);
            -ms-transform: translateX(10.65px);
            -webkit-transform: translateX(10.65px);
            transform: translateX(10.65px);
        }
    /* line 9, ../sass/_switcher-mixin.scss */
    .form-switcher.form-switcher-lg-tablet .switcher {
        width: 53px;
        height: 30px;
    }
        /* line 12, ../sass/_switcher-mixin.scss */
        .form-switcher.form-switcher-lg-tablet .switcher:hover:active {
            -moz-box-shadow: 0px 0px 0px 13px #e6e6e6 inset;
            -webkit-box-shadow: 0px 0px 0px 13px #e6e6e6 inset;
            box-shadow: 0px 0px 0px 13px #e6e6e6 inset;
        }
            /* line 14, ../sass/_switcher-mixin.scss */
            .form-switcher.form-switcher-lg-tablet .switcher:hover:active:after {
                width: 35.1px !important;
            }
        /* line 18, ../sass/_switcher-mixin.scss */
        .form-switcher.form-switcher-lg-tablet .switcher:after {
            height: 26px;
            width: 26px;
        }
    /* line 25, ../sass/_switcher-mixin.scss */
    .form-switcher.form-switcher-lg-tablet input[type="checkbox"]:disabled + .switcher:after {
        height: 26px !important;
        width: 26px !important;
    }
    /* line 31, ../sass/_switcher-mixin.scss */
    .form-switcher.form-switcher-lg-tablet input[type="checkbox"]:disabled:checked + .switcher:after {
        -moz-transform: translateX(23px) !important;
        -ms-transform: translateX(23px) !important;
        -webkit-transform: translateX(23px) !important;
        transform: translateX(23px) !important;
    }
    /* line 35, ../sass/_switcher-mixin.scss */
    .form-switcher.form-switcher-lg-tablet input[type="checkbox"]:checked + .switcher {
        border-color: #16b85f;
        -moz-box-shadow: 0px 0px 0px 15px #16b85f inset;
        -webkit-box-shadow: 0px 0px 0px 15px #16b85f inset;
        box-shadow: 0px 0px 0px 15px #16b85f inset;
    }
        /* line 38, ../sass/_switcher-mixin.scss */
        .form-switcher.form-switcher-lg-tablet input[type="checkbox"]:checked + .switcher:after {
            -moz-transform: translateX(23px);
            -ms-transform: translateX(23px);
            -webkit-transform: translateX(23px);
            transform: translateX(23px);
        }
        /* line 42, ../sass/_switcher-mixin.scss */
        .form-switcher.form-switcher-lg-tablet input[type="checkbox"]:checked + .switcher:hover:active:after {
            -moz-transform: translateX(13.9px);
            -ms-transform: translateX(13.9px);
            -webkit-transform: translateX(13.9px);
            transform: translateX(13.9px);
        }
}




#security #hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),#666 url('../img/security/hero.jpg') bottom / cover no-repeat
}

#security #security-features > .wrapper > ul > li {
    display: flex;
    padding: 30px 0
}

    #security #security-features > .wrapper > ul > li > aside > div {
        text-align: left
    }

        #security #security-features > .wrapper > ul > li > aside > div > i {
            min-width: 140px;
            font-size: 100px;
            padding-top: 30px;
            color: #2a36b1;
            background-image: -webkit-linear-gradient(#1de9b6, #4e6cf0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent
        }

@media print {
    #security #security-features > .wrapper > ul > li > aside {
        display: none
    }
}

#security #security-features > .wrapper > ul > li > section > h3 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 24px;
    text-transform: uppercase;
    letter-spacing: 1px
}

#security #security-features > .wrapper > ul > li > section li {
    list-style-type: square
}

@media print {
    #security #security-features > .wrapper > ul > li > section {
        width: 100%
    }
}

@media only screen and (max-width:767px) {
    #security #security-features > .wrapper > ul > li {
        display: block
    }

        #security #security-features > .wrapper > ul > li > aside > div {
            text-align: center
        }
}

#security #security-features > .wrapper > ul > li + li {
    border-top: 1px solid #e0e0e0
}
