/* CONTENEDOR GENERAL (muy importante) */
#contenedor_profesiones{
    background:#f6f8fb;
    padding:12px;
    border-radius:12px;
}

/* CARD PROFESION */
.bloque-profesion{
    border-radius:14px;
    border:1px solid #e6ecf3;
    background:#ffffff;
    margin-bottom:14px;
    overflow:hidden;
    transition:all .15s ease;
    position:relative;
}

/* linea lateral medicas*/
.bloque-profesion::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    bottom:0;
    width:4px;
    background:linear-gradient(180deg,#4facfe,#00c6ff);
}

/* hover suave elegante */
.bloque-profesion:hover{
    border-color:#d9e3f0;
    transform:translateY(-1px);
}

/* HEADER */
.bloque-profesion .card-header{
    background:#f9fbfe;
    border-bottom:1px solid #eef2f7;
    padding:8px 14px;
}

/* TITULO */
.bloque-profesion .card-header strong{
    font-size:13px;
    font-weight:600;
    color:#2c3e50;
}

/* BOTON ELIMINAR */
.eliminarProfesion{
    border-radius:6px;
    width:30px;
    height:30px;
    padding:0;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* BODY */
.bloque-profesion .card-body{
    padding:14px;
}

/* LABELS */
.bloque-profesion label{
    font-size:11px;
    font-weight:600;
    color:#7b8794;
    margin-bottom:4px;
}

/* INPUTS */
.bloque-profesion .form-control{
    border-radius:8px;
    border:1px solid #dfe6ee;
    height:32px;
}

.bloque-profesion .form-control:focus{
    border-color:#4facfe;
    box-shadow:0 0 0 2px rgba(79,172,254,.15);
}
#btnAgregarProfesion{
    border-radius:8px;
    font-size:13px;
    padding:6px 12px;
    box-shadow:0 2px 6px rgba(0,0,0,.08);
}

/* SELECT2 tamaño igual a form-control-sm */
.select_mod2 + .select2-container .select2-selection--single{
    height:31px !important;
    padding:.25rem .5rem !important;
    font-size:.875rem !important;
    border:1px solid #ced4da !important;
    border-radius:.25rem !important;
}

/* texto interno */
.select_mod2 + .select2-container .select2-selection__rendered{
    line-height:20px !important;
    color:#495057;
}

/* flecha */
.select_mod2 + .select2-container .select2-selection__arrow{
    height:29px !important;
}

/* focus elegante */
.select2-container--default.select2-container--focus 
.select2-selection--single{
    border-color:#86b7fe !important;
    box-shadow:0 0 0 .2rem rgba(13,110,253,.15);
}

/*** modulos ***/
.hgdv-module-card{
    display:flex;
    align-items:center;
    gap:15px;
    padding:18px;
    background:#fff;
    border-radius:16px;
    border:1px solid #eef2f7;
    box-shadow:0 2px 10px rgba(0,0,0,.04);
    transition:.25s ease;
    height:100%;
}

.hgdv-module-card:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    border-color:#3699ff;
}

.hgdv-module-icon{
    width:60px;
    height:60px;
    min-width:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f4f8ff;
    border-radius:14px;
}

.hgdv-module-icon img{
    max-width:38px;
    max-height:38px;
}

.hgdv-module-title{
    margin:0 0 4px;
    font-size:14px;
    font-weight:700;
    color:#181c32;
}

