﻿
/*@import url("https://use.fontawesome.com/releases/v5.0.11/css/all.css");*/

.label-mine {
    position: relative;
    cursor: pointer;
    color: #666;
    font-size: 35px;
    margin-bottom: 0px;
}

.checkBoxWithHidden, .checkBox, input[type="radio"] {
    position: absolute;
    right: 9000px;
}

    /*Check sin Input Ocultos*/
    .checkBox + .label-text:before {
        content: "\f0c8";
        font-family: "Font Awesome 5 Free";
        speak: none;
        font-style: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        width: 1em;
        display: inline-block;
        margin-right: 5px;
        font-size: 18px;
    }

    .checkBox:checked + .label-text:before {
        content: "\f14a";
        color: #0099DA;
        animation: effect 250ms ease-in;
        font-weight: 900;
    }

    .checkBox:disabled + .label-text {
        color: #aaa;
    }

        .checkBox:disabled + .label-text:before {
            content: "\f0c8";
            color: #ccc;
        }

    /*Check con Input Ocultos*/
    .checkBoxWithHidden + input[type="hidden"] + .label-text:before {
        content: "\f0c8";
        font-family: "Font Awesome 5 Free";
        speak: none;
        font-style: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        width: 1em;
        display: inline-block;
        margin-right: 5px;
        font-size: 18px;
    }

    .checkBoxWithHidden:checked + input[type="hidden"] + .label-text:before {
        content: "\f14a";
        color: #2980b9;
        animation: effect 250ms ease-in;
        font-weight: 900;
    }

    .checkBoxWithHidden:disabled + input[type="hidden"] + .label-text {
        color: #aaa;
    }

        .checkBoxWithHidden:disabled + input[type="hidden"] + .label-text:before {
            content: "\f0c8";
            color: #ccc;
        }


    input[type="radio"] + .label-text:before {
        content: "\f111";
        font-family: "Font Awesome 5 Free";
        speak: none;
        font-style: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        width: 1em;
        display: inline-block;
        margin-right: 5px;
    }

    input[type="radio"]:checked + .label-text:before {
        content: "\f192";
        color: #0099F1;
        animation: effect 250ms ease-in;
    }

    input[type="radio"]:disabled + .label-text {
        color: #aaa;
    }

        input[type="radio"]:disabled + .label-text:before {
            content: "\f111";
            color: #ccc;
        }


.toggle input[type="radio"] + .label-text:before {
    content: "\f204";
    font-family: "Font Awesome 5 Free";
    speak: none;
    font-style: normal;
    font-weight: 900;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    width: 1em;
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
}

.toggle input[type="radio"]:checked + .label-text:before {
    content: "\f205";
    color: #0099F1;
    animation: effect 250ms ease-in;
}

.toggle input[type="radio"]:disabled + .label-text {
    color: #aaa;
}

    .toggle input[type="radio"]:disabled + .label-text:before {
        content: "\f204";
        color: #ccc;
    }

.contenedor-sin-contenido {
    padding: 100px;
    text-align: center;
    font-size: 16px;
    margin-bottom: 10px;
    background-color: #F1F1F1;
    margin-right: -15px;
    margin-left: -15px;
}

    .contenedor-sin-contenido img {
        width: 20%;
    }

@keyframes effect {
    0% {
        transform: scale(0);
    }

    25% {
        transform: scale(1.3);
    }

    75% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }
}
