﻿
/* Switch 1 Specific Styles Start */
input[type="checkbox"].switch {
    font-size: 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 2.5em;
    height: 1.5em;
    background: #ddd;
    border-radius: 3em;
    position: relative;
    cursor: pointer;
    outline: none;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    /*border: 1px solid #009688;*/
}

    input[type="checkbox"].switch:focus {
        box-shadow: #0275d8;
    }

    input[type="checkbox"].switch:checked {
        background: #0275d8;
    }

    input[type="checkbox"].switch:after {
        position: absolute;
        content: "";
        width: 1.5em;
        height: 1.5em;
        border-radius: 50%;
        background: #fff;
        -webkit-box-shadow: 0 0 .25em rgba(0,0,0,.3);
        box-shadow: 0 0 .25em rgba(0,0,0,.3);
        -webkit-transform: scale(.7);
        transform: scale(.7);
        left: 0;
        -webkit-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }

    input[type="checkbox"].switch:checked:after {
        left: calc(100% - 1.5em);
    }

    input[type="checkbox"].switch.display {
        cursor: default;
    }
/* Switch 1 Specific Style End */


/*Estilo para el input type file*/
.custom-file-label:after {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    content: "\f0c6" !important;
}
