/* Tokens GY expandidos a literales para compatibilidad Sass 3.2 / Liferay 6.2 */
/*
 * Bridge Liferay 6.2 / Alloy / Bootstrap -> Goodyear Externos
 * Corrige overrides del portal (padding, floats, iconos que atraviesan inputs).
 * Scope obligatorio: .gy-ui
 */

.gy-ui,
.gy-ui *,
.gy-ui *:before,
.gy-ui *:after {
	box-sizing: border-box !important;
}

/*
 * Tipografia GY vs theme Gent/AUI (maqueta: base 14px, titulo 26px, subtitulo 14px).
 * Tokens en px: rem se rompe cuando el portal cambia el root.
 */
.gy-ui {
	font-size: 14px !important;
	line-height: 1.45 !important;
	font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif !important;
}

.gy-ui .gy-page-title,
.gy-ui h1.gy-page-title,
.gy-ui .journal-content-article .gy-page-title {
	font-size: 26px !important;
	line-height: 1.2 !important;
	letter-spacing: -0.3px !important;
	font-weight: 700 !important;
	color: #05245c !important;
}

.gy-ui .gy-page-subtitle,
.gy-ui p.gy-page-subtitle,
.gy-ui .journal-content-article p.gy-page-subtitle,
.gy-ui .journal-content-article .gy-page-subtitle {
	font-size: 14px !important;
	line-height: 1.45 !important;
	font-weight: 400 !important;
	color: #667085 !important;
}

.gy-ui .gy-card__title,
.gy-ui h2.gy-card__title {
	font-size: 16px !important;
	font-weight: 700 !important;
}

.gy-ui .gy-label,
.gy-ui label.gy-label {
	font-size: 12px !important;
}

.gy-ui .gy-control,
.gy-ui input.gy-control,
.gy-ui select.gy-control,
.gy-ui textarea.gy-control,
.gy-ui .gy-button,
.gy-ui button.gy-button {
	font-size: 14px !important;
}

.gy-ui.gy-ui--form {
	/* Unico dueño del fondo de pagina en formularios GY */
	background: #eef3f8 !important;
	background-color: #eef3f8 !important;
	/* Padding reducido arriba: el margen lo controla right_col (max 5px) */
	padding: 5px 12px 24px;
	border-radius: 0;
	width: 100% !important;
	max-width: none !important;
	min-height: 0;
	font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif !important;
}

.gy-ui:not(.gy-ui--form) {
	background: #eef3f8 !important;
	background-color: #eef3f8 !important;
}

/* Contenedores Liferay/Gent alrededor de GY: transparentes (sin marco blanco) */
.aui .nav-md .container.body .right_col:has(.gy-ui),
.aui body .container.body .right_col:has(.gy-ui),
#content.right_col:has(.gy-ui),
#content:has(.gy-ui),
#main-content:has(.gy-ui),
.portlet-body:has(.gy-ui),
.portlet-borderless-container:has(.gy-ui),
.portlet-dropzone:has(.gy-ui),
.portlet-column-content:has(.gy-ui) {
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none !important;
}

.gy-ui .gy-content {
	/* Maqueta: width 100%, max-width 1620px; top reducido (antes 28px) */
	max-width: 1620px !important;
	width: 100% !important;
	margin: 0 auto !important;
	padding: 5px 20px 24px !important;
	float: none !important;
}

/* Utilidad: debe ganar a .gy-ui select.gy-control { display:block !important } */
.gy-ui .gy-is-hidden,
.gy-ui .gy-control-wrap.gy-is-hidden,
.gy-ui input.gy-control.gy-is-hidden,
.gy-ui select.gy-control.gy-is-hidden,
.gy-ui textarea.gy-control.gy-is-hidden {
	display: none !important;
}

/* Neutralizar floats Bootstrap/Alloy */
.gy-ui .row,
.gy-ui [class*="col-md"],
.gy-ui [class*="col-xs"],
.gy-ui [class*="col-sm"],
.gy-ui .container {
	float: none !important;
	margin-left: 0 !important;
}

.gy-ui .gy-form {
	display: flex !important;
	flex-direction: column !important;
	gap: 18px !important;
	width: 100% !important;
}

/*
 * Separacion uniforme entre cards/secciones gy (maqueta: gap 18px).
 * Aplica a formularios de ingreso, listas y cualquier stack de cards.
 * #registroFormulario solo en flex cuando NO esta oculto (pantalla resumen).
 */
.gy-ui .gy-content,
.gy-ui .gy-form,
.gy-ui .gy-stack,
.gy-ui .gy-stack-cards {
	display: flex !important;
	flex-direction: column !important;
	gap: 18px !important;
	width: 100% !important;
}

.gy-ui #registroFormulario {
	display: flex !important;
	flex-direction: column !important;
	gap: 18px !important;
	width: 100% !important;
}

/* JS pone style="display: none" al mostrar resumen; debe ganar al flex !important */
.gy-ui #registroFormulario[style*="display: none"],
.gy-ui #registroFormulario[style*="display:none"],
.gy-ui #registroFormulario.gy-is-hidden,
.gy-ui #registroDetalle[style*="display: none"],
.gy-ui #registroDetalle[style*="display:none"],
.gy-ui #registroDetalle.gy-is-hidden {
	display: none !important;
}

/* Sin margins verticales extras: el gap del padre define la separacion */
.gy-ui .gy-content > .gy-page-header,
.gy-ui .gy-content > .gy-alert-bar,
.gy-ui .gy-content > .gy-card,
.gy-ui .gy-content > .gy-form,
.gy-ui .gy-content > .gy-form-actions,
.gy-ui .gy-form > .gy-card,
.gy-ui .gy-form > .gy-form-grid,
.gy-ui .gy-form > .gy-form-actions,
.gy-ui .gy-form > .gy-alert-bar,
.gy-ui #registroFormulario > .gy-card,
.gy-ui #registroFormulario > .gy-form-grid,
.gy-ui #registroFormulario > .gy-form-main-grid,
.gy-ui #registroFormulario > .gy-form-actions,
.gy-ui #registroFormulario > .gy-alert-bar {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.gy-ui .gy-form-grid {
	display: grid !important;
	grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
	gap: 18px !important;
	width: 100% !important;
}

.gy-ui .gy-form-main-grid {
	display: grid !important;
	grid-template-columns: minmax(340px, 0.78fr) minmax(520px, 1.22fr) !important;
	gap: 18px !important;
	align-items: stretch !important;
	width: 100% !important;
}

.gy-ui .gy-form-main-grid__left,
.gy-ui .gy-form-main-grid__right {
	display: flex !important;
	min-width: 0 !important;
	flex-direction: column !important;
	gap: 18px !important;
	align-self: stretch !important;
	height: 100% !important;
}

.gy-ui .gy-form-main-grid .gy-card {
	width: 100% !important;
	display: flex !important;
	flex-direction: column !important;
	flex: 1 1 auto !important;
	height: 100% !important;
	min-height: 100% !important;
}

.gy-ui .gy-form-main-grid .gy-card > .gy-card__body {
	flex: 1 1 auto !important;
}

.gy-ui .gy-col-12 { grid-column: span 12 !important; width: auto !important; max-width: none !important; }
.gy-ui .gy-col-9 { grid-column: span 9 !important; width: auto !important; max-width: none !important; }
.gy-ui .gy-col-8 { grid-column: span 8 !important; width: auto !important; max-width: none !important; }
.gy-ui .gy-col-7 { grid-column: span 7 !important; width: auto !important; max-width: none !important; }
.gy-ui .gy-col-5 { grid-column: span 5 !important; width: auto !important; max-width: none !important; }
.gy-ui .gy-col-4 { grid-column: span 4 !important; width: auto !important; max-width: none !important; }
.gy-ui .gy-col-6 { grid-column: span 6 !important; width: auto !important; max-width: none !important; }
.gy-ui .gy-col-3 { grid-column: span 3 !important; width: auto !important; max-width: none !important; }
.gy-ui .gy-col-2 { grid-column: span 2 !important; width: auto !important; max-width: none !important; }

.gy-ui .gy-card {
	border: 1px solid #d8e0eb !important;
	border-radius: 1.125rem !important;
	background: #fff !important;
	box-shadow: 0 8px 24px rgba(15, 54, 104, 0.10) !important;
	min-width: 0 !important;
	/* overflow hidden recorta el header/body a las esquinas redondeadas (maqueta) */
	overflow: hidden !important;
}

.gy-ui .gy-card__header,
.gy-ui .gy-card__body {
	width: 100% !important;
}

.gy-ui .gy-card > .gy-card__header:first-child {
	border-top-left-radius: 1.125rem !important;
	border-top-right-radius: 1.125rem !important;
}

.gy-ui .gy-card > .gy-card__body:last-child,
.gy-ui .gy-card > .gy-card__footer:last-child {
	border-bottom-left-radius: 1.125rem !important;
	border-bottom-right-radius: 1.125rem !important;
}

.gy-ui .gy-page-header__icon,
.gy-ui .gy-card__icon {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
}

.gy-ui .gy-card__title-wrap {
	display: flex !important;
	align-items: center !important;
	gap: 11px !important;
	min-width: 0 !important;
	width: 100% !important;
}

.gy-ui .gy-card__title-wrap > .gy-card__icon {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	align-self: center !important;
	width: 42px !important;
	height: 42px !important;
	min-width: 42px !important;
	min-height: 42px !important;
	max-width: 42px !important;
	max-height: 42px !important;
	flex: 0 0 42px !important;
	aspect-ratio: auto !important;
	border-radius: 10px !important;
	color: #0868d7 !important;
	background: #eaf3ff !important;
	box-sizing: border-box !important;
}

.gy-ui .gy-card__icon svg {
	width: 18px !important;
	height: 18px !important;
	display: block !important;
	flex: 0 0 auto !important;
}

/* Titulo/subtitulo de card: tipografia original + espaciado pedido */
.gy-ui .gy-card__title-wrap .gy-card__title,
.gy-ui .gy-card__title-wrap h2.gy-card__title {
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
	color: #05245c !important;
	margin: 0 !important;
}

.gy-ui .gy-card__title-wrap:has(.gy-card__help) .gy-card__title,
.gy-ui .gy-card__title-wrap:has(.gy-card__subtitle) .gy-card__title,
.gy-ui .gy-card__title-wrap:has(p) .gy-card__title {
	margin-top: 1px !important;
	margin-bottom: 2px !important;
}

.gy-ui .gy-card__title-wrap .gy-card__help,
.gy-ui .gy-card__title-wrap .gy-card__subtitle,
.gy-ui .gy-card__title-wrap > div > p {
	margin: 0 !important;
	color: #667085 !important;
	font-size: 13px !important;
	font-weight: 400 !important;
	line-height: 1.35 !important;
}

.gy-ui .gy-card__title-wrap > div {
	display: flex !important;
	flex-direction: column !important;
	justify-content: center !important;
	min-width: 0 !important;
	flex: 1 1 auto !important;
}

.gy-ui .gy-page-header__icon svg {
	width: 28px !important;
	height: 28px !important;
	display: block !important;
}


/* Page header: icono cuadrado alineado a titulo+subtitulo */
.gy-ui .gy-page-header__main {
	gap: 22px !important;
}
.gy-ui .gy-page-subtitle,
.gy-ui p.gy-page-subtitle {
	margin: 1px 0 0 !important;
}
.gy-ui .gy-page-header__icon {
	width: 52px !important;
	height: 52px !important;
	flex: 0 0 52px !important;
	box-sizing: border-box !important;
}
.gy-ui .gy-page-header__icon svg {
	width: 28px !important;
	height: 28px !important;
}

/* === Controles + iconos (evita que el texto atraviese el icono) === */
.gy-ui .gy-control-wrap {
	position: relative !important;
	display: block !important;
	width: 100% !important;
	margin: 0 !important;
}

.gy-ui .gy-control-wrap--icon {
	min-height: 44px !important;
}

.gy-ui .gy-control-wrap--icon > .gy-control-icon {
	position: absolute !important;
	left: 1px !important;
	top: 1px !important;
	bottom: 1px !important;
	width: 42px !important;
	height: auto !important;
	z-index: 5 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-right: 1px solid #d8e0eb !important;
	border-radius: 8px 0 0 8px !important;
	background: transparent !important;
	color: #0868d7 !important;
	pointer-events: none !important;
	box-shadow: none !important;
}

.gy-ui .gy-control-wrap--icon > .gy-control-icon::before {
	display: inline-flex !important;
	width: 18px !important;
	height: 18px !important;
	align-items: center !important;
	justify-content: center !important;
	border: 1.5px solid currentColor !important;
	border-radius: 50% !important;
	content: "i" !important;
	font-size: 11px !important;
	font-weight: 800 !important;
	line-height: 1 !important;
}

.gy-ui input.gy-control,
.gy-ui select.gy-control,
.gy-ui textarea.gy-control,
.gy-ui .gy-control {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	height: auto !important;
	min-height: 44px !important;
	margin: 0 !important;
	padding: 10px 13px !important;
	border: 1px solid #c6d0dd !important;
	border-radius: 8px !important;
	color: #14213d !important;
	background: #ffffff !important;
	box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05) !important;
	font-size: 14px !important;
	font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif !important;
	line-height: 1.4 !important;
	vertical-align: middle !important;
}

/* Disabled: lavado de cara visible (gana al fondo blanco de .gy-control) */
.gy-ui input.gy-control:disabled,
.gy-ui select.gy-control:disabled,
.gy-ui textarea.gy-control:disabled,
.gy-ui .gy-control:disabled,
.gy-ui input.gy-control[readonly],
.gy-ui select.gy-control[readonly],
.gy-ui .gy-control[readonly] {
	color: #98a2b3 !important;
	background: #eef2f6 !important;
	background-color: #eef2f6 !important;
	border-color: #d0d7e2 !important;
	box-shadow: none !important;
	cursor: not-allowed !important;
	opacity: 1 !important;
}

.gy-ui .gy-control-wrap:has(> .gy-control:disabled),
.gy-ui .gy-control-wrap:has(> select:disabled),
.gy-ui .gy-control-wrap:has(> input:disabled) {
	opacity: 0.92 !important;
}

.gy-ui .gy-control-wrap:has(> .gy-control:disabled) > .gy-control-icon,
.gy-ui .gy-control-wrap:has(> select:disabled) > .gy-control-icon {
	opacity: 0.45 !important;
}

/* Select2: no forzar display en el select nativo oculto */
.gy-ui select.gy-control.select2-hidden-accessible,
.gy-ui select.select2-hidden-accessible {
	border: 0 !important;
	clip: rect(0 0 0 0) !important;
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
	min-height: 0 !important;
	display: block !important;
	box-shadow: none !important;
	background: transparent !important;
}

.gy-ui .gy-select2-wrap,
.gy-ui .gy-control-wrap--select2 {
	position: relative !important;
	display: block !important;
	width: 100% !important;
}

.gy-ui .gy-select2-wrap .select2-container,
.gy-ui .gy-control-wrap--select2 .select2-container,
.gy-ui .gy-field .select2-container {
	width: 100% !important;
	max-width: 100% !important;
	display: block !important;
}

