body {
	color: gray;
	font-family: "Muli",sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.65;
	word-wrap: break-word;
}
h2 {
	font-size: 3rem;
	text-transform: uppercase;
	line-height: 1.15;
	letter-spacing: 0;
	font-weight: 300;
	font-style: normal;
	color: #d01932;
}
h3 {
	color: rgb(52, 52, 52);
	display: block;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.25;
	margin: 0 0 10px;
	padding: 0 0 3px;
	text-align: left;
}
p {
	margin: 0 0 10px;
	text-align: justify;
	color: #606060;
}
b {
	color: #894a48;
}
.d-flex {
	display: flex !important;
}
.main {
	max-width: 640px;
	margin: 0 auto;
}
.container {
	max-width: 100%;
}
.mt-0 {
	margin-top: 0;
}
.mt-5 {
	margin-top: 2rem;
}
.mt-6 {
	margin-top: 3rem;
}
.mb-5 {
	margin-bottom: 2rem;
}
.form-control {
	border-color: #cecece;
	box-shadow: none;
	border-radius: 4px;
	height: 40px;
}
.form-control::placeholder {
	color: #3336;
	opacity: 1;
}
.form-horizontal {
	margin: 0 -15px;
	padding-left: 30px;
}
.btn-md {
	height: 52px;
	min-width: 200px;
	font-weight: bold;
	letter-spacing: 0.025em;
	padding: 0 30px;
	font-size: 16px;
	border-radius: 26px;
}
.btn-primary {
	border-radius: 26px;
	background: #074A7B;
	font-weight: 500;
	border: 2px solid #074A7B;

}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
	background-color: #083D64;
	border-color: #083D64;
}
.control-label {
	color: #09487a;
	font-weight: 600;
	font-size: 14px;
}
.terms-link {
	font-weight: 400;
	color: #2f69b3;
	text-decoration: underline;
	margin-left: 10px;
}
label.error {
	color: #ff0011;
	font-weight: normal;
	font-size: 1.35rem;
}
#cbox_terms-error {
	order: 1;
	width: 100%;
}
.check-container {
	display: flex;
	flex-wrap: wrap;
}
/****/
.wrapper-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(255,255,255,0.9);
	display: flex;
	justify-content: center;
	align-content: center;
	display: none;
}
.loading-sending {
	position: relative;
	margin: 0 auto;
	width: 55px;
	height: 55px;
	border-radius: 50%;
	background: #c3092e;
	display: none;
}
.message-result {
	padding: 4rem;
	position: absolute;
	display: none;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}
