    .my-swal-overflow {
        overflow: hidden;
        /*padding-left: 20px;*/
        padding: 15px;
        
    }

    /* Estilo para el contenido de la modal */
    .my-swal-popup {
        border: 2px solid #ced4da;
        border-radius: 10px;
        align-items: center;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: space-between; /* Ajusta según sea necesario */
        width: 530px;
    }

    /* Estilo para el contenido de la modal */
    .my-swal-popup2 {
        border: 2px solid #ced4da;
        border-radius: 10px;
        align-items: center;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: space-between; /* Ajusta según sea necesario */
        width: 800px;
    }

    .my-swal-popup3 {
        border: 2px solid #ced4da;
        border-radius: 10px;
        align-items: center;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: space-between; /* Ajusta según sea necesario */
        width: 600px;
    }

    .my-swal-popup4 {
        border: 2px solid #ced4da;
        border-radius: 10px;
        align-items: center;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: space-between; /* Ajusta según sea necesario */
        width: 400px;
    }

    /**/

.team-primary .member-name a {
    transition: all 0.5s ease
}

.team-primary .member-name a:hover {
    color: #002038 !important
}

.team-primary .card-img .card-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    background: linear-gradient(to bottom, rgba(22, 28, 45, 0.1) 10%, rgba(22, 28, 45, 0.4) 50%, rgba(22, 28, 45, 0.8) 75%, #161c2d 100%) !important;
    transition: all 0.5s ease
}

.team-primary .social-icons {
    position: absolute;
    right: 0;
    left: 0;
    bottom: -50px;
    opacity: 0;
    transition: all 0.5s ease
}

.team-primary:hover .card-img .card-overlay {
    opacity: 1
}

.team-primary:hover .social-icons {
    bottom: 15px;
    opacity: 1
}

.avatar.avatar-ex-large {
    height: 230px;
    width: 230px
}

   /* Estilos para sombra en las opciones seleccionadas */
   .submenu-option {
    transition: box-shadow 0.3s ease;
}

.submenu-option:hover {
    color: rgb(20, 61, 105);
    background-color: #f8f9fa;
}

.submenu-option.active {
    color: rgb(20, 61, 105); 
    background-color: #f8f9fa; 
    font-weight: bold;
}


/*CHECKBOX*/

.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.custom-checkbox label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.custom-checkbox label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #333;
    border-radius: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

.custom-checkbox input[type="checkbox"]:checked + label::before {
    background-color: #333;
    border-color: #333;
}


.custom-checkbox input[type="checkbox"]:checked + label::after {
    transform: translateY(-50%) scale(1);
}

.custom-checkbox label::before {
    border-radius: 50%; /* Cambiar de cuadrado a círculo */
    width: 20px;
    height: 20px;
    border: 2px solid #333;
    background-color: white;
    transition: background-color 0.3s ease;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.custom-checkbox input[type="checkbox"] {
    margin-right: 10px;
}

.custom-checkbox label {
    font-size: 15px;
    color: #333;
    cursor: pointer;
}

.btn-custom-color{
    background-color: rgb(255, 111, 0);
}


/*FIN CHECKBOX*/