@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&display=swap');

html, body {
	font-family: 'Open Sans', sans-serif;
	background: #F8F8F8;
	font-size: 16px;
	margin: 0;
	box-sizing: border-box;
	overflow-x: hidden; 
	scroll-behavior: smooth;
	letter-spacing: -0.5px;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;   
}

body {
    animation: fadeInAnimation ease 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}
#header_old {
	display: block;
	float: left;
	width: 100%;
	height: 75px;
	background: #22306A;
	margin-bottom: 30px;
  	box-shadow: 
	    0 1px 2px rgba(0, 0, 0, 0.03),
        0 2px 4px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
#row {
	max-width: 1000px;
  	margin: 0 auto;
	padding: 0 25px;
}
#title {
	font-family: 'Bree Serif', serif;
	display: block;
	float: left;
	width: 100%;
	font-size: 32px;
	font-weight: 600;
	text-align: center;
	letter-spacing: 0px !important;
	color: #22306A;
}
#subtitle {
	font-family: 'Open Sans', sans-serif;
	display: block;
	float: left;
	width: 100%;
	font-size: 16px;
	font-weight: normal;
	letter-spacing: -0.5px;
	padding: 0px 0;
	color: #000;
}
#steps {
	display: block;
	float: left;
	width: 100%;
	text-align: center;
}
#step {
	margin-top: 20px;
	display: inline-block;
}
.step_number {
	display: inline-block;
	width: 25px;
	height: 25px;
	font-weight: 800;
	line-height: 150%;
	text-align: center;
	border-radius: 50%;
	color: #B1B1B1;
	border: 2px solid #B1B1B1;
}
.step_text {
	display: inline-block;
	font-weight: 700;
	color: #B1B1B1;
	padding: 2px 10px;
	font-size: 16px;
}
.step_spacer {
	width: 50px;
	display: inline-block;
	border-bottom: 2px solid #B1B1B1;
	margin: 0 20px 3px 10px;
}
.number_active {
	border: 2px solid #22306A !important;
	color: #22306A !important;
}
.text_active {
	color: #22306A !important;
}
.number_ok {
	border: 2px solid #22306A !important;
	background:  #22306A !important;
	color: #FFF !important;
}
#content {
	box-sizing: border-box;
	display: block;
	float: left;
	width: 100%;
	background: #FFF;
	border-radius: 12px;
	margin-top: 20px;
	padding: 30px;
	text-align: center;
	border: 1px solid #ececec;
	box-shadow:
			0 0 1px rgba(0, 0, 0, 0.04),
			0 6px 40px rgba(0, 0, 0, 0.05),
			0 12px 40px rgba(0, 0, 0, 0.03);
}
#content_title {
	display: block;
	float: left;
	width: 100%;
	font-size: 18px;
	text-align: center;
	color: #000;
	font-weight: 500;
}
.form {
	font-family: 'Open Sans', sans-serif;
	display: inline-block;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	background: #F8F8F8;
	border-radius: 999px;
	border: 1px solid #ececec;
	margin: 10px 0 30px 0;
	padding: 10px;
	transition: 0.3s;
  	box-shadow: 
	    0 1px 2px rgba(0, 0, 0, 0.03),
        0 2px 4px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.form:hover {
	border: 1px solid #B1B1B1;
}
.form:focus{
	outline: none;
}
.form.error {
    border-color: #D90000;
}
.options input[type="radio"] {
	opacity: 0;
	position: fixed;
	width: 0;
}
.options label {
    display: inline-block;
	box-sizing: border-box;
	border-radius: 999px;
	text-align: center;
	border: 1px solid #E4E4E4;
	color: #000;
	font-size: 16px;
	background: #F8F8F8;
	font-weight: bold;
	transition: 0.3s;
	cursor: pointer;
	margin: 10px 5px 30px 5px;
	padding: 10px 20px;
  	box-shadow: 
	    0 1px 2px rgba(0, 0, 0, 0.03),
        0 2px 4px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.options label:hover{
	border: 1px solid #B1B1B1;
}
.options input[type="radio"]:checked + label {
	border: 1px solid #000;
}
.options label.error {
    border-color: #D90000;
}

.options2 input[type="radio"] {
	opacity: 0;
	position: fixed;
	width: 0;
}
.options2 label {
    display: inline-block;
	box-sizing: border-box;
	border-radius: 999px;
	text-align: center;
	border: 1px solid #E4E4E4;
	color: #000;
	font-size: 16px;
	background: #F8F8F8;
	font-weight: bold;
	transition: 0.3s;
	cursor: pointer;
	margin: 10px 5px 30px 5px;
	padding: 10px 20px;
  	box-shadow: 
	    0 1px 2px rgba(0, 0, 0, 0.03),
        0 2px 4px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.options2 label:hover{
	border: 1px solid #B1B1B1;
}
.options2 input[type="radio"]:checked + label {
	border: 1px solid #000;
}
.options2 label.error {
    border-color: #D90000;
}
#button_next {
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	background: #22306A;
	border: 1px solid #22306A;
	color: #FFF;
	border-radius: 999px;
	margin: 10px 0 0 0;
	padding: 10px 30px;
	transition: 0.3s;
  	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03), 0 2px 4px rgba(0, 0, 0, 0.06);
	cursor: pointer;
}
#button_next:hover {
	transform: scale(1.04);
}
#button_prev {
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	background: #FFF;
	border: 1px solid #B1B1B1;
	color: #B1B1B1;
	border-radius: 999px;
	margin: 30px 20px 0 0;
	padding: 10px 30px;
	transition: 0.3s;
  	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03), 0 2px 4px rgba(0, 0, 0, 0.06);
	cursor: pointer;
}
#button_prev:hover {
	transform: scale(1.04);
}
#error_data {
	display: block;
	float: left;
	width: 100%;
	font-size: 16px;
	text-align: center;
	color: #D90000;
	font-weight: 700;
}
#linea {
	display: inline-block;
	margin: 15px 0;
}
#linea_title {
	display: inline-block;
	width: 100%;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	color: #22306A;
}
#linea_subtitle {
	display: inline-block;
	width: 100%;
	font-size: 18px;
	text-align: center;
	color: #B1B1B1;
}
#tasa_subtitle {
	display: inline-block;
	width: 100%;
	font-size: 18px;
	text-align: center;
	color: #000;
}
#cuota_subtitle {
	display: inline-block;
	width: 100%;
	font-size: 18px;
	text-align: center;
	color: #000;
	margin-top: 25px;
}
#monto_subtitle {
	display: inline-block;
	width: 100%;
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	color: #22306A;
	margin-bottom: 25px;
}
#footer {
	display: block;
	float: left;
	width: 100%;
	color: #B1B1B1;
	font-size: 14px;
	margin: 30px 0;
}
#footer_left {
	display: block;
	float: left;
	width: 40%;
	text-align: left;
}
#footer_right {
	display: block;
	float: left;
	width: 60%;
	text-align: right;
}
.footer {
	width: 220px;
	margin-bottom: 2px;
}
#header {
	display: block;
	float: left;
	width: 100%;
	margin: 30px 0;
	text-align: center;
}
#header_left {
	display: inline-block;
	padding-right: 30px;
	border-right: 1px solid #ececec;
}
#header_right {
	width: 500px;
	display: inline-block;
	padding: 10px 0 16px 20px;
}
.header {
	width: 150px;
}
#footer span{
	font-size: 13px;
	color: #B1B1B1;
}
#offer {
	display: inline-block;
	margin-bottom: 15px;
	border-radius: 999px;
	background: #E8EAF0;
	border: 1px solid #22306A;
	box-sizing: border-box;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03), 0 2px 4px rgba(0, 0, 0, 0.06);
}
#offer_inner {
	display: block;
	float: left;
	width: 40px;
	height: 40px;
	text-align: center;
	color: #FFF;
	background: #22306A;
	border-radius: 100%;
	padding: 11px 8px;
	box-sizing: border-box;
}
#offer_text {
	display: block;
	float: left;
	text-align: left;
	color: #22306A;
	font-size: 16px;
	text-align: left;
	border-radius: 100%;
	padding: 9px 20px 9px 10px;
	box-sizing: border-box;
}
#info {
	display: inline-block;
	font-size: 16px;
	margin-bottom: 40px;
	background: #F3F3F3;
	border-radius: 999px;
	border: 1px solid #B1B1B1;
	box-sizing: border-box;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03), 0 2px 4px rgba(0, 0, 0, 0.06);
}	
#info_inner {
	display: block;
	float: left;
	width: 40px;
	height: 40px;
	text-align: center;
	color: #FFF;
	background: #B1B1B1;
	border-radius: 100%;
	padding: 11px 8px;
	box-sizing: border-box;
}
#info_text {
	display: block;
	float: left;
	text-align: left;
	color: #B1B1B1;
	font-size: 16px;
	text-align: left;
	border-radius: 100%;
	padding: 9px 20px 9px 10px;
	box-sizing: border-box;
}
#alert {
	display: inline-block;
	width: 100%;
	margin-bottom: 25px;
	box-sizing: border-box;
	font-size: 13px;
	text-align: center;
	color: #B1B1B1;
	padding: 10px;
}	
#row_cuotas_header {
	display: block;
	float: left;
	width: 100%;
	font-weight: bold;
	border-bottom: 1px solid #B1B1B1;
	font-size: 15px;
	color: #B1B1B1;
}
#row_cuotas {
	display: block;
	float: left;
	width: 100%;
	border-bottom: 1px solid #ECECEC;
	padding: 1px 0;
	font-size: 15px;
}
#row_1 {
	display: block;
	float: left;
	width: 10%;
	text-align: left;
}
#row_2 {
	display: block;
	float: left;
	width: 18%;
	text-align: right;
	color: #B1B1B1;
}
#row_3 {
	display: block;
	float: left;
	width: 18%;
	text-align: right;
}
#row_4 {
	display: block;
	float: left;
	width: 18%;
	text-align: right;
}
#row_5 {
	display: block;
	float: left;
	width: 18%;
	text-align: right;
}
#row_6 {
	display: block;
	float: left;
	width: 18%;
	text-align: right;
}
#button_get {
	display: inline-block;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	width: calc(50% - 15px);
	background: linear-gradient(
		135deg,
		#FF9A3D 0%,
		#FF7722 40%,
		#F55A0A 75%,
		#D94A00 100%
	);

	color: #FFF;
	border-radius: 999px;
	margin: 20px 20px 40px 0;
	padding: 10px 30px;
	transition: 0.3s;
	box-sizing: border-box;
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,.25),
		inset 0 -1px 0 rgba(0,0,0,.12),
		0 8px 20px rgba(0,0,0,.15);
	cursor: pointer;
}
#button_get:hover {
	transform: scale(1.04);
}
#button_wpp {
	display: inline-block;
	font-size: 18px;
	font-weight: 700;
	width: calc(50% - 15px);
	text-align: center;
	background: linear-gradient(
		90deg,
		#25D366 0%,
		#20C55A 50%,
		#128C7E 100%
	);
	color: #FFF;
	border-radius: 999px;
	margin: 20px 0px 40px 0;
	padding: 10px 30px;
	transition: 0.3s;
	box-sizing: border-box;
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,.25),
		inset 0 -1px 0 rgba(0,0,0,.12),
		0 8px 20px rgba(0,0,0,.15);
	cursor: pointer;
}
#button_wpp:hover {
	transform: scale(1.04);
}
.sub_button {
	font-size: 14px;
	font-weight: 500;
	opacity: 0.7;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #FFF;
  background-color: rgba(0,0,0,0.4);
}
.modal-content {
  background-color: #FFF;
  	margin: 50px auto;
	padding: 30px;
	text-align: center;
	border: 1px solid #ececec;
	box-shadow:
			0 0 1px rgba(0, 0, 0, 0.04),
			0 6px 40px rgba(0, 0, 0, 0.05),
			0 12px 40px rgba(0, 0, 0, 0.03);
  width: 700px;
  border-radius: 12px;
  display: flex;
  position: relative;
}
.close {
  color: #3E4095;
  float: right;
  font-size: 44px;
  line-height: 85%;
  right: 15px;
  top: 8px;
  font-weight: bold;
  position: absolute;
}
.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
#form_row {
	display: block;
	float: left;
	width: 100%;
	text-align: center;
}
#form_sector {
	display: inline-block;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
	padding: 10px;
}
.form2 {
	font-family: 'Open Sans', sans-serif;
	display: inline-block;
	font-size: 18px;
	text-align: center;
	background: #F8F8F8;
	border-radius: 999px;
	border: 1px solid #ececec;
	margin: 10px 0 0 0;
	padding: 10px;
	transition: 0.3s;
  	box-shadow: 
	    0 1px 2px rgba(0, 0, 0, 0.03),
        0 2px 4px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.form2:hover {
	border: 1px solid #B1B1B1;
}
.form2:focus{
	outline: none;
}
.form2.error {
    border-color: #D90000;
}
#content_left {
	display: block;
	float: left;
	width: 50%;
	text-align: left !important;
	padding-right: 30px;
	border-right: 1px solid #ececec;
	box-sizing: border-box;
}
#content_right {
	display: block;
	float: left;
	width: 50%;
	text-align: right !important;
	padding-left: 30px;
	box-sizing: border-box;
}
.ancho1 {
	width: 100%;
}
.ancho2 {
	width: 49.5%;
}
.ancho3 {
	width: 33%;
}
.borde {
	border-left: 1px solid #ECECEC;
}

