body {
  background-color: rgb(207, 206, 206);
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
}

header {
  background-color: white;
  width: 100%;
  max-width: 100%;
}

header .d-flex {
  justify-content: space-evenly;
}

.rounded-label {
  background-color: #2a1859;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
  width: 75%;
  display: flex;
  color: white;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

#firstStep .rounded-label {
  justify-content: center;
}

#firstStep .rounded-radio .radio,
#firstStep .rounded-radio label {
  cursor: pointer;
}

#firstStep h4 {
  padding-bottom: 0;
}

#firstStep .rounded-radio {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 30%;
  padding-left: 3%;
  font-weight: bold;
}

#firstStep .radio {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border: 2px solid #333;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  background-color: white;
}

/* Indicador "relleno" cuando esté marcado */
#firstStep .radio:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #333;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

main h1 {
  color: #2a1859;
  font-weight: bolder;
}

.secondStepInput {
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
  border-top-left-radius: 1.375rem !important;
  border-top-right-radius: 1.375rem !important;
  border-bottom-right-radius: 1.375rem !important;
  border-bottom-left-radius: 1.375rem !important;
  padding: 0.375rem 0.75rem !important;
}

#secondStep .form-control {
  background-color: #e2e5fa;
  border-color: #e2e5fa;
}

#secondStep .form-label {
  margin: 0;
}

#secondStep label {
  padding-left: 50%;
  font-weight: bolder;
  font-size: large;
}

#secondStep .col-5 {
  align-content: center;
}

#secondStep input::placeholder {
  color: #2a1859;
  opacity: 1;
  font-weight: bolder;
  font-size: large;
}

#secondStep .btn {
  margin-left: -1.7%;
  width: 75%;
  background-color: #2a1859;
  color: white;
  font-size: xx-large;
  font-weight: bolder;
  border-radius: 1rem;
  margin-top: 2%;
}

.thirdStepInput {
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
  border-top-left-radius: 1.375rem !important;
  border-top-right-radius: 1.375rem !important;
  border-bottom-right-radius: 1.375rem !important;
  border-bottom-left-radius: 1.375rem !important;
  padding: 0.375rem 0.75rem !important;
}

#thirdStep .form-control {
  background-color: #e2e5fa;
  border-color: #e2e5fa;
}

#thirdStep button {
  margin-left: -10.6%;
  width: 100%;
  background-color: #2a1859;
  color: white;
  font-size: xx-large;
  font-weight: bolder;
  border-radius: 1rem;
}

#thirdStep label,
p {
  font-weight: 400;
}

#thirdStep .rounded-label {
  justify-content: center;
}

/* --- CSS --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: #c4c4c4;
  border-radius: 20px;
  padding: 6px;
  /* grosor del borde gris */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 32%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 13px;
  padding-bottom: 13px;
}

.modal-inner {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  max-width: 96%;
  max-height: 96%;
  min-width: 96%;
  min-height: 92%;
  align-content: center;
}

.modal-inner h2 {
  margin: 0 0 20px;
  font-size: 1.7rem;
  color: #2a1859;
  line-height: 1.3;
  font-weight: 700;
}

.modal-inner h5 {
  font-weight: 400;
  font-size: 1.7rem;
}

.btn-login {
  background-color: #2a1859;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 1.7rem;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  width: 100%;
  text-transform: uppercase;
}

.btn-login:hover {
  opacity: 0.9;
}

/* Responsive styles for steps */
.steps-container {
  display: flex;
  flex-direction: row;
}

/* CAMBIO */
.step-content {
  display: flex;
  justify-content: center;
  flex-flow: column;
}

.step-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

#post-5153 .entry-title {
  margin-left: 16%;
}

