.promoWrapper {
  margin-top: 0;
}

.content {
  padding-top: 77px;
  display: flex;
  flex-direction: column;
}

.content .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}

.content .head h2 {
  color: #170C2C;
  font-family: Gilroy;
  font-size: 38px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.content .head .percent {
  display: flex;
  align-items: center;
  gap: 0px;
  padding: 11px 20px 11px 0px;
  border-radius: 14px;
  background: #2B19FF;
}

.content .head .percent h4 {
  color: #F3FCFF;
  text-align: center;
  width: 350px;
  font-family: Gilroy;
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
}

.content .table {
  padding: 25px 33px;
  border-radius: 15px 15px 0 0;
  border: 1px solid #B7B3EA;
  background: #5476FE;
  margin-top: 50px;
}

.content .table .customTable {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.content .table .customTable .thead {
  display: grid;
  grid-template-columns: repeat(6, 16.66%);
  padding: 7px 0px;
  border-top: 2px #B7B3EA solid;
  border-bottom: 2px #B7B3EA solid;
}

.content .table .customTable .thead .headItem {
  display: flex;
  justify-content: center;
  padding: 7px 0px;
}

.content .table .customTable .thead .headItem:not(:last-child) {
  border-right: 2px #B7B3EA solid;
}

.content .table .customTable .thead .headItem span {
  color: #170C2C;
  text-align: center;
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.content .table .customTable .tbody {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.content .table .customTable .tbody .row {
  display: grid;
  grid-template-columns: repeat(6, 16.66%);
  border-radius: 20px;
  border: 2px solid #FFF;
  background: #A8B6F5;
  box-shadow: 0 2px 18.4px 0 rgba(0, 0, 0, 0.15);
}

.content .table .customTable .tbody .row .rowItem {
  display: flex;
  padding: 10px 22px;
  align-items: center;
}

.content .table .customTable .tbody .row .rowItem:not(:first-child) {
  justify-content: center;
}

.content .table .customTable .tbody .row .rowItem span {
  color: #170C2C;
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.content .table .customTable .tbody .row .status span {
  padding: 6.5px 0px;
  width: 100%;
  color: #0F3D01;
  font-family: Gilroy;
  font-size: 12.303px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.123px;
  text-align: center;
}

.content .table .customTable .tbody .row .status.confirm span {
  border-radius: 71px;
  border: 0.879px solid #29B000;
  background: rgba(81, 255, 0, 0.5);
}

.content .table .customTable .tbody .row .status.pending span {
  border-radius: 71px;
  border: 0.879px solid #B0A200;
  background: rgba(255, 255, 0, 0.5);
}

.content .table .customTable .tbody .row .status.denied span {
  border-radius: 71px;
  border: 0.879px solid #fe5151;
  background: rgba(255, 129, 129, 0.5);
}

@media screen and (max-width: 1200px) {
  .content {
    padding-top: 60px;
  }
  .content .head {
    flex-direction: column;
    gap: 20px;
  }
  .content .head h2 {
    font-size: 28px;
  }
  .content .head .percent {
    width: 100%;
  }
  .content .head .percent h4 {
    width: 100%;
    font-size: 22px;
  }
  .content .head .percent img {
    width: 70px;
    height: 70px;
  }
  .content .table {
    margin-top: 30px;
    padding: 15px 10px;
  }
  .content .table::-webkit-scrollbar {
    display: none;
  }
  .content .table .customTable .thead {
    display: none;
  }

  .content .table .customTable .tbody {
    
    .row {
      padding: 0;
      border-radius: 0;
      padding: 5px 10px;
      flex-direction: column;
      display: flex;
      align-items: start;

      .rowItem {
        padding: 0;
        display: flex;
        gap: 5px;
        width: 100%;
        justify-content: start !important;
        align-self: flex-start;
        padding-bottom: 5px;
        border-bottom: 1px white solid;
        padding-top: 5px;

        &:nth-child(1)::before {
          content: "Número de solicitud:";
          color: #170C2C;
          text-align: center;
          font-family: Gilroy;
          font-size: 16px;
          font-style: normal;
          font-weight: 600;
          line-height: normal;
        }

        &:nth-child(2)::before {
          content: "Cliente:";
          color: #170C2C;
          text-align: center;
          font-family: Gilroy;
          font-size: 16px;
          font-style: normal;
          font-weight: 600;
          line-height: normal;
        }

        &:nth-child(3)::before {
          content: "Monto del crédito:";
          color: #170C2C;
          text-align: center;
          font-family: Gilroy;
          font-size: 16px;
          font-style: normal;
          font-weight: 600;
          line-height: normal;
        }

        &:nth-child(4)::before {
          content: "Plazo del préstamo:";
          color: #170C2C;
          text-align: center;
          font-family: Gilroy;
          font-size: 16px;
          font-style: normal;
          font-weight: 600;
          line-height: normal;
        }

        &:nth-child(5)::before {
          content: "Tasa (%):";
          color: #170C2C;
          text-align: center;
          font-family: Gilroy;
          font-size: 16px;
          font-style: normal;
          font-weight: 600;
          line-height: normal;
        }

        &:nth-child(6) {
          border-bottom: none;
        }

        &:nth-child(6)::before {
          content: "Estado pago:";
          color: #170C2C;
          text-align: center;
          font-family: Gilroy;
          font-size: 16px;
          font-style: normal;
          font-weight: 600;
          line-height: normal;
          white-space: nowrap;
        }
      }
    }
  }
}/*# sourceMappingURL=creditList.css.map */