.gy-ui .select2-container--default .select2-selection--single {
	min-height: 44px !important;
	height: auto !important;
	padding: 0 !important;
	border: 1px solid #c6d0dd !important;
	border-radius: 8px !important;
	background: #ffffff !important;
	box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05) !important;
}

.gy-ui .select2-container--default.select2-container--focus .select2-selection--single,
.gy-ui .select2-container--default.select2-container--open .select2-selection--single {
	border-color: #1677e8 !important;
	box-shadow: 0 0 0 3px rgba(22, 119, 232, 0.18) !important;
}

.gy-ui .select2-container--default .select2-selection--single .select2-selection__rendered {
	display: block !important;
	padding: 10px 36px 10px 13px !important;
	line-height: 1.4 !important;
	color: #14213d !important;
	font-size: 14px !important;
	font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif !important;
}

.gy-ui .select2-container--default .select2-selection--single .select2-selection__placeholder {
	color: #98a2b3 !important;
}

.gy-ui .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 42px !important;
	top: 1px !important;
	right: 6px !important;
	width: 28px !important;
}

.gy-ui .select2-dropdown {
	border: 1px solid #c6d0dd !important;
	border-radius: 8px !important;
	z-index: 11000 !important;
}

/* Max ~7 opciones visibles; el resto con scroll */
.gy-ui .select2-results > .select2-results__options,
body > .select2-container .select2-results > .select2-results__options,
.select2-container--open .select2-results > .select2-results__options {
	max-height: 252px !important; /* 7 x ~36px */
	overflow-y: auto !important;
}

.gy-ui .select2-results__option {
	font-size: 14px !important;
	padding: 8px 12px !important;
}

/* Nativos: siempre dropdown (size=1). No expandir a listbox. */
.gy-ui select.gy-control.gy-select--open,
.gy-ui select.gy-select.gy-select--open,
.gy-modal-root select.gy-select--open,
select.gy-control.gy-select--open,
select.gy-select.gy-select--open {
	position: static !important;
	z-index: auto !important;
	height: auto !important;
	max-height: none !important;
	overflow: visible !important;
	box-shadow: none !important;
}

.gy-ui .select2-search--dropdown .select2-search__field {
	min-height: 38px !important;
	padding: 8px 10px !important;
	border: 1px solid #c6d0dd !important;
	border-radius: 6px !important;
}

/* Resumen usuario: contenedor #info-usuario + items con gap 11px */
.gy-ui #info-usuario,
.gy-ui #info-usuario.gy-user-summary {
	display: flex !important;
	flex-wrap: nowrap !important;
	align-items: stretch !important;
	margin: 10px 2px !important;
	border: 1px solid #E6E9ED !important;
	padding: 5px 15px !important;
	background-color: #ffffff !important;
	border-radius: 0.75rem !important;
	box-shadow: none !important;
	overflow: hidden !important;
	width: auto !important;
	max-width: 100% !important;
	gap: 0 !important;
	text-align: left !important;
}

.gy-ui .gy-user-summary,
.gy-ui .gy-summary.gy-summary--user {
	display: flex !important;
	flex-wrap: nowrap !important;
	align-items: stretch !important;
	gap: 0 !important;
	overflow: hidden !important;
	border: 1px solid #E6E9ED !important;
	border-radius: 0.75rem !important;
	background-color: #ffffff !important;
	box-shadow: none !important;
	width: 100% !important;
	text-align: left !important;
}

/* Resumen con 3 campos (Pare/Siga) — flex igual */
.gy-ui .gy-user-summary:has(> .gy-user-summary__item:nth-child(3):last-child) {
	grid-template-columns: none !important;
}

.gy-ui .gy-user-summary__item,
.gy-ui .gy-summary.gy-summary--user .gy-summary__item {
	display: flex !important;
	flex: 1 1 0 !important;
	flex-direction: row !important;
	justify-content: flex-start !important;
	align-items: center !important;
	min-width: 0 !important;
	gap: 11px !important;
	padding: 8px 10px !important;
	background: transparent !important;
	border: 0 !important;
	border-right: 1px solid #E6E9ED !important;
	box-shadow: none !important;
	float: none !important;
	text-align: left !important;
}

.gy-ui .gy-user-summary__icon,
.gy-ui .gy-summary.gy-summary--user .gy-icon-box--small {
	display: inline-flex !important;
	width: 34px !important;
	height: 34px !important;
	min-width: 34px !important;
	min-height: 34px !important;
	max-width: 34px !important;
	max-height: 34px !important;
	flex: 0 0 34px !important;
	align-items: center !important;
	justify-content: center !important;
	border: 1px solid #bfdcff !important;
	border-radius: 0.5rem !important;
	color: #0868d7 !important;
	background: #eaf3ff !important;
	box-sizing: border-box !important;
}

.gy-ui .gy-user-summary__icon svg,
.gy-ui .gy-summary.gy-summary--user .gy-icon-box--small svg {
	width: 17px !important;
	height: 17px !important;
	display: block !important;
	flex: 0 0 17px !important;
	overflow: visible !important;
	margin: 0 !important;
	stroke-linecap: round !important;
	stroke-linejoin: round !important;
	max-width: none !important;
	max-height: none !important;
}

.gy-icon-sprite {
	position: absolute !important;
	width: 0 !important;
	height: 0 !important;
	overflow: hidden !important;
}

.gy-ui .gy-icon-box svg,
.gy-ui .gy-section__icon svg,
.gy-ui .gy-kpi-card__icon svg,
.gy-ui .gy-journey-step__icon svg,
.gy-ui .gy-page-header__icon svg {
	display: block !important;
	overflow: visible !important;
	margin: 0 auto !important;
	stroke-linecap: round !important;
	stroke-linejoin: round !important;
	max-width: none !important;
	max-height: none !important;
}

.gy-ui .gy-user-summary__text,
.gy-ui .gy-summary.gy-summary--user .gy-summary__item > div {
	display: flex !important;
	flex-direction: column !important;
	align-items: flex-start !important;
	justify-content: center !important;
	min-width: 0 !important;
	flex: 1 1 auto !important;
	text-align: left !important;
	width: auto !important;
}

.gy-ui .gy-user-summary__item:last-child,
.gy-ui .gy-summary.gy-summary--user .gy-summary__item:last-child {
	border-right: 0 !important;
}

.gy-ui .gy-user-summary__label,
.gy-ui .gy-summary.gy-summary--user .gy-summary__label {
	display: block !important;
	margin: 0 !important;
	padding: 0 !important;
	color: #667085 !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
	line-height: 1.3 !important;
	text-align: left !important;
	width: 100% !important;
}

.gy-ui .gy-user-summary__value,
.gy-ui .gy-summary.gy-summary--user .gy-summary__value {
	display: block !important;
	margin: 3px 0 0 !important;
	padding: 0 !important;
	color: #0d1b33 !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 1.35 !important;
	word-break: break-word !important;
	min-height: 0 !important;
	text-align: left !important;
	width: 100% !important;
}

.gy-ui .gy-user-summary__value#email,
.gy-ui .gy-user-summary__value--email,
.gy-ui .gy-summary.gy-summary--user .gy-summary__value--email {
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
	max-width: 100% !important;
}

/* Control (date/select) dentro del resumen: compacto y alineado al centro como el value */
.gy-ui .gy-user-summary__item:has(input.gy-control),
.gy-ui .gy-user-summary__item:has(select.gy-control),
.gy-ui .gy-user-summary__item:has(.gy-control-wrap) {
	align-items: center !important;
}

.gy-ui .gy-user-summary__item:has(input.gy-control) > .gy-user-summary__text,
.gy-ui .gy-user-summary__item:has(select.gy-control) > .gy-user-summary__text,
.gy-ui .gy-user-summary__item:has(.gy-control-wrap) > .gy-user-summary__text {
	justify-content: center !important;
	gap: 3px !important;
}

.gy-ui .gy-user-summary__item .gy-control,
.gy-ui .gy-user-summary__item input.gy-control,
.gy-ui .gy-user-summary__item select.gy-control,
.gy-ui .gy-user-summary__item input[type="date"].gy-control {
	margin: 0 !important;
	margin-top: 0 !important;
	min-height: 32px !important;
	height: 32px !important;
	padding: 2px 10px !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
	align-self: stretch !important;
}

.gy-ui .gy-user-summary__item .gy-control-wrap {
	margin: 0 !important;
	width: 100% !important;
}

.gy-ui .gy-form-grid {
	gap: 18px !important;
	row-gap: 20px !important;
}

.gy-ui .gy-field {
	min-width: 0 !important;
}

@media (max-width: 980px) {
	.gy-ui .gy-user-summary,
	.gy-ui .gy-summary.gy-summary--user,
	.gy-ui #info-usuario {
		flex-wrap: wrap !important;
	}

	.gy-ui .gy-user-summary__item,
	.gy-ui .gy-summary.gy-summary--user .gy-summary__item {
		flex: 1 1 45% !important;
	}

	.gy-ui .gy-user-summary__item:nth-child(2),
	.gy-ui .gy-summary.gy-summary--user .gy-summary__item:nth-child(2) {
		border-right: 0 !important;
	}

	.gy-ui .gy-user-summary__item:nth-child(-n+2),
	.gy-ui .gy-summary.gy-summary--user .gy-summary__item:nth-child(-n+2) {
		border-bottom: 1px solid #E6E9ED !important;
	}
}

@media (max-width: 640px) {
	.gy-ui .gy-user-summary,
	.gy-ui .gy-summary.gy-summary--user,
	.gy-ui #info-usuario {
		flex-direction: column !important;
	}

	.gy-ui .gy-user-summary__item,
	.gy-ui .gy-summary.gy-summary--user .gy-summary__item {
		flex: 1 1 auto !important;
		border-right: 0 !important;
		border-bottom: 1px solid #E6E9ED !important;
	}

	.gy-ui .gy-user-summary__item:last-child,
	.gy-ui .gy-summary.gy-summary--user .gy-summary__item:last-child {
		border-bottom: 0 !important;
	}
}

.gy-ui .gy-control-wrap--icon > .gy-control,
.gy-ui .gy-control-wrap--icon > input.gy-control,
.gy-ui .gy-control-wrap--icon > select.gy-control {
	padding-left: 50px !important;
}

.gy-ui select.gy-control {
	-webkit-appearance: menulist !important;
	appearance: auto !important;
	padding-right: 28px !important;
}

.gy-ui textarea.gy-control {
	min-height: 132px !important;
	resize: vertical !important;
	padding-left: 13px !important;
}

.gy-ui .gy-date-time {
	display: grid !important;
	grid-template-columns: minmax(220px, 1fr) 120px 120px !important;
	gap: 12px !important;
}

.gy-ui .gy-date-time .gy-control {
	padding-left: 13px !important;
}

.gy-ui .gy-field {
	display: flex !important;
	min-width: 0 !important;
	flex-direction: column !important;
	gap: 0 !important;
	float: none !important;
	justify-content: flex-end !important;
}

/* hide() / style=display:none pierde contra display:flex !important de .gy-field */
.gy-ui .gy-field.gy-is-hidden,
.gy-modal-root .gy-field.gy-is-hidden {
	display: none !important;
}

.gy-ui .gy-field.gy-field--choice,
.gy-modal-root .gy-field.gy-field--choice {
	align-items: flex-start !important;
}

/* hide() de jQuery pierde contra display:flex !important de .gy-field */
.gy-ui #tipo-oportunidad-container.gy-is-hidden {
	display: none !important;
}

.gy-ui #tipo-oportunidad-checklist input:disabled {
	pointer-events: none;
}

.gy-ui #tipo-oportunidad-checklist input:disabled ~ span {
	opacity: 0.45;
}

/* .gy-filter-switches NO lleva .gy-field a proposito (ver bloque GY Switch) */

.gy-ui .gy-label {
	display: inline-flex !important;
	margin-bottom: 7px !important;
	color: #05245c !important;
	font-size: 13px !important;
	font-weight: 700 !important;
}

/* Preguntas de formulario (gy-help-text usado como label) */
.gy-ui #registroFormulario .gy-help-text,
.gy-ui .gy-ui--form #registroFormulario .gy-help-text {
	color: #05245c !important;
	font-size: 13px !important;
	font-weight: 700 !important;
}

/* Cards lado a lado en gy-form-grid: misma altura (la mas alta manda) */
.gy-ui .gy-form-grid {
	align-items: stretch !important;
}

.gy-ui .gy-form-grid > .gy-card {
	display: flex !important;
	flex-direction: column !important;
	height: 100% !important;
	min-height: 100% !important;
}

.gy-ui .gy-form-grid > .gy-card > .gy-card__body {
	flex: 1 1 auto !important;
}

.gy-ui .has-error .gy-control {
	border-color: #c73232 !important;
}

.gy-ui .has-success .gy-control {
	border-color: #198754 !important;
}

/* Controles con valor distinto al placeholder (ingresos) */
.gy-ui select.gy-control.is-filled,
.gy-ui select.form-data.is-filled,
.gy-ui input.gy-control.is-filled,
.gy-ui textarea.gy-control.is-filled,
.gy-ui input.form-data.is-filled,
.gy-ui textarea.form-data.is-filled {
	border-color: #198754 !important;
	background-color: #f1fbf5 !important;
	box-shadow: 0 0 0 3px rgba(25, 135, 84, 0.12) !important;
}

.gy-ui .gy-control-wrap--filled > .gy-control,
.gy-ui .gy-control-wrap--filled > select.gy-control,
.gy-ui .gy-control-wrap--filled > input.gy-control,
.gy-ui .gy-control-wrap.has-success > .gy-control {
	border-color: #198754 !important;
	background-color: #f1fbf5 !important;
}

.gy-ui .gy-control-wrap--filled .gy-control-icon,
.gy-ui .gy-control-wrap.has-success .gy-control-icon {
	color: #198754 !important;
	border-right-color: #a7e0c0 !important;
}

.gy-ui .gy-control-wrap--filled .gy-control-icon::before,
.gy-ui .gy-control-wrap.has-success .gy-control-icon::before {
	background: transparent !important;
	color: #198754 !important;
	border-color: #198754 !important;
}

.gy-ui .select2-container.gy-select2--filled .select2-selection--single,
.gy-ui .select2-container.gy-select2--filled .select2-selection--multiple {
	border-color: #198754 !important;
	background-color: #f1fbf5 !important;
	box-shadow: 0 0 0 3px rgba(25, 135, 84, 0.12) !important;
}

/*
 * Error gana a is-filled/has-success (misma especificidad + orden).
 * Sin esto el borde verde !important oculta el rojo de BV.
 */
