﻿/* Ini Checkbox & Radios*/

.checkbox {
    padding-left: 20px;
}

    .checkbox label {
        display: inline-block;
        position: relative;
        padding-left: 10px;
    }

        .checkbox label::before {
            content: "";
            display: inline-block;
            position: absolute;
            width: 1.6em; /*16px;*/
            height: 1.6em; /*16px;*/
            left: 0;
            margin-left: -20px;
            margin-top: -3px;
            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: 1.5em; /*16px;*/
            height: 1.5em; /*16px;*/
            left: 0;
            top: 0;
            margin-left: -20px;
            padding-left: 4px; /*3px*/
            padding-top: 2px; /*3px*/
            font-size: 1.0em; /*11px;*/
            color: #555555;
        }

    .checkbox input[type="checkbox"] {
        opacity: 0;
    }

        .checkbox input[type="checkbox"]:focus + label::before {
            outline: thin dotted;
            outline: 5px auto -webkit-focus-ring-color;
            outline-offset: -2px;
        }

        .checkbox input[type="checkbox"]:checked + label::after {
            font-family: 'FontAwesome';
            content: "\f00c";
        }

        .checkbox input[type="checkbox"]:disabled + label {
            opacity: 0.65;
        }

            .checkbox input[type="checkbox"]: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 {
    background-color: #333;
    border-color: #cccccc;
}

.checkbox-primary input[type="checkbox"]:checked + label::after {
    color: #fff;
}

.checkbox-danger input[type="checkbox"]:checked + label::before {
    background-color: #760004;
    border-color: #d9534f;
}

.checkbox-danger input[type="checkbox"]:checked + label::after {
    color: #fff;
}

.checkbox-info input[type="checkbox"]:checked + label::before {
    background-color: #0026ff;
    border-color: #5bc0de;
}

.checkbox-info input[type="checkbox"]:checked + label::after {
    color: #fff;
}

.checkbox-warning input[type="checkbox"]:checked + label::before {
    background-color: #f0ad4e;
    border-color: #f29006;
}

.checkbox-warning input[type="checkbox"]:checked + label::after {
    color: #fff;
}

.checkbox-success input[type="checkbox"]:checked + label::before {
    background-color: #B48E5C;
    border-color: #92cfb2;
}

.checkbox-success input[type="checkbox"]:checked + label::after {
    color: #fff;
}

.radio {
    padding-left: 20px;
}

    .radio label {
        display: inline-block;
        position: relative;
        padding-left: 10px;
    }

        .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;
    }

        .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: #333;
}

.radio-primary input[type="radio"]:checked + label::before {
    border-color: #cccccc;
}

.radio-primary input[type="radio"]:checked + label::after {
    background-color: #cccccc;
}

.radio-danger input[type="radio"] + label::after {
    background-color: #760004;
}

.radio-danger input[type="radio"]:checked + label::before {
    border-color: #d9534f;
}

.radio-danger input[type="radio"]:checked + label::after {
    background-color: #760004;
}


.radio-info input[type="radio"] + label::after {
    background-color: #0026ff;
}

.radio-info input[type="radio"]:checked + label::before {
    border-color: #5bc0de;
}

.radio-info input[type="radio"]:checked + label::after {
    background-color: #0026ff;
}


.radio-warning input[type="radio"] + label::after {
    background-color: #f0ad4e;
}

.radio-warning input[type="radio"]:checked + label::before {
    border-color: #f29006;
}

.radio-warning input[type="radio"]:checked + label::after {
    background-color: #f0ad4e;
}


.radio-success input[type="radio"] + label::after {
    background-color: #2BB673;
}

.radio-success input[type="radio"]:checked + label::before {
    border-color: #92cfb2;
}

.radio-success input[type="radio"]:checked + label::after {
    background-color: #2BB673;
}
/* fin Checkbox & Radios*/


