.hidden {
  display: none !important;
}

/* new csss */
#validate-form .field-title {
  display: flex;
  justify-content: space-between;
}

#validate-form .options {
  display: flex;
  overflow: scroll;
  margin-bottom: 15px;
  height: 75px;
}

#validate-form .options > div label {
  font-size: 16px;
  height: 56px;
  cursor: pointer;
  margin-right: 15px;
  padding: 10px 35px 10px 10px;
  text-align: left;
  width: min-content; 
  display: flex;
  align-items: center;
  border-radius: 12px;
  color: #030356;
  border: 2px solid var(--grayscale-20, #e4e4f3);
  background: var(--blanco, #fff);
  box-shadow: 0px 3px 6px 0px rgba(3, 3, 86, 0.16);
  position: relative;
}

#validate-form .options > div input {
  display: none;
}

#validate-form .options > div input:checked ~ label {
  border: 2px solid #1c12f0;
  color: #1c12f0;
}

#validate-form .options > div input:checked ~ label::after {
  content: "";
  width: 15px;
  height: 15px;
  top: 18px;
  right: 10px;
  position: absolute;
  background: url("https://kiipin.com/wp-content/uploads/2024/01/check.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* Slider CSS */

#input-range {
  position: relative;
  margin-top: 30px;
}

#input-range input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  background: rgba(228, 228, 243, 1);
  background-image: linear-gradient(#1c12f0, #1c12f0);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  height: 0.7rem;
  cursor: pointer;
  border-radius: 5px;
  width: 100%;
  position: relative;
  padding: 0px !important;
}

#input-range input::-webkit-slider-runnable-track {
  appearance: none;
  background: transparent;
  border-radius: 20px;
  border: none;
  transition: 0.3s linear;
}

#input-range span {
  width: 0;
  top: -40px;
  position: absolute;
  text-align: right;
  display: flex;
  justify-content: end;
  text-align: right;
}

#input-range .pointer {
  text-align: center;
  width: 90px;
  max-width: fit-content;
  min-width: fit-content;
  float: right;
  background: #e4e4f3;
  padding: 5px 20px;
  border-radius: 20px;
  transform: translateX(50%);
}

#input-range .pointer::after {
  /* content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 15px;
  height: 15px;
  transform: rotate(45deg);
  background: #e4e4f3;
  z-index: -1; */
}

.days {
  display: flex;
  flex-direction: row-reverse;
}
.days::before {
  content: attr(data-before);
  margin-left: 5px;
}

.money::before,
.totalmensual::before,
.interesprom::before,
.creditValue::before,
.cuotapermonth::before {
  content: "$";
}
#input-range input::-webkit-slider-thumb {
  --thumb-height: 20px;
  -webkit-appearance: none;
  appearance: none;
  cursor: ew-resize;
  background: #1c12f0;
  height: var(--thumb-height);
  width: 20px;
  transition: 0.3s linear;
  border-radius: 50%;
}

/* End Slider CSS */

.second-step {
  overflow: hidden;
  position: relative;
}
.second-step > div:nth-child(1) {
  overflow-y: scroll !important;
  padding-bottom: 200px;
}
.second-step div > div {
  padding: 10px;
  font-size: 14px;
  margin-bottom: 15px;
  border-radius: 10px;
  background-color: #eeeef9;
}

.second-step div > div > p {
  padding: 0px !important;
  margin: 0px !important;
  text-align: left;
  display: flex;
  justify-content: space-between;
}

.second-step div > div > p strong {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.credit-options {
  left: 0px;
  bottom: 0px;
  display: grid;
  width: 100%;
  position: absolute;
  gap: 10px;
  border-radius: 0px 0px 10px 10px !important;
  padding: 20px !important;
  margin-bottom: 0px !important;
  background: white !important;
  border-top: 2px solid #ababcc;
}

.credit-options a:nth-child(1),
.credit-options a:nth-child(2) {
  display: flex;
  cursor: pointer;
  color: white !important;
  width: 100%;
  height: 54px;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 64px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  border: 2px solid var(--grayscale-10, #eeeef9);
  background: var(--blue-third-blue, #1c12f0);
  box-shadow: 0px 0px 20px 0px rgba(147, 147, 175, 0.5);
}

.credit-options a:nth-child(2) {
  color: #1c12f0 !important;
  border: 2px solid var(--grayscale-10, #1c12f0);
  background: var(--blue-third-blue, white);
}
/* End new css */
/* old csss */
#full-credit-container {
  display: flex;
  justify-content: center;
}

select[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
  font-size: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}
.second-step,
#credit-form {
  overflow: hidden;
  margin: 20px;
  padding: 20px;
  display: flex;
  max-width: 500px;
  max-height: 630px;
  text-align: center;
  border-radius: 15px;
  align-content: center;
  flex-direction: column;
  justify-content: center;
  background-color: white;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  box-shadow: 0px 10px 20px -4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 460px) {
  .second-step,
  #credit-form {
    width: 360px;
    max-height: 630px;
  }
  #validate-form .options > div:nth-child(1) label {
    padding: 10px 30px 10px 10px !important;
  }
  #validate-form .options > div label {
    padding: 10px 23px 10px 10px;
    margin-right: 7px;
    font-size: 15px;
  }
}
.second-step h4,
#credit-form h4 {
  font-size: 20px;
  color: #030356;
  margin: 20px 0px;
  font-weight: 700;
  margin-top: 0px !important;
}

#credit-form form {
  display: flex;
  flex-direction: column;
}
#credit-form select {
  background-color: #f4f4f4;
  border: none;
  margin-bottom: 20px !important;
  border-radius: 30px;
  padding: 12px 0px 12px 20px;
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
}
#credit-form input {
  background-color: #f4f4f4;
  border: none;
  margin-bottom: 20px !important;
  border-radius: 30px;
  padding: 12px 0px 12px 20px;
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
}
#credit-form select {
  background-image: url("http://pick.com.co/wp-content/uploads/2022/09/chebron-arrow-down.svg");
  background-size: 15px;
  background-repeat: no-repeat;
  background-position-x: 95%;
  background-position-y: 50%;
}
#cancel-btn {
  width: 100%;
  border: none;
  cursor: pointer;
  font-weight: 400;
  margin-top: 30px;
  padding: 15px 10px;
  border-radius: 30px;
  color: #000;
  background-color: transparent;
}

#cancel-btn:hover {
  color: #000 !important;
  background-color: transparent !important;
}

#primary-btn {
  width: 100%;
  border: none;
  color: white;
  cursor: pointer;
  font-weight: 400;
  margin-top: 0px;
  padding: 15px 10px;
  border-radius: 8px;
  background-color: #1c12f0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

#cuota {
  width: 70%;
  height: 250px;
  display: flex;
  margin: 0 auto;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
#cuota h5 {
  color: #d9343c;
  margin-bottom: 10px;
}
#cuota p {
  margin-top: 10px;
}

option[value=""][disabled] {
  display: none;
}
option[disabled] {
  color: #a3a3a3;
}

option {
  color: #000;
}

.modal-body table {
  width: 100%;
  background-color: #f4f4f4;
  border-radius: 15px;
}
.modal-body table tr td:nth-child(1) {
  width: 50%;
  padding: 10px 0px 10px 15px;
}
.modal-footer {
  display: flex;
  flex-direction: column;
}
.modal-footer div {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
@media (max-width: 900px) {
  #full-credit-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}