.hgdv-module-desc{
    margin:0;
    font-size:12px;
    color:#7e8299;
    line-height:1.4;
    
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.hgdv-module-link{
    display:inline-block;
    margin-top:8px;
    font-size:12px;
    font-weight:600;
    color:#3699ff;
}

/* BIENVENIDA */
.mpv-welcome-card{
    background:linear-gradient(135deg,#005ea8,#0284c7);
    border-radius:20px;
    padding:30px;
    color:#fff;
}

.mpv-welcome-title{
    margin:0 0 8px;
    font-weight:700;
}

.mpv-welcome-text{
    margin:0;
    opacity:.9;
}

.mpv-card-stat{
    background:#fff;
    border-radius:16px;
    padding:10px;
    border:1px solid #eef2f7;
    border-top:4px solid #3699ff;
    box-shadow:0 3px 18px rgba(15,23,42,.05);
    transition:.25s ease;
    height:110px;
    
    display:flex;
    align-items:center;
}

.mpv-card-stat:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(15,23,42,.08);
}

/* COLORES */
.mpv-card-primary{
    border-top-color:#3699ff;
}

.mpv-card-success{
    border-top-color:#1bc5bd;
}

.mpv-card-warning{
    border-top-color:#ffa800;
}

.mpv-card-danger{
    border-top-color:#f64e60;
}


.mpv-card-header{
    display:flex;
    align-items:center;
}

.mpv-card-icon{
    width:58px;
    height:58px;
    min-width:58px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-right:15px;
}

.mpv-card-icon.primary{
    background:#eef6ff;
    color:#3699ff;
}

.mpv-card-icon.success{
    background:#e8fff3;
    color:#1bc5bd;
}

.mpv-card-icon.warning{
    background:#fff4de;
    color:#ffa800;
}

.mpv-card-icon.danger{
    background:#ffe2e5;
    color:#f64e60;
}

.mpv-card-title{
    font-size:13px;
    font-weight:600;
    color:#7e8299;
    margin-bottom:2px;
}

.mpv-card-number{
    font-size:28px;
    font-weight:800;
    line-height:1;
    color:#181c32;
}

.mpv-card-desc{
    margin-top:4px;
    font-size:11px;
    color:#a1a5b7;
	width:100%;
}

/* RESUMEN */
.mpv-stat-card{
    background:#fff;
    border-radius:18px;
    padding:12px;
    display:flex;
    align-items:center;
    gap:15px;
    box-shadow:0 3px 15px rgba(0,0,0,.05);
    transition:.3s;
}

.mpv-stat-card:hover{
    transform:translateY(-3px);
}

.mpv-stat-icon{
    width:55px;
    height:55px;
    border-radius:15px;
    background:#eef6ff;
    color:#3699ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.mpv-stat-icon.success{
    background:#e8fff3;
    color:#1bc5bd;
}

.mpv-stat-icon.warning{
    background:#fff4de;
    color:#ffa800;
}

.mpv-stat-icon.danger{
    background:#ffe2e5;
    color:#f64e60;
}

.mpv-stat-number{
    font-size:24px;
    font-weight:700;
    color:#181c32;
}

.mpv-stat-label{
    color:#7e8299;
    font-size:13px;
}
/* PANEL */
.mpv-panel{
    background:#fff;
    border-radius:18px;
    border:1px solid #eef2f7;
    box-shadow:0 3px 18px rgba(15,23,42,.05);
    overflow:hidden;
    height:100%;
}

/* CABECERA */
.mpv-panel-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:16px 20px;
    border-bottom:1px solid #f1f5f9;
}

.mpv-panel-title{
    margin:0;
    font-size:15px;
    font-weight:700;
    color:#181c32;
}

.mpv-panel-subtitle{
    font-size:12px;
    color:#94a3b8;
}

/* CUERPO */
.mpv-panel-body{
    padding:15px 20px;
}

.mpv-shortcuts{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.mpv-shortcut{
    background:#f8fafc;
    border:1px solid #edf2f7;
    border-radius:14px;
    padding:15px 10px;
    text-align:center;
    text-decoration:none !important;
    transition:.25s;
}

.mpv-shortcut:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    background:#fff;
}

