@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.black-word {
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 24px;
    color: black;
}
.pink-word {
    color: #EB2B8E;
    font-family: 'Montserrat';
    font-weight: bolder;
    font-size: 24px;
}
html {
    margin: 0;
    padding: 0;
    height: auto;
}
body {
    font-family: 'Montserrat', sans-serif;
    padding: 0px;
    margin: 0px;
    height: auto;
}
p {
    /*color: #7a7a7a;*/
    color: black;
    font-size: 16px !important;
    font-family: 'Montserrat';
}

button {
    font-family: 'Montserrat';
    font-size: 13px;
}

input {
    /*color: #afafaf;*/
    font: 400 13.3333px Montserrat;
    border-width: 1px;
    border-style: none none solid none;
    border-color: #afafaf;
    width: 85%;
}
input::placeholder {
    color: #afafaf;
}
input:focus {
    text-decoration: none;
    outline: none;
}

select {
    color: #afafaf;
    font: 400 13.333px Montserrat;
    border-width: 1px;
    border-style: none none solid none;
    /*border-color: #afafaf;*/
    border-color: black;
    width: 90%;
}
select:focus {
    text-decoration: none;
    outline: none;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
    		@media screen and (max-width: 767px) and (min-width: 200px){
			input#email {
    width: 80% !important;
    padding-top: 8px;
    padding-bottom: 8px;
    margin-bottom: 1em !important;
	margin-left: 0% !important;				
}
			
		input#name {
    width: 80% !important;
    padding-top: 8px;
    padding-bottom: 8px;
    margin-bottom: 1em !important;
	margin-left: 0% !important;				
}	
			

			input[type="submit"] {
    width: 180px !important;
    margin-left: 0em !important;
}
		
		}	
		
		
input#data_email,input#rec_email,input#rec_name {
    width: 30%;
    padding: 10px;;
}
	
		
		input[type="checkbox"] {
    width: 3%;
}
		
	label {
    margin-top: 2em;
	margin-bottom: 2em;	
    float: left;
	/*color: #afafaf;*/
    color: black;	
}	
		
input[type="submit"] {
    width: 13%;
    color: #eb2b8e;
    font-size: 13px;
    padding-top: 8px;
    padding-bottom: 8px;
    background: #ffffff;
    border-style: solid;
    border-width: 1px;
    border-color: #eb2b8e;
    text-align: center;
    margin-left: 2em;
	cursor: pointer;
}	
		
		input[type="submit"]:hover{
    color: #ffffff;
    background: #eb2b8e;
    border-color: #eb2b8e;
		}	
    /* Barra de progreso */
/* Centrar la tarjeta */

.nota-informativa{
    text-align: left;
}

.header-1 {
    font-weight: normal;
    color: #aaa;
    text-align: center;
}

.header-2 {
    text-align: center;
    color: #333;
}

/* Estilo de la tarjeta */
.card {
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding-left: 20%;
    padding-right: 20%;
    padding-top: 30px;
    padding-bottom: 30px;
    max-width: 1300px;
    width: 70%;
}

.form-row {
    width: 80%;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 10px; /* Espaciado entre elementos */
    margin: 0 auto 15px auto; /* Centra el .form-row horizontalmente */
}

#calculadora-wizard {
display: flex;
justify-content: center;
align-items: center;
background-color: #f9f9f9;
padding-right: 15%;
padding-left: 15%;
padding-bottom: 20px;
padding-top: 20px;
}

@media (max-width: 800px) {
  .card {
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 30px;
    padding-bottom: 30px;
    max-width: 1300px;
    width: 90%;
}
  .form-row {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 10px; /* Espaciado entre elementos */
    margin: 0 auto 15px auto; /* Centra el .form-row horizontalmente */
}
#calculadora-wizard {
display: flex;
justify-content: center;
align-items: center;
background-color: #f9f9f9;
padding: 20px;
}
}

/* Barra de progreso */
#progress-bar-container {
width: 100%;
background-color: #f3f3f3;
border-radius: 5px;
margin-top: 50px;
margin-bottom: 20px;
height: 10px;
overflow: hidden;
}

#progress-bar {
width: 0%;
height: 100%;
background-color: #eb2b8e;
transition: width 0.3s ease-in-out;
}

