.select2-container .select2-selection--single{
        height: calc(2.25rem + 2px)!important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice{
        background: #007bff!important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
        color: #fff!important;
}
.float-end{
        float: right;
}
#btnSearch{
        margin-top: 32px;
}
.cardNames {
        font-weight: bold;
}
.cardNames .contentNames{
        color: red;
}
input[type='radio']:after {
        width: 15px;
        height: 15px;
        border-radius: 15px;
        top: -2px;
        left: -1px;
        position: relative;
        background-color: #d1d3d1;
        content: '';
        display: inline-block;
        visibility: visible;
        border: 2px solid white;
    }

    input[type='radio']:checked:after {
        width: 15px;
        height: 15px;
        border-radius: 15px;
        top: -2px;
        left: -1px;
        position: relative;
        background-color: #ffa500;
        content: '';
        display: inline-block;
        visibility: visible;
        border: 2px solid white;
    }

    .container-loader {
        background: #8a9ecaa3;
        position: fixed;
        width: 100%;
        margin: 0 auto;
        z-index: 1111;
        top: 0;
        height: 100%;
        display: flex;
        align-items: center;
    }

    #loader {
        border: 16px solid #f3f3f3; /* Ancho del borde */
        border-top: 16px solid #3498db; /* Color del borde en la parte superior */
        border-radius: 50%; /* Forma redondeada */
        width: 120px; /* Ancho del loader */
        height: 120px; /* Altura del loader */
        animation: spin 2s linear infinite; /* Animación de rotación */
        margin: 0 auto; /* Centrar horizontalmente */
      }
      
      @keyframes spin {
        0% { transform: rotate(0deg); } /* Inicio de la rotación */
        100% { transform: rotate(360deg); } /* Fin de la rotación */
      }