* {
	box-sizing: border-box;
	outline: none !important;
}

/* quitar border focus element */
:focus {
	outline: none !important;
}

body {
	font-family: Arial;
	padding: 10px;
	background: #f1f1f1;
}

/* Header/Blog Title */
.header {
	padding: 10px;
	text-align: center;
	background: white;
}

.header h1 {
	font-size: 20px;
}

/* Style the top navigation bar */
.topnav {
	overflow: hidden;
	background-color: #428bca;
}

/* Style the topnav links */
.topnav a {
	float: left;
	display: block;
	color: #f2f2f2;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
	background-color: #ddd;
	color: #5288b8;
}

.row {
	/* background-color: #f1f1f1; */
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {
	float: left;
	width: 25%;
	margin: 12px;
	border-radius: 20px;
	/* padding-left: 15px; */
	background-color: #f1f1f1;
}

/* Right column */
.rightcolumn {
	display: block;
	justify-content: center;
	align-items: center;
	float: left;
	width: 70%;
	background-color: #f1f1f1;
	padding-left: 20px;
}

/* Fake image */
.fakeimg {
	background-color: #aaa;
	width: 100%;
	padding: 20px;
}

/* Add a card effect for articles */
.card {
	border-radius: 20px;
	background-color: white;
	padding: 20px;
	margin-top: 20px;
}

/* Clear floats after the columns */
.row:after {
	content: "";
	display: block;
	clear: both;
}

/* Footer */
.footer {
	padding: 20px;
	text-align: center;
	background: #ddd;
	margin-top: 20px;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {

	.leftcolumn,
	.rightcolumn {
		width: 100%;
		padding: 0;
	}
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
	.topnav a {
		float: none;
		width: 100%;
	}
}

/* index dashboard cards */
.main-overview {
	/* display: inline-flex; */
	justify-content: center;
	/* grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); */
	/* grid-auto-rows: 94px; */
	/* grid-auto-columns: max-content; */
	/* grid-gap: 30px; */
	/* margin: 20px; */
}

.overviewCard {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px;
	background-color: #FFF;
	transform: translateY(0);
	transition: all 0.3s;
}

.overviewCard-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	width: 60px;
	border-radius: 50%;
	font-size: 21px;
	color: #fff;
}

.overviewCard-icon--document {
	background-color: #e67e22;
}

.overviewCard-icon--calendar {
	background-color: #27ae60;
}

.overviewCard-icon--mail {
	background-color: #e74c3c;
}

.overviewCard-icon--photo {
	background-color: #af64cc;
}

.overviewCard-description {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.overviewCard-title {
	font-size: 18px;
	color: #1BBAE1 !important;
	margin: 0;
}

.overviewCard-subtitle {
	margin: 2px;
	color: #777;
}

.overviewCard:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
	cursor: pointer;
}

.card {
	display: flex;
	flex-direction: column;
	width: 100%;
	background-color: #fff;
	margin-bottom: 20px;
	-webkit-column-break-inside: avoid;
}

.card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 50px;
	background-color: #394263;
	color: #FFF;
}

.card__header-title {
	margin: 0 20px;
	font-size: 20px;
	letter-spacing: 1.2px;
}

.card__header-link {
	font-size: 16px;
	color: #1BBAE1;
	letter-spacing: normal;
	display: inline-block;
}

.card__main {
	position: relative;
	padding-right: 20px;
	background-color: #FFF;
}

.card__main:after {
	content: "";
	position: absolute;
	top: 0;
	left: 120px;
	bottom: 0;
	width: 2px;
	background-color: #f0f0f0;
}

.card__secondary {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
	grid-auto-rows: 100px;
	grid-gap: 25px;
	padding: 20px;
	background-color: #FFF;
}