@media (max-width: 767px) {
  .steps-container {
    flex-direction: column;
  }

  .step-content {
    order: 1;
  }

  .step-image {
    order: 2;
    margin-top: 2rem;
  }

  .liquidation .col-12.col-md-12 {
    order: 3;
  }

  #secondStep .step-image {
    display: none;
  }

  .rounded-label {
    width: 100%;
  }

  #thirdStep button,
  #secondStep .btn {
    margin-left: 0;
    width: 100%;
  }

  #secondStep .btn {
    margin-top: 1rem;
  }

  #dynamicInputs {
    padding-left: 5%;
  }

  #secondStep h1,
  #secondStep h5 {
    padding-left: 5%;
  }

  #secondStep label {
    padding-left: 24%;
  }

  .modal-box {
    width: 90%;
  }

  .modal-inner {
    padding: 16px;
    align-content: center;
  }

  .modal-inner h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .modal-inner h5 {
    font-size: 1.2rem;
  }

  .modal-inner p {
    font-size: 1rem;
  }

  .btn-login {
    font-size: 1.2rem;
    padding: 10px 20px;
  }

  #firstStep h4 {
    font-weight: 600;
    font-size: 4.9vw;
    margin-top: 8px;
  }

  #firstStep .rounded-radio {
    width: 45%;
  }

  #motive {
    margin-top: 3rem;
  }

  #motive h2 {
    font-size: 1.5rem;
    margin-left: 0 !important;
    text-align: center;
    padding: 0 15px;
  }

  #motive article {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 0px !important;
  }

  #motive article .col-2 {
    width: 100%;
    max-width: 200px;
    text-align: center;
    padding: 0;
    margin-bottom: -4vh;
  }

  #motive article img {
    width: 100%;
    object-fit: contain;
    margin-bottom: -0.5rem;
  }

  #motive article p {
    font-size: 1.1rem;
    margin: 0;
  }

  #motive .separator {
    width: 100% !important;
  }

  #about {
    padding: 0 15px;
  }

  #about h2 {
    font-size: 1.5rem;
    margin-left: 0 !important;
    text-align: center;
  }

  #about article .row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #about article .col-10 {
    width: 100%;
    padding: 0;
  }

  #about article h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  #about article p {
    font-size: 1rem;
    line-height: 1.5;
  }

  #about article img {
    width: 100%;
  }

  #about .separator {
    width: 100% !important;
  }

  #legal {
    padding: 0 15px;
  }

  #legal article {
    text-align: justify;
  }

  #legal article p {
    font-size: smaller;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  #legal .separator {
    width: 100% !important;
  }

  #loanSecondStep {
    width: 100% !important;
    padding: 0 15px;
  }

  #loanSecondStep p {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  #dynamicLoans {
    max-height: none !important;
    overflow-y: visible !important;
  }

  .loan-container {
    width: 100%;
    margin-left: 0;
    min-height: 16vh;
    margin-bottom: 1rem;
  }

  .loan-container .row {
    width: 100%;
    padding: 1rem;
  }

  .loan-container img {
    margin: 0 auto;
    display: block;
    width: 126% !important;
    height: auto;
    align-self: center;
  }

  .loan-container h4 {
    font-size: 0.81rem;
    margin: 0.5rem 0;
    padding-right: 5%;
    padding-left: 5%;
  }

  .loan-offer-btn {
    width: 80% !important;
    font-size: 1rem !important;
    margin: 0.5rem auto;
  }

  #loan-offers {
    width: 100% !important;
    margin-left: 0 !important;
    font-size: 1.1rem !important;
    padding: 0.8rem;
  }

  .loan-container .row .col-8 .mb-2 {
    width: 95% !important;
    padding: 0 !important;
  }
}

.aguinaldoSeparator-horizontal {
  width: 100%;
  /* ocupa todo el ancho del contenedor */
  height: 4px;
  /* grosor de la línea */
  background-color: #2a1859;
  /* color de la línea (ajústalo a tu gusto) */
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

.aguinaldoSEO p {
  font-size: 14px;
  font-weight: 400;
}

.aguinaldoSEO h4 {
  font-size: 16px;
  font-weight: 900;
}

/*///////////////LOAN/////////////////*/

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 35px;
  background: #f7df93;
  /* color de la barra */
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
  outline: none;
  align-items: end;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 70px;
  height: 70px;
  background: url("Images/range-pointer.png") no-repeat center center;
  background-size: contain;
  cursor: pointer;
  margin-bottom: -15px;
  /* centrar la estrella sobre la barra */
  box-shadow: none;
}