.mpv-shortcut-icon{
    width:48px;
    height:48px;
    margin:0 auto 10px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.mpv-shortcut span{
    display:block;
    font-size:13px;
    font-weight:600;
    color:#3f4254;
}

/* Colores */
.mpv-shortcut-icon.primary{
    background:#eef6ff;
    color:#3699ff;
}

.mpv-shortcut-icon.success{
    background:#e8fff3;
    color:#1bc5bd;
}

.mpv-shortcut-icon.info{
    background:#e1f0ff;
    color:#6993ff;
}

.mpv-shortcut-icon.warning{
    background:#fff4de;
    color:#ffa800;
}
.td-asunto{
    width:60%;
}

.td-asunto-lg{
    width:40%;
}

@media (max-width: 768px){

    .td-asunto{
        width:80%;
    }

    .td-asunto .small{
        display:block;
        margin-top:4px;
        line-height:1.4;
    }
	
	.td-asunto-lg{
        width:80%;
    }

    .td-asunto-lg .small{
        display:block;
        margin-top:4px;
        line-height:1.4;
    }

}

.mpv-detail-status{
    background:#ecfdf3;
    border-left:5px solid #0bb783;
    border-radius:16px;
    padding:20px;
    display:flex;
    align-items:center;
    gap:15px;
}

.mpv-detail-status-icon{
    font-size:42px;
    color:#0bb783;
}

.mpv-detail-card{
    background:#fff;
    border:1px solid #DEEDFA;
    border-radius:16px;
    overflow:hidden;
}

.mpv-detail-header{
    padding:8px 20px;
    background:#DEEDFA;
    border-bottom:1px solid #DEEDFA;
    font-weight:600;
    color:#181c32;
}

.mpv-detail-card-menu{
    background:#fff;
    border:1px solid #F2E1FA;
    border-radius:16px;
    overflow:hidden;
}
.mpv-detail-header-menu{
    padding:8px 20px;
    background:#F2E1FA;
    border-bottom:1px solid #F2E1FA;
    font-weight:600;
    color:#181c32;
}

.mpv-detail-body{
    padding:12px;
}

.mpv-detail-body label{
    display:block;
    font-size:10px;
    font-weight:600;
    color:#7e8299;
    text-transform:uppercase;
    margin-bottom:2px;
}

.mpv-detail-value{
    font-size:11px;
    font-weight:600;
    color:#181c32;
}

.btn-block{
    border-radius:10px;
}

.mpv-detail-card-obs{
    background: #ffffff;
    border: 1px solid #f1c9c9;
    border-radius: 14px;
    overflow: hidden;
}

/* HEADER */
.mpv-detail-header-obs{
    padding: 12px 18px;
    background: linear-gradient(135deg, #dc3545, #b02a37);
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* BODY (FONDO SUAVE) */
.mpv-detail-body-obs{
    padding: 16px;
    background: #fff; /* 👈 fondo suave */
    font-size: 12px;
    color: #2b2b2b;
    line-height: 1.6;
}

/* SEPARADOR */
.mpv-divider{
    border: none;
    border-top: 1px dashed #e0a7a7;
    margin: 10px 0;
}

/* LABELS */
.mpv-detail-body-obs b{
    display: inline-block;
    min-width: 150px;
    color: #444;
}

/* BADGE */
.mpv-status-badge{
    display: inline-block;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
}

.mpv-status-observado{
    background: #dc3545;
    color: #fff;
}

.mpv-detail-card-ate{
    background: #ffffff;
    border: 1px solid #26A334;
    border-radius: 14px;
    overflow: hidden;
}

/* HEADER */
.mpv-detail-header-ate{
    padding: 12px 18px;
    background: linear-gradient(135deg, #11D126, #0B6E16);
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* BODY (FONDO SUAVE) */
.mpv-detail-body-ate{
    padding: 16px;
    background: #fff; /* 👈 fondo suave */
    font-size: 12px;
    color: #2b2b2b;
    line-height: 1.6;
}

/* SEPARADOR */
.mpv-divider-ate{
    border: none;
    border-top: 1px dashed #11D126;
    margin: 10px 0;
}

/* LABELS */
.mpv-detail-body-ate b{
    display: inline-block;
    min-width: 150px;
    color: #444;
}

/* BODY SEGUIMIENTO */
.mpv-detail-body-seg{
    padding: 16px;
    background: #fff; /* 👈 fondo suave */
    font-size: 12px;
    color: #2b2b2b;
    line-height: 1.6;
}

/* SEPARADOR */
.mpv-divider-seg{
    border: none;
    border-top: 1px dashed #737AF5;
    margin: 10px 0;
}

/* LABELS */
.mpv-detail-body-seg b{
    display: inline-block;
    min-width: 150px;
    color: #444;
}

.mpv-tramite-search{
    display:flex;
    justify-content:center;
    margin-top:5px;
}

.mpv-search-box{
    width:100%;
    max-width:650px;
    background:#fff;
    border:1px solid #e5e9f2;
    border-radius:16px;
    padding:20px;
}

/* TITULO */
.mpv-search-title{
    font-size:18px;
    font-weight:700;
    color:#181c32;
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:2px;
}

/* SUBTITULO */
.mpv-search-subtitle{
    font-size:13px;
    color:#7e8299;
    margin-bottom:10px;
}

/* INPUT GROUP */
.mpv-search-input-group{
    display:flex;
    gap:10px;
}

/* INPUT */
.mpv-search-input{
    flex:1;
    padding:12px 14px;
    border:1px solid #d7dbe7;
    border-radius:10px;
    font-size:14px;
    outline:none;
    transition:0.2s;
}

.mpv-search-input:focus{
    border-color:#3699ff;
    box-shadow:0 0 0 3px rgba(54,153,255,0.15);
}

/* BOTÓN */
.mpv-search-btn{
    background:#3699ff;
    color:#fff;
    border:none;
    padding:12px 18px;
    border-radius:10px;
    font-weight:600;
    cursor:pointer;
    transition:0.2s;
}

.mpv-search-btn:hover{
    background:#187de4;
}

/* AYUDA */
.mpv-search-help{
    font-size:12px;
    color:#a1a5b7;
    margin-top:10px;
}
/** nuevo envio de documento */
.mpv-form-card{
    background:#fff;
    border:1px solid #eef2f7;
    border-radius:18px;
    padding:25px;
    box-shadow:0 3px 18px rgba(15,23,42,.05);
}

.mpv-form-title{
    font-size:16px;
    font-weight:700;
    color:#181c32;
    margin-bottom:20px;
    padding-bottom:12px;
    border-bottom:1px solid #eef2f7;
}

.mpv-label{
    display:block;
    margin-bottom:6px;
    font-size:12px;
    font-weight:600;
    color:#5e6278;
}

.mpv-upload-box{
    text-align:center;
    border:2px dashed #dbe4f0;
    border-radius:16px;
    padding:15px;
    background:#fafbfd;
}

.mpv-upload-box i{
    font-size:44px;
    color:#3699ff;
}

.mpv-upload-title{
    margin-top:0px;
    font-size:15px;
    font-weight:700;
    color:#181c32;
}

.mpv-upload-desc{
    font-size:12px;
    color:#7e8299;
    margin-top:0px;
}

#contadorDetalle{
    font-size:11px;
}

.form-control{
    border-radius:10px;
}

.custom-file-label{
    border-radius:10px;
}
/*** style mensaje imbox MPV**/
.ticket-chat-body{
    max-height:450px;
    overflow-y:auto;
    padding:15px;
    background:#f8f9fa;
    border-radius:12px;
}

.ticket-message{
    margin-bottom:2px;
}

.ticket-message-box{

    background:#fff;

    border-radius:10px;

    padding:15px 18px;

    border:1px solid #EBEDF3;

    line-height:1.8;

    color:#3F4254;

    box-shadow:0 1px 5px rgba(0,0,0,.05);

    word-break:break-word;
}

.ticket-message-box p:last-child{
    margin-bottom:0;
}

.ticket-description{
    background:#fff;
    border:1px solid #d6e4f0;
    border-left:5px solid #3699FF;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 .125rem .25rem rgba(0,0,0,.04);
}

.ticket-description-header{
    background:#eef6ff;
    border-bottom:1px solid #d6e4f0;
    padding:10px 18px;
    font-weight:600;
    color:#3699FF;
    display:flex;
    align-items:center;
    font-size:14px;
}

.ticket-description-body{
    padding:10px 20px;
    color:#3F4254;
    font-size:15px;
    line-height:1.8;
    word-break:break-word;
    overflow-wrap:anywhere;
}

.ticket-description-body p:last-child{
    margin-bottom:0;
}

.ticket-description-body img{
    max-width:100%;
    height:auto;
    border-radius:6px;
}

.ticket-description-body ul,
.ticket-description-body ol{
    padding-left:10px;
    margin-bottom:1rem;
}

.ticket-description-body blockquote{
    border-left:4px solid #3699FF;
    background:#ffffff;
    padding:10px 15px;
    margin:15px 0;
    color:#5E6278;
    font-style:italic;
}
.ticket-attachments{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.ticket-file{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 16px;

    background:#F5F8FA;
    border:1px solid #E4E6EF;
    border-radius:8px;

    color:#3F4254;
    text-decoration:none;

    transition:.2s;
}

.ticket-file:hover{
    background:#EEF6FF;
    border-color:#3699FF;
    color:#3699FF;
    text-decoration:none;
}

.ticket-file i{
    font-size:20px;
}

.ticket-file span{
    max-width:180px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    font-weight:500;
}
.ticket-section-title{
    font-size:13px;
    font-weight:700;
    color:#7E8299;
    text-transform:uppercase;
    letter-spacing:.05em;
    margin-bottom:12px;
}

.ticket-message-content{
    font-size:15px;
    line-height:1.8;
    color:#3F4254;
}

.ticket-divider{
    margin:25px 0;
    border-top:1px solid #E4E6EF;
}
//*=========================================================
=            HRGDV - Vista Reclamo Virtual
=========================================================*/

.rv-card{
    border:0;
    border-radius:12px;
    box-shadow:0 0 35px rgba(82,63,105,.08);
}

.rv-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.rv-title{
    font-size:20px;
    font-weight:700;
    color:#181C32;
}

.rv-subtitle{
    font-size:13px;
    color:#7E8299;
}

.rv-section{
    background:#FFF;
    border:1px solid #EEF0F8;
    border-radius:10px;
    overflow:hidden;
    margin-bottom:25px;
}

.rv-section-header{
    display:flex;
    align-items:center;
    padding:14px 18px;
    background:#F8F9FC;
    border-bottom:1px solid #EBEDF3;
}

.rv-section-header i{
    font-size:18px;
    margin-right:10px;
}

.rv-section-title{
    font-weight:700;
    color:#3F4254;
    font-size:15px;
}

.rv-section-body{
    padding:20px;
}

.rv-item{
    display:flex;
    border-bottom:1px dashed #ECECEC;
    padding:11px 0;
}

.rv-item:last-child{
    border-bottom:none;
}

.rv-label{
    width:170px;
    color:#7E8299;
    font-weight:600;
}

.rv-value{
    flex:1;
    color:#181C32;
    font-weight:500;
}

.rv-detail{
    background:#F8F9FC;
    border-left:4px solid #3699FF;
    border-radius:8px;
    padding:18px;
    color:#3F4254;
    line-height:1.8;
    text-align:justify;
}

.rv-info-box{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border:1px dashed #D6D6E0;
    border-radius:10px;
    padding:15px 18px;
    background:#FCFCFD;
}

.rv-info-title{
    font-weight:600;
    color:#3F4254;
}

.rv-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
    border-top:1px solid #EBEDF3;
    background:#FAFAFC;
}

.rv-actions{
    display:flex;
    gap:10px;
}

.rv-badge{
    font-size:12px;
    padding:7px 14px;
    border-radius:30px;
}

@media(max-width:991px){

	.rv-item{
		display:block;
	}

	.rv-label{
		width:100%;
		margin-bottom:5px;
	}

	.rv-footer{
		flex-direction:column;
	}

	.rv-actions{
		width:100%;
		margin-top:15px;
	}

	.rv-actions .btn{
		width:100%;
	}
}
.rv-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    background:#FAFAFC;
    border-top:1px solid #EBEDF3;
    padding:20px;
}

.rv-actions{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
}

.rv-actions .btn{
    min-width:170px;
}

#btnGuardar:disabled{
    opacity:.55;
    cursor:not-allowed;
}

@media(max-width:991px){

    .rv-footer{
        flex-direction:column;
        align-items:stretch;
    }

    .rv-actions{
        width:100%;
    }

    .rv-actions .btn,
    .rv-actions form{
        width:100%;
    }

    .rv-actions form button{
        width:100%;
    }

}

//*=========================================================
=            HRGDV - Vista Reclamo
=========================================================*/

.rec-card{
    border:0;
    border-radius:12px;
    box-shadow:0 0 35px rgba(82,63,105,.08);
}

.rec-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.rec-title{
    font-size:18px;
    font-weight:700;
    color:#181C32;
}

.rec-subtitle{
    font-size:12px;
    color:#7E8299;
}

.rec-section{
    background:#FFF;
    border:1px solid #EEF0F8;
    border-radius:10px;
    overflow:hidden;
    margin-bottom:10px;
}

.rec-section-header{
    display:flex;
    align-items:center;
    padding:10px 12px;
    background:#F8F9FC;
    border-bottom:1px solid #EBEDF3;
}

.rec-section-header i{
    font-size:18px;
    margin-right:10px;
}

.rec-section-title{
    font-weight:700;
    color:#3F4254;
    font-size:15px;
}

.rec-section-body{
    padding:5px;
}

.rec-item{
    display:flex;
    border-bottom:1px dashed #ECECEC;
    padding:8px 0;
}

.rec-item:last-child{
    border-bottom:none;
}

.rec-label{
    width:140px;
    color:#7E8299;
    font-weight:600;
	font-size: 12px;
}

.rec-value{
    flex:1;
    color:#181C32;
    font-weight:500;
	font-size: 11px;
}

.rec-detail{
    background:#FCF2F0;
    border-left:4px solid #821B07;
    border-radius:8px;
    padding:12px;
    color:#3F4254;
    line-height:1.3;
    text-align:justify;
	font-size: 11px;
}

.rec-info-box{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border:1px dashed #D6D6E0;
    border-radius:10px;
    padding:15px 18px;
    background:#FCFCFD;
}

.rec-info-title{
    font-weight:600;
    color:#3F4254;
}

.rec-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
    border-top:1px solid #EBEDF3;
    background:#FAFAFC;
}

.rec-actions{
    display:flex;
    gap:10px;
}

.rec-badge{
    font-size:12px;
    padding:7px 14px;
    border-radius:30px;
}

@media(max-width:991px){

	.rec-item{
		display:block;
	}

	.rec-label{
		width:100%;
		margin-bottom:5px;
	}

	.rec-footer{
		flex-direction:column;
	}

	.rec-actions{
		width:100%;
		margin-top:15px;
	}

	.rec-actions .btn{
		width:100%;
	}
}
.rec-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    background:#FAFAFC;
    border-top:1px solid #EBEDF3;
    padding:20px;
}

.rec-actions{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
}

.rec-actions .btn{
    min-width:170px;
}

#btnGuardar:disabled{
    opacity:.55;
    cursor:not-allowed;
}

@media(max-width:991px){

    .rec-footer{
        flex-direction:column;
        align-items:stretch;
    }

    .rec-actions{
        width:100%;
    }

    .rec-actions .btn,
    .rec-actions form{
        width:100%;
    }

    .rec-actions form button{
        width:100%;
    }

}