.message-result h3 {
	text-align: center;
	color: #363636;
}
.button-submit {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: border-radius linear 0.05s, width linear 0.05s;
}
.button-submit:focus {
  outline: 0;
}
.button-submit.animate {
	width: 128px;
	height: 128px;
	min-width: 0;
	border-radius: 50%;
	color: transparent;
	padding: 0;
	/*top: calc(50% - 128px);*/
	top: 150px;
}
.button-submit.animate::after {
	position: absolute;
	content: '';
	width: 60px;
	height: 60px;
	border: 8px solid #fefefe;
	border-radius: 50%;
	border-left-color: transparent;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	animation: spin ease-in 2.5s forwards;
	animation-name: spin;
	-webkit-animation-name: spin;
	transition-timing-function: ease-in-out;
	-webkit-transition-timing-function: ease-in-out;
	animation-duration: 5s;
	-webkit-animation-duration: 5s;
	animation-fill-mode: forwards;
	-webkit-animation-fill-mode: forwards;
}
.loading-sending.button-submit.success {
	background: #34a853;
}
.button-submit.animate.success::before {
	position: absolute;
	content: '';
	width: 60px;
	height: 25px;
	border: 8px solid #fefefe;
	border-right: 0;
	border-top: 0;
	left: 50%;
	top: 47%;
	-webkit-transform: translate(-50%, -50%) rotate(0deg) scale(0);
	transform: translate(-50%, -50%) rotate(0deg) scale(0);
	-webkit-animation: success ease-in 0.15s forwards;
	animation: success ease-in 0.15s forwards;
	animation-delay: 5s;
}
.button-submit.animate.error {
  position: relative;
  -webkit-animation: vibrate ease-in 0.5s forwards;
  animation: vibrate ease-in 0.5s forwards;
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}
.button-submit.animate.error::before {
	color: #fff;
	position: absolute;
	content: '!';
	font-size: 80px;
	font-weight: bold;
	text-align: center;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%) scale(0);
	transform: translate(-50%, -50%) scale(0);
	-webkit-animation: error ease-in 0.5s forwards;
	animation: error ease-in 0.5s forwards;
	animation-delay: 5s;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  90% {
    transform: translate(-50%, -50%) rotate(1080deg) scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  98% {
    -webkit-transform: translate(-50%, -50%) rotate(1080deg) scale(1);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(1080deg) scale(0);
  }
}
@keyframes success {
  from {
    transform: translate(-50%, -50%) rotate(0) scale(0);
  }
  to {
    transform: translate(-50%, -50%) rotate(-45deg) scale(1);
  }
}
@-webkit-keyframes success {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0) scale(0);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg) scale(1);
  }
}
@keyframes error {
  from {
    transform: translate(-50%, -50%) scale(0);
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    background-color: #f44336;
  }
}
@-webkit-keyframes error {
  from {
    -webkit-transform: translate(-50%, -50%) scale(0);
  }
  to {
    -webkit-transform: translate(-50%, -50%) scale(1);
    background-color: #f44336;
  }
}
@keyframes vibrate {
  0%, 30%, 60%, 85%, 100% {
    left: 0;
    background-color: #f44336;
  }
  10%, 40%, 90%, 70% {
    left: -2px;
    background-color: #f44336;
  }
  20%, 50%, 80%, 95% {
    left: 2px;
    background-color: #f44336;
  }
}
#intro {
	margin-left: -15px;
	margin-right: -15px;
}
.wrapper-response {
	margin-top: -50px;
	margin-left: -15px;
	padding-right: 15px;
}
.data_result h3,
.table-results h3 {
	text-align: left !important;
	font-family: "Muli",sans-serif;
	color: #333;
	margin: 0 0 15px;
}
.list-data-response {
	list-style: none;
	padding: 0;
	margin: 0 0 30px;
}
.list-data-response span {
	color: #636363;
}
.px-0 {
	padding-left: 0;
	width: calc(100% - 30px);
	padding-right: 0;
}
#wrapper-results {
	display: none;
}
.mr-3 {
	margin-right: 10px;
}
.mb-0 {
	margin-bottom: 0;
}
#contact-form {
	display: none;
}
.wrapper-radio-button {
	background: #ededed;
	width: calc(100% - 15px);
	padding: 6px;
	border-radius: 8px;
	height: 52px;
}
.btn-radio {
	background: #ededed;
	color: rgb(96, 96, 96);
	border: none;
	height: 42px;
	width: 48%;
	border-radius: 6px;
}
.btn-radio.btn-active {
		background: #074a7b;
		color: #fff;
}
.main-wrapper-radio {
	align-items: end;
	padding: 0;
	min-width: 50%;
}
.main-wrapper-plazo {
	align-items: center;
	margin-top: -6px;
}
.table-results b {
	color: #09487a;
	font-size: 14px;
	font-weight: 600;
}
.cta-nueva-simulacion {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
	width: 100%;
}
.grecaptcha-badge {
	opacity: 0;
}
.wrapper-radio-button-motivo {
	display: flex;
	justify-content: space-around;
}
.form-check-label {
	font-size: 14px;
	font-weight: 400;
	color: #606060;
}
.main-wrapper-cuotas .wrapper-radio-button {
	min-height: 108px;
	display: flex;
	justify-content: space-around;
	width: 100%;
}
#cuota_fija {
	background: url('../img/icons/icn-cuota-fija.svg') no-repeat center center;
	height: 96px;
	background-size: 140px auto;
	display: flex;
	justify-content: center;
	align-items: end;
	padding: 10px;
	background-position-y: 20px;
}
#cuota_fija.btn-active {
	background: url('../img/icons/icn-cuota-fija-w.svg') no-repeat center center #074a7b;
	background-size: 140px auto;
	background-position-y: 20px;
}
#cuota_variable {
	background: url('../img/icons/icn-cuota-variable.svg') no-repeat center center;	
	height: 96px;
	background-size: 140px auto;
	display: flex;
	justify-content: center;
	align-items: end;
	padding: 10px;
	background-position-y: 20px;
}
#cuota_variable.btn-active {
	background: url('../img/icons/icn-cuota-variable-w.svg') no-repeat center center #074a7b;
	background-size: 140px auto;
	background-position-y: 20px;
}
.frm_description {
	display: block;
	padding: 0;
  font-size: 12px;
  color: #666666;
  font-weight: normal;
  text-align: left;
  font-style: normal;
}
.wrapper-simulador-credito {
	display: flex;
	gap: 50px;
	align-items: stretch;
	justify-content: center;
}
.wrapper-form-input {
	width: 55%;
	padding: 20px;
}
#wrapper-results {
	width: calc(45% - 50px);
	background: #f2f3f5;
	padding: 20px;
	border-radius: 12px;
	flex-wrap: wrap;
	align-items: flex-start;
	padding: 20px 20px 30px;
}
.main.simulador-credito {
	max-width: 100%;
}
.disclaimer-txt {
	font-size: 1.15rem;
	line-height: 1.4;
}
.disclaimer-txt b {
	font-size: 1.15rem;
	color: #333;
}
.label-result b {
	color: #09487a;
	font-size: 14px;
	font-weight: 600;
	display: block;
}
.simulador-inversiones .label-result b {
	display: inline;
}
#cuota_aprox {
	font-size: 2rem;
	font-weight: 600;
	color: #303030;
}
.error-submit-message {	
	background-color: #F2DEDE;
	border: 1px solid #EBCCD1;
	border-radius: 6px;
	color: #B94A48;
	font-size: 14px;
	margin: 0;
	margin-bottom: 14px;
	padding: 10px;
	display: none;
}
.error-submit-message b {
	color: #B94A48;
}
.simulador-inversiones .wrapper-form-input {
	width: 100%;
}
.simulador-inversiones #wrapper-results {
	width: calc(100% - 40px);
	margin: 0 auto;
}
.simulador-credito #monto_solicitar,
.simulador-credito #plazo_solicitar {
	display: none;
}
a.btn-primary {
	line-height: 48px;
}
.btn.btn-secondary {
	border: 2px solid #074A7B;
	color: #074A7B;
	background: #fff;
}
@media screen and (max-width: 640px) {
	.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
		padding-right: 0;
		padding-left: 0;
	}
	.main.simulador-credito {
		max-width: 100%;
	}
	.main.simulador-credito .row {
		margin-right: 0;
		margin-left: 0;
	}
	.simulador-credito h3 {
		margin-top: 10px;
	}
	.simulador-credito #monto_solicitar,
	.simulador-credito #plazo_solicitar {
		display: block;
	}
	.simulador-credito .wrapper-form-input.inactive {
		display: none !important;
	}
	.simulador-credito .wrapper-simulador-credito {
		flex-wrap: wrap;
		align-items: initial;
		gap: 10px;
	}
	.simulador-credito .wrapper-form-input {
		width: 100%;
		padding: 0;
	}
	.simulador-credito #wrapper-results {
		width: 100%;
		padding: 20px 10px;
	}
	.label-result b {
		display: initial;
	}
	#cuota_fija {
		background-size: 100px auto;
	}
	#cuota_fija.btn-active {
		background-size: 100px auto;
	}
	#cuota_variable {
		background-size: 100px auto;
	}
	#cuota_variable.btn-active {
		background-size: 100px auto;
	}
	.main.simulador-inversiones .wrapper-form-input {
		padding: 0;
	}
	.main.simulador-inversiones #wrapper-results {
		width: 100%;
	}
	.main.simulador-inversiones .container {
		padding: 0;
	}
	.main.simulador-inversiones .row {
		margin-left: 0;
		margin-right: 0;
	}
	.main.simulador-inversiones .main-wrapper-radio {
		min-width: 60%;
		width: 75%;
	}
	.main.simulador-inversiones .wrapper-radio-button {
		width: 100%;
		margin-left: 8px;
	}
}
.loading-data {
  display:none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: 
    radial-gradient(farthest-side,#09487a 94%,#0000) top/8px 8px no-repeat,
    conic-gradient(#0000 30%,#09487a);
  -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 8px),#000 0);
  animation:s3 1s infinite linear;
  margin: 0 auto;
}

@keyframes s3{ 
  100%{transform: rotate(1turn)}
}