.gy-ui .gy-field.has-error > .gy-label,
.gy-ui .has-error > .gy-label {
	color: #c73232 !important;
}
.gy-ui .gy-field.has-error .gy-control,
.gy-ui .gy-field.has-error select.gy-control,
.gy-ui .gy-field.has-error select.form-data,
.gy-ui .gy-field.has-error input.gy-control,
.gy-ui .gy-field.has-error textarea.gy-control,
.gy-ui .gy-field.has-error .gy-control.is-filled,
.gy-ui .gy-field.has-error select.gy-control.is-filled,
.gy-ui .gy-field.has-error select.form-data.is-filled,
.gy-ui .gy-field.has-error .gy-control-wrap > .gy-control,
.gy-ui .gy-field.has-error .gy-control-wrap--filled > .gy-control,
.gy-ui .gy-field.has-error .gy-control-wrap.has-success > .gy-control {
	border-color: #c73232 !important;
	background-color: #fff5f5 !important;
	box-shadow: 0 0 0 3px rgba(199, 50, 50, 0.12) !important;
}
.gy-ui .gy-field.has-error .gy-control-wrap .gy-control-icon,
.gy-ui .gy-field.has-error .gy-control-wrap--filled .gy-control-icon,
.gy-ui .gy-field.has-error .gy-control-wrap.has-success .gy-control-icon {
	color: #c73232 !important;
	border-right-color: #f0b4b4 !important;
}
.gy-ui .gy-field.has-error .select2-container .select2-selection--single,
.gy-ui .gy-field.has-error .select2-container .select2-selection--multiple,
.gy-ui .gy-field.has-error .select2-container.gy-select2--filled .select2-selection--single,
.gy-ui .gy-field.has-error .select2-container.gy-select2--filled .select2-selection--multiple {
	border-color: #c73232 !important;
	background-color: #fff5f5 !important;
	box-shadow: 0 0 0 3px rgba(199, 50, 50, 0.12) !important;
}

/* Evitar que overflow del card recorte el mensaje rojo */
.gy-ui.gy-ui--form .gy-card,
.gy-ui.gy-ui--form .gy-card__body {
	overflow: visible !important;
}

.gy-ui .help-block {
	color: #c73232 !important;
	font-size: 12px !important;
	margin: 6px 0 0 !important;
}
.gy-ui .gy-field.has-error > .help-block,
.gy-ui .gy-field.has-error > small.help-block,
.gy-ui .gy-field > .help-block[data-bv-result="INVALID"],
.gy-ui .gy-field > small.help-block[data-bv-result="INVALID"] {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	color: #c73232 !important;
}

/* Un solo mensaje rojo visible: evita que notEmpty + stringLength se superpongan */
.gy-ui .gy-field > .help-block[data-bv-result="INVALID"] ~ .help-block[data-bv-result="INVALID"],
.gy-ui .gy-field > small.help-block[data-bv-result="INVALID"] ~ small.help-block[data-bv-result="INVALID"],
.gy-ui .gy-field > .help-block[data-bv-result="INVALID"] ~ small.help-block[data-bv-result="INVALID"],
.gy-ui .gy-field > small.help-block[data-bv-result="INVALID"] ~ .help-block[data-bv-result="INVALID"],
.gy-modal-root .gy-field > .help-block[data-bv-result="INVALID"] ~ .help-block[data-bv-result="INVALID"],
.gy-modal-root .gy-field > small.help-block[data-bv-result="INVALID"] ~ small.help-block[data-bv-result="INVALID"],
.gy-modal-root .gy-field > .help-block[data-bv-result="INVALID"] ~ small.help-block[data-bv-result="INVALID"],
.gy-modal-root .gy-field > small.help-block[data-bv-result="INVALID"] ~ .help-block[data-bv-result="INVALID"] {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	height: 0 !important;
	overflow: hidden !important;
	pointer-events: none !important;
}

/*
 * Reserva fija para mensajes BootstrapValidator (.help-block).
 * Evita que inputs/selects "salten" al mostrar/ocultar el error
 * y desalineen la grilla.
 */
.gy-ui .gy-form-grid > .gy-field:has(> .gy-control-wrap),
.gy-ui .gy-form-grid > .gy-field:has(> .gy-control),
.gy-ui .gy-form-grid > .gy-field:has(> select),
.gy-ui .gy-form-grid > .gy-field:has(> input),
.gy-ui .gy-form-grid > .gy-field:has(> textarea),
.gy-ui #registroFormulario .gy-field:has(> .gy-control-wrap),
.gy-ui #registroFormulario .gy-field:has(> .gy-control),
.gy-ui #registroFormulario .gy-field:has(> select),
.gy-ui #registroFormulario .gy-field:has(> input),
.gy-ui #registroFormulario .gy-field:has(> textarea),
.gy-modal-root .gy-form-grid > .gy-field:has(> .gy-control-wrap),
.gy-modal-root .gy-form-grid > .gy-field:has(> .gy-control),
.gy-modal-root .gy-form-grid > .gy-field:has(> select),
.gy-modal-root .gy-form-grid > .gy-field:has(> input) {
	position: relative !important;
	padding-bottom: 22px !important;
	box-sizing: border-box !important;
}

/* Tarjeta usuario externos: grilla 3 cols, inputs alineados (no bajar por checkbox empresa) */
.gy-ui .gy-form-grid.gy-form-grid--usuario {
	align-items: start !important;
}

.gy-ui .gy-form-grid.gy-form-grid--usuario > .gy-field {
	display: flex !important;
	flex-direction: column !important;
	justify-content: flex-start !important;
	align-self: start !important;
	min-width: 0 !important;
}

.gy-ui .gy-form-grid.gy-form-grid--usuario > .gy-field > .gy-label {
	display: flex !important;
	align-items: flex-end !important;
	min-height: 36px !important;
	margin: 0 0 6px !important;
	line-height: 1.25 !important;
}

.gy-ui .gy-form-grid.gy-form-grid--usuario > .gy-field > .gy-control-wrap,
.gy-ui .gy-form-grid.gy-form-grid--usuario > .gy-field > .gy-control-swap {
	height: 42px !important;
	min-height: 42px !important;
	max-height: 42px !important;
	margin: 0 !important;
	flex: 0 0 42px !important;
}

.gy-ui .gy-form-grid.gy-form-grid--usuario > .gy-field > .gy-control-wrap > .gy-control,
.gy-ui .gy-form-grid.gy-form-grid--usuario > .gy-field > .gy-control-swap .gy-control {
	height: 42px !important;
	min-height: 42px !important;
	max-height: 42px !important;
}

.gy-ui .gy-form-grid.gy-form-grid--usuario > .gy-field .gy-field-extra {
	margin-top: 12px !important;
	max-width: 100% !important;
}

/* Correo | Telefono: misma altura de label e input (lado a lado) */
.gy-ui .gy-form-grid > .gy-field.gy-field--correo,
.gy-ui .gy-form-grid > .gy-field.gy-field--telefono,
.gy-ui #registroFormulario .gy-field.gy-field--correo,
.gy-ui #registroFormulario .gy-field.gy-field--telefono {
	display: flex !important;
	flex-direction: column !important;
	justify-content: flex-start !important;
	align-self: start !important;
	padding-bottom: 22px !important;
}

.gy-ui .gy-field.gy-field--correo > .gy-label,
.gy-ui .gy-field.gy-field--telefono > .gy-label {
	display: flex !important;
	align-items: flex-end !important;
	min-height: 36px !important;
	margin: 0 0 6px !important;
	line-height: 1.25 !important;
}

.gy-ui .gy-field.gy-field--correo > .gy-control-wrap,
.gy-ui .gy-field.gy-field--telefono > .gy-control-wrap {
	height: 42px !important;
	min-height: 42px !important;
	max-height: 42px !important;
	margin: 0 !important;
}

.gy-ui .gy-field.gy-field--correo > .gy-control-wrap > .gy-control,
.gy-ui .gy-field.gy-field--telefono > .gy-control-wrap > .gy-control {
	height: 42px !important;
	min-height: 42px !important;
	max-height: 42px !important;
}

.gy-ui .gy-form-grid > .gy-field:has(.gy-action-group),
.gy-ui .gy-form-grid > .gy-field.gy-field--action,
.gy-modal-root .gy-form-grid > .gy-field:has(.gy-action-group),
.gy-modal-root .gy-form-grid > .gy-field.gy-field--action {
	padding-bottom: 0 !important;
}

/* Toolbar filtro+accion: sin slot BV para alinear input/select con boton */
.gy-ui .gy-form-grid:has(> .gy-field.gy-field--action) > .gy-field,
.gy-ui .gy-form-grid:has(> .gy-field:has(.gy-action-group)) > .gy-field,
.gy-modal-root .gy-form-grid:has(> .gy-field.gy-field--action) > .gy-field,
.gy-modal-root .gy-form-grid:has(> .gy-field:has(.gy-action-group)) > .gy-field {
	padding-bottom: 0 !important;
}

.gy-ui .gy-field > .help-block,
.gy-ui .gy-field > small.help-block,
.gy-modal-root .gy-field > .help-block,
.gy-modal-root .gy-field > small.help-block {
	position: absolute !important;
	left: 0;
	right: 0;
	bottom: 2px;
	margin: 0 !important;
	min-height: 16px;
	line-height: 1.35 !important;
	font-size: 12px !important;
	color: #c73232 !important;
	z-index: 2;
	pointer-events: none;
}

.gy-ui .div-loader {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 60;
	background: rgba(255, 255, 255, 0.72);
}

.gy-ui .select-empresa {
	padding-left: 13px !important;
}

/* Swap input/select empresa: mismo hueco, sin apilar */
.gy-ui .gy-control-swap {
	position: relative !important;
	width: 100% !important;
	min-height: 44px !important;
}

.gy-ui .gy-control-swap > .gy-control-wrap,
.gy-ui .gy-control-swap > select.gy-control {
	width: 100% !important;
}

/* Checks custom: centrados con texto, sin salto al activar (Alloy/Bootstrap) */
.gy-ui .gy-choice,
.gy-modal-root .gy-choice {
	position: relative !important;
	display: flex !important;
	align-items: center !important;
	gap: 9px !important;
	min-height: 28px !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	font-size: 13px !important;
	font-weight: 400 !important;
	line-height: 1.35 !important;
	color: #344054 !important;
	cursor: pointer !important;
}

.gy-ui .gy-choice > input[type="checkbox"],
.gy-ui .gy-choice > input[type="radio"],
.gy-modal-root .gy-choice > input[type="checkbox"],
.gy-modal-root .gy-choice > input[type="radio"] {
	position: absolute !important;
	left: 0 !important;
	top: 0 !important;
	width: 1px !important;
	height: 1px !important;
	margin: 0 !important;
	padding: 0 !important;
	opacity: 0 !important;
	pointer-events: none !important;
	float: none !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	border: 0 !important;
	box-shadow: none !important;
	background: transparent !important;
}

.gy-ui .gy-choice__box,
.gy-modal-root .gy-choice__box {
	position: relative !important;
	display: inline-flex !important;
	width: 18px !important;
	height: 18px !important;
	flex: 0 0 18px !important;
	align-items: center !important;
	justify-content: center !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 1.5px solid #9aa7b8 !important;
	border-radius: 4px !important;
	background: #ffffff !important;
	box-sizing: border-box !important;
	transition: border-color 140ms ease, background 140ms ease !important;
}

.gy-ui .gy-choice input:checked + .gy-choice__box,
.gy-modal-root .gy-choice input:checked + .gy-choice__box {
	border-color: #0868d7 !important;
	background: #0868d7 !important;
}

.gy-ui .gy-choice input[type="checkbox"]:checked + .gy-choice__box::after,
.gy-modal-root .gy-choice input[type="checkbox"]:checked + .gy-choice__box::after {
	width: 8px !important;
	height: 4px !important;
	border: solid #ffffff !important;
	border-width: 0 0 2px 2px !important;
	content: "" !important;
	transform: rotate(-45deg) translateY(-1px) !important;
	margin: 0 !important;
	padding: 0 !important;
}

.gy-ui .gy-choice > span:last-child,
.gy-modal-root .gy-choice > span:last-child {
	flex: 1 1 auto !important;
	min-width: 0 !important;
}

.gy-ui .gy-inline-choices {
	display: flex !important;
	flex-wrap: wrap !important;
	align-items: center !important;
	gap: 12px 20px !important;
}

.gy-ui .gy-inline-choices > .gy-choice,
.gy-ui .gy-inline-choices > .gy-choice--radio {
	flex: 0 0 auto !important;
	width: auto !important;
	max-width: none !important;
}

.gy-ui .gy-inline-choices > .gy-choice > span:last-child {
	flex: 0 0 auto !important;
}

.gy-ui .gy-choice--radio .gy-choice__box {
	border-radius: 50% !important;
}

.gy-ui .gy-sip-precursor-cards {
	align-items: stretch !important;
	width: 100% !important;
}

.gy-ui .gy-sip-precursor-cards > .gy-card {
	display: flex !important;
	flex-direction: column !important;
	min-width: 0 !important;
	height: 100% !important;
}

.gy-ui .gy-sip-precursor-cards > .gy-card > .gy-card__body {
	flex: 1 1 auto !important;
}

.gy-ui .gy-sip-precursor-cards .gy-check-grid,
.gy-ui .gy-sip-precursor-cards .gy-check-grid--single,
.gy-ui .gy-sip-precursor-cards .gy-check-grid--three {
	grid-template-columns: 1fr !important;
}

@media (max-width: 1024px) {
	.gy-ui .gy-sip-precursor-cards > .gy-col-6 {
		grid-column: span 12 !important;
	}
}

.gy-ui .gy-page-header {
	margin-bottom: 0 !important;
}

.gy-ui .gy-alert-bar {
	position: relative !important;
	margin-bottom: 0 !important;
	padding: 13px 40px 13px 16px !important;
	border: 1px solid #d9b900 !important;
	border-left: 5px solid #d9b900 !important;
	border-radius: 10px !important;
	color: #4d4200 !important;
	background: #fff8c8 !important;
	box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05) !important;
	font-size: 13px !important;
	line-height: 1.45 !important;
}

.gy-ui .gy-alert-bar__icon {
	display: inline-grid !important;
	width: 22px !important;
	height: 22px !important;
	flex: 0 0 22px !important;
	align-items: center !important;
	justify-items: center !important;
	border-radius: 50% !important;
	color: #ffffff !important;
	background: #064fae !important;
	font-size: 12px !important;
	font-weight: 800 !important;
}

.gy-ui .gy-alert-bar__close {
	position: absolute !important;
	top: 8px !important;
	right: 8px !important;
	display: inline-flex !important;
	width: 28px !important;
	height: 28px !important;
	align-items: center !important;
	justify-content: center !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 8px !important;
	color: #4d4200 !important;
	background: transparent !important;
	font-size: 20px !important;
	line-height: 1 !important;
	cursor: pointer !important;
	box-shadow: none !important;
}

.gy-ui .gy-alert-bar.is-dismissed {
	display: none !important;
}

.gy-ui .gy-card + .gy-form-grid,
.gy-ui .gy-form-grid + .gy-card,
.gy-ui .gy-card + .gy-form-main-grid,
.gy-ui .gy-form-main-grid + .gy-card,
.gy-ui .gy-card + .gy-card {
	margin-top: 18px !important;
}

/* En grilla lado a lado el gap ya separa; no empujar la segunda card hacia abajo */
.gy-ui .gy-form-grid > .gy-card + .gy-card,
.gy-ui .gy-form-grid > [class*="gy-col-"] + [class*="gy-col-"],
.gy-ui .gy-sip-precursor-cards > .gy-card + .gy-card {
	margin-top: 0 !important;
}

.gy-ui .gy-section-gap {
	margin-top: 18px !important;
}