.btn-success {
    color: #FFF;
    background: #B48E5C !important;
    border:none;
}

    .btn-success:focus,
    .btn-success.focus {
        background: #B48E5C !important;
    }

    .btn-success:hover {
        background: #9F2241 !important;
    }

    .btn-success.active,
    .open > .dropdown-toggle.btn-success {
        color: #fff;
        background-color: #555555;
        border-color: #cccccc;
    }

    .btn-success .badge {
        color: #2BB673;
        background-color: #fff;
    }
    .btn-success.active, .btn-success:active, .open > .dropdown-toggle.btn-success, .btn-success.focus, .btn-success:focus {
        color: #fff;
        background-color: #0093C9 !important;
        border-color: #cccccc;
    }


/* 
 * Estilos detalle reporte historico de solicitudes
*/
.container-personal {
    padding: 8px;
    border-top: 1.3px solid #ff810b;
}

.persona {
    font-weight: bold;
    font-size: 13px;
}

.tbl-plazas-dictamen {
    width: 100%;
    border-collapse: collapse;
}

    .tbl-plazas-dictamen th {
        background: #391669;
        color: white;
        padding: 5px;
        text-align: left;
        font-size: 1.2em;
    }

    .tbl-plazas-dictamen tr:nth-child(even) {
        background: #f5f5f5;
        font-size: 1.1em;
    }

    .tbl-plazas-dictamen td {
        padding: 5px;
        color: black;
        font-weight: 600;
    }

.lbl-rfc, .lbl-curp {
    font-weight: bold;
    color: red;
    font-size: 13px;
}

.lbl-detalle-persona {
    font-weight: bold;
    font-size: 13px;
}


.fa-eye-slash, .fa-eye {
    color: #B48E5C;
    position: absolute;
    z-index: 2;
    top: 10px;
    right: 20px;
    font-size: 1.1em;
}

.tbl-plazas-presupuesto {
    width: auto
}

/* 
 * Estilos de Link de gestion de la vacancia
*/
.link i {
    color: #9826AA;
}

.link a {
    color: #391669;
    font-weight: 600;
    padding: 4px;
}

    .link a:hover {
        color: #2EBDC6;
        text-decoration: none;
    }

a:hover + .los div {
    display: block;
}

/* 
* Estilos detalle de la tablas de historicos de solicitudes de la vacancia
*/
.tbl-plazas-presupuesto th {
    background: #2EBDC6;
    color: white;
    padding: 5px;
}

.tbl-plazas-presupuesto tr:nth-child(even) {
    background: #f5f5f5;
}

.tbl-plazas-presupuesto td {
    padding: 5px;
}

/*
 *Estilos para la pantalla Administración de Periodos
 *GADC 07/08/202
*/
.container-periodos {
    border: 1px solid #d3d3d3;
    border-radius: 5px;
    margin-top: 2%;
}

.container-title {
    background: #2EBDC6;
    padding: 5px;
    color: white;
}

.table-admin {
    width: 100%;
    margin-top: 1%;
    margin-bottom: 1%;
}

    .table-admin th {
        text-align: left;
        font-size: 1.25em;
        color: #ba55d3;
    }

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default, .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current, .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
    background: #391669 !important;
    box-shadow: #a733ff 0 1px 3px 0 inset !important;
}

.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
    color: #fff;
    background: #2EBDC6 !important;
}

.xdsoft_datetimepicker .xdsoft_next {
    background: url('https://api.iconify.design/mdi:arrow-right.svg') no-repeat center center / contain;
}

.xdsoft_datetimepicker .xdsoft_prev {
    background: url('https://api.iconify.design/mdi:arrow-left.svg') no-repeat center center / contain;
}

.toast-success {
    font-size: 11pt !important;
    font-weight: bold !important;
    opacity: inherit !important;
    margin-top: 1% !important;
}

.toast-error {
    font-size: 11pt !important;
    font-weight: bold !important;
    opacity: inherit !important;
    margin-top: 1% !important;
    width:400px;
}

.item-cerrar-sesion {
    float: right !important;
    font-size: 1.3em !important;
    margin-left: 5% !important;
    cursor: pointer !important;
}