@media only screen and (max-width: 900px) {
	#header {
		margin-top: 0px;
	}
	#header_left {
		padding-right: 0px;
		border-right: 0px;
		border-bottom: 1px solid #ececec;
		padding-bottom: 10px;
	}
	#header_right {
		width: 100%;
		display: inline-block;
		padding: 10px 0px 0px 0px;
	}
	#step {
		width: 100%;
		margin-top: 5px;
		font-size: 14px;
	}
	.step_spacer {
		display: none;
	}
	.step_number {
		width: 22px;
		height: 22px;
		display: none !important;
	}
	.step_text {
		display: none !important;
	}
	.number_ok {
		display: inline-block !important;
	}
	.number_active {
		display: inline-block !important;
	}
	.text_active {
		display: inline-block !important;
	}
	.footer {
		margin-bottom: 10px;
	}
	#footer_left {
		width: 100%;
		text-align: center;
	}
	#footer_right {
		width: 100%;
		text-align: center;
		margin-top: 10px;
		font-size: 14px !important;
	}
	#footer span {
    	font-size: 14px !important;
	}
	#content {
		padding: 20px;
	}
	#content_title {
		font-size: 16px !important;
	}
	.options2 label {
		margin: 10px 5px 5px 5px;
		padding: 10px 20px;
		box-shadow: 
			0 1px 2px rgba(0, 0, 0, 0.03),
			0 2px 4px rgba(0, 0, 0, 0.06),
			inset 0 1px 0 rgba(255, 255, 255, 0.8);
	}
	#button_next {
		margin-top: 30px;
	}
	#title {
		font-size: 28px;
	}
	.ancho1 {
		width: 100%;
	}
	.ancho2 {
		width: 100%;
	}
	.ancho3 {
		width: 100%;
	}
	.borde {
		border-left: 0px;
		border-top: 1px solid #ECECEC;
	}
	#linea {
		margin: 0;
		padding: 15px 5px;
		box-sizing: border-box;
	}
	#monto_subtitle {
		margin-bottom: 0px;
	}
	#tasa_subtitle {
		font-size: 14px;
	}
	#button_get {
		width: 100%;
		margin: 20px 20px 10px 0;
		padding: 10px 15px;
	}
	#button_wpp {
		width: 100%;
		margin: 20px 20px 40px 0;
		padding: 10px 15px;
	}
	#content_left {
		width: 100%;
		text-align: left !important;
		padding-right: 0px;
		border-right: 0px;
	}
	#content_right {
		width: 100%;
		text-align: left !important;
		padding-left: 0px;
	}
	#row_1 {
		width: 7%;
		font-size: 11px !important;
		padding-top: 2px;
	}
	#row_2 {
		display: none;
	}
	#row_3 {
		width: 21%;
		font-size: 11px !important;
		padding-top: 2px;
	}
	#row_4 {
		width: 21%;
		font-size: 11px !important;
		padding-top: 2px;
	}
	#row_5 {
		width: 20%;
		font-size: 11px !important;
		padding-top: 2px;
	}
	#row_6 {
		width: 31%;
	}
	#offer_inner {
		display: none;
	}
	#info_inner {
		display: none;
	}
	.options label {
		margin: 10px 5px 30px 5px;
		padding: 10px 15px;
		box-shadow: 
			0 1px 2px rgba(0, 0, 0, 0.03),
			0 2px 4px rgba(0, 0, 0, 0.06),
			inset 0 1px 0 rgba(255, 255, 255, 0.8);
	}
	#row {
		padding: 0 10px;
	}
	.sub_button {
		font-size: 13px;
	}
	#offer_text {
		text-align: center;
		font-size: 15px;
	}
	#info_text {
		text-align: center;
		font-size: 15px;
	}
}