@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100&family=Poppins:ital,wght@0,200;0,300;0,400;0,500;1,100;1,200;1,300;1,400&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Montserrat', 'Poppins', 'sans-serif';
}


@font-face {
	font-family: 'MontserratSemiBold';
	src: url('../fonts/Montserrat-SemiBold.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Roboto';
	src: url('../fonts/roboto-regular.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
}


:root {
	--color-azul-comfa: #00356a;
	--color-red-comfa: #ac000a;
	--color-verde-comfa: #003943;
	--color-gray-comfa: #2d2d2d;
	--white: #ffffff;
	--body-color: #fafafa;
	--sidebar-color: #00356a;
	--primary-color: #ffa900;
	--primary-color-light: #DDD;
	--text-color: #ffffff;
	--toggle-color: #DDD;
	--gray: #7e7e7e;
	--verde-claro: #b8c522;
	--verde-oscuro: #006b2c;
	--texto-gris-oscuro: #676767;
	--amarillo-institucional: #ffa900;
	--amarillo-institucional-claro: #ddd;
	--azul-primario: #195cbf;
}

/*  Ocultar la barra de desplazamiento  */
::-webkit-scrollbar {
	display: none;
}

/* Estilo inicial con transición */
.shadow2 {
	box-shadow: 0 0.4rem 0.6rem rgba(0, 0, 0, 0.15) !important;
	transition: box-shadow 0.3s, background-color 0.3s, color 0.3s;
}

/* Estilo al pasar el ratón con transición */
.shadow2:hover {
	box-shadow: 0 0.4rem 0.6rem rgba(0, 0, 0, 0.664) !important;
}


.cursor {
	cursor: pointer;
}

.req {
	color: #910000;
}

/* THEME */

/* card grande  */
.empresa {
	display: flex;
	justify-content: space-around;
	margin-top: 30px;
	margin-bottom: 30px;
}

.empresa img {
	width: 80px;
	height: 80px;
}

.card-1 {
	width: auto;
	height: auto;
	transition: all .3s;
	position: relative;
	border-radius: .5rem 2rem;
	box-shadow: 0px 15px 20px -5px rgba(0, 0, 0, 0.5);
	margin-left: auto;
	margin-right: auto;
	margin-top: 10%;
	z-index: 999;
	transition: transform 0.5s;
	transform-style: preserve-3d;
	backface-visibility: hidden;
	transition: all .3s;
	background: #C9D6FF;
	background: -webkit-linear-gradient(to right, #E2E2E2, #C9D6FF);
	background: linear-gradient(to right, #E2E2E2, #C9D6FF);
	width: 100%;
}

.card-chiquita {
	border-radius: .5rem 2rem;
	box-shadow: 0px 15px 20px -5px rgba(0, 0, 0, 0.5);
	margin-left: auto;
	margin-right: auto;
}

.card-1:hover {
	transform: scale(1.03);
}

.img:hover {
	transform: scale(1.3);
}

.img-container {
	/* display: grid; */
	border-radius: .5rem 2rem;
	height: auto;
	overflow: hidden;
}

.description {
	display: flex;
	flex-direction: column;
	align-items: center;
	/* Centrar horizontalmente */
	justify-content: flex-start;
	/* Alinear al principio (parte superior) */
	position: relative;
	text-align: center;
	top: 10px;
	left: .5rem;
	text-align: start;
	padding: .5rem 1em;
	width: 90%;
	transition: all 0.5s ease;
	text-overflow: ellipsis;
	white-space: nowrap;
	backdrop-filter: blur(.1rem);
	background-color: rgba(0, 0, 0, 0.2);
	border-radius: .5rem 2rem;
}

.description:hover {
	transform: perspective(100px) translateX(7px) rotateX(3deg) rotateY(3deg) scale(1);
	box-shadow: none;
}

/* fin cards */

.profile-page {
	display: flex;
	min-height: 60vh;
	padding-top: 5rem;

}

.profile-page .content {
	display: flex;
	flex-direction: column;
	max-width: 600px;
	width: 100%;
	position: relative;
	z-index: 2;
	margin-inline: auto;
	padding: 2rem;
	background: #fff;
	color: var(--gray);
	border-radius: 2rem;
	box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
}

.profile-page .content__cover {
	position: relative;
	background: linear-gradient(150deg, #1e2567 20%, #3358f4 100%);
}

.theme-purple .profile-page .content__cover {
	background: linear-gradient(150deg, #ffa900 20%, #c9b95d 100%);
}

.theme-green .profile-page .content__cover {
	background: linear-gradient(150deg, #006b2c 20%, #43e73a 100%);
}

.theme-blue .profile-page .content__cover {
	background: linear-gradient(150deg, #0098f0 20%, #27bad4 100%);
}

.profile-page .content__bull {
	display: none;
	height: 12rem;
	position: relative;
	overflow: hidden;
}


.profile-page .content__bull span:nth-child(1) {
	display: block;
	position: absolute;
	z-index: 1;
	border-radius: 50%;
}

.profile-page .content__bull span:nth-child(2) {
	display: block;
	position: absolute;
	z-index: 1;
	border-radius: 50%;
}

.profile-page .content__bull span:nth-child(3) {
	display: block;
	position: absolute;
	z-index: 1;
	border-radius: 50%;
}

.profile-page .content__bull span:nth-child(4) {
	display: block;
	position: absolute;
	z-index: 1;
	border-radius: 50%;
}

.profile-page .content__bull span:nth-child(5) {
	display: block;
	position: absolute;
	z-index: 1;
	border-radius: 50%;
}

.profile-page .content__bull span:nth-child(1) {
	width: 5rem;
	height: 5rem;
	top: -6%;
	left: -3%;
	background: rgba(255, 255, 255, 0.12);
}

.profile-page .content__bull span:nth-child(2) {
	width: 8rem;
	height: 8rem;
	top: 18%;
	left: 18%;
	background: rgba(255, 255, 255, 0.05);
}

.profile-page .content__bull span:nth-child(3) {
	width: 3rem;
	height: 3rem;
	top: 8%;
	right: 2%;
	background: rgba(255, 255, 255, 0.05);
}

.profile-page .content__bull span:nth-child(4) {
	width: 6rem;
	height: 6rem;
	top: 28%;
	right: 12%;
	background: rgba(255, 255, 255, 0.1);
}

.profile-page .content__bull span:nth-child(5) {
	width: 4rem;
	height: 4rem;
	top: 70%;
	left: -6%;
	background: rgba(255, 255, 255, 0.04);
}

.profile-page .content__avatar {
	width: 10rem;
	height: 10rem;
	position: absolute;
	bottom: 0;
	left: 50%;
	z-index: 999;
	transform: translate(-50%, 50%);
	/* background: #b8c522 url("../../image/avatars/mujer-joven.png") center center no-repeat; */
	background-size: cover;
	border-radius: 50%;
	box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
	cursor: pointer;
	transition: width 0.5s ease, height 0.5s ease;
	/* Aplica la transición al cambio de tamaño */
}

.profile-page .content__avatar:hover {
	width: 11rem;
	height: 11rem;
}

.profile-page .content__actions {
	display: flex;
	justify-content: space-between;
	padding: 0.2rem;
}

.profile-page .content__actions a {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
	height: 3rem;
	padding: 0.2rem 1rem;
	border-radius: 2rem;
	text-decoration: none;
	font-size: 0.9rem;
}

.profile-page .content__actions a svg {
	width: 2rem;
	margin-right: 0.4rem;
}

/* esto le da estilos al icono sin efecto hover */
.profile-page .content__actions a svg path:last-child {
	opacity: 0.5;
}

.theme-green .profile-page .content__actions a:first-child {
	color: #b8c522;
}

.theme-blue .profile-page .content__actions a:first-child {
	color: #0098f0;
}

.theme-green .profile-page .content__actions a:last-child {
	color: #42b883;
}

.theme-blue .profile-page .content__actions a:last-child {
	color: #2987b6;
}

.profile-page .content__actions a:hover:first-child {
	background: #2a68c0;
	color: #fff;
}

.theme-green .profile-page .content__actions a:hover:first-child {
	background: #b8c522;
}

.theme-blue .profile-page .content__actions a:hover:first-child {
	background: #0098f0;
}

.profile-page .content__actions a:hover:last-child {
	background: #1d8cf8;
	color: #fff;
}

.theme-green .profile-page .content__actions a:hover:last-child {
	background: #0fb858;
}

.theme-blue .profile-page .content__actions a:hover:last-child {
	background: #2a68c0;
}

/* estilos de las cxards de empresa y beneficiarios */
.action-link {
	transition: transform 0.3s;
}

.profile-page .content__title {
	margin-top: 3.5rem;
	text-align: center;
	order: 1;
}

.profile-page .content__title h1 {
	margin-bottom: 0.1rem;
	font-size: 2.4rem;
}

.profile-page .content__title span {
	font-size: 1rem;
}

.profile-page .content__description {
	margin-top: 1.5rem;
	text-align: center;
	order: 2;

}

.profile-page .content__description p {
	margin-bottom: 0.2rem;
	font-size: 1.2rem;
}

.profile-page .content__list {
	display: flex;
	justify-content: center;
	margin-top: 1.5rem;
	list-style-type: none;
	order: 3;
}

.profile-page .content__list li {
	padding: 0 1.5rem;
	text-align: center;
	font-size: 1rem;
}

.profile-page .content__list li span {
	display: block;
	margin-bottom: 0.1rem;
	font-weight: bold;
	font-size: 1.6rem;
}

.profile-page .content__button {
	margin: 3rem 0 2rem;
	text-align: center;
	order: 4;
}

.profile-page .content__button .button {
	display: inline-block;
	padding: 1.2rem 1.8rem;
	text-align: center;
	text-decoration: none;
	background: linear-gradient(100deg, #1d8cf8 30%, #3358f4 100%);
	border-radius: 2rem;
	box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
	font-size: 1rem;
	color: #fff;
	cursor: pointer;
}

.theme-orange .profile-page .content__button .button {
	background: linear-gradient(100deg, #ff4086 10%, #fd8d76 100%);
}

/* .theme-purple .profile-page .content__button .button {
	background: linear-gradient(100deg, #b8c522 10%, #42b883 100%);
  } */
.theme-green .profile-page .content__button .button {
	background: linear-gradient(100deg, #b8c522 10%, #42b883 100%);
}

.theme-blue .profile-page .content__button .button {
	background: linear-gradient(100deg, #0098f0 10%, #1ed1d7 100%);
}

.profile-page .content__button .button:hover {
	color: #fff;
}

.profile-page .bg {
	width: 100%;
	height: 50%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.profile-page .bg div {
	content: "";
	width: 100%;
	height: 17rem;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	overflow: hidden;
	background: linear-gradient(150deg, #1e2567 20%, #3358f4 100%);
}

.theme-orange .profile-page .bg div {
	background: linear-gradient(150deg, #ffa900 20%, #f29018 100%);
}

.theme-green .profile-page .bg div {
	background: linear-gradient(150deg, #006b2c 20%, #40d738 100%);
}

.theme-blue .profile-page .bg div {
	background: linear-gradient(150deg, #3358f4 20%, #6873d8 100%);
}

.profile-page .bg span:nth-child(1) {
	display: block;
	position: absolute;
	z-index: 2;
	border-radius: 50%;
	animation: floating 34s infinite;
}

.profile-page .bg span:nth-child(2) {
	display: block;
	position: absolute;
	z-index: 2;
	border-radius: 50%;
	animation: floating 34s infinite;
}

.profile-page .bg span:nth-child(3) {
	display: block;
	position: absolute;
	z-index: 2;
	border-radius: 50%;
	animation: floating 34s infinite;
}

.profile-page .bg span:nth-child(4) {
	display: block;
	position: absolute;
	z-index: 2;
	border-radius: 50%;
	animation: floating 34s infinite;
}

.profile-page .bg span:nth-child(5) {
	display: block;
	position: absolute;
	z-index: 2;
	border-radius: 50%;
	animation: floating 34s infinite;
}

.profile-page .bg span:nth-child(6) {
	display: block;
	position: absolute;
	z-index: 2;
	border-radius: 50%;
	animation: floating 34s infinite;
}

.profile-page .bg span:nth-child(7) {
	display: block;
	position: absolute;
	z-index: 2;
	border-radius: 50%;
	animation: floating 34s infinite;
}

.profile-page .bg span:nth-child(1) {
	width: 11rem;
	height: 11rem;
	top: 30%;
	left: 16%;
	background: rgba(255, 255, 255, 0.05);
	animation-duration: 34s;
}

.profile-page .bg span:nth-child(2) {
	width: 8rem;
	height: 8rem;
	top: 18%;
	left: 1%;
	background: rgba(255, 255, 255, 0.12);
	animation-duration: 40s;
}

.profile-page .bg span:nth-child(3) {
	width: 8rem;
	height: 8rem;
	top: 34%;
	right: 10%;
	background: rgba(255, 255, 255, 0.1);
	animation-duration: 38s;
}

.profile-page .bg span:nth-child(4) {
	width: 4rem;
	height: 4rem;
	top: 34%;
	right: 3%;
	background: rgba(255, 255, 255, 0.2);
	animation-duration: 34s;
}

.profile-page .bg span:nth-child(5) {
	width: 12rem;
	height: 12rem;
	top: 42%;
	right: 28%;
	background: rgba(255, 255, 255, 0.1);
	animation-duration: 40s;
}

.profile-page .bg span:nth-child(6) {
	width: 8rem;
	height: 8rem;
	top: 72%;
	left: 6%;
	background: rgba(255, 255, 255, 0.05);
	animation-duration: 38s;
}

.profile-page .bg span:nth-child(7) {
	width: 4rem;
	height: 4rem;
	top: 82%;
	right: 8%;
	background: rgba(255, 255, 255, 0.05);
	animation-duration: 34s;
}

.theme-switcher-button {
	position: fixed;
	top: calc(17rem - 3.6rem);
	right: 0;
	z-index: 2;
	padding: 1rem;
	background: rgba(0, 0, 0, 0.6);
	border-top-left-radius: 1rem;
	border-bottom-left-radius: 1rem;
	font-size: inherit;
	color: #1d8cf8;
	cursor: pointer;
}

.theme-orange .theme-switcher-button {
	color: #ffa900;
}

.theme-green .theme-switcher-button {
	color: #42b883;
}

.theme-blue .theme-switcher-button {
	color: #1d8cf8;
}

.theme-switcher-button svg {
	width: 1.1rem;
}

.theme-switcher-wrapper {
	width: 200px;
	position: fixed;
	top: calc(50% - 5rem);
	right: 5rem;
	z-index: 2;
	padding: 1rem 0;
	background: linear-gradient(#598cc0, #1d253b);
	box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.2);
	border-radius: 0.25rem;
	opacity: 0;
	text-align: center;
	font-size: 1rem;
	color: inherit;
	visibility: hidden;
	transform: translateY(-15%) translateZ(0);
	transform-origin: 0 0;
	transition: transform 0.15s cubic-bezier(0.43, 0.195, 0.02, 1);
}

.theme-switcher-wrapper.is-open {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0, 1px, 0);
}

.theme-switcher-wrapper span {
	display: block;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.9);
	cursor: default;
}

.theme-switcher-wrapper ul {
	margin-top: 0.8rem;
	list-style-type: none;
	font-size: 0;
}

.theme-switcher-wrapper li {
	display: inline-block;
	vertical-align: middle;
	padding: 0 0.2rem;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.9);
	cursor: pointer;
}

.theme-switcher-wrapper li em {
	display: block;
	border-radius: 1rem;
}

.theme-switcher-wrapper [data-theme] {
	width: 20px;
	height: 20px;
}

.theme-switcher-wrapper [data-theme="orange"] {
	background: #ffa900;
}

.theme-switcher-wrapper [data-theme="blue"] {
	background: #1d8cf8;
}

.theme-switcher-wrapper [data-theme="green"] {
	background: #b8c522;
}

@-moz-keyframes floating {
	0% {
		-webkit-transform: rotate(0deg) translate(-10px) rotate(0deg);
		transform: rotate(0deg) translate(-10px) rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg) translate(-10px) rotate(-360deg);
		transform: rotate(360deg) translate(-10px) rotate(-360deg);
	}
}

@-webkit-keyframes floating {
	0% {
		-webkit-transform: rotate(0deg) translate(-10px) rotate(0deg);
		transform: rotate(0deg) translate(-10px) rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg) translate(-10px) rotate(-360deg);
		transform: rotate(360deg) translate(-10px) rotate(-360deg);
	}
}

@-o-keyframes floating {
	0% {
		-webkit-transform: rotate(0deg) translate(-10px) rotate(0deg);
		transform: rotate(0deg) translate(-10px) rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg) translate(-10px) rotate(-360deg);
		transform: rotate(360deg) translate(-10px) rotate(-360deg);
	}
}

@keyframes floating {
	0% {
		-webkit-transform: rotate(0deg) translate(-10px) rotate(0deg);
		transform: rotate(0deg) translate(-10px) rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg) translate(-10px) rotate(-360deg);
		transform: rotate(360deg) translate(-10px) rotate(-360deg);
	}
}

/* Spinner */
#spinner-div {
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	text-align: center;
	background: url(../image/logoComfacauca.png) no-repeat center center;
	background-position: 50% 30%;
	background-size: 9em;
	font-size: 25px;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 10000;
}

.spinner {
	position: relative;
	top: 50%;
	width: 60px;
	height: 60px;
}

.ui-abstergo {
	--primary: #fff;
	--blue: #1e2567;
	--yellow: #ffa900;
	--green: #095a04;
	--secondary: rgba(255, 255, 255, 0.3);
	--shadow-blur: 3px;
	--text-shadow-blur: 3px;
	--animation-duration: 1.2s;
	--size: 1;
}

.abstergo-loader * {
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

.ui-abstergo {

	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	justify-content: center;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	font-size: 25px;
	text-align: center;
	background-color: rgb(255 255 255 / 62%);
	z-index: 10000;
}

.ui-abstergo .ui-text {
	color: var(--blue);
	text-shadow: 0 0 var(--text-shadow-blur) var(--secondary);
	font-family: Menlo, sans-serif;
	display: -webkit-box;
	display: -ms-flexbox;
	/* display: flex; */
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
	-webkit-column-gap: 3px;
	-moz-column-gap: 3px;
	column-gap: 3px;
}

.ui-abstergo .ui-dot {
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	-webkit-animation: dots var(--animation-duration) infinite linear;
	animation: dots var(--animation-duration) infinite linear;
	-webkit-animation-delay: .4s;
	animation-delay: .4s;
	background-color: var(--blue);
}

.ui-abstergo .ui-dot:nth-child(2) {
	-webkit-animation-delay: .8s;
	animation-delay: .8s;
}

.ui-abstergo .ui-dot:nth-child(3) {
	-webkit-animation-delay: 1.2s;
	animation-delay: 1.2s;
}

.ui-abstergo .ui-dot+.ui-dot {
	margin-left: 3px;
}

.abstergo-loader {
	width: 103px;
	height: 90px;
	position: relative;
}

.abstergo-loader div {
	width: 50px;
	border-right: 12px solid transparent;
	border-left: 12px solid transparent;
	border-top: 21px solid var(--primary);
	position: absolute;
	-webkit-filter: drop-shadow(0 0 var(--shadow-blur) var(--secondary));
	filter: drop-shadow(0 0 var(--shadow-blur) var(--secondary));
}

.abstergo-loader div:nth-child(1) {
	border-top: 21px solid var(--blue);
	top: 27px;
	left: 7px;
	rotate: -60deg;
	-webkit-animation: line1 var(--animation-duration) linear infinite alternate;
	animation: line1 var(--animation-duration) linear infinite alternate;
}

.abstergo-loader div:nth-child(2) {
	border-top: 21px solid var(--blue);
	bottom: 2px;
	left: 0;
	rotate: 180deg;
	-webkit-animation: line2 var(--animation-duration) linear infinite alternate;
	animation: line2 var(--animation-duration) linear infinite alternate;
}

.abstergo-loader div:nth-child(3) {
	border-top: 21px solid var(--blue);
	bottom: 16px;
	right: -9px;
	rotate: 60deg;
	-webkit-animation: line3 var(--animation-duration) linear infinite alternate;
	animation: line3 var(--animation-duration) linear infinite alternate;
}

.abstergo-loader:hover div:nth-child(1) {
	top: 21px;
	left: 14px;
	rotate: 60deg;
}

.abstergo-loader:hover div:nth-child(2) {
	bottom: 5px;
	left: -8px;
	rotate: 300deg;
}

.abstergo-loader:hover div:nth-child(3) {
	bottom: 7px;
	right: -11px;
	rotate: 180deg;
}

@-webkit-keyframes line1 {

	0%,
	40% {
		top: 27px;
		left: 7px;
		rotate: -60deg;
	}

	60%,
	100% {
		top: 22px;
		left: 14px;
		rotate: 60deg;
	}
}

@keyframes line1 {

	0%,
	40% {
		top: 27px;
		left: 7px;
		rotate: -60deg;
	}

	60%,
	100% {
		top: 22px;
		left: 14px;
		rotate: 60deg;
	}
}

@-webkit-keyframes line2 {

	0%,
	40% {
		bottom: 2px;
		left: 0;
		rotate: 180deg;
	}

	60%,
	100% {
		bottom: 5px;
		left: -8px;
		rotate: 300deg;
	}
}

@keyframes line2 {

	0%,
	40% {
		bottom: 2px;
		left: 0;
		rotate: 180deg;
	}

	60%,
	100% {
		bottom: 5px;
		left: -8px;
		rotate: 300deg;
	}
}

@-webkit-keyframes line3 {

	0%,
	40% {
		bottom: 16px;
		right: -9px;
		rotate: 60deg;
	}

	60%,
	100% {
		bottom: 7px;
		right: -11px;
		rotate: 180deg;
	}
}

@keyframes line3 {

	0%,
	40% {
		bottom: 16px;
		right: -9px;
		rotate: 60deg;
	}

	60%,
	100% {
		bottom: 7px;
		right: -11px;
		rotate: 180deg;
	}
}

@-webkit-keyframes dots {
	0% {
		background-color: var(--blue);
	}

	30% {
		background-color: var(--blue);
	}

	70%,
	100% {
		background-color: var(--blue);
	}
}

@keyframes dots {
	0% {
		background-color: var(--blue);
	}

	30% {
		background-color: var(--primary);
	}

	70%,
	100% {
		background-color: var(--secondary);
	}
}

/* estilos generales */
/* type Fonts */
.text-montserrat {
	font-family: 'MontserratSemiBold';
}

.text-roboto {
	font-family: 'Roboto';
}


/* clases principales */
.text-azul-comfa,
hr {
	color: var(--color-azul-comfa);
}

.text-red {
	color: var(--color-red-comfa);
}

.text-gray {
	color: var(--color-gray-comfa);
}

.text-green {
	color: var(--color-verde-comfa);
}

.text-green2 {
    color: var(--verde-claro);
}

.bg-comfacauca {
	background-color: var(--color-azul-comfa);
	color: var(--white);
}

.bg-green {
	background-color: var(--color-verde-comfa);
	color: var(--white);
}

.bg-green2 {
    background-color: var(--verde-claro);
    color: white;
}

.bg-gray {
	background-color: var(--color-gray-comfa);
	color: var(--white);
}

.bg-red {
	background-color: var(--color-red-comfa);
	color: var(--white);
}

a {
	text-decoration: none;
}

.pagina-entera {
	display: flex;
	justify-content: center;
	align-items: center;
	height: auto;
	width: auto;

}

/* para todas las paginas excepto la de cuota moetaria */
.contenedor-principal {
	background: #fafafa;
	width: 80%;
	height: 100%;
	border-radius: 10px;
}

.contenedor-principal2 {
	background: #fafafa;
	width: 90%;
	height: 100%;
	border-radius: 10px;
}

/* para contenido flex */
.contenedor-pagina {
	display: flex;
	background: #fafafa;
	border-radius: 20px;
	box-shadow: 0 4px 10px 4px rgba(255, 255, 255, 0.3);
	padding: 10px;

}

.titulo-paginas {
	color: var(--color-azul-comfa);
	font-family: 'Roboto';
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
	font-weight: bold;
}

.center-text {
	display: flex;
	justify-content: center;
	align-items: center;
}

.title {
	color: #b8c522;
	text-align: center;
	font-size: large;
	font-weight: bold;
	padding-top: 10px;
}

.title-2 {
	color: #595959;
	text-align: center;
	font-size: large;
	font-weight: bold;
	padding-top: 5px;
}

.subtitle-gris {
	font-size: 1em;
	font-weight: bold;
	color: #7c7c7c;
	/* margin-top: 20px;  */
}

.subtitle-verde {
	font-size: 1.2em;
	font-weight: bold;
	color: var(--verde-claro);
	margin-top: 8px;

}

@media (max-width: 990px) {
	.profile-page {
		padding-top: 0;
	}

	.profile-page .content__bull {
		display: block;
	}

	.profile-page .content__avatar {
		width: 11rem;
		height: 11rem;
		border: 0.3rem solid #fff;
		box-shadow: none;
	}

	.profile-page .content__actions {
		padding: 0.8rem 2rem;
	}

	.profile-page .content__actions a {
		padding: 0.5rem;
	}

	.profile-page .content__actions a span {
		display: none;
	}

	.profile-page .content__actions a svg {
		margin: 0;
	}

	.profile-page .content__title {
		margin-top: 1.5rem;
	}

	.profile-page .content__title h1 {
		font-size: 1.8rem;
	}

	.profile-page .content__title span {
		font-size: 0.9rem;
	}

	.profile-page .content__description {
		margin-top: 1.5rem;
		order: 3;
	}

	.profile-page .content__description p {
		font-size: 1rem;
	}

	.profile-page .content__list {
		margin-top: 1.5rem;
		order: 2;
	}

	.profile-page .content__list li {
		font-size: 0.8rem;
	}

	.profile-page .content__list li span {
		font-size: 1.2rem;
	}

	.profile-page .content__button {
		margin: 1.5rem 0 2.2rem;
	}

	.profile-page .content__button .button {
		padding: 1rem 1.4rem;
		font-size: 0.9rem;
	}

	.profile-page .content {
		max-width: 420px;
		padding: 0;
		border-radius: 0;
		top: 20vh;
	}

	.card-bene {
		width: 300px;
	}

	.image-container {
		width: 45px;
		height: 45px;
	}

	.afiliation {
		font-size: 10px;
	}
}

@media (max-width: 700px) {
	.content-text {
		max-width: 420px;
		padding: 0 50px;
		border-radius: 0;
	}

	.theme-switcher-button svg {
		width: 0.6rem !important;
		height: 1rem !important;
		position: relative;
		top: -11px;
		right: 2px;
	}

	.theme-switcher-button {
		top: calc(9.6rem - 3.6rem) !important;
		width: 10px;
		height: 10px;
	}

	.card-empresa {
		margin-inline: 50px;
	}

	.profile-page .content__avatar {
		width: 8rem !important;
		height: 8rem !important;
		border: 0.3rem solid #fff !important;
		box-shadow: none !important;
	}

	.profile-page .content__avatar:hover {
		width: 9rem;
		height: 9rem;
	}

	.profile-page .content__actions {
		justify-content: space-around;
	}

	.profile-page .content__bull {
		height: 8rem;
	}

	.empresa img {
		width: 60px;
		height: 60px;
	}

	.card-bene {
		width: 260px;
	}

	.subtitle {
		font-size: 0.7em;
	}

	.titulo-paginas {
		margin-top: 40PX;
	}

}

/* estilos generales del navtab */
/* estilos del navtab */
dl,
ol,
ul {

	margin-bottom: 2px !important;
}

.wrapper {
	/* min-width: 600px;
    max-width: 900px; */
	margin: 0 auto;
}

.tabs {
	padding-left: 0px;
	display: table;
	table-layout: fixed;
	width: 50%;
	-webkit-transform: translateY(5px);
	transform: translateY(5px);

	>li {
		transition-duration: .25s;
		display: table-cell;
		list-style: none;
		text-align: center;
		padding: 10px 10px 10px 10px;
		position: relative;
		overflow: hidden;
		cursor: pointer;
		color: var(--sidebar-color);

		&:before {
			z-index: -1;
			position: absolute;
			content: "";
			width: 100%;
			height: 120%;
			top: 0;
			left: 0;
			background-color: rgba(255, 255, 255, 0.3);
			-webkit-transform: translateY(100%);
			transform: translateY(100%);
			transition-duration: .25s;
			border-radius: 5px 5px 0 0;
		}

		&:hover {
			&:before {
				-webkit-transform: translateY(70%);
				transform: translateY(70%);
				background: var(--verde-claro);
			}
		}

		&.active {
			color: white;

			&:before {
				transition-duration: .5s;
				background-color: var(--verde-claro);
				color: white;
				-webkit-transform: translateY(0);
				transform: translateY(0);
			}
		}
	}

	/* .li-inactivo:hover{
        background: #e0e0e0;
    } */
}

.tab__content {
	/* background-color: white; */
	position: relative;
	width: 100%;
	border-radius: 5px;

	>li {
		width: 100%;
		position: absolute;
		top: 0;
		left: 0;

		display: none;
		list-style: none;

		.content__wrapper {
			border-radius: 5px;
			border: 2px solid var(--verde-claro);
			background: white;
			width: 100%;
			padding: 10px 10px 10px 10px;

		}
	}
}

.content__wrapper {
	h4 {
		width: 100%;
		text-align: center;
		padding-bottom: 20px;
		color: var(--sidebar-color);
	}


}


/* estilos del steper global */


::selection {
	color: #fff;
	background: var(--verde-claro);
}

@keyframes animate {
	100% {
		transform: scaleX(1);
	}
}


/* estilos de todo el formulario */
/* formulario */
.container-steper .form-outer {
	width: 100%;
	overflow: hidden;
	padding-top: 80px;
}

.container-steper .form-outer form {
	display: flex;
	width: 500%;
}

.form-outer form .page {
	width: 20%;
	padding: 4px;
	transition: margin-left 0.3s ease-in-out;
}

.ubicacion-responsiva {
	margin: auto;
}

.page1 {
	width: 20%;
	transition: margin-left 0.3s ease-in-out;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.page-ubicacion {
	width: 20%;
	transition: margin-left 0.3s ease-in-out;
	display: flex;
	align-items: center;
}

.form-outer form .page .title {
	text-align: center;
	font-size: 25px;
	font-weight: 500;
}

.form-outer form .page .field {
	/* display: flex;
    justify-content: center; */
	/* width: 30%;
    height: 35px; */
	margin: 45px 20px;
	/* position: relative; */
}

.botones-form {
	display: flex;
	justify-content: center;
}

.primer-boton {
	width: 90px;
	height: 40px;
	border: none;
	background: var(--verde-claro);
	margin-top: 20px;
	border-radius: 5px;
	color: #fff;
	cursor: pointer;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 1px;
	transition: 0.5s ease;
}

.primer-boton:hover {
	background: #000;
}

form .page .field button {
	width: 90px;
	height: 40px;
	border: none;
	background: var(--verde-claro);
	margin-top: -20px;
	border-radius: 5px;
	color: #fff;
	cursor: pointer;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 1px;
	transition: 0.5s ease;
}

form .page .field button:hover {
	background: #000;
}

form .page .btns button {
	margin-top: -20px !important;
}

form .page .btns button.prev {
	margin-right: 3px;

}

form .page .btns button.next {
	margin-left: 3px;
}


/* estilos del primer form */
.success {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	width: 320px;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #EDFBD8;
	border-radius: 8px;
	border: 1px solid #84D65A;
	box-shadow: 0px 0px 5px -3px #111;
	margin-top: 20px;
}

.success__icon {
	width: 20px;
	height: 20px;
	transform: translateY(-2px);
	margin-right: 8px;
}

.success__icon path {
	fill: #84D65A;
}

.success__title {
	font-weight: 500;
	font-size: 14px;
	color: #2B641E;
}

.success__close {
	width: 20px;
	height: 20px;
	cursor: pointer;
	margin-left: auto;
}

.success__close path {
	fill: #2B641E;
}

/* estilos de los inputs */
.input-invalid {
    border: 2px solid red !important;
}

.inputGroup {
	position: relative;
	width: 100%;
	height: 30px;
	margin: 20px 10px 2px;
}

.inputGroup input {
	padding: 14px 10px 4px 10px;
	outline: none;
	border: 2px solid rgb(200, 200, 200);
	background-color: transparent;
	border-radius: 10px;
	width: 100%;
	font-size: small;
}

.inputGroup label {
	font-size: small;
	position: absolute;
	left: 10px;
	top: 70%;
	transform: translateY(-50%);
	pointer-events: none;
	transition: all 0.3s ease;
	color: rgb(100, 100, 100);
	background-color: transparent;
	padding: 0 5px;
}

.inputGroup input:focus+label,
.inputGroup input:not(:placeholder-shown)+label {
	top: 0;
	transform: translateY(-50%) scale(0.9);
	background-color: #fafafa;
	color: #1e2567;
}

.inputGroup input:focus,
.inputGroup input:not(:placeholder-shown) {
	border-color: #1e2567;
}

.inputGroup.active label {
	top: 0;
	transform: translateY(-50%) scale(0.9);
	background-color: #fafafa;
	color: #1e2567;
	z-index: 9999;
}

/*********************************************/
.selectGroup {
	position: relative;
	width: 100%;
	height: 45px;
	margin: 20px 10px 2px;
}

.selectGroup select {
	width: 100%;
	height: 100%;
	padding: 10px;
	font-size: small;
	border: 2px solid rgb(200, 200, 200);
	border-radius: 10px;
	background-color: transparent;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.selectGroup label {
	font-size: small;
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease;
	pointer-events: none;
	color: rgb(100, 100, 100);
	background-color: transparent;
	padding: 0 5px;
}

.selectGroup select:focus+label,
.selectGroup select:not([value=""]):valid+label {
	top: 0;
	transform: translateY(-50%) scale(0.9);
	background-color: #fafafa;
	color: #1e2567;
}

.selectGroup select:focus,
.selectGroup select:not([value=""]):valid {
	border-color: #1e2567;
}

.selectGroup::after {
	content: '\25BC';
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	pointer-events: none;
	color: rgb(100, 100, 100);
}

/*********************************************/

/********CssInputs GustavoFoninez********/
/* .inputContainer {
    position: relative;
    height: 45px;
    margin-bottom: 17px;
}

.input {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 95%;
    border: 1px solid #DADCE0;
    border-radius: 7px;
    font-size: 16px;
    padding: 0 20px;
    outline: none;
    background: none;
    z-index: 1;
}

.label {
    position: absolute;
    top: 10px;
    left: 15px;
    padding: 0 4px;
    background-color: #fafafa;
    color: #919193;
    font-size: 13px;
    transition: 0.5s;
    z-index: 0;
    pointer-events: none;
}


::placeholder {
    color: transparent;
}

.input:focus+.label,
.input:not(:placeholder-shown)+.label {
    top: -7px;
    left: 3px;
    z-index: 10;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-azul-comfa);
}


.input:focus,
.input:not(:placeholder-shown) {
    border: 2px solid var(--color-azul-comfa);
}

.input:not(:placeholder-shown)+.label {
    top: -7px;
    left: 3px;
    z-index: 10;
    font-size: 12px;
    font-weight: 600;
    border-radius: 10px;
} */

/*********Fin CssInputs GustavoFoninez*****/

/* estilos del switch */
/* estilos del switch */

.subtitule {
	padding: 30px;
}

/* estilos de swith rural o urbano */
/* Multiple Toggle Switch by Abu Shafiyya */

fieldset {
	border: 0;
}

/* Hide default radio */
.radio input[type="radio"] {
	position: absolute;
	visibility: hidden;
	display: none;
	opacity: 0;
	z-index: -1;
}

/* Customizing label */
.radio label {
	position: relative;
	padding: 10px 20px 10px 25px;
	cursor: pointer;
	border-radius: 20px;
	color: #2196F3;
	margin: 0px 5px;
	font-weight: 600;
	/*text-transform: uppercase;*/
}

.radio label,
.radio label::before {
	-webkit-transition: .25s all ease;
	transition: .25s all ease;
}

.radio label::before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	content: " ";
	position: absolute;
	top: 30%;
	left: 0;
	width: 1em;
	height: 1em;
	border: 2px solid #2196F3;
}

.radio input[type="radio"]+label::before {
	border-radius: 1em;
}


/* Checked toggle */
.radio input[type="radio"]:checked+label {
	color: #fff;
	background: #2196F3;
	z-index: 1;
}

.radio input[type="radio"]:checked+label {
	padding: 10px 20px 10px 20px;
}

.radio input[type="radio"]:checked+label::before {
	top: 4px;
	width: 100%;
	height: 2em;
	z-index: -1;
}

.radio:hover input[type="radio"]:checked+label {
	-webkit-box-shadow: #2195f338 0px 0px 0px 15px;
	box-shadow: #2195f338 0px 0px 0px 15px;
}

/* estilos de subir archivo */
.custum-file-upload {
	height: 140px;
	width: 230px;
	display: flex;
	flex-direction: column;
	align-items: space-between;
	gap: 20px;
	margin: 20px;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	border: 2px dashed #cacaca;
	background-color: rgba(255, 255, 255, 1);
	padding: 1.5rem;
	border-radius: 10px;
	box-shadow: 0px 48px 35px -48px rgba(0, 0, 0, 0.1);
}

.custum-file-upload .icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.custum-file-upload .icon svg {
	height: 60px;
	fill: rgba(75, 85, 99, 1);
}

.custum-file-upload .text {
	display: flex;
	align-items: center;
	justify-content: center;
}

.custum-file-upload .text span {
	font-weight: 400;
	color: rgba(75, 85, 99, 1);
}

.custum-file-upload input {
	display: none;
}

/* estilos del aceptar terminos y condiciones */
.panel-flex {
	display: flex;
}

.panel-datos {
	border: 1px solid #ccc;
	width: 70%;
	max-height: 200px;
	/* Altura máxima antes de que aparezca el scroll */
	border-radius: 10px;
	padding: 10px;
	margin-bottom: 10px;
	position: relative;
	overflow: auto;
	/* Añadir scroll cuando el contenido excede la altura máxima */
}

.toggle-icon {
	align-items: flex-end;
	cursor: pointer;
	margin: 15px;
}

.toggle-icon:hover {
	color: #095a04;
}

.rotate-180 {
	transform: rotate(180deg);
	transition: transform 0.3s ease;
}

.label-autorizacion {
	margin: 10px;
}

.message {
	display: none;
	margin-top: 5px;
	font-size: 12px;
	/* Tamaño de letra pequeño */
	text-align: justify;
	/* Justificar el texto */
}


/* estilos del checkbox */
.checkbox-wrapper-12 {
	position: relative;
	margin: 10px;
}

.checkbox-wrapper-12>svg {
	position: absolute;
	top: -130%;
	left: -170%;
	width: 110px;
	pointer-events: none;
}

.checkbox-wrapper-12 * {
	box-sizing: border-box;
}

.checkbox-wrapper-12 input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-tap-highlight-color: transparent;
	cursor: pointer;
	margin: 0;
}

.checkbox-wrapper-12 input[type="checkbox"]:focus {
	outline: 0;
}

.checkbox-wrapper-12 .cbx {
	width: 24px;
	height: 24px;
	top: calc(100px - 12px);
	left: calc(100px - 12px);
}

.checkbox-wrapper-12 .cbx input {
	position: absolute;
	top: 0;
	left: 0;
	width: 24px;
	height: 24px;
	border: 2px solid #bfbfc0;
	border-radius: 50%;
}

.checkbox-wrapper-12 .cbx label {
	width: 24px;
	height: 24px;
	background: none;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
	transform: trasnlate3d(0, 0, 0);
	pointer-events: none;
}

.checkbox-wrapper-12 .cbx svg {
	position: absolute;
	top: 5px;
	left: 4px;
	z-index: 1;
	pointer-events: none;
}

.checkbox-wrapper-12 .cbx svg path {
	stroke: #fff;
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-dasharray: 19;
	stroke-dashoffset: 19;
	transition: stroke-dashoffset 0.3s ease;
	transition-delay: 0.2s;
}

.checkbox-wrapper-12 .cbx input:checked+label {
	animation: splash-12 0.6s ease forwards;
}

.checkbox-wrapper-12 .cbx input:checked+label+svg path {
	stroke-dashoffset: 0;
}

@-moz-keyframes splash-12 {
	40% {
		background: #1e2567;
		box-shadow: 0 -18px 0 -8px #1e2567, 16px -8px 0 -8px #1e2567, 16px 8px 0 -8px #1e2567, 0 18px 0 -8px #1e2567, -16px 8px 0 -8px #1e2567, -16px -8px 0 -8px #1e2567;
	}

	100% {
		background: #1e2567;
		box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
	}
}

@-webkit-keyframes splash-12 {
	40% {
		background: #1e2567;
		box-shadow: 0 -18px 0 -8px #1e2567, 16px -8px 0 -8px #1e2567, 16px 8px 0 -8px #1e2567, 0 18px 0 -8px #1e2567, -16px 8px 0 -8px #1e2567, -16px -8px 0 -8px #1e2567;
	}

	100% {
		background: #1e2567;
		box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
	}
}

@-o-keyframes splash-12 {
	40% {
		background: #1e2567;
		box-shadow: 0 -18px 0 -8px #1e2567, 16px -8px 0 -8px #1e2567, 16px 8px 0 -8px #1e2567, 0 18px 0 -8px #1e2567, -16px 8px 0 -8px #1e2567, -16px -8px 0 -8px #1e2567;
	}

	100% {
		background: #1e2567;
		box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
	}
}

@keyframes splash-12 {
	40% {
		background: #1e2567;
		box-shadow: 0 -18px 0 -8px #1e2567, 16px -8px 0 -8px #1e2567, 16px 8px 0 -8px #1e2567, 0 18px 0 -8px #1e2567, -16px 8px 0 -8px #1e2567, -16px -8px 0 -8px #1e2567;
	}

	100% {
		background: #1e2567;
		box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
	}
}



/* estilos del subir archivos */
.container-file {
	text-align: center;
	width: 270px;
	height: auto;
	max-width: 370px;
	margin: auto;
	margin-top: 10px;
	background-color: white;
	border-radius: 16px;
	box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.primer-lista {
	display: flex;
	align-items: center;
}

.header-section {
	padding: 10px 0px;
}

.header-section p {
	margin: 5px;
	font-size: 0.95rem;
	color: #707EA0;
}


.drop-section div.col:first-child {
	opacity: 1;
	visibility: visible;
	transition-duration: 0.2s;
	transform: scale(1);
	width: 200px;
	margin: auto;
}

.drop-section div.col:last-child {
	font-size: 40px;
	font-weight: 700;
	color: #c0cae1;
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	margin: auto;
	width: 200px;
	height: 55px;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transform: scale(0.6);
	transition-duration: 0.2s;
}

/* we will use "drag-over-effect" class in js */
.drag-over-effect div.col:first-child {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: scale(1.1);
}

.drag-over-effect div.col:last-child {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

.drop-section .cloud-icon {
	margin-top: 5px;
	margin-bottom: 0px;
}

.drop-section span,
.drop-section button {
	display: block;
	margin: auto;
	color: #707EA0;
	margin-bottom: 10px;
}

.drop-section button {
	color: white;
	background-color: #f11e1e;
	/*var(--color-verde-comfa);*/
	border: none;
	outline: none;
	padding: 7px 20px;
	border-radius: 8px;
	margin-bottom: 10px;
	cursor: pointer;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.drop-section input {
	display: none;
}

.list-section {
	display: none;
	text-align: left;
	margin: 0px 35px;
	padding-bottom: 20px;
}

.list-section .list-title {
	font-size: 0.95rem;
	color: #707EA0;
}

.list-section li {
	display: flex;
	border-radius: 8px;
	transition-duration: 0.2s;
}

.list-section li:hover {
	box-shadow: #E3EAF9 0px 0px 4px 0px, #E3EAF9 0px 12px 16px 0px;
}

.list-section li .col {
	flex: .1;
}

.list-section li .col:nth-child(1) {
	flex: .15;
	text-align: center;
}

.list-section li .col:nth-child(2) {
	flex: .75;
	text-align: left;
	font-size: 0.9rem;
	color: #3e4046;
	padding: 8px 10px;
}

.list-section li .col:nth-child(2) div.name {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	max-width: 250px;
	display: inline-block;
}

.list-section li .file-progress {
	width: 100%;
	height: 5px;
	margin-top: 8px;
	border-radius: 8px;
	background-color: #dee6fd;
}

.list-section li .file-progress span {
	display: block;
	width: 0%;
	height: 100%;
	border-radius: 8px;
	background-image: linear-gradient(120deg, #6b99fd, #9385ff);
	transition-duration: 0.4s;
}

.list-section li .col .file-size {
	font-size: 0.75rem;
	margin-top: 3px;
	color: #707EA0;
}

.list-section li .col svg.cross,
.list-section li .col svg.tick {
	fill: #8694d2;
	background-color: #dee6fd;
	position: relative;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
}

.list-section li .col svg.tick {
	fill: #50a156;
	background-color: transparent;
}

.list-section li.complete span,
.list-section li.complete .file-progress,
.list-section li.complete svg.cross {
	display: none;
}

.list-section li.in-prog .file-size,
.list-section li.in-prog svg.tick {
	display: none;
}


/******ESTILOS PARA ESTADOS DE NOTIFICACION BADGE***********/
.estado {
	position: relative; 
	font-size: 0.675rem;
	font-weight: 600;
	border-radius: 1rem;
	padding: 0.4rem 0.8rem;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
  }
  .estado svg {
	width: 1rem;
	height: 1rem;
  }
  .aprobado {
	background-color: #d4edda; /* Verde claro */
	color: #155724;            /* Verde oscuro para el texto */
  }
  .pendiente {
	background-color: #fff3cd;
	color: #856404;
  }
  .rechazada {
	background-color: #f8d7da;
	color: #721c24;
  }
  .rechazadaBadge {
	background-color: #f75d6a;
	color: white;
  }
  .anulado {
    background-color: #e2e3e5; /* Gris claro */
    color: #383d41;            /* Gris oscuro para el texto */
  }
  .subsanado {
    background-color: #fff7e6; /* Amarillo suave/crema claro */
    color: #856404; /* Color de texto similar al pendiente */
  }
  .beneficiario {
	background-color: #d1ecf1;
	color: #0c5460;
  }
  
  .notificacion {
	position: absolute;
	top: -0.875rem;
	right: -0.6rem;
	font-size: 0.525rem; /* Más pequeño que el texto del estado */
	font-weight: 700;
	border-radius: 50%; /* Forma circular */
	width: 1.25rem;
	height: 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 0 2px white; /* Borde blanco para separar del fondo */
  }
  
  /* Colores para cada tipo de notificación */
  .notificacion.multiempresa {
	background-color: #6f42c1; /* Morado para "M" */
	color: white;
  }
  
  .notificacion.beneficiarios {
	background-color: #28a745; /* Verde para "B" */
	color: white;
  }
  
  /* Notificación combinada (M-3B) */
  .notificacion.ambos {
	border-radius: 1rem;       /* Forma ovalada */
	min-width: 1.8rem;         /* Ancho flexible */
	height: 1.25rem;
	padding: 0 0.3rem;         /* Espacio interno horizontal */
	white-space: nowrap;       /* Evita saltos de línea */
	background-color: #fd7e14; /* Naranja para "M-B" */
	color: white;
  }

/* Intentos de reponsive */
@media screen and (max-width: 900px) {
	.tabla {
		overflow-x: auto;
		margin: 15px;
	}

	.tabla::-webkit-scrollbar {
		height: 10px;
		/* Altura del scroll */
		background-color: #f1f1f1;
		/* Color del fondo del scroll */
	}

	.tabla::-webkit-scrollbar-thumb {
		background-color: #888;
		/* Color del thumb (la barra del scroll) */
		border-radius: 5px;
		/* Radio de borde del thumb */
	}

}

@media screen and (max-width: 800px) {
	.cards {
		display: flex;
		align-items: center;
		flex-direction: column;
	}
}

@media screen and (min-width: 1700px) {
	.pagina-entera {
		margin-top: 20px;
		height: auto;
		width: auto;

	}

	table {
		width: 80%;
		margin-top: 40PX;
	}

	th,
	td {
		font-size: 15px;
	}

	.titulo-paginas {
		font-weight: bold;
		margin-top: 40PX;
	}
}

@media screen and (max-width: 1700px) {
	.card-opcion {
		position: relative;
		width: 200px;
		height: 60px;
	}
}

@media screen and (max-width: 1125px) {
	.body-steper {
		margin: 20px;
	}

	.panel-datos {
		width: 300px;
		margin: 10px;
	}

	.message {
		margin: 30px;
	}


}

@media screen and (max-width: 455px) {

	.panel-datos {
		width: 250px;
		margin: 10px;
	}

	.container-file {
		width: 200px;
	}

	.header-section p {
		font-size: 0.75rem;
	}

	.drop-section button {
		font-size: 0.7rem;
	}
}

@media screen and (max-width: 1010px) {
	.container-steper .progress-bar-step {
		display: none;

	}

	#checkout-progress {
		display: none;
	}

	.container-steper .form-outer {
		padding-top: 0px !important;
	}

	.primer-lista {
		flex-direction: column;
	}
}

@media screen and (max-width: 1000px) {
	.success {
		width: 200px;
	}

	.form--header-text {
		width: 200px;
	}

	.container-steper {
		height: auto;
		padding: 10px;
	}

	.one-column {
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding-right: 20px;
	}

	.inputGroup .selectGroup {
		width: 210px;
		margin: 12px;
	}

	.inputGroup label,
	.selectGroup label {
		font-size: 9px;
	}

}

.login-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 1rem 1rem 0;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.logo-comfacauca {
    width: 150px; /* entre 140px y 160px es elegante */
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2)); /* efecto sutil */
}

.login-subtitle {
    color: #fff; /* mantiene contraste con fondo oscuro */
    font-size: 1.3rem; /* ligeramente más grande, más legible */
    font-weight: 600; /* un poco más grueso para destacar */
    letter-spacing: 0.5px; /* aire corporativo */
    text-align: center; 
    line-height: 1.3; /* más compacto, menos espacio vertical */
    
}

.center-text-login {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; 
    min-height: 100vh;
    padding-top: 2rem;
}