.gy-ui .gy-card__header {
	padding: 16px 20px !important;
	min-height: 62px !important;
	background: #ffffff !important;
	border-bottom: 1px solid #d8e0eb !important;
}

.gy-ui .gy-card__body {
	padding: 20px 22px 22px 22px !important;
}

.gy-ui .gy-form-actions {
	margin-top: 4px !important;
	padding: 16px 18px !important;
	border-radius: 18px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: flex-end !important;
	flex-wrap: wrap !important;
	gap: 12px !important;
	transition: border-radius 120ms ease !important;
}

.gy-ui .gy-form-actions__hint {
	margin-right: auto !important;
}

.gy-ui .gy-action-group,
.gy-ui .gy-page-actions,
.gy-ui .gy-page-header__actions,
.gy-ui .gy-filter-actions,
.gy-ui .gy-card__header-actions,
.gy-ui .gy-form-footer,
.gy-ui .gy-form-footer__right,
.gy-ui .gy-modal-inline-actions,
.gy-ui .gy-info-card__footer {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-end !important;
	flex-wrap: wrap !important;
	gap: 10px !important;
	margin-left: auto !important;
}

.gy-ui .gy-form-footer {
	justify-content: flex-end !important;
}

.gy-ui--list .gy-filter-actions,
.gy-ui.gy-ui--list .gy-filter-actions,
.gy-ui.gy-ui--mis .gy-filter-actions {
	justify-content: flex-end !important;
}

/* Cuando la barra sticky sigue la pantalla: esquinas inferiores cuadradas */
.gy-ui .gy-form-actions.is-stuck {
	border-bottom-left-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}

.gy-ui .gy-form-actions__edge {
	height: 1px !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	pointer-events: none !important;
}

.gy-ui .gy-button {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 9px !important;
	min-height: 44px !important;
	padding: 10px 18px !important;
	border-radius: 9px !important;
	font-size: 14px !important;
	font-weight: 750 !important;
	font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif !important;
	line-height: 1.2 !important;
	text-shadow: none !important;
	box-shadow: none !important;
	cursor: pointer !important;
}

.gy-ui .gy-button svg {
	width: 18px !important;
	height: 18px !important;
	flex: 0 0 18px !important;
	display: block !important;
	stroke: currentColor !important;
	fill: none !important;
}

/* Primary: azul solido maqueta (#0868d7), texto/icono blancos, sin gradiente */
.gy-ui .gy-button--primary,
.gy-ui button.gy-button--primary {
	color: #ffffff !important;
	background: #0868d7 !important;
	background-image: none !important;
	border: 1px solid #0868d7 !important;
	box-shadow: 0 7px 16px rgba(6, 79, 174, 0.20) !important;
}

.gy-ui .gy-button--primary:hover,
.gy-ui .gy-button--primary:focus,
.gy-ui button.gy-button--primary:hover {
	color: #ffffff !important;
	background: #1677e8 !important;
	background-image: none !important;
	border-color: #1677e8 !important;
}

.gy-ui .gy-button--primary svg,
.gy-ui .gy-button--primary span {
	color: #ffffff !important;
}

.gy-ui .gy-button--secondary,
.gy-ui button.gy-button--secondary {
	color: #064fae !important;
	background: #ffffff !important;
	background-image: none !important;
	border: 1px solid #b9cbe1 !important;
}

.gy-ui .gy-button--secondary:hover,
.gy-ui button.gy-button--secondary:hover {
	color: #064fae !important;
	background: #f5f9ff !important;
	background-image: none !important;
}

@media (max-width: 1350px) {
	.gy-ui .gy-form-main-grid {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 1024px) {
	.gy-ui .gy-content {
		padding: 22px !important;
	}

	.gy-ui .gy-form-main-grid {
		grid-template-columns: 1fr !important;
	}

	.gy-ui .gy-col-8,
	.gy-ui .gy-col-7,
	.gy-ui .gy-col-6,
	.gy-ui .gy-col-5,
	.gy-ui .gy-col-4,
	.gy-ui .gy-col-3,
	.gy-ui .gy-col-2 {
		grid-column: span 12 !important;
	}

	.gy-ui .gy-date-time {
		grid-template-columns: 1fr 110px 110px !important;
	}
}

@media (max-width: 768px) {
	.gy-ui.gy-ui--form {
		padding: 10px 6px 24px;
	}

	.gy-ui .gy-content {
		padding: 16px !important;
	}

	.gy-ui .gy-card__header,
	.gy-ui .gy-card__body {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}
}

/* === Lista / DataTables (Mis registros) === */
.gy-ui .gy-table-wrap {
	width: 100% !important;
	overflow-x: auto !important;
	border: 1px solid #d8e0eb !important;
	border-radius: 12px !important;
	background: #fff !important;
}

.gy-ui table.gy-table,
.gy-ui table.dataTable.gy-table {
	width: 100% !important;
	min-width: 760px !important;
	border-collapse: collapse !important;
	margin: 0 !important;
	background: #fff !important;
}

.gy-ui table.gy-table thead th,
.gy-ui table.dataTable.gy-table thead th,
.gy-ui table.gy-table tfoot th {
	padding: 13px 14px !important;
	border-bottom: 1px solid #d8e0eb !important;
	color: #05245c !important;
	background: #f5f9ff !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	text-align: left !important;
}

.gy-ui table.gy-table tbody td,
.gy-ui table.dataTable.gy-table tbody td {
	padding: 13px 14px !important;
	border-bottom: 1px solid #d8e0eb !important;
	color: #14213d !important;
	font-size: 13px !important;
	vertical-align: middle !important;
	background: transparent !important;
}

.gy-ui table.gy-table tbody tr:hover td {
	background: #fbfdff !important;
}

.gy-ui .dataTables_wrapper .dataTables_length,
.gy-ui .dataTables_wrapper .dataTables_filter,
.gy-ui .dataTables_wrapper .dataTables_info {
	color: #667085 !important;
	font-size: 13px !important;
	font-family: inherit !important;
	padding: 12px 8px !important;
	float: none !important;
	text-align: left !important;
}

/* Barra inferior DT: info izq + paginacion (Siguiente) der en todas las tablas gy */
.gy-ui .dataTables_wrapper {
	clear: both !important;
}

.gy-ui .dataTables_wrapper:after {
	content: "" !important;
	display: table !important;
	clear: both !important;
}

.gy-ui .dataTables_wrapper .dataTables_info {
	display: block !important;
	float: left !important;
	width: auto !important;
	max-width: 55% !important;
	padding-top: 14px !important;
	padding-bottom: 8px !important;
	text-align: left !important;
}

.gy-ui .dataTables_wrapper .dataTables_paginate {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	justify-content: flex-end !important;
	float: right !important;
	clear: none !important;
	width: auto !important;
	max-width: 60% !important;
	margin-left: auto !important;
	padding-top: 8px !important;
	padding-bottom: 8px !important;
	padding-left: 8px !important;
	padding-right: 8px !important;
	text-align: right !important;
	white-space: nowrap !important;
	overflow-x: auto !important;
	overflow-y: hidden !important;
	color: #667085 !important;
	font-size: 13px !important;
	font-family: inherit !important;
}

/* Reset total: evita caja blanca + bloque gris anidado (DT + Bootstrap) */
.gy-ui .dataTables_wrapper .dataTables_paginate .pagination {
	display: inline-flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	justify-content: flex-end !important;
	gap: 6px !important;
	margin: 0 0 0 auto !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	list-style: none !important;
	float: none !important;
	text-align: right !important;
	white-space: nowrap !important;
}

.gy-ui .dataTables_wrapper .dataTables_paginate .pagination > li,
.gy-ui .dataTables_wrapper .dataTables_paginate span {
	display: inline-flex !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	float: none !important;
}

.gy-ui .dataTables_wrapper .dataTables_paginate .paginate_button,
.gy-ui .dataTables_wrapper .dataTables_paginate .pagination > li > a,
.gy-ui .dataTables_wrapper .dataTables_paginate .pagination > li > span {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-width: 34px !important;
	height: 34px !important;
	margin: 0 !important;
	padding: 0 12px !important;
	border: 1px solid #d8e0eb !important;
	border-radius: 8px !important;
	color: #064fae !important;
	background: #ffffff !important;
	background-image: none !important;
	box-shadow: none !important;
	outline: 0 !important;
	font-size: 13px !important;
	font-weight: 650 !important;
	font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif !important;
	line-height: 1 !important;
	text-decoration: none !important;
	cursor: pointer !important;
}

.gy-ui .dataTables_wrapper .dataTables_paginate .paginate_button:hover,
.gy-ui .dataTables_wrapper .dataTables_paginate .pagination > li > a:hover,
.gy-ui .dataTables_wrapper .dataTables_paginate .pagination > li > span:hover {
	color: #073b87 !important;
	background: #f5f9ff !important;
	background-image: none !important;
	border-color: #bfdcff !important;
}

.gy-ui .dataTables_wrapper .dataTables_paginate .paginate_button.current,
.gy-ui .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover,
.gy-ui .dataTables_wrapper .dataTables_paginate .pagination > li.active > a,
.gy-ui .dataTables_wrapper .dataTables_paginate .pagination > li.active > a:hover,
.gy-ui .dataTables_wrapper .dataTables_paginate .pagination > li.active > span {
	color: #ffffff !important;
	background: #0868d7 !important;
	background-image: none !important;
	border-color: #0868d7 !important;
	cursor: default !important;
}

.gy-ui .dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.gy-ui .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.gy-ui .dataTables_wrapper .dataTables_paginate .pagination > li.disabled > a,
.gy-ui .dataTables_wrapper .dataTables_paginate .pagination > li.disabled > span {
	color: #98a2b3 !important;
	background: #ffffff !important;
	background-image: none !important;
	border-color: #e4e7ec !important;
	cursor: not-allowed !important;
	opacity: 1 !important;
}

.gy-ui .dataTables_wrapper .dataTables_paginate .ellipsis {
	min-width: 28px !important;
	border: 0 !important;
	background: transparent !important;
	color: #667085 !important;
	cursor: default !important;
}

.gy-ui .dataTables_wrapper .dataTables_length select,
.gy-ui .dataTables_wrapper .dataTables_filter input {
	min-height: 44px !important;
	height: 44px !important;
	margin-left: 8px !important;
	padding: 10px 13px !important;
	border: 1px solid #c6d0dd !important;
	border-radius: 8px !important;
	color: #14213d !important;
	background: #fff !important;
	font-size: 14px !important;
	font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif !important;
	line-height: 1.4 !important;
	box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05) !important;
	vertical-align: middle !important;
	box-sizing: border-box !important;
}

/* Mostrar N: misma escala tipografica / alto que filtros gy-control */
.gy-ui--list .dataTables_wrapper .dataTables_length {
	display: flex !important;
	align-items: center !important;
	flex-wrap: wrap !important;
	gap: 8px !important;
	float: none !important;
	width: 100% !important;
	padding: 4px 0 14px !important;
	margin: 0 !important;
	color: #667085 !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	line-height: 1.4 !important;
}

.gy-ui--list .dataTables_wrapper .dataTables_length label {
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
	margin: 0 !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	color: #667085 !important;
}

.gy-ui--list .dataTables_wrapper .dataTables_length select {
	display: inline-block !important;
	width: 75px !important;
	min-width: 75px !important;
	max-width: 75px !important;
}

@media (max-width: 768px) {
	.gy-ui .dataTables_wrapper .dataTables_info,
	.gy-ui .dataTables_wrapper .dataTables_paginate {
		display: block !important;
		float: none !important;
		width: 100% !important;
		max-width: 100% !important;
		text-align: left !important;
	}

	.gy-ui .dataTables_wrapper .dataTables_paginate {
		float: right !important;
		width: auto !important;
		max-width: 60% !important;
		margin-left: auto !important;
		text-align: right !important;
		white-space: nowrap !important;
	}

	.gy-ui .dataTables_wrapper .dataTables_paginate .pagination {
		flex-wrap: nowrap !important;
		justify-content: flex-end !important;
		margin-left: auto !important;
		white-space: nowrap !important;
	}
}

.gy-ui .gy-table__actions {
	display: inline-flex !important;
	gap: 4px !important;
	align-items: center !important;
	flex-wrap: nowrap !important;
	white-space: nowrap !important;
}

.gy-ui .gy-button--small {
	min-height: 34px !important;
	padding: 7px 12px !important;
	font-size: 13px !important;
}

.gy-ui .gy-button--icon {
	width: 34px !important;
	padding: 0 !important;
}

/* Lista admin: ID izq, acciones der (dropdown con iconos) */
.gy-ui--list .gy-table-wrap--admin {
	overflow-x: auto !important;
	-webkit-overflow-scrolling: touch;
	max-width: 100% !important;
}

.gy-ui--list .gy-table-wrap--admin .dataTables_wrapper {
	width: 100% !important;
	max-width: 100% !important;
}

.gy-ui--list table.gy-table--admin,
.gy-ui--list table.dataTable.gy-table--admin,
.gy-ui.gy-ui--list table.gy-table.gy-table--admin {
	width: 100% !important;
	min-width: 1420px !important;
	max-width: none !important;
	table-layout: auto !important;
	border-collapse: collapse !important;
	font-family: inherit !important;
}

/* Celdas alineadas a maqueta .gy-table--dense (sin tocar columna Acciones).
 * font-size en px: evita rem x root Liferay (~10px) => 0.8125rem = 8.125px. */
.gy-ui--list table.gy-table--admin thead th,
.gy-ui--list table.gy-table--admin tfoot th,
.gy-ui--list table.dataTable.gy-table--admin thead th,
.gy-ui--list table.dataTable.gy-table--admin tfoot th {
	padding: 11px 10px !important;
	color: #05245c !important;
	background: #f5f9ff !important;
	font-family: inherit !important;
	font-size: 13px !important;
	font-weight: 800 !important;
	letter-spacing: 0.01em !important;
	text-transform: none !important;
	white-space: nowrap !important;
	line-height: 1.25 !important;
	vertical-align: top !important;
}

.gy-ui--list table.gy-table--admin tbody td,
.gy-ui--list table.dataTable.gy-table--admin tbody td {
	padding: 11px 10px !important;
	color: #14213d !important;
	font-family: inherit !important;
	font-size: 13px !important;
	font-weight: 400 !important;
	line-height: 1.45 !important;
	vertical-align: top !important;
	height: auto !important;
}

.gy-ui--list .gy-cell-clip {
	display: block !important;
	max-width: 100% !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
}

.gy-ui--list table.gy-table--admin .gy-badge {
	min-height: 24px !important;
	padding: 3px 8px !important;
	font-size: 13px !important;
	gap: 6px !important;
}

.gy-ui--list table.gy-table--admin .gy-badge::before {
	width: 5px !important;
	height: 5px !important;
}

/* ID: no sticky; ancho al contenido */
.gy-ui--list table.gy-table--admin th.gy-col-id,
.gy-ui--list table.gy-table--admin td.gy-col-id,
.gy-ui--list table.gy-table--admin td.gy-cell-id,
.gy-ui--list table.dataTable.gy-table--admin th.gy-col-id,
.gy-ui--list table.dataTable.gy-table--admin td.gy-col-id,
.gy-ui--list table.dataTable.gy-table--admin td.gy-cell-id {
	position: static !important;
	left: auto !important;
	z-index: auto !important;
	width: 1% !important;
	min-width: 0 !important;
	max-width: none !important;
	white-space: nowrap !important;
	box-shadow: none !important;
}