/* Firefox */
input[type="range"]::-moz-range-thumb {
  /* igual que arriba */
}

/*CAMBIO*/
#loanFirstStep .floating-rounded-label {
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
  width: 75%;
  display: flex;
  flex-flow: column;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
  /* NUEVO: borde y sombra */
  box-shadow: 1px 5px 8px 4px rgb(0 0 0 / 29%);
  background-color: white;
  margin-top: 4rem;
}

#personalisedLoans {
  background-color: #ffd700;
  padding-left: 2vw;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
  width: 95%;
}

#personalisedLoans a {
  color: #2a1859;
  font-size: x-large;
  font-weight: 800;
  text-decoration: none;
}

/* Contenedor relativo para posicionar el output */
.slider-container {
  position: relative;
  width: 100%;
}

/* el caret (flecha apuntando hacia abajo) */
#amount-caret {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateX(-50%);
  pointer-events: none;
  font-size: 1.5rem;
  color: #2a1859;
}

/* output */
#amount-display {
  position: absolute;
  top: 100%;
  margin-top: 25px;
  left: 0;
  transform: translateX(-50%);
  pointer-events: none;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: bold;
  white-space: nowrap;
  color: #2a1859;
}

#loanForm .btn-primary {
  background-color: #ffd700;
  color: #2a1859 !important;
  font-size: x-large;
  font-weight: bolder;
  width: 55%;
  border: 0px;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

.floating-rounded-label .separator {
  width: 100%;
  /* ocupa todo el ancho del contenedor */
  height: 4px;
  /* grosor de la línea */
  background-color: #2a1859;
  /* color de la línea (ajústalo a tu gusto) */
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

#loanFirstStep .floating-rounded-label p {
  padding: 0;
}

#loanSecondStep {
  width: 80%;
}

.loan-container {
  background-color: white;
  width: 96%;
  justify-content: center;
  display: flex;
  height: 23vh;
  align-content: center;
  flex-wrap: wrap;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
  box-shadow: 1px 5px 9px 6px rgb(0 0 0 / 29%);
  background-color: white;
  margin-left: 2%;
}

.loan-container .row {
  width: 98.5%;
  height: 95%;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
  align-content: center;
}

.loan-container h4 {
  text-align: center;
  font-weight: bold;
  padding-top: 4px;
  padding-bottom: 0;
}

.loan-container .separator {
  width: 100%;
  /* ocupa todo el ancho del contenedor */
  height: 4px;
  /* grosor de la línea */
  background-color: white;
  /* color de la línea (ajústalo a tu gusto) */
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

.loan-offer-btn {
  width: 65%;
  background-color: #2a1859;
  color: white !important;
  font-size: larger;
  font-weight: bolder;
  border-radius: 2rem;
  margin-top: 8px;
}

.loan-offer-btn:hover {
  background-color: white !important;
  color: black !important;
}

.loan-container img {
  width: 69%;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
  background: white;
}

/* CAMBIO */
#dynamicLoans {
  overflow-y: scroll;
  max-height: 68vh;
  padding-top: 10px;
}

#dynamicLoans::-webkit-scrollbar {
  width: 8px;
}

#dynamicLoans::-webkit-scrollbar-track {
  background: transparent;
}

#dynamicLoans::-webkit-scrollbar-thumb {
  background: #2a1859;
  border-radius: 4px;
}

#dynamicLoans::-webkit-scrollbar-thumb:hover {
  background: #3a2869;
}

#loan-offers {
  width: 65%;
  background-color: #2a1859;
  color: white;
  font-size: larger;
  font-weight: bolder;
  border-radius: 2rem;
  margin-top: 8px;
  margin-left: 16%;
  border: 4px solid;
  border-color: #ffd700;
}

#loanSecondStep p {
  font-size: larger;
  font-weight: bolder;
}

#loanLogin {
  border-color: #2a1859;
  color: #2a1859;
  border: 4px solid;
  padding: 12px 24px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 15px;
  cursor: pointer;
}