/* Botones */
button.next-step, button.prev-step {
margin-top: 20px;
padding: 10px 20px;
background-color: #eb2b8e;
color: white;
border: none;
cursor: pointer;
font-size: 16px;
}

button.next-step:hover, button.prev-step:hover {
background-color: #c71a6f;
}

button.prev-step {
background-color: #ccc;
}

button.prev-step:hover {
background-color: #aaa;
}

.alinear-derecha {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

/* Estilo de los inputs */
input, select {
width: 100%;
padding: 10px;
margin: 10px 0;
border-bottom: 1px solid #ddd;
font-size: 14px;
}

.form-row label {
flex: 1; /* El label ocupa el espacio necesario */
}

.form-row input, .form-row select {
flex: 2; /* El input o select ocupa más espacio */
}

.form-row span {
flex: 0; /* El span ocupa solo el espacio necesario */
}

input.error, select.error {
border: 2px solid #EB2B8E;
}

#emailInputRow {
display: flex;
align-items: center;
gap: 10px;
margin-top: 10px;
}
.form-row.checkbox-container {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 15px;
}

/* Estilo del checkbox original */
input[type="checkbox"] {
width: 20px;
height: 20px;
accent-color: #eb2b8e; /* Cambia el color del checkbox en navegadores modernos */
cursor: pointer;
}

/* Estilo del texto del label */
input[type="checkbox"] + label {
font-size: 14px;
color: #333;
cursor: pointer;
}

.form-group-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.form-group-inline label {
    margin-right: 10px;
    font-weight: bold;
    min-width: 120px; /* Ajusta el ancho mínimo para las etiquetas */
    text-align: right;
}

.form-group-inline input {
    flex: 1;
    padding: 5px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.columna-izquierda {
  background: #f3f3f3; /* Gris claro */
  border: none;
  padding: 12px 8px;
  color: #000000;
    font-weight: bold;
}

.columna-derecha {
  background: #fff;
  border: 2px solid #f3f3f3; /* Mismo gris claro */
  padding: 12px 8px;
  color: #000000;
}

.boton-imagen {
    position: relative;
    width: 100%;
    max-width: 765px;
    height: auto;
    aspect-ratio: 765 / 115;
    background-image: url('../img/fondo_resultado_euros_a_reclamar.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    color: black;
    font-size: 18px;
    cursor: pointer;
    overflow: hidden;
    background-color: transparent;
}

.boton-imagen .texto-encima {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: black;
  font-size: 18px;
  background: none;
  box-shadow: none;
  white-space: nowrap;
}

@media (max-width: 800px) {
    .boton-imagen {
    position: relative;
    width: 100%;
    max-width: 765px;
    height: auto;
    aspect-ratio: 765 / 115;
    background-image: url('./fondo_resultado_euros_a_reclamar.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    color: black;
    font-size: 12px;
    cursor: pointer;
    overflow: hidden;
    background-color: transparent;
}
.boton-imagen .texto-encima {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: black;
  font-size: 12px;
  background: none;
  box-shadow: none;
  white-space: normal;
}
}

.tabla-50 {
  width: 100%;
  table-layout: fixed;
}

.tabla-50 td,
.tabla-50 th {
  width: 50%;
  vertical-align: top;
}
@media (max-width: 800px) {
  .tabla-50 td,
  .tabla-50 th {
    display: block;
    width: 100%;
  }
}

.circle-list {
  list-style: none;
  padding-left: 0;
}
.circle-list li {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.circle {
  display: inline-flex;
  flex-shrink: 0; /* evita que se reduzcan */
  justify-content: center;
  align-items: center;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  font-size: 1.5em;
  font-weight: bold;
  margin-right: 16px;
  border: 3px solid;
  box-sizing: border-box;
}
.circle-1 {
  color: #e91e63;
  border-color: #e91e63;
}
.circle-2 {
  color: #4caf50;
  border-color: #4caf50;
}
.circle-3 {
  color: #880e4f;
  border-color: #880e4f;
}

.italic-gray {
  font-style: italic;
  color: gray;
}

.lista-texto {
  margin-left: 16px; /* o el valor que prefieras */
  display: block;
}

.form-row.checkbox-container .columna {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    text-align: justify;
}