  .chk-panel {
    background: white;
    padding: 30px;
  }

  span.animated-text-on {
    top: 0px !important;
    opacity: 0 !important;
  }

  span.animated-text {
    opacity: 1;
    top: 40px;
    position: absolute;
    right: 45px;
    font-weight: 600;
    font-size: 13px;
    color: green;
    transition: all 2s;
  }

  .row.page-loader {
    padding: 120px;
    z-index: 9;
    position: absolute;
    background: white;
    width: 100%;
    height: 100%;
  }

  .loading {
    margin: 0 auto;
  }

  .row.page-title {
    background: white;
    border-bottom: solid thin #cacaca;
    text-align: center;
    padding: 10px;
    box-shadow: 0px 0px 5px #999;
  }

  h1 {
    font-size: 20px;
    display: inline;
    text-transform: uppercase;
    color: #666;
    font-weight: 300;
    letter-spacing: 5px;
  }

  h3 {
    font-size: larger;
    width: 100%;
  }

  .cart-order-brief {
    background: #f4f4f4;
    padding: 19px;
    border: solid thin #ddd;
    border-radius: 4px;
  }

  .cart-content2 h3 {
    border-bottom: solid thin #ddd;
    padding-bottom: 5px;
  }

  .cartItems {
    width: 100%;
  }

  .item-cart {
    border-bottom: solid thin#f4f4f4;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }

  .item-photo {
    text-align: center;
  }

  .item-photo img {
    max-width: 100%;
    height: auto;
    max-height: 50px;
    width: auto;
  }

  .personal-data {
    padding-top: 10px;
    border-top: solid thin #ccc;
    margin-top: 10px;
  }

  .row.cart-totals {
    position: relative;
    padding: 15px;
    border-bottom: solid thin gray;
    border-top: solid thin #e6e6e6;
    background: white;
    -webkit-transition: all 1s linear;
    -moz-transition: all 1s linear;
    -o-transition: all 1s linear;
    transition: all 1s linear;
  }

  .row.cart-content {
    position: relative;
    padding: 15px;
    border-top: solid thin gray;
    background: white;
  }

  .row.page-content {
    margin-top: 15px;
  }

  .inputGroup {
    background-color: #fff;
    display: block;
    margin: 10px 0;
    position: relative;
    border: solid thin #ddd;
    border-radius: 5px;
  }

  .inputGroup label {
    padding: 12px 30px 12px 80px;
    width: 100%;
    display: block;
    text-align: left;
    color: #333;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: color 200ms ease-in;
    overflow: hidden;
    margin-bottom: 0px;
  }

  .inputGroup label:before {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    content: '';
    background-color: #f4f4f4;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale3d(1, 1, 1);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    z-index: -1;
  }

  .inputGroup label:after {
    /*width: 32px;*/
    height: 32px;
    /*content: '';*/
    /*border: 2px solid #d1d7dc;*/
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
    background-repeat: no-repeat;
    background-position: 2px 3px;
    border-radius: 50%;
    z-index: 2;
    position: absolute;
    right: 30px;
    top: 22%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all 200ms ease-in;
  }

  .inputGroup:has(input[type="radio"]:checked) {
    border: solid 2px #666;
  }

  .inputGroup input:checked~label {
    color: #333;
  }

  .inputGroup input:checked~label:before {
    transform: translate(-50%, -50%) scale3d(56, 56, 1);
    opacity: 1;
  }

  .inputGroup input:checked~label:after {
    background-color: #54e0c7;
    border-color: #54e0c7;
  }

  .inputGroup input {
    width: 25px;
    height: 25px;
    order: 1;
    z-index: 3;
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    /*visibility: hidden;*/
  }

  .form {
    padding: 0 16px;
    max-width: 550px;
    margin: 50px auto;
    font-size: 18px;
    font-weight: 600;
    line-height: 36px;
  }

  .btn {
    width: 100%;
  }

  .item-data,
  .item-price {
    font-size: small;
  }

  span.shipping-fee {
    font-weight: 800;
    color: #006100;
    font-size: smaller;
  }

  .label-subtotal,
  .label-costo-envio,
  .label-costo-de-servicio,
  .label-total {
    text-align: right;
  }

  /* Ocultar el texto adicional por defecto */
  .inputGroup .additional-info {
    display: none;
  }

  /* Mostrar el texto adicional cuando el radio button está seleccionado */
  input[type="radio"]:checked+label .additional-info {
    display: inline;
  }