#loanSignUp {
  background-color: #2a1859;
  color: #fff;
  border: 4px solid;
  border-color: #ffd700;
  padding: 12px 24px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 15px;
  cursor: pointer;
}

#loansModal p {
  font-size: larger;
  color: #2a1859;
}

#loanFirstStep a:hover {
  cursor: pointer;
}

article img {
  width: 100%;
}

#motive article {
  text-align: center;
}

#motive .separator {
  width: 90%;
  /* ocupa todo el ancho del contenedor */
  height: 8px;
  /* grosor de la línea */
  background-color: #2a1859;
  /* color de la línea (ajústalo a tu gusto) */
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  justify-self: center;
}

#motive {
  margin-top: 5rem;
}

#motive h2 {
  color: #2a1859;
}

#motive p {
  font-size: larger;
  font-weight: bold;
  color: #2a1859;
}

#motive img:hover {
  cursor: pointer;
}

#about,
#legal {
  color: #2a1859;
}

#about .row {
  align-items: center;
  text-align: start;
}

#about h4 {
  font-weight: bold;
}

#about p {
  font-size: larger;
  margin-bottom: 0px;
}

#legal p {
  font-size: small;
  margin-bottom: 0px;
}

#about .separator {
  width: 90%;
  /* ocupa todo el ancho del contenedor */
  height: 8px;
  /* grosor de la línea */
  background-color: #2a1859;
  /* color de la línea (ajústalo a tu gusto) */
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  justify-self: center;
}

#legal article {
  text-align: justify;
}

#legal .separator {
  width: 90%;
  /* ocupa todo el ancho del contenedor */
  height: 8px;
  /* grosor de la línea */
  background-color: #2a1859;
  /* color de la línea (ajústalo a tu gusto) */
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  justify-self: center;
}

/* Estilos responsive para el simulador de préstamos */
@media (max-width: 767px) {
  #loanFirstStep {
    padding: 0 15px;
  }

  #loanFirstStep h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .floating-rounded-label {
    width: 100% !important;
    padding: 1rem !important;
  }

  #personalisedLoans {
    width: 100%;
  }

  #personalisedLoans a {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
  }

  #personalisedLoans img {
    width: 8vw !important;
    padding-bottom: 0px !important;
  }

  #loanForm {
    margin-top: 1rem;
  }

  #loanForm .col-8 {
    width: 70%;
    padding-right: 10px;
  }

  #loanForm .col-4 {
    width: 30%;
    padding-left: 10px;
    display: flex;
    align-items: end;
  }

  #loanForm label {
    font-size: 1.1rem;
  }

  #search {
    font-size: 1rem !important;
    padding: 0.5rem 1rem;
    width: 100% !important;
    margin-bottom: 2vh;
  }

  .slider-container {
    margin-bottom: 1rem;
  }

  #amount-display {
    font-size: 1rem;
  }

  #loanSignUp {
    height: 100%;
    align-content: center;
    padding: 0;
  }
}

@media (max-width: 667px) {
  #loanForm label {
    font-size: 1rem;
  }

  #search {
    font-size: 1rem !important;
    padding: 0.5rem;
    width: 100% !important;
    margin-bottom: 3vh;
  }
}

html {
  overflow-x: hidden;
}

#overlaySpinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  /* fondo semitransparente */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1050;
  /* por encima de modals y demás elementos */
}

/*CAMBIO*/
@media (min-width: 768px) {
  .step-image {
    position: relative;
    overflow: hidden;
  }

  .step-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(0);
    transition: transform 0.1s ease-out;
  }
}

/* ///////////////// LIQUIDATION ///////////////////*/

#liquidationFirstStep .rounded-radio {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: bold;
}

#liquidationFirstStep .rounded-radio .radio,
#liquidationFirstStep .rounded-radio label {
  cursor: pointer;
}

#liquidationFirstStep .radio {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  position: relative;
  accent-color: #835de7;
}

#liquidationFirstStep .rounded-label {
  max-height: 47px;
}