/* Acciones sticky derecha */
.gy-ui--list table.gy-table--admin th.gy-col-actions,
.gy-ui--list table.gy-table--admin td.gy-col-actions,
.gy-ui--list table.gy-table--admin th:last-child,
.gy-ui--list table.gy-table--admin td:last-child,
.gy-ui--list table.dataTable.gy-table--admin th:last-child,
.gy-ui--list table.dataTable.gy-table--admin td:last-child {
	position: sticky !important;
	right: 0 !important;
	z-index: 5 !important;
	width: 104px !important;
	min-width: 104px !important;
	max-width: 120px !important;
	padding: 6px 10px !important;
	text-align: center !important;
	vertical-align: middle !important;
	background: #fff !important;
	box-shadow: -6px 0 10px rgba(15, 54, 104, 0.08) !important;
	overflow: visible !important;
	white-space: nowrap !important;
}

.gy-ui--list table.gy-table--admin thead th:last-child,
.gy-ui--list table.gy-table--admin tfoot th:last-child,
.gy-ui--list table.dataTable.gy-table--admin thead th:last-child {
	background: #f5f9ff !important;
	z-index: 6 !important;
}

.gy-ui--list table.gy-table--admin tbody tr:hover td:last-child {
	background: #fbfdff !important;
}

.gy-ui--list .gy-actions-menu {
	position: relative !important;
	display: inline-flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	justify-content: center !important;
	width: 28px !important;
	height: 28px !important;
	overflow: visible !important;
}

.gy-ui--list .gy-actions-menu__toggle,
.gy-ui--list .gy-actions-menu__toggle.gy-button,
.gy-ui--list .gy-actions-menu__toggle.gy-button--icon,
.gy-ui--list .gy-actions-menu__toggle.gy-button--small {
	width: 28px !important;
	min-width: 28px !important;
	max-width: 28px !important;
	height: 28px !important;
	min-height: 28px !important;
	max-height: 28px !important;
	padding: 0 !important;
	margin: 0 !important;
	border-radius: 7px !important;
	line-height: 1 !important;
}

.gy-ui--list .gy-actions-menu__toggle svg {
	width: 14px !important;
	height: 14px !important;
	display: block !important;
	margin: 0 auto !important;
}

/* Nunca mostrar items dentro de la celda (solo el flyout del body) */
.gy-ui--list .gy-actions-menu__panel,
.gy-ui--list td.gy-col-actions .gy-actions-menu__item,
.gy-ui--list td.gy-col-actions .gy-actions-menu__panel {
	display: none !important;
	visibility: hidden !important;
	height: 0 !important;
	width: 0 !important;
	overflow: hidden !important;
	position: absolute !important;
	left: -9999px !important;
}

/* Panel real: fuera de la tabla, sin Bootstrap dropdown */
.gy-actions-flyout {
	display: none !important;
	position: fixed !important;
	z-index: 20000 !important;
	box-sizing: border-box !important;
	width: 230px !important;
	min-width: 230px !important;
	max-width: 260px !important;
	padding: 6px !important;
	border: 1px solid #d8e0eb !important;
	border-radius: 10px !important;
	background: #fff !important;
	box-shadow: 0 14px 32px rgba(15, 54, 104, 0.22) !important;
	grid-template-columns: 1fr !important;
	pointer-events: auto !important;
}

.gy-actions-flyout.is-open,
.gy-actions-flyout.is-open[hidden] {
	display: grid !important;
	gap: 2px !important;
	visibility: visible !important;
	pointer-events: auto !important;
}

.gy-actions-menu__item {
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 8px 10px !important;
	border: 0 !important;
	border-radius: 8px !important;
	background: transparent !important;
	color: #14213d !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	text-align: left !important;
	cursor: pointer !important;
	line-height: 1.2 !important;
	min-height: 0 !important;
	height: auto !important;
	white-space: nowrap !important;
	box-sizing: border-box !important;
}

.gy-actions-flyout .gy-actions-menu__item {
	display: flex !important;
	width: 100% !important;
}

.gy-actions-menu__item:hover {
	background: #eaf3ff !important;
	color: #064fae !important;
}

.gy-actions-menu__item--danger {
	color: #b42318 !important;
}

.gy-actions-menu__item--danger:hover {
	background: #fff0f0 !important;
	color: #b42318 !important;
}

.gy-actions-menu__icon {
	display: inline-flex !important;
	width: 16px !important;
	height: 16px !important;
	flex: 0 0 16px !important;
	align-items: center !important;
	justify-content: center !important;
	color: inherit !important;
}

.gy-actions-menu__icon svg {
	width: 15px !important;
	height: 15px !important;
}

.gy-ui--list .gy-card > .gy-card__body {
	padding-left: 12px !important;
	padding-right: 12px !important;
}

.gy-ui .gy-button--soft {
	color: #064fae !important;
	background: #eaf3ff !important;
	background-image: none !important;
	border: 1px solid #bfdcff !important;
}

.gy-ui .gy-badge {
	display: inline-flex !important;
	min-height: 26px !important;
	align-items: center !important;
	gap: 6px !important;
	padding: 4px 9px !important;
	border-radius: 999px !important;
	font-size: 12px !important;
	font-weight: 700 !important;
}

.gy-ui .gy-badge--success {
	color: #137a48 !important;
	background: #e9f7ef !important;
}

.gy-ui .gy-badge--neutral {
	color: #667085 !important;
	background: #f7f9fc !important;
}

/*
 * Bootstrap modal + gy-modal: centrado en viewport.
 * IMPORTANTE: el theme Gent comenta display:none de .modal en bootstrap.min.css,
 * por eso los modales quedan visibles al cargar. Forzamos oculto salvo .in/.show.
 */
