input,
select,
textarea,
.form-control,
.select2-container--bootstrap .select2-selection{
    font-size: 0.875rem;
}

.form-control:disabled,
.form-control[readonly] {
    cursor: not-allowed;
}

.control-label,
.col-form-label{
    color: #000;
}
.requeried-asterisk {
    color: #FF8107;
    padding-left: 4px;
}

/* Radios y checkbox */
.form-group input[type='radio'],
.form-group input[type='checkbox'] {
    display:none;
}
.form-group input[type='radio'] + label,
.form-group input[type='checkbox'] + label  {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #373e43;
    margin: 0 15px 5px 0;
    cursor: pointer;
    padding-left: 20px;
    position: relative;
}
.form-group input[type='radio'] + label:before,
.form-group input[type='checkbox'] + label:before {
    content:"";
    position: absolute;
    top: 1px;
    left:0;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border: 1px solid #ced4da;
    transition: all .3s ease-out;
}
.form-group input[type='radio'] + label:before {
    border-radius: 50%;
}
.form-group input[type='radio']:checked + label:before,
.form-group input[type='checkbox']:checked + label:before {
    border: 5px solid #001476;
}

.form-group input[type='radio']:disabled + label,
.form-group input[type='checkbox']:disabled + label,
.form-group input[type='radio']:disabled + label:before,
.form-group input[type='checkbox']:disabled + label:before{
    cursor: not-allowed;
}

.form-group input[type='radio']:disabled + label:before,
.form-group input[type='checkbox']:disabled + label:before{
    cursor: not-allowed;
    background-color: #dee2e6;
}

/* Select2 */

.select2.select2-container--bootstrap{
    width: 100% !important;
}

.select2-container--bootstrap .select2-selection--single {
    height: 35px;
    line-height: 24px;
}
.select2-container--bootstrap .select2-selection--multiple {
    min-height: 35px;
}

.select2-container--bootstrap.select2-container--focus .select2-selection,
.select2-container--bootstrap.select2-container--open .select2-selection{
    border-color: #0F4DBC;
}
.select2-container--bootstrap .select2-results__option--highlighted[aria-selected] {
    background-color: #0F4DBC;
    color: #fff;
}

/* Mensaje de error */

.js-form-errors{
    padding: 0.5rem;
    border: 1px solid transparent;
    border-radius: 4px;

    background: #C53D3D;
    color: #fff;
    margin-bottom: 1rem;
}
.js-form-errors a{
    color: #fff;
    text-decoration: underline;
}

/* Para destacar mucho el campo con error */
/*.form-group.has-error{
    background-color: #f7afaf;
    padding: 5px;
    border-radius: 5px;
}*/