.radioWebkitContainer {
  display: flex;
  background-color: #b295ff;
  align-content: center;
  flex-wrap: wrap;
  justify-content: center;
  height: 2.98rem !important;
  width: 40%;
  margin-right: 13%;
}

#liquidationFirstStep select {
  color: white;
  padding: 8px;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  width: 17rem;
  font-size: x-large;
  font-weight: 800;
}

#liquidationFirstStep select option {
  background-color: #b295ff;
  color: white;
  padding: 8px;
}

#liquidationFirstStep input[type="date"] {
  color: white;
  text-align: center;
  width: 17rem;
  font-size: x-large;
  font-weight: 700;
}

#liquidationFirstStep input[type="date"]::-webkit-calendar-picker-indicator {
  display: block;
  width: 1.6rem;
  height: 3rem;
  background-color: #b295ff;
  border-radius: 0 0.8rem 0.8rem 0;
  background-repeat: no-repeat;
  background-position: center center;
}

#liquidationFirstStep .radioWebkitContainer,
#liquidationFirstStep .rounded-label,
#liquidationFirstStep input[type="date"],
#liquidationFirstStep select,
#liquidationFirstStep input[type="number"] {
  border-top-left-radius: 0.8rem;
  border-top-right-radius: 0.8rem;
  border-bottom-right-radius: 0.8rem;
  border-bottom-left-radius: 0.8rem;
  height: 3rem;
}

#liquidationFirstStep .rounded-label,
#liquidationFirstStep input[type="date"],
#liquidationFirstStep select,
#liquidationFirstStep input[type="number"] {
  background-color: #835de7 !important;
  border: 0;
  color: white;
}

#liquidationFirstStep #firstStepBtn {
  background-color: #b295ff;
  width: 100%;
  color: white;
}

#liquidationFirstStep #firstStepBtnContainer {
  max-height: none;
  display: flex;
  justify-content: center;
  height: auto;
}

#liquidationFirstStep #firstStepBtnContainer,
#liquidationFirstStep #firstStepBtn,
#liquidationSecondStep #secondStepBtn {
  border-top-left-radius: 2.5rem;
  border-top-right-radius: 2.5rem;
  border-bottom-right-radius: 2.5rem;
  border-bottom-left-radius: 2.5rem;
}

#liquidationFirstStep #salary,
#liquidationFirstStep #valueJornal {
  border-top-left-radius: 0rem;
  border-top-right-radius: 0.8rem;
  border-bottom-right-radius: 0.8rem;
  border-bottom-left-radius: 0rem;
  text-align: center;
  padding-left: 16px;
  padding-right: 16px;
  width: 35%;
  font-size: x-large;
  font-weight: 700;
}

#liquidationFirstStep .prefijo,
#liquidationFirstStep .rounded-label,
#liquidationFirstStep #firstStepBtn,
#liquidationSecondStep #secondStepBtn {
  color: white;
  font-size: 32px;
  font-weight: 800;
}

#liquidationFirstStep input:focus,
#liquidationSecondStep input:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

#liquidationFirstStep .radioContainer {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-content: center;
  flex-wrap: wrap;
}

#liquidationFirstStep .radioContainer .col-md-6 {
  display: flex;
  justify-content: center;
}

#liquidationForm label {
  font-size: x-large;
}

#liquidationFirstStep #licenceDays,
#liquidationFirstStep #extraHoursCant,
#liquidationFirstStep #cantJornales {
  text-align: center;
  padding-left: 16px;
  padding-right: 16px;
  width: 28%;
  font-size: x-large;
  font-weight: 700;
}

#liquidationFirstStep #extraHoursCant,
#liquidationFirstStep #cantJornales {
  width: 38%;
}

#liquidationFirstStep input[type=number]::-webkit-outer-spin-button,
#liquidationFirstStep input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#liquidationSecondStep label {
  font-size: larger;
  font-weight: 500;
}

#liquidationSecondStep {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-end;
  text-align: center;
}

#liquidationSecondStep .rounded-label {
  align-self: center;
  background-color: #835de7;
}