.card__photo {
	background-image: url("../../img/pumpkin-carving.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-color: slategray;
	transform: scale(1);
	transition: transform 0.3s ease-in-out;
	width: 100%;
	height: 100%;
}

.card__photo:hover {
	transform: scale(1.1);
	cursor: pointer;
}

.card__photo-wrapper {
	overflow: hidden;
}

.card__row {
	position: relative;
	display: flex;
	flex: 1;
	margin: 15px 0 20px;
}

.card__icon {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	content: "";
	width: 30px;
	height: 30px;
	top: 0;
	left: 121px;
	transform: translateX(-50%);
	border-radius: 50%;
	color: #FFF;
	background-color: #1BBAE1;
	z-index: 1;
}

.card__row:nth-child(even) .card__icon {
	background-color: #e74c3c;
}

.card__time {
	display: flex;
	flex: 1;
	justify-content: flex-end;
	max-width: 80px;
	margin-left: 15px;
	text-align: right;
	font-size: 14px;
	line-height: 2;
}

.card__detail {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding-left: 12px;
	margin-left: 48px;
	transform: translateX(0);
	transition: all 0.3s;
}

.card__detail:hover {
	background-color: #f0f0f0;
	transform: translateX(4px);
	cursor: pointer;
}

.card__source {
	line-height: 1.8;
	color: #1BBAE1;
}

.card__note {
	margin: 10px 0;
	color: #777;
}

.card--finance {
	position: relative;
}

*,
*:before,
*:after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* body {
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
	background: #ededed;
  } */

input,
button {
	border: none;
	outline: none;
	background: none;
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

.tip {
	font-size: 20px;
	margin: 40px auto 50px;
	text-align: center;
}

.cont {
	overflow: hidden;
	position: relative;
	width: 900px;
	height: 800px;
	margin: 0 auto 100px;
	background: #fff;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}

.form {
	position: relative;
	width: 640px;
	height: 100%;
	transition: transform 1.2s ease-in-out;
	padding: 50px 30px 0;
}

.sub-cont {
	overflow: hidden;
	position: absolute;
	left: 640px;
	top: 0;
	width: 900px;
	height: 100%;
	padding-left: 260px;
	background: #fff;
	transition: transform 1.2s ease-in-out;
}

.cont.s--signup .sub-cont {
	transform: translate3d(-640px, 0, 0);
}

button {
	display: block;
	margin: 0 auto;
	width: 260px;
	height: 36px;
	border-radius: 30px;
	color: #fff;
	font-size: 15px;
	cursor: pointer;
}

.img {
	overflow: hidden;
	z-index: 2;
	position: absolute;
	right: 0;
	top: 0;
	width: 220px;
	height: 100%;
	padding-top: 360px;
}

.img:before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 220px;
	height: 100%;
	background-image: url("../images/banner-front.png");
	background-size: cover;
	background-repeat: space;
	transition: transform 1.2s ease-in-out;
}

.img:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	/* background: rgba(0, 0, 0, 0.6); */
}

.cont.s--signup .img:before {
	transform: translate3d(640px, 0, 0);
}

.img__text {
	z-index: 2;
	position: absolute;
	left: 0;
	top: 380px;
	width: 100%;
	padding: 0 20px;
	text-align: center;
	color: #fff;
	transition: transform 1.2s ease-in-out;
}

.img__text h2 {
	margin-bottom: 10px;
	font-weight: normal;
}

.img__text p {
	font-size: 14px;
	line-height: 1.5;
}

.cont.s--signup .img__text.m--up {
	transform: translateX(520px);
}

.img__text.m--in {
	transform: translateX(-520px);
}

.cont.s--signup .img__text.m--in {
	transform: translateX(0);
}

.img__btn {
	overflow: hidden;
	z-index: 2;
	position: relative;
	width: 100px;
	height: 36px;
	margin: 0 auto;
	background: transparent;
	color: #fff;
	text-transform: uppercase;
	font-size: 15px;
	cursor: pointer;
}

.img__btn:after {
	content: "";
	z-index: 2;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border: 2px solid #fff;
	border-radius: 30px;
}

.img__btn span {
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	transition: transform 1.2s;
}

.img__btn span.m--in {
	transform: translateY(-72px);
}

.cont.s--signup .img__btn span.m--in {
	transform: translateY(0);
}

.cont.s--signup .img__btn span.m--up {
	transform: translateY(72px);
}

h2 {
	width: 100%;
	font-size: 26px;
	text-align: center;
}

label {
	display: block;
	width: 260px;
	margin: 25px auto 0;
	text-align: center;
}

label span {
	font-size: 12px;
	color: #959494;
	text-transform: uppercase;
}

input {
	display: block;
	width: 100%;
	margin-top: 5px;
	padding-bottom: 5px;
	font-size: 16px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.4);
	text-align: left;
	padding-left: 5px;
}

.forgot-pass {
	margin-top: 15px;
	text-align: center;
	font-size: 12px;
	color: #cfcfcf;
}

.submit {
	margin-top: 40px;
	margin-bottom: 20px;
	background: #8E44AD;
	text-transform: uppercase;

}

.alert {
	margin: 20px;
	padding: 8px;
	text-align: center;
}

.fb-btn {
	margin-bottom: 20px;
	border: 2px solid #8E44AD;
	color: #8E44AD;
}

.fb-btn span {
	font-weight: bold;
	color: #8E44AD;
}

.sign-in {
	transition-timing-function: ease-out;
}

.cont.s--signup .sign-in {
	transition-timing-function: ease-in-out;
	transition-duration: 1.2s;
	transform: translate3d(640px, 0, 0);
}

.sign-up {
	transform: translate3d(-900px, 0, 0);
}

.cont.s--signup .sign-up {
	transform: translate3d(0, 0, 0);
}

.icon-link {
	position: absolute;
	left: 5px;
	bottom: 5px;
	width: 32px;
}

.icon-link img {
	width: 100%;
	vertical-align: top;
}

.icon-link--twitter {
	left: auto;
	right: 5px;
}

@media (max-width: 900px) {
	.sub-cont {
		display: none;
	}

	.cont {
		width: 700px;
	}
}

@media (max-width: 700px) {
	.sub-cont {
		display: none;
	}

	.cont,
	.form {
		width: 100%;
		height: 100%;
	}
}

/* **************************** */
::placeholder {
	text-align: left;
}

::-webkit-input-placeholder {
	text-align: left;
}

div.inline {
	display: flex;
}

