
    .checkout-header {
      text-align: center;
      margin-top: 40px;
      margin-bottom: 20px;
    }
    .checkout-header h3 {
      font-weight: bold;
      margin-bottom: 20px;
    }
    .benefits-box .benefit {
      display: inline-block;
      margin: 0 10px;
      color: #333;
      font-size: 16px;
    }
    .benefits-box .glyphicon {
      color: green;
      margin-right: 5px;
    }

    .payment-container {
      max-width: 650px;
      margin: 0 auto 40px;
      padding: 20px;
      background-color: #fff;
      border-radius: 8px;
    }

    .default-container {
      max-width: 650px;
      margin: 20px auto 20px;
      font-family: sans-serif;
    }
    
    .large-container {
      max-width: 950px;
      margin: 20px auto 20px;
      font-family: sans-serif;
    }
    .payment-option {
      border: 1px solid #ccc;
      border-radius: 6px;
      padding: 15px;
      margin-bottom: 10px;
      cursor: pointer;
      display: flex;
      align-items: center;
      transition: border 0.2s;
      justify-content: space-between;
    }
    .payment-option:hover {
      border-color: #337ab7;
    }
    .payment-option input[type="radio"] {
      margin-right: 15px;
      margin-top: 0px !important;
      scale: 1.8;
    }
    .payment-desc {
      margin: 0;
      margin-top: 2px;
      font-size: 12px;
      color: #666;
    }
    .payment-option img {
      width: 100px;
      height: auto;
      margin-right: 15px;
    }
    .payment-option label {
      font-weight: bold;
      margin-bottom: 0;
      flex: 1;
      cursor: pointer;
    }
    .accordion-content {
      padding: 10px 15px;
      /*border: 1px solid #ddd;*/
	  border: none;
      border-top: none;
      margin-bottom: 10px;
    }
    .buy-button {
      margin-top: 20px;
    }
    /* Fondo y borde al seleccionar una opción */
    .payment-option.selected {
      border-color: #0075ff;
      background-color: #f2f4f7;
      box-shadow: 0 0 8px rgba(0, 117, 255, 0.3);
    }
    #detail-table {
      width: 100%;
      border-collapse: collapse;
      font-family: Arial, sans-serif;
      border-radius: 8px;
      overflow: hidden;
    }

    #detail-table thead {
        background-color: #434d5d;
        color: white;
    }

    #detail-table th,
    #detail-table td {
        padding: 8px 16px;
        text-align: left;
    }

    #detail-table tbody tr:nth-child(even) {
        background-color: #ffffffbd;
    }

    #detail-table tbody tr:hover {
        background-color: #f1f5ff;
    }

    #detail-table th {
        font-size: 14px;
    }

    #detail-table td {
        font-size: 13px;
        color: #333;
    }
    .table-responsive {
        width: 100%;
        overflow-x: auto;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
    }

@media screen and (max-width: 768px) {
  .mobile-padding {
    padding: 0 20px;
  }
}