#liquidationSecondStep .liquidationSecondStepInput {
  background-color: #b295ff;
  border: 0;
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
  border-top-left-radius: 1.375rem !important;
  border-top-right-radius: 1.375rem !important;
  border-bottom-right-radius: 1.375rem !important;
  border-bottom-left-radius: 1.375rem !important;
  padding: 0.375rem 0.75rem !important;
  color: white;
  height: 3rem;
  font-size: larger;
  font-weight: 500;
}

#liquidationSecondStep #secondStepBtn {
  background-color: #835de7;
  width: 75%;
  color: white;
  align-self: center;
}

.liquidation .step-content {
  display: flex;
  justify-content: flex-start;
  flex-flow: column;
}

.liquidation .step-image {
  display: flex;
  justify-content: flex-start;
  flex-flow: column;
}

.liquidationSeparator {
  width: 4px;
  height: 99.5%;
  /* grosor de la línea */
  background-color: #835de7;
  /* color de la línea (ajústalo a tu gusto) */
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

.liquidationSeparatorContainer {
  display: flex;
  justify-content: center;
}

.seo {
  margin-top: 2rem;
}

.liquidationSeparator-horizontal {
  width: 100%;
  /* ocupa todo el ancho del contenedor */
  height: 4px;
  /* grosor de la línea */
  background-color: #835de7;
  /* color de la línea (ajústalo a tu gusto) */
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

#licenceDaysContainer,
#extraHoursContainer {
  display: none;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

#licenceDaysContainer.visible,
#extraHoursContainer.visible {
  opacity: 1;
  transform: translateY(0);
}

#salaryPrefixContainer,
#licenceDaysPrefixContainer,
#jornalPrefixContainer {
  align-content: center;
  text-align: center;
  background-color: #b295ff;
  border-top-left-radius: 0.6rem;
  border-top-right-radius: 0.6rem;
  border-bottom-right-radius: 0.6rem;
  border-bottom-left-radius: 0.6rem;
  z-index: 1;
}

#salaryPrefixContainer,
#jornalPrefixContainer {
  width: 8%;
  margin-right: -9px;
}

#licenceDaysPrefixContainer {
  width: 12%;
  margin-left: -20px;
}

#liquidationFirstStep #extraHoursContainer {
  text-align: center;
  margin-top: -2rem !important;
  display: none;
}

#liquidationFirstStep #cantJornalesContainer{
  text-align: center;
}

@media (min-width: 768px) {
  #childrenRadios {
    margin-top: 2rem !important;
  }
}

/* Estilos responsive para el simulador de liquidacion */
@media (max-width: 767px) {
  #liquidationFirstStep #salary,
  #liquidationFirstStep #valueJornal {
    width: 57%;
  }

  #salaryPrefixContainer,
  #jornalPrefixContainer {
    width: 19%;
  }

  #liquidationFirstStep #licenceDays {
    width: 51%;
  }

  #licenceDaysPrefixContainer {
    width: 25%;
  }

  #liquidationFirstStep .radioContainer {
    width: 100%;
  }

  #liquidationFirstStep .radioContainer .col-md-6 {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
  }

  #liquidationFirstStep .rounded-radio {
    width: 100%;
    max-width: 300px;
  }

  #firstStepBtnContainer {
    width: 75%;
  }

  #liquidationFirstStep #extraHoursCant,
  #liquidationFirstStep #cantJornales {
    width: 69%;
  }

  #liquidationFirstStep #extraHoursContainer,
  #liquidationFirstStep #cantJornalesContainer {
    margin-top: 3rem !important;
  }
}

#post-5315 .entry-title {
  padding-left: 16%;
  background-color: #f7f7f7;
}

@media (min-width: 1024px) and (max-width: 1640px) {
  #post-5315 .entry-title {
    padding-left: 7%;
  }
}


@media (min-width: 768px) and (max-width: 1024px) {
  #post-5315 .entry-title {
    padding-left: 12%;
  }
}


@media (max-width: 767px) {

  #post-5315 .entry-title {
    padding-left: 2%;
  }
}