.select {
	-moz-appearance: none;
	-webkit-appearance: none;
	background: white;
	border: 1px solid #8E44AD;
	border-radius: 50px;
	cursor: pointer;
	padding: 12px;
	width: 100%;
	font-size: 16px;
}

.select:focus {
	color: black;
}

.select::-ms-expand {
	display: none;
}

/* para subir imagen dni y selfie en registro */
.upfile {
	-moz-appearance: none;
	-webkit-appearance: none;
	background: white;
	border: 1px solid rgb(173, 158, 158);
	border-radius: 50px;
	cursor: pointer;
	padding: 12px;
	width: 100%;
	font-size: 16px;
}

.file-area {
	width: 100%;
	position: relative;
}

.file-area input[type=file] {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	cursor: pointer;
}

.file-area .file-dummy {
	width: 100%;
	padding: 10px;
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgb(173, 158, 158);
	border-radius: 50px;
	text-align: center;
	transition: background 0.3s ease-in-out;
}

.file-area .file-dummy .success {
	display: none;
}

.file-area:hover .file-dummy {
	background: rgba(255, 255, 255, 0.1);
}

.file-area input[type=file]:focus+.file-dummy {
	outline: 2px solid rgba(255, 255, 255, 0.5);
	outline: -webkit-focus-ring-color auto 5px;
}

.file-area input[type=file]:valid+.file-dummy {
	border-color: rgba(0, 255, 0, 0.4);
	background-color: rgba(0, 255, 0, 0.3);
}

.file-area input[type=file]:valid+.file-dummy .success {
	display: inline-block;
}

.file-area input[type=file]:valid+.file-dummy .default {
	display: none;
}

#loading {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	display: block;
	opacity: 0.95;
	background-color: #fff;
	z-index: 99;
	/* text-align: center; */
}

#loading-image {
	position: absolute;
	top: 200px;
	left: 240px;
	z-index: 100;
}

/* prestamo_resumen */
.solicitud_requerimiento {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 2px;
	background-color: #FFF;
	transform: translateY(0);
	transition: all 0.3s;
	transform: translateY(-3px);
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	margin-bottom: 4px;
}

.cuestionario .errorlist {
	display: none;
	font-size: 10px;
}


label.required::after {
	content: ' *';
	color: red;
}

.banner-proveedores-text {
	justify-content:left;
	margin-right:40%;
	font-weight:100;
}

/* en class banner-proveedores-text margin-right es cero cuando se achica la pantalla */
@media (max-width: 900px) {
	.banner-proveedores-text {
		margin-right:0%;
	}
}

.banner-preguntas-frecuentes {
	color:white;
	display:inline-flex;
	padding-top: 70px;
	line-height: 50px;
	font-size: 20px;
}
.banner-preguntas-frecuentes-col {
	padding-left:80px;
	width: 50%;
}
@media (max-width: 900px) {
	.banner-preguntas-frecuentes {
		display:block;
		font-size:16px
	}
	.banner-preguntas-frecuentes-col {
		width: 100%;
	}
}

.banner-casas-imagen {
	/* height:220px;
	padding:50px; */
	min-height: 100%; 
	min-width: 100%;
}

/* @media (max-width: 900px) {
	.banner-casas-imagen {
		display: none;
	}
} */

.banner-preguntas-frecuentes-two-col {
	width: 100%;
}

.banner-preguntas-frecuentes-one-col {
	width: 100%;
	display: none;
}

@media (max-width: 800px) {
	.banner-preguntas-frecuentes-two-col {
		display: none;
	}
	.banner-preguntas-frecuentes-one-col {
		display: block;
	}
}

/* chat gpt */

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
  }
  
  .container {
	max-width: 960px;
	margin: 0 auto;
	font-family: Arial, sans-serif;
  }
  
  .profile-header {
	background-color: #7c3ebb;
	color: #fff;
	padding: 40px;
	text-align: center;
	position: relative;
  }
  
  .cover-photo {
	background-color: #fff;
	height: 200px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: -1;
  }
  
  .profile-picture {
	/* background-image: url('https://via.placeholder.com/150x150'); */
	background-size: cover;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	margin: 0 auto;
	position: relative;
	top: -75px;
  }
  
  h1 {
	font-size: 36px;
	margin: 20px 0;
  }
  
  h2 {
	font-size: 24px;
	margin-bottom: 20px;
  }
  
  .profile-stats {
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
  }
  
  .stat {
	text-align: center;
  }
  
  .stat-value {
	font-size: 24px;
	font-weight: bold;
  }
  
  .stat-label {
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
  }
  
  .profile-body {
	padding: 40px;
  }
  
  .section {
	margin-bottom: 40px;
  }
  
  h3 {
	font-size: 24px;
	margin-bottom: 20px;
  }
  
  ul {
	list-style: none;
  }
  
  li {
	margin-bottom: 10px;
  }
  
  .edit-btn {
	background-color: #7c3ebb;
	border: none;
	color: #fff;
	padding: 5px 10px;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s ease;
  }
  
  .edit-btn:hover {
	background-color: #1352a3;
  }
  
  
  