.gy-modal-root.modal,
.gy-ui .modal.fade.gy-modal-root,
.modal.fade.gy-modal-root {
	display: none !important;
	position: fixed !important;
	top: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	left: 0 !important;
	top: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	left: 0 !important;
	z-index: 1050 !important;
	overflow: hidden !important;
	outline: 0 !important;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.gy-modal-root.modal.in,
.gy-modal-root.modal.show,
.gy-ui .modal.fade.gy-modal-root.in,
.gy-ui .modal.fade.gy-modal-root.show,
.modal.fade.gy-modal-root.in,
.modal.fade.gy-modal-root.show {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 16px !important;
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto !important;
}

.gy-modal-root .modal-dialog {
	position: relative !important;
	display: inline-block !important;
	width: 1380px !important;
	max-width: calc(100vw - 32px) !important;
	max-height: calc(100vh - 32px) !important;
	margin: 0 auto !important;
	padding: 0 !important;
	text-align: left;
	vertical-align: middle;
	float: none !important;
	transform: none !important;
	-webkit-transform: none !important;
}

.gy-modal-root .modal-dialog.modal-lg {
	max-width: calc(100vw - 32px) !important;
	width: 1380px !important;
}

/* Compact de mantenedores = mismo ancho que registro */
.gy-modal-root--compact .modal-dialog,
.gy-modal-root--compact .modal-dialog.modal-lg,
.gy-modal-root--detalle .modal-dialog {
	max-width: calc(100vw - 32px) !important;
	width: 1380px !important;
}

.gy-modal-root .modal-content.gy-modal--compact,
.gy-modal-root .modal-content.gy-modal--wide {
	width: 100% !important;
	max-width: none !important;
}

.gy-modal-root .modal-content.gy-modal {
	display: flex !important;
	flex-direction: column !important;
	width: 100% !important;
	max-height: calc(100vh - 32px) !important;
	border: 1px solid rgba(255, 255, 255, 0.7) !important;
	border-radius: 18px !important;
	box-shadow: 0 24px 70px rgba(3, 27, 70, 0.28) !important;
	overflow: hidden !important;
	background: #fff !important;
	font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif !important;
	font-size: 14px !important;
	line-height: 1.45 !important;
	color: #14213d !important;
	-webkit-font-smoothing: antialiased;
}

/* Neutraliza tipografia/espaciado Bootstrap dentro del modal maqueta */
.gy-modal-root .gy-modal__title,
.gy-modal-root h1.gy-modal__title {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	color: #05245c !important;
	font-family: inherit !important;
	font-size: 24px !important;
	font-weight: 700 !important;
	line-height: 1.18 !important;
	letter-spacing: -0.25px !important;
}

.gy-modal-root .gy-modal__subtitle,
.gy-modal-root p.gy-modal__subtitle {
	margin: 5px 0 0 !important;
	padding: 0 !important;
	color: #667085 !important;
	font-size: 13px !important;
	font-weight: 400 !important;
	line-height: 1.45 !important;
}

.gy-modal-root .gy-section__title,
.gy-modal-root h2.gy-section__title {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	color: #073b87 !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 1.3 !important;
}

.gy-modal-root .gy-section__copy,
.gy-modal-root p.gy-section__copy {
	margin: 3px 0 0 !important;
	padding: 0 !important;
	color: #667085 !important;
	font-size: 12px !important;
	line-height: 1.4 !important;
}

.gy-modal-root .gy-modal__header {
	display: flex !important;
	min-height: 76px !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 18px !important;
	padding: 18px 22px !important;
	border-bottom: 1px solid #d8e0eb !important;
	background: #fff !important;
}

.gy-modal-root .modal-body.gy-modal__body {
	display: flex !important;
	flex-direction: column !important;
	gap: 18px !important;
	flex: 1 1 auto !important;
	min-height: 0 !important;
	max-height: none !important;
	overflow-y: auto !important;
	padding: 22px !important;
	background: #f7f9fc !important;
}

.gy-modal-root .gy-modal__body > .gy-summary-grid,
.gy-modal-root .gy-modal__body > .gy-summary,
.gy-modal-root .gy-modal__body > .gy-section,
.gy-modal-root .gy-modal__body > .gy-info-card,
.gy-modal-root .gy-modal__body > .gy-alert-bar,
.gy-modal-root .gy-modal__body > .gy-two-column,
.gy-modal-root .gy-modal__body > .gy-table-shell,
.gy-modal-root .gy-modal__body > .gy-card {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	flex: 0 0 auto !important;
}

.gy-modal-root .gy-section {
	margin-top: 0 !important;
}

.gy-modal-root .gy-modal__footer.modal-footer {
	display: flex !important;
	flex-wrap: wrap !important;
	align-items: center !important;
	justify-content: flex-end !important;
	gap: 10px !important;
	min-height: 72px !important;
	margin: 0 !important;
	padding: 14px 22px !important;
	border-top: 1px solid #d8e0eb !important;
	background: #fff !important;
	text-align: right !important;
}

.gy-modal-root .gy-modal__footer,
.gy-modal-root footer.gy-modal__footer,
.aui .gy-modal-root .gy-modal__footer,
.aui .gy-modal-root footer.gy-modal__footer,
.gy-modal-root .modal-footer {
	display: flex !important;
	flex-wrap: wrap !important;
	align-items: center !important;
	justify-content: flex-end !important;
	gap: 10px !important;
	text-align: right !important;
}

.gy-modal-root .gy-modal__footer--between {
	justify-content: flex-end !important;
}

.gy-modal-root .gy-modal__footer .gy-button {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	min-height: 42px !important;
	margin: 0 !important;
	float: none !important;
}

.gy-modal-root .gy-modal__footer .gy-button--primary {
	color: #fff !important;
	background: #0868d7 !important;
	border-color: #0868d7 !important;
	box-shadow: 0 5px 14px rgba(8, 104, 215, 0.18) !important;
}

.gy-modal-root .gy-modal__footer .gy-button--primary svg,
.gy-modal-root .gy-modal__footer .gy-button--primary span {
	color: #fff !important;
	stroke: currentColor !important;
}

.gy-modal-root .gy-modal__footer .gy-button svg {
	width: 18px !important;
	height: 18px !important;
	flex: 0 0 18px !important;
}

.gy-modal-root .gy-modal__close.close {
	float: none !important;
	opacity: 1 !important;
	text-shadow: none !important;
	font-size: inherit !important;
	font-weight: inherit !important;
	line-height: 1 !important;
}

.gy-modal-root .gy-summary-grid {
	margin: 0 !important;
}

.gy-modal-root .gy-section {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.gy-modal-root .gy-table-shell .gy-table {
	min-width: 640px !important;
	margin: 0 !important;
	background: #fff !important;
}

.gy-modal-root .gy-table-shell .gy-table th,
.gy-modal-root .gy-table-shell .gy-table td {
	padding: 11px 12px !important;
	border-bottom: 1px solid #d8e0eb !important;
	vertical-align: top !important;
}

.gy-modal-root .gy-table-shell .gy-table th {
	color: #073b87 !important;
	background: #f7f9fc !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.025em !important;
}

.gy-modal-root .gy-table-shell .gy-table td {
	color: #14213d !important;
	font-size: 12px !important;
	background: transparent !important;
}

.gy-modal-root .gy-status {
	display: inline-flex !important;
	align-items: center !important;
	gap: 6px !important;
	padding: 4px 9px !important;
	border-radius: 999px !important;
	font-size: 12px !important;
	font-weight: 750 !important;
}

.gy-modal-root .gy-modal__header,
.gy-modal-root .gy-modal__footer {
	flex: 0 0 auto !important;
	background: #fff;
}

/* Modal detalle: ancho maqueta (= registro) */
.gy-modal-root--detalle .modal-dialog {
	max-width: calc(100vw - 32px) !important;
	width: 1380px !important;
}

.gy-modal-root--detalle .modal-content.gy-modal--wide {
	width: 100% !important;
}

/* Modal calificar: compacto, footer siempre visible, sin scroll fantasma */
.gy-modal-root--rate .modal-dialog {
	max-width: 540px !important;
	width: 540px !important;
}

/* Confirmacion eliminar: permanece compacto */
.gy-modal-root--eliminar .modal-dialog,
.gy-modal-root--eliminar .modal-dialog.modal-lg,
.gy-modal-root--confirm .modal-dialog,
.gy-modal-root--confirm .modal-dialog.modal-lg {
	max-width: 540px !important;
	width: 540px !important;
}

.gy-modal-root--eliminar .modal-content.gy-modal,
.gy-modal-root--eliminar .modal-content.gy-modal--wide,
.gy-modal-root--eliminar .modal-content.gy-modal--compact,
.gy-modal-root--confirm .modal-content.gy-modal,
.gy-modal-root--confirm .modal-content.gy-modal--wide,
.gy-modal-root--confirm .modal-content.gy-modal--compact {
	width: 100% !important;
	max-width: none !important;
}

.gy-modal-root--rate .modal-content.gy-modal {
	max-height: calc(100vh - 32px) !important;
	width: 100% !important;
}

.gy-modal-root--rate .gy-modal__header {
	padding: 16px 20px !important;
	min-height: 0 !important;
}

.gy-modal-root--rate .gy-modal__title {
	font-size: 20px !important;
	line-height: 1.25 !important;
}

.gy-modal-root--rate .gy-modal__subtitle {
	margin-top: 4px !important;
	font-size: 13px !important;
}

.gy-modal-root--rate .modal-body.gy-modal__body {
	display: flex !important;
	flex-direction: column !important;
	gap: 18px !important;
	overflow-x: hidden !important;
	overflow-y: auto !important;
	background: #f7f9fc !important;
	padding: 16px 18px !important;
}

.gy-modal-root--rate .gy-rate-card {
	margin: 0 !important;
	border: 1px solid #d8e0eb !important;
	border-radius: 14px !important;
	background: #fff !important;
	box-shadow: 0 1px 2px rgba(15, 54, 104, 0.04) !important;
}

.gy-modal-root--rate .gy-rate-card .gy-info-card__header {
	padding: 12px 16px !important;
}

.gy-modal-root--rate .gy-rate-card .gy-info-card__body {
	padding: 14px 16px 16px !important;
}

.gy-modal-root--rate .gy-rate-card__comment {
	margin-top: 14px !important;
}

.gy-modal-root--rate .gy-rate-card__comment .gy-label {
	display: block !important;
	margin-bottom: 7px !important;
	color: #667085 !important;
	font-size: 12px !important;
	font-weight: 650 !important;
}

.gy-modal-root--rate .gy-rate-card__comment .gy-control {
	width: 100% !important;
	min-height: 132px !important;
	height: auto !important;
	max-height: none !important;
	resize: vertical !important;
	overflow: auto !important;
	border-radius: 10px !important;
	box-shadow: none !important;
	field-sizing: content;
}

/* Acciones Cancelar / Calificar siempre visibles en la card */
.gy-modal-root--rate .gy-rate-card__actions,
.gy-modal-root--rate .gy-info-card__footer.gy-rate-card__actions {
	display: flex !important;
	visibility: visible !important;
	opacity: 1 !important;
	align-items: center !important;
	justify-content: flex-end !important;
	flex-wrap: wrap !important;
	gap: 10px !important;
	min-height: 64px !important;
	margin: 0 !important;
	padding: 14px 16px !important;
	border-top: 1px solid #d8e0eb !important;
	background: #fbfcfe !important;
}

.gy-modal-root--rate .gy-rate-card__actions .gy-button {
	display: inline-flex !important;
	visibility: visible !important;
	opacity: 1 !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	min-height: 42px !important;
	margin: 0 !important;
	padding: 9px 16px !important;
	border-radius: 9px !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	cursor: pointer !important;
}

.gy-modal-root--rate .gy-rate-card__actions .gy-button svg {
	width: 18px !important;
	height: 18px !important;
	flex: 0 0 18px !important;
}

.gy-modal-root--rate .gy-rate-card__actions .gy-button--secondary {
	color: #073b87 !important;
	background: #fff !important;
	border: 1px solid #c6d0dd !important;
	box-shadow: none !important;
}

.gy-modal-root--rate .gy-rate-card__actions .gy-button--primary {
	color: #fff !important;
	background: #0868d7 !important;
	border: 1px solid #0868d7 !important;
	box-shadow: 0 5px 14px rgba(8, 104, 215, 0.18) !important;
}

.gy-modal-root--rate .gy-rate-card__actions .gy-button--primary svg,
.gy-modal-root--rate .gy-rate-card__actions .gy-button--primary span {
	color: #fff !important;
	stroke: #fff !important;
}

/* Footer del modal calificar: Cancelar + Guardar (no ocultar; botones viven aqui) */
.gy-modal-root--rate .gy-modal__footer.modal-footer {
	display: flex !important;
	visibility: visible !important;
	opacity: 1 !important;
	flex-wrap: wrap !important;
	align-items: center !important;
	justify-content: flex-end !important;
	gap: 10px !important;
	min-height: 72px !important;
	margin: 0 !important;
	padding: 14px 20px !important;
	border-top: 1px solid #d8e0eb !important;
	background: #fff !important;
}

.gy-modal-root--rate .gy-modal__footer .gy-button {
	display: inline-flex !important;
	visibility: visible !important;
	opacity: 1 !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	min-height: 42px !important;
	margin: 0 !important;
	padding: 9px 16px !important;
	border-radius: 9px !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	float: none !important;
}

.gy-modal-root--rate .gy-modal__footer .gy-button--secondary {
	color: #073b87 !important;
	background: #fff !important;
	border: 1px solid #c6d0dd !important;
	box-shadow: none !important;
}

.gy-modal-root--rate .gy-modal__footer .gy-button--primary {
	color: #fff !important;
	background: #0868d7 !important;
	border: 1px solid #0868d7 !important;
	box-shadow: 0 5px 14px rgba(8, 104, 215, 0.18) !important;
}

.gy-modal-root--rate .gy-modal__footer .gy-button--primary svg,
.gy-modal-root--rate .gy-modal__footer .gy-button--primary span {
	color: #fff !important;
	stroke: #fff !important;
}

.gy-modal-root--rate .gy-modal__footer .gy-button svg {
	width: 18px !important;
	height: 18px !important;
	flex: 0 0 18px !important;
}

/* Estrellas: misma logica original (float right 20% + :before) */
.gy-modal-root--rate .gy-rate-scale {
	width: 100% !important;
	margin: 2px auto 4px !important;
	overflow: hidden !important;
}

.gy-modal-root--rate .gy-rate-scale .rating {
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
	font-size: inherit !important;
	float: none !important;
}

.gy-modal-root--rate .gy-rate-scale .rating input.radio-btn,
.gy-modal-root--rate .gy-rate-scale .rating input.hide {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	border: 0 !important;
	opacity: 0 !important;
	clip: rect(0, 0, 0, 0) !important;
	float: right !important;
}

.gy-modal-root--rate .gy-rate-scale .label-valorizacion {
	position: relative !important;
	display: block !important;
	float: right !important;
	width: 20% !important;
	margin: 0 0 6px !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: #c2ccd8 !important;
	font-size: 40px !important;
	line-height: 1 !important;
	text-align: center !important;
	text-decoration: none !important;
	cursor: pointer !important;
	-webkit-transition: color .18s ease !important;
	transition: color .18s ease !important;
}

.gy-modal-root--rate .gy-rate-scale .span-valorizacion {
	display: block !important;
	float: right !important;
	width: 20% !important;
	margin: 0 0 2px !important;
	padding: 0 3px !important;
	color: #667085 !important;
	font-size: 12px !important;
	font-weight: 650 !important;
	line-height: 1.25 !important;
	text-align: center !important;
	white-space: nowrap !important;
}

.gy-modal-root--rate .gy-rate-scale .rating > label:hover,
.gy-modal-root--rate .gy-rate-scale .rating > label:hover ~ label,
.gy-modal-root--rate .gy-rate-scale .rating > input.radio-btn:checked ~ label {
	color: transparent !important;
}

.gy-modal-root--rate .gy-rate-scale .rating > label:hover:before,
.gy-modal-root--rate .gy-rate-scale .rating > label:hover ~ label:before,
.gy-modal-root--rate .gy-rate-scale .rating > input.radio-btn:checked ~ label:before {
	position: absolute !important;
	left: 0 !important;
	right: 0 !important;
	top: 0 !important;
	content: "\2605" !important;
	color: #0868d7 !important;
	cursor: pointer !important;
	text-shadow: 0 1px 0 rgba(8, 104, 215, 0.12) !important;
}

/* Neutraliza media queries de valorizacion.css (float:left rompe la escala) */
@media (max-width: 770px) {
	.gy-modal-root--rate .gy-rate-scale .label-valorizacion {
		font-size: 34px !important;
		margin-bottom: 4px !important;
	}

	.gy-modal-root--rate .gy-rate-scale .span-valorizacion {
		float: right !important;
		font-size: 11px !important;
		margin-bottom: 2px !important;
		white-space: normal !important;
	}
}

@media (max-width: 600px) {
	.gy-modal-root--rate .gy-rate-scale .label-valorizacion {
		font-size: 28px !important;
	}

	.gy-modal-root--rate .gy-rate-scale .span-valorizacion {
		float: right !important;
		font-size: 10px !important;
		white-space: normal !important;
	}

	.gy-modal-root--rate .gy-rate-card__actions,
	.gy-modal-root--rate .gy-modal__footer.modal-footer {
		justify-content: stretch !important;
	}

	.gy-modal-root--rate .gy-rate-card__actions .gy-button,
	.gy-modal-root--rate .gy-modal__footer .gy-button {
		flex: 1 1 auto !important;
	}
}

/* === MODAL-ROOT OUTSIDE .gy-ui (registro) === */
/* Los modales viven fuera de .gy-ui; sin esto botones/inputs/switch quedan con estilo Alloy/Bootstrap */

.gy-modal-root,
.gy-modal-root * {
	box-sizing: border-box !important;
}

.gy-modal-root .gy-button,
.gy-modal-root button.gy-button {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	min-height: 42px !important;
	margin: 0 !important;
	padding: 9px 16px !important;
	border: 1px solid transparent !important;
	border-radius: 9px !important;
	float: none !important;
	font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	text-decoration: none !important;
	text-shadow: none !important;
	cursor: pointer !important;
	background-image: none !important;
}

.gy-modal-root .gy-button svg {
	width: 18px !important;
	height: 18px !important;
	flex: 0 0 18px !important;
	display: block !important;
	stroke: currentColor !important;
	fill: none !important;
}

.gy-modal-root .gy-button--primary,
.gy-modal-root button.gy-button--primary {
	color: #ffffff !important;
	background: #0868d7 !important;
	background-image: none !important;
	border-color: #0868d7 !important;
	box-shadow: 0 5px 14px rgba(8, 104, 215, 0.18) !important;
}

.gy-modal-root .gy-button--primary:hover,
.gy-modal-root .gy-button--primary:focus {
	color: #ffffff !important;
	background: #1677e8 !important;
	border-color: #1677e8 !important;
}

.gy-modal-root .gy-button--primary svg,
.gy-modal-root .gy-button--primary span {
	color: #ffffff !important;
	stroke: currentColor !important;
}

.gy-modal-root .gy-button--secondary,
.gy-modal-root button.gy-button--secondary {
	color: #064fae !important;
	background: #ffffff !important;
	background-image: none !important;
	border: 1px solid #b9cbe1 !important;
	box-shadow: none !important;
}

.gy-modal-root .gy-button--secondary:hover {
	color: #064fae !important;
	background: #f5f9ff !important;
}

.gy-modal-root .gy-button--danger,
.gy-modal-root button.gy-button--danger {
	color: #ffffff !important;
	background: #d92d20 !important;
	background-image: none !important;
	border-color: #d92d20 !important;
}

.gy-modal-root .gy-button--danger:hover {
	background: #b42318 !important;
	border-color: #b42318 !important;
	color: #ffffff !important;
}

.gy-modal-root .gy-button--soft {
	color: #064fae !important;
	background: #eaf3ff !important;
	border: 1px solid #bfdcff !important;
}

.gy-modal-root .gy-button--small {
	min-height: 36px !important;
	padding: 7px 12px !important;
	font-size: 13px !important;
}

/* Botones de accion dentro de cards (gestionar): siempre visibles */
.gy-modal-root .gy-info-card__footer {
	display: flex !important;
	visibility: visible !important;
	opacity: 1 !important;
	align-items: center !important;
	justify-content: flex-end !important;
	flex-wrap: wrap !important;
	gap: 10px !important;
}

.gy-modal-root .gy-info-card__footer .gy-button {
	display: inline-flex !important;
	visibility: visible !important;
	opacity: 1 !important;
}

.gy-modal-root .gy-control,
.gy-modal-root input.gy-control,
.gy-modal-root select.gy-control,
.gy-modal-root textarea.gy-control,
.gy-modal-root .gy-input,
.gy-modal-root .gy-select,
.gy-modal-root .gy-textarea {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	min-height: 42px !important;
	margin: 0 !important;
	padding: 8px 11px !important;
	border: 1px solid #c9d4e3 !important;
	border-radius: 10px !important;
	background: #fff !important;
	background-image: none !important;
	color: #14213d !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	line-height: 1.35 !important;
	box-shadow: none !important;
	float: none !important;
}

.gy-modal-root textarea.gy-control,
.gy-modal-root .gy-textarea {
	min-height: 96px !important;
	resize: vertical !important;
}

.gy-modal-root input[type="checkbox"].gy-control,
.gy-modal-root input[type="checkbox"] {
	width: auto !important;
	max-width: none !important;
	min-height: 0 !important;
	height: auto !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	display: inline-block !important;
}

.gy-modal-root .gy-field.defecto {
	align-items: flex-start !important;
}

.gy-modal-root .gy-control:focus,
.gy-modal-root .gy-input:focus,
.gy-modal-root .gy-select:focus,
.gy-modal-root .gy-textarea:focus {
	border-color: #0868d7 !important;
	box-shadow: 0 0 0 3px rgba(8, 104, 215, 0.15) !important;
	outline: none !important;
}

.gy-modal-root .gy-readonly {
	display: block !important;
	min-height: 42px !important;
	padding: 10px 12px !important;
	border: 1px solid #e4ebf3 !important;
	border-radius: 10px !important;
	background: #f7f9fc !important;
	color: #14213d !important;
	font-size: 14px !important;
	font-weight: 600 !important;
}

/* =========================================================
 * GY Switch (componente) + .gy-filter-switches (layout filtros)
 * Layout base: goodyear-pantallas-restantes.css
 * Theme nearmiss.css: no duplicar
 * ========================================================= */
.aui .gy-ui .gy-switch,
.aui .gy-modal-root .gy-switch,
.gy-ui .gy-switch,
.gy-modal-root .gy-switch {
	position: relative !important;
	display: inline-flex !important;
	flex-direction: row !important;
	align-items: center !important;
	justify-content: flex-start !important;
	gap: 9px !important;
	width: auto !important;
	max-width: none !important;
	min-height: 28px !important;
	margin: 0 !important;
	float: none !important;
	cursor: pointer !important;
	user-select: none !important;
}

.aui .gy-ui .gy-switch input[type="hidden"],
.aui .gy-modal-root .gy-switch input[type="hidden"],
.gy-ui .gy-switch input[type="hidden"],
.gy-modal-root .gy-switch input[type="hidden"] {
	display: none !important;
}

.aui .gy-ui .gy-switch input[type="checkbox"],
.aui .gy-modal-root .gy-switch input[type="checkbox"],
.gy-ui .gy-switch input[type="checkbox"],
.gy-modal-root .gy-switch input[type="checkbox"] {
	position: absolute !important;
	opacity: 0 !important;
	width: 1px !important;
	height: 1px !important;
	margin: 0 !important;
	pointer-events: none !important;
}

.aui .gy-ui .gy-switch__track,
.aui .gy-modal-root .gy-switch__track,
.gy-ui .gy-switch__track,
.gy-modal-root .gy-switch__track {
	position: relative !important;
	display: inline-block !important;
	width: 46px !important;
	height: 26px !important;
	flex: 0 0 46px !important;
	border-radius: 999px !important;
	background: #c7cfdb !important;
	box-shadow: inset 0 0 0 1px rgba(15, 54, 104, 0.06) !important;
	transition: background 150ms ease !important;
}

.aui .gy-ui .gy-switch__track::after,
.aui .gy-modal-root .gy-switch__track::after,
.gy-ui .gy-switch__track::after,
.gy-modal-root .gy-switch__track::after {
	position: absolute !important;
	top: 3px !important;
	left: 3px !important;
	width: 20px !important;
	height: 20px !important;
	border-radius: 50% !important;
	background: #fff !important;
	box-shadow: 0 1px 4px rgba(15, 23, 42, 0.25) !important;
	content: "" !important;
	transition: transform 150ms ease !important;
}

.aui .gy-ui .gy-switch input[type="checkbox"]:checked + .gy-switch__track,
.aui .gy-ui .gy-switch input[type="checkbox"]:checked ~ .gy-switch__track,
.aui .gy-modal-root .gy-switch input[type="checkbox"]:checked + .gy-switch__track,
.aui .gy-modal-root .gy-switch input[type="checkbox"]:checked ~ .gy-switch__track,
.gy-ui .gy-switch input[type="checkbox"]:checked + .gy-switch__track,
.gy-ui .gy-switch input[type="checkbox"]:checked ~ .gy-switch__track,
.gy-modal-root .gy-switch input[type="checkbox"]:checked + .gy-switch__track,
.gy-modal-root .gy-switch input[type="checkbox"]:checked ~ .gy-switch__track {
	background: #0868d7 !important;
}

.aui .gy-ui .gy-switch input[type="checkbox"]:checked + .gy-switch__track::after,
.aui .gy-ui .gy-switch input[type="checkbox"]:checked ~ .gy-switch__track::after,
.aui .gy-modal-root .gy-switch input[type="checkbox"]:checked + .gy-switch__track::after,
.aui .gy-modal-root .gy-switch input[type="checkbox"]:checked ~ .gy-switch__track::after,
.gy-ui .gy-switch input[type="checkbox"]:checked + .gy-switch__track::after,
.gy-ui .gy-switch input[type="checkbox"]:checked ~ .gy-switch__track::after,
.gy-modal-root .gy-switch input[type="checkbox"]:checked + .gy-switch__track::after,
.gy-modal-root .gy-switch input[type="checkbox"]:checked ~ .gy-switch__track::after {
	transform: translateX(20px) !important;
}

.aui .gy-ui .gy-switch__text,
.aui .gy-modal-root .gy-switch__text,
.gy-ui .gy-switch__text,
.gy-modal-root .gy-switch__text {
	color: #667085 !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	line-height: 1.3 !important;
	white-space: nowrap !important;
}

/* Filtros: switches hijo directo del grid (fila completa). No anidar en row-end. */
.aui .gy-ui .gy-filter-grid > .gy-filter-switches,
.gy-ui .gy-filter-grid > .gy-filter-switches {
	grid-column: 1 / -1 !important;
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: wrap !important;
	align-items: center !important;
	justify-content: flex-start !important;
	gap: 10px 16px !important;
	min-width: 0 !important;
	min-height: 44px !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 4px 0 2px !important;
	box-sizing: border-box !important;
}

.aui .gy-ui .gy-filter-grid > .gy-filter-switches > .gy-switch,
.aui .gy-ui .gy-filter-grid > .gy-filter-switches > label.gy-switch,
.gy-ui .gy-filter-grid > .gy-filter-switches > .gy-switch,
.gy-ui .gy-filter-grid > .gy-filter-switches > label.gy-switch {
	display: inline-flex !important;
	flex: 0 0 auto !important;
	flex-direction: row !important;
	align-items: center !important;
	gap: 8px !important;
	width: auto !important;
	max-width: none !important;
	float: none !important;
	margin: 0 !important;
}

.aui .gy-ui .gy-filter-grid > .gy-filter-switches .gy-switch__text,
.gy-ui .gy-filter-grid > .gy-filter-switches .gy-switch__text {
	font-size: 13px !important;
	white-space: nowrap !important;
}

.aui .gy-ui .gy-filter-grid > .gy-filter-switches > input[type="hidden"],
.gy-ui .gy-filter-grid > .gy-filter-switches > input[type="hidden"] {
	position: absolute !important;
	width: 0 !important;
	height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
}

.aui .gy-ui .gy-filter-grid > .gy-field,
.gy-ui .gy-filter-grid > .gy-field {
	width: 100% !important;
	min-width: 0 !important;
	margin: 0 !important;
}

.aui .gy-ui .gy-filter-grid > .gy-field > .gy-control,
.aui .gy-ui .gy-filter-grid > .gy-field > select.gy-control,
.aui .gy-ui .gy-filter-grid > .gy-field > input.gy-control,
.gy-ui .gy-filter-grid > .gy-field > .gy-control,
.gy-ui .gy-filter-grid > .gy-field > select.gy-control,
.gy-ui .gy-filter-grid > .gy-field > input.gy-control {
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
}

/* Legacy row-end solo fechas */
.aui .gy-ui .gy-filter-grid > .gy-filter-row-end,
.gy-ui .gy-filter-grid > .gy-filter-row-end {
	grid-column: auto / -1 !important;
	display: grid !important;
	grid-template-columns: minmax(140px, 1fr) minmax(140px, 1fr) !important;
	gap: 14px 16px !important;
	align-items: end !important;
	min-width: 0 !important;
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
}

.aui .gy-ui .gy-filter-row-end > .gy-filter-row-end__field,
.gy-ui .gy-filter-row-end > .gy-filter-row-end__field {
	display: flex !important;
	flex-direction: column !important;
	min-width: 0 !important;
	width: 100% !important;
	margin: 0 !important;
}

.aui .gy-ui .gy-filter-row-end > .gy-filter-row-end__field > .gy-control,
.aui .gy-ui .gy-filter-row-end > .gy-filter-row-end__field > input.gy-control,
.gy-ui .gy-filter-row-end > .gy-filter-row-end__field > .gy-control,
.gy-ui .gy-filter-row-end > .gy-filter-row-end__field > input.gy-control {
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
}

@media (max-width: 1100px) {
	.aui .gy-ui .gy-filter-grid > .gy-filter-row-end,
	.gy-ui .gy-filter-grid > .gy-filter-row-end {
		grid-column: 1 / -1 !important;
		grid-template-columns: minmax(120px, 1fr) minmax(120px, 1fr) !important;
	}
}

/* Ocultar Switchery / toggle Gent en pantallas GY */
.aui .gy-ui .switchery,
.aui .gy-ui--list .switchery,
.aui .gy-modal-root .switchery,
.gy-ui .switchery,
.gy-ui--list .switchery,
.gy-modal-root .switchery {
	display: none !important;
}

/*
 * Legacy .switch / .slider.round: mismo tamano que .gy-switch__track (46x26).
 * Antes se ocultaba el slider y quedaban checks de distinto tamano en modales.
 */
.aui .gy-ui label.switch,
.aui .gy-ui .switch,
.aui .gy-modal-root label.switch,
.aui .gy-modal-root .switch,
.gy-ui label.switch,
.gy-ui .switch,
.gy-modal-root label.switch,
.gy-modal-root .switch {
	position: relative !important;
	display: inline-block !important;
	width: 46px !important;
	height: 26px !important;
	min-width: 46px !important;
	min-height: 26px !important;
	max-width: 46px !important;
	max-height: 26px !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	vertical-align: middle !important;
	background: transparent !important;
	box-sizing: border-box !important;
}

.aui .gy-ui .switch input[type="hidden"],
.aui .gy-modal-root .switch input[type="hidden"],
.gy-ui .switch input[type="hidden"],
.gy-modal-root .switch input[type="hidden"] {
	display: none !important;
}

.aui .gy-ui .switch input[type="checkbox"],
.aui .gy-modal-root .switch input[type="checkbox"],
.gy-ui .switch input[type="checkbox"],
.gy-modal-root .switch input[type="checkbox"] {
	position: absolute !important;
	opacity: 0 !important;
	width: 0 !important;
	height: 0 !important;
	margin: 0 !important;
	pointer-events: none !important;
}

.aui .gy-ui .switch .slider,
.aui .gy-ui .switch .slider.round,
.aui .gy-modal-root .switch .slider,
.aui .gy-modal-root .switch .slider.round,
.gy-ui .switch .slider,
.gy-ui .switch .slider.round,
.gy-modal-root .switch .slider,
.gy-modal-root .switch .slider.round {
	position: absolute !important;
	display: block !important;
	top: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	left: 0 !important;
	width: 46px !important;
	height: 26px !important;
	cursor: pointer !important;
	background: #c7cfdb !important;
	border-radius: 999px !important;
	box-shadow: inset 0 0 0 1px rgba(15, 54, 104, 0.06) !important;
	-webkit-transition: background 150ms ease !important;
	transition: background 150ms ease !important;
}

.aui .gy-ui .switch .slider:before,
.aui .gy-ui .switch .slider.round:before,
.aui .gy-modal-root .switch .slider:before,
.aui .gy-modal-root .switch .slider.round:before,
.gy-ui .switch .slider:before,
.gy-ui .switch .slider.round:before,
.gy-modal-root .switch .slider:before,
.gy-modal-root .switch .slider.round:before {
	position: absolute !important;
	content: "" !important;
	top: 3px !important;
	left: 3px !important;
	bottom: auto !important;
	right: auto !important;
	width: 20px !important;
	height: 20px !important;
	border-radius: 50% !important;
	background: #ffffff !important;
	box-shadow: 0 1px 4px rgba(15, 23, 42, 0.25) !important;
	-webkit-transition: transform 150ms ease !important;
	transition: transform 150ms ease !important;
}

.aui .gy-ui .switch input[type="checkbox"]:checked + .slider,
.aui .gy-ui .switch input[type="checkbox"]:checked ~ .slider,
.aui .gy-modal-root .switch input[type="checkbox"]:checked + .slider,
.aui .gy-modal-root .switch input[type="checkbox"]:checked ~ .slider,
.gy-ui .switch input[type="checkbox"]:checked + .slider,
.gy-ui .switch input[type="checkbox"]:checked ~ .slider,
.gy-modal-root .switch input[type="checkbox"]:checked + .slider,
.gy-modal-root .switch input[type="checkbox"]:checked ~ .slider {
	background: #0868d7 !important;
}

.aui .gy-ui .switch input[type="checkbox"]:checked + .slider:before,
.aui .gy-ui .switch input[type="checkbox"]:checked ~ .slider:before,
.aui .gy-modal-root .switch input[type="checkbox"]:checked + .slider:before,
.aui .gy-modal-root .switch input[type="checkbox"]:checked ~ .slider:before,
.gy-ui .switch input[type="checkbox"]:checked + .slider:before,
.gy-ui .switch input[type="checkbox"]:checked ~ .slider:before,
.gy-modal-root .switch input[type="checkbox"]:checked + .slider:before,
.gy-modal-root .switch input[type="checkbox"]:checked ~ .slider:before {
	-webkit-transform: translateX(20px) !important;
	-ms-transform: translateX(20px) !important;
	transform: translateX(20px) !important;
}

.gy-modal-root .gy-confirm {
	display: grid !important;
	justify-items: center !important;
	gap: 8px !important;
	padding: 18px 8px 8px !important;
	text-align: center !important;
}

.gy-modal-root .gy-confirm__icon {
	display: grid !important;
	place-items: center !important;
	width: 56px !important;
	height: 56px !important;
	border-radius: 16px !important;
	color: #d92d20 !important;
	background: #fff0f0 !important;
}

.gy-modal-root .gy-confirm__icon svg {
	width: 26px !important;
	height: 26px !important;
}

.gy-modal-root .gy-confirm__title {
	margin: 0 !important;
	color: #14213d !important;
	font-size: 18px !important;
	font-weight: 800 !important;
}

.gy-modal-root .gy-confirm__copy {
	margin: 0 !important;
	max-width: 360px !important;
	color: #667085 !important;
	font-size: 14px !important;
}

.gy-modal-root .gy-confirm__warning {
	display: inline-flex !important;
	padding: 4px 10px !important;
	border-radius: 999px !important;
	color: #b42318 !important;
	background: #fff0f0 !important;
	font-size: 12px !important;
	font-weight: 700 !important;
}

.gy-modal-root .gy-ishikawa-grid {
	display: grid !important;
	gap: 16px 28px !important;
}

.gy-modal-root--ishikawa .modal-dialog {
	width: 1380px !important;
	max-width: calc(100vw - 32px) !important;
}

.gy-modal-root--ishikawa .modal-content.gy-modal {
	width: 100% !important;
	max-width: none !important;
}

.gy-modal-root--ishikawa .gy-ishikawa-grid {
	grid-template-columns: 1fr 1fr !important;
}

.gy-modal-root .gy-ishikawa-row {
	display: grid !important;
	grid-template-columns: 160px minmax(0, 1fr) !important;
	align-items: center !important;
	gap: 14px !important;
}

.gy-modal-root .gy-ishikawa-label {
	margin: 0 !important;
	color: #14213d !important;
	font-size: 13px !important;
	font-weight: 700 !important;
}

@media (max-width: 900px) {
	.gy-modal-root--ishikawa .gy-ishikawa-grid {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 640px) {
	.gy-modal-root .gy-ishikawa-row {
		grid-template-columns: 1fr !important;
		gap: 6px !important;
	}
}

.gy-ui--list .gy-table-wrap--admin {
	cursor: grab;
}

.gy-ui--list .gy-table-wrap--admin.is-dragging {
	cursor: grabbing !important;
	user-select: none !important;
}

/* ---- Bootstrap buttons -> Goodyear (JS DataTables / legacy) ---- */
.gy-ui .btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 6px !important;
	min-height: 36px !important;
	padding: 8px 14px !important;
	border-radius: 9px !important;
	border: 1px solid transparent !important;
	font-weight: 700 !important;
	font-size: 13px !important;
	line-height: 1.2 !important;
	box-shadow: none !important;
	text-shadow: none !important;
	white-space: nowrap !important;
}
.gy-ui .btn-sm { min-height: 32px !important; padding: 6px 10px !important; font-size: 12px !important; }
.gy-ui .btn-primary,
.gy-ui .btn-info,
.gy-ui .btn-success {
	background: #0868d7 !important;
	border-color: #0868d7 !important;
	color: #fff !important;
}
.gy-ui .btn-default,
.gy-ui .btn-secondary,
.gy-ui .btn-warning {
	background: #fff !important;
	border-color: #d8e0eb !important;
	color: #073b87 !important;
}
.gy-ui .btn-danger {
	background: #c62828 !important;
	border-color: #c62828 !important;
	color: #fff !important;
}
.gy-ui .btn:hover,
.gy-ui .btn:focus { opacity: .92; outline: none !important; }
.gy-ui .form-control,
.gy-ui select.form-data {
	width: 100% !important;
	min-height: 40px !important;
	padding: 8px 12px !important;
	border: 1px solid #d8e0eb !important;
	border-radius: 9px !important;
	background: #fff !important;
	box-shadow: none !important;
}
.gy-ui .input-group-addon { display: none !important; }
.gy-ui .gy-file-input-hidden { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.gy-ui .gy-upload-zone { display: none !important; } /* no drag-drop en importacion */

/* Reportes plataforma */
.gy-ui .gy-report-selector {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 14px !important;
	margin-bottom: 18px !important;
}
.gy-ui .gy-report-type {
	display: grid !important;
	grid-template-columns: auto auto minmax(0, 1fr) !important;
	grid-template-rows: auto auto !important;
	column-gap: 12px !important;
	row-gap: 4px !important;
	align-items: center !important;
	text-align: left !important;
	padding: 16px 18px !important;
	border: 1px solid #d8e0eb !important;
	border-radius: 12px !important;
	background: #fff !important;
	box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05) !important;
	cursor: pointer !important;
}
.gy-ui .gy-report-type.is-active {
	border-color: #5ba3f0 !important;
	box-shadow: 0 0 0 3px rgba(0,94,184,.12) !important;
}
.gy-ui .gy-report-type__number {
	grid-row: span 2;
	width: 56px;
	height: 56px;
	display: grid;
	place-items: center;
	border-radius: 10px;
	background: #eaf3ff;
	color: #064fae;
	font-weight: 800;
	font-size: 20px;
}
.gy-ui .gy-report-type__icon { grid-row: span 2; color: #0868d7; }
.gy-ui .gy-report-type__icon svg { width: 22px; height: 22px; }
.gy-ui .gy-report-type strong { color: #05245c; font-size: 15px; }
.gy-ui .gy-report-type small { color: #667085; font-size: 12px; grid-column: 3; }
.gy-ui .gy-report-panel { display: none !important; }
.gy-ui .gy-report-panel.is-active { display: block !important; }

/* Mantenedores admin */
.gy-ui.gy-ui--admin .gy-filter-grid {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
	gap: 14px !important;
	align-items: end !important;
}
.gy-ui.gy-ui--admin .gy-filter-grid .gy-field { margin: 0 !important; }
.gy-ui.gy-ui--admin table.gy-table,
.gy-ui.gy-ui--admin table.table {
	width: 100% !important;
}

/* Modal encuesta subcomite: Si/No a la izquierda y centrados en vertical */
.gy-modal-root .gy-card--modal-encuesta,
.gy-ui .gy-card--modal-encuesta {
	margin: 0 !important;
	box-shadow: 0 1px 2px rgba(16, 24, 40, 0.06) !important;
}
.gy-modal-root .gy-card--modal-encuesta .gy-card__body,
.gy-ui .gy-card--modal-encuesta .gy-card__body {
	padding: 18px 20px !important;
	text-align: left !important;
}
.gy-modal-root .gy-check-grid--si-no,
.gy-ui .gy-check-grid--si-no {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	justify-content: start !important;
	justify-items: start !important;
	align-items: start !important;
	column-gap: 24px !important;
	row-gap: 12px !important;
	width: 100% !important;
	text-align: left !important;
}
.gy-modal-root .gy-card--modal-encuesta .gy-check-grid--three,
.gy-ui .gy-card--modal-encuesta .gy-check-grid--three {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	align-items: start !important;
	justify-items: start !important;
}
.gy-modal-root .gy-si-no-col,
.gy-ui .gy-si-no-col {
	display: flex !important;
	flex-direction: column !important;
	align-items: flex-start !important;
	gap: 8px !important;
	min-width: 0 !important;
	width: 100% !important;
}
.gy-modal-root .gy-si-no-col > .gy-choice,
.gy-ui .gy-si-no-col > .gy-choice {
	flex: 0 0 auto !important;
	width: auto !important;
	justify-content: flex-start !important;
	align-items: center !important;
}
.gy-modal-root .gy-si-no-extra,
.gy-ui .gy-si-no-extra {
	width: 100% !important;
	margin: 0 !important;
}
.gy-modal-root .gy-si-no-extra:empty,
.gy-ui .gy-si-no-extra:empty {
	display: none !important;
}

/*
 * Modales GY fuera de .gy-ui (auditoria y otros): misma paginacion,
 * selects nativos y Select2 que las listas NearMiss.
 */
.gy-modal-root .dataTables_wrapper {
	clear: both !important;
}

.gy-modal-root .dataTables_wrapper:after {
	content: "" !important;
	display: table !important;
	clear: both !important;
}

.gy-modal-root .dataTables_wrapper .dataTables_length,
.gy-modal-root .dataTables_wrapper .dataTables_filter,
.gy-modal-root .dataTables_wrapper .dataTables_info {
	color: #667085 !important;
	font-size: 13px !important;
	font-family: inherit !important;
	padding: 12px 8px !important;
	float: none !important;
	text-align: left !important;
}

.gy-modal-root .dataTables_wrapper .dataTables_info {
	display: block !important;
	float: left !important;
	width: auto !important;
	max-width: 55% !important;
	padding-top: 14px !important;
	padding-bottom: 8px !important;
	text-align: left !important;
}

.gy-modal-root .dataTables_wrapper .dataTables_paginate {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	justify-content: flex-end !important;
	float: right !important;
	clear: none !important;
	width: auto !important;
	max-width: none !important;
	margin-left: auto !important;
	padding: 8px !important;
	text-align: right !important;
	white-space: nowrap !important;
	overflow-x: auto !important;
	overflow-y: hidden !important;
	color: #667085 !important;
	font-size: 13px !important;
	font-family: inherit !important;
}

.gy-modal-root .dataTables_wrapper .dataTables_paginate .pagination {
	display: inline-flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	justify-content: flex-end !important;
	gap: 6px !important;
	margin: 0 0 0 auto !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	list-style: none !important;
	float: none !important;
	white-space: nowrap !important;
}

.gy-modal-root .dataTables_wrapper .dataTables_paginate .pagination > li,
.gy-modal-root .dataTables_wrapper .dataTables_paginate span {
	display: inline-flex !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	float: none !important;
}

.gy-modal-root .dataTables_wrapper .dataTables_paginate .paginate_button,
.gy-modal-root .dataTables_wrapper .dataTables_paginate .pagination > li > a,
.gy-modal-root .dataTables_wrapper .dataTables_paginate .pagination > li > span {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-width: 34px !important;
	height: 34px !important;
	margin: 0 !important;
	padding: 0 12px !important;
	border: 1px solid #d8e0eb !important;
	border-radius: 8px !important;
	color: #064fae !important;
	background: #ffffff !important;
	background-image: none !important;
	box-shadow: none !important;
	outline: 0 !important;
	font-size: 13px !important;
	font-weight: 650 !important;
	font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif !important;
	line-height: 1 !important;
	text-decoration: none !important;
	cursor: pointer !important;
}

.gy-modal-root .dataTables_wrapper .dataTables_paginate .paginate_button:hover,
.gy-modal-root .dataTables_wrapper .dataTables_paginate .pagination > li > a:hover,
.gy-modal-root .dataTables_wrapper .dataTables_paginate .pagination > li > span:hover {
	color: #073b87 !important;
	background: #f5f9ff !important;
	background-image: none !important;
	border-color: #bfdcff !important;
}

.gy-modal-root .dataTables_wrapper .dataTables_paginate .paginate_button.current,
.gy-modal-root .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover,
.gy-modal-root .dataTables_wrapper .dataTables_paginate .pagination > li.active > a,
.gy-modal-root .dataTables_wrapper .dataTables_paginate .pagination > li.active > a:hover,
.gy-modal-root .dataTables_wrapper .dataTables_paginate .pagination > li.active > span {
	color: #ffffff !important;
	background: #0868d7 !important;
	background-image: none !important;
	border-color: #0868d7 !important;
	cursor: default !important;
}

.gy-modal-root .dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.gy-modal-root .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.gy-modal-root .dataTables_wrapper .dataTables_paginate .pagination > li.disabled > a,
.gy-modal-root .dataTables_wrapper .dataTables_paginate .pagination > li.disabled > span {
	color: #98a2b3 !important;
	background: #ffffff !important;
	background-image: none !important;
	border-color: #e4e7ec !important;
	cursor: not-allowed !important;
	opacity: 1 !important;
}

.gy-modal-root .dataTables_wrapper .dataTables_length {
	display: flex !important;
	align-items: center !important;
	flex-wrap: wrap !important;
	gap: 8px !important;
	width: 100% !important;
	padding: 4px 0 14px !important;
	margin: 0 !important;
	color: #667085 !important;
	font-size: 14px !important;
	font-weight: 600 !important;
}

.gy-modal-root .dataTables_wrapper .dataTables_length label {
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
	margin: 0 !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	color: #667085 !important;
}

.gy-modal-root .dataTables_wrapper .dataTables_length select,
.gy-modal-root .dataTables_wrapper .dataTables_filter input {
	min-height: 44px !important;
	height: 44px !important;
	margin-left: 8px !important;
	padding: 10px 13px !important;
	border: 1px solid #c6d0dd !important;
	border-radius: 8px !important;
	color: #14213d !important;
	background: #fff !important;
	font-size: 14px !important;
	font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif !important;
	line-height: 1.4 !important;
	box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05) !important;
	box-sizing: border-box !important;
}

.gy-modal-root .dataTables_wrapper .dataTables_length select {
	display: inline-block !important;
	width: 75px !important;
	min-width: 75px !important;
	max-width: 75px !important;
}

.gy-modal-root table.gy-table--admin,
.gy-modal-root table.dataTable.gy-table--admin,
.gy-ui--list .gy-modal-root table.gy-table--admin,
.gy-ui--list .gy-modal-root table.dataTable.gy-table--admin {
	min-width: 0 !important;
	width: 100% !important;
}

.gy-modal-root table.dataTable thead th,
.gy-modal-root table.dataTable tbody td,
.gy-modal-root table.dataTable tfoot th {
	display: table-cell !important;
}

.gy-modal-root table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > td,
.gy-modal-root table.dataTable.collapsed > thead > tr > th,
.gy-modal-root table.dataTable.collapsed > tbody > tr > td {
	display: table-cell !important;
}

.gy-modal-root table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > td:first-child::before,
.gy-modal-root table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > th:first-child::before {
	display: none !important;
}

.gy-modal-root select.gy-control,
.gy-modal-root select.gy-select {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	height: auto !important;
	min-height: 44px !important;
	margin: 0 !important;
	padding: 10px 13px !important;
	appearance: auto !important;
	-webkit-appearance: menulist !important;
	border: 1px solid #c6d0dd !important;
	border-radius: 8px !important;
	color: #14213d !important;
	background: #fff !important;
	font-size: 14px !important;
	font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif !important;
	line-height: 1.4 !important;
	box-sizing: border-box !important;
}

.gy-modal-root select.gy-control:focus,
.gy-modal-root select.gy-select:focus {
	border-color: #1677e8 !important;
	box-shadow: 0 0 0 3px rgba(22, 119, 232, 0.18) !important;
	outline: none !important;
}

.gy-modal-root .select2-container,
.gy-modal-root .gy-field .select2-container,
.gy-modal-root .gy-select2-wrap .select2-container {
	width: 100% !important;
	max-width: 100% !important;
	display: block !important;
}

.gy-modal-root .gy-select2-wrap {
	display: block !important;
	width: 100% !important;
}

.gy-modal-root .select2-container--default .select2-selection--single {
	min-height: 44px !important;
	height: auto !important;
	padding: 0 !important;
	border: 1px solid #c6d0dd !important;
	border-radius: 8px !important;
	background: #ffffff !important;
	box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05) !important;
}

.gy-modal-root .select2-container--default.select2-container--focus .select2-selection--single,
.gy-modal-root .select2-container--default.select2-container--open .select2-selection--single {
	border-color: #1677e8 !important;
	box-shadow: 0 0 0 3px rgba(22, 119, 232, 0.18) !important;
}

.gy-modal-root .select2-container--default .select2-selection--single .select2-selection__rendered {
	display: block !important;
	padding: 10px 36px 10px 13px !important;
	line-height: 1.4 !important;
	color: #14213d !important;
	font-size: 14px !important;
}

.gy-modal-root .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 42px !important;
	right: 6px !important;
	width: 28px !important;
}

body > .select2-container {
	z-index: 11060 !important;
}

.select2-dropdown {
	z-index: 11061 !important;
	border: 1px solid #d8e0eb !important;
	border-radius: 12px !important;
	box-shadow: 0 8px 24px rgba(15, 54, 104, 0.12) !important;
	overflow: hidden !important;
	font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif !important;
}

body > .select2-container .select2-results__option,
.select2-container--open .select2-results__option {
	padding: 9px 14px !important;
	color: #14213d !important;
	font-size: 13px !important;
	font-weight: 500 !important;
}

body > .select2-container .select2-results__option--highlighted[aria-selected],
.select2-container--open .select2-results__option--highlighted[aria-selected],
body > .select2-container .select2-results__option--highlighted,
.select2-container--open .select2-results__option--highlighted {
	background: #eaf3ff !important;
	color: #0868d7 !important;
}

/* Menu export Highcharts (todos los graficos) */
.highcharts-contextmenu {
	padding: 0 !important;
	right: 8px !important;
	top: 8px !important;
	pointer-events: auto !important;
}

.highcharts-contextmenu .highcharts-menu,
ul.highcharts-menu {
	list-style: none !important;
	margin: 0 !important;
	padding: 6px 0 !important;
	min-width: 230px !important;
	border: 1px solid #d8e0eb !important;
	border-radius: 12px !important;
	background: #ffffff !important;
	background-color: #ffffff !important;
	box-shadow: 0 8px 24px rgba(15, 54, 104, 0.12) !important;
	-webkit-box-shadow: 0 8px 24px rgba(15, 54, 104, 0.12) !important;
	-moz-box-shadow: 0 8px 24px rgba(15, 54, 104, 0.12) !important;
	font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif !important;
	overflow: hidden !important;
}

.highcharts-contextmenu .highcharts-menu hr,
ul.highcharts-menu hr {
	margin: 6px 0 !important;
	border: 0 !important;
	border-top: 1px solid #eef3f8 !important;
	background: transparent !important;
	height: 0 !important;
}

.highcharts-contextmenu .highcharts-menu-item,
ul.highcharts-menu .highcharts-menu-item,
li.highcharts-menu-item {
	cursor: pointer !important;
	padding: 9px 14px !important;
	color: #14213d !important;
	background: transparent !important;
	background-color: transparent !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	line-height: 1.35 !important;
	font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif !important;
	transition: background 160ms ease, color 160ms ease !important;
}

.highcharts-contextmenu .highcharts-menu-item:hover,
ul.highcharts-menu .highcharts-menu-item:hover,
li.highcharts-menu-item:hover {
	background: #eaf3ff !important;
	background-color: #eaf3ff !important;
	color: #0868d7 !important;
}

.highcharts-data-table {
	margin-top: 12px !important;
	border: 1px solid #d8e0eb !important;
	border-radius: 12px !important;
	overflow: auto !important;
	font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif !important;
}

.highcharts-data-table table {
	width: 100% !important;
	border-collapse: collapse !important;
}

.highcharts-data-table th,
.highcharts-data-table td {
	padding: 8px 12px !important;
	border-bottom: 1px solid #eef3f8 !important;
	color: #14213d !important;
	font-size: 13px !important;
}

.highcharts-data-table th {
	background: #f7f9fc !important;
	color: #667085 !important;
	font-weight: 600 !important;
}