  @keyframes dotBounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15px);
    }
  }

 /* Basic form container styling */
  #stripe-payment-form {
    max-width: 500px; /* Limit width for better appearance on larger screens */
    margin: 0 auto; /* Center the form */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  /* Card input container */
  .input-container {
    margin-bottom: 20px;
  }

  /* Button styling */
  .btn-submit {
    width: 100%; /* Button takes full width on smaller screens */
    padding: 12px;
    font-size: 16px;
    background-color: #5469d4;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .btn-submit:hover {
    background-color: #4353b3;
  }

  /* Error message container */
  #error-message {
    color: red;
    font-size: 14px;
    margin-top: 10px;
  }

  /* Responsive adjustments */
  @media (max-width: 600px) {
    /* Adjust the form layout for smaller screens */
    #stripe-payment-form {
      width: 90%; /* Use a larger percentage width on small screens */
      padding: 15px;
    }

    .btn-submit {
      font-size: 14px; /* Smaller button text on small screens */
    }
  }

  @media (min-width: 601px) and (max-width: 1024px) {
    /* Adjust form for tablets or medium-sized screens */
    #stripe-payment-form {
      width: 80%;
    }
  }

  @media (min-width: 1025px) {
    /* Adjust form for large screens */
    #stripe-payment-form {
      width: 100%;
    }
  }

 /* Divider Styling */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  text-align: center;
  width: 100%;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  border-top: 1px solid #ccc;  /* Line style */
}

.divider span {
  padding: 0 10px;
  font-weight: bold;
  color: #333;
  font-size: 18px; /* Text size */
}

.stripe-logo {
  display: block;
  margin: -30px auto 10px;
  width: 150px;
  height: auto;
}

 .pay-button-label-container {
      margin: 15px;
   }

  .pay-button-row {
      display: flex;
      justify-content: center; /* Center the button */
      padding: 10px;
  }

  .pay-logo-card {
      height: 22px;
      margin-right: 10px;
  }

  .pay-button {
      font-size: 18px;
      width: 100%;
      max-width: 585px;
      height: auto; /* Ensure the button height adjusts to content */
      background-color: #353434;
      color: white; /* Default background color (PayPal blue) */
      border-radius: 5px; /* Optional: Add border radius for rounded corners */
      transition: background-color 0.3s ease; /* Smooth transition for background color change */
  }

  .pay-button-label-container {
      display: flex;
      align-items: center;
      justify-content: center;
  }

  /* Responsive styles using media queries */
  @media (max-width: 768px) {
      .pay-button {
          width: 80%;  /* On smaller screens, make the button a little smaller */
          max-width: 280px;
          background-color: #353434;
          color: white; /* Keep the same background color */
      }
  }

  @media (max-width: 480px) {
      .pay-button {
          width: 90%;  /* Further reduce the size on very small screens */
          max-width: 250px;
          background-color: #1b74e4; /* Change background color for smaller screens */
      }

      .pay-button-text {
          font-size: 14px;  /* Adjust text size for smaller screens */
      }
  }

  /* Hover effect for the button */
  .pay-button:hover {
      background-color: #005ea6; /* Darker color on hover */
  }

.shipping-cal-container {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 5px;
}

.terms-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.order-container {
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 8px;
  width: 100%;
}

.order-manufac {
  width: 73% !important;
  margin: 6px;
} 
.order-sku {
  width: 73% !important;
  margin: 3px !important;
}

.order-descri {
  width: 290px;
  height: 74px;
}

.order-item-error-message {
  color: #932419;
  font-weight: bold;
  margin: 0.3em 0 0 2%;
  display: flex;
}

.order-summary-hint {
  margin-top: 30px;
  text-align: center;
  font-size: small;
}

.order-shipping-address {
  /*padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;*/
}

.order-billing-address {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
}

.order-address-title {
  font-size: 131%;
  font-weight: bold;
}
.order-address {
  border-bottom: 2px solid #ccc;
  display: flex;
  justify-content: space-between; 
  align-items: center;
}

.address-copy-btn {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

/* Modal styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed position (stay in place when scrolling) */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.4); /* Background with transparency */
}

.modal-content {
  background-color: white;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 72%;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.text-left {
  text-align: left;
}

.calculate-shipping-cont {
  position: absolute;
  margin: 8px;
  margin-left: 35.3%;
}

.refund-row {
  background: #f4f4f4;
  border-radius: 4px;
  box-shadow: inset 0 1px 4px #ddd;
}

.refund-a {
  padding: 0px 10px !important;
  background-color: #5ea3d3 !important;
  color: #fff !important;
  text-decoration: black !important;
}


.input {
 font-size: larger;
}

.selection-dropdown{
 width: auto;
 padding: revert;
 height: 25px;
}

.ltd-sz {
  height: 30px;
}

.ltd-lg {
  width: 350px;
  height: 30px;
}

.order_items .has_many_fields ol {
  display: flex;
/*  display: grid;*/
  grid-template-columns: repeat(5, 1fr);  /* Two equal-width columns */
  gap: 10px;  /* Adjust the space between the columns */
}
.order_items .has_many_fields ol li {
  display: flex;
/*  width: max-content;*/
  flex-direction: column;
}
.order_items .has_many_fields ol li input {
  width: 100%;  
}

form fieldset ol > li.has_many_container.order_items{
    padding: 0px 10px !important;
}

table tr th {
  text-align: center;
}

.order-container {
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 8px;
  width: 100%;
}

.order-summary-hint {
  margin-top: 30px;
  text-align: center;
  font-size: small;
}

.dot-loader {
  position: fixed;
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: space-between;
  width: 60px;
  height: 20px;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.dot-loader span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #f68b1e;
  animation: dotBounce 1.5s infinite ease-in-out;
}

.dot-loader span:nth-child(1) {
  animation-delay: 0s;
}

.dot-loader span:nth-child(2) {
  animation-delay: 0.3s;
}

.dot-loader span:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes dotBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.col-trim {
  width: 600px; /* adjust based on your UI */
  white-space: normal !important;
}
.col-year_make_model {
  width: 400px; /* adjust based on your UI */
  white-space: normal !important;
}

 .pay-button-label-container {
      margin: 15px;
   }

  .pay-button-row {
      display: flex;
      justify-content: center; /* Center the button */
      padding: 10px;
  }

  .pay-logo-card {
      height: 22px;
      margin-right: 10px;
  }

  .pay-button {
      font-size: 18px;
      width: 100%;
      max-width: 585px;
      height: auto; /* Ensure the button height adjusts to content */
      background-color: #353434;
      color: white; /* Default background color (PayPal blue) */
      border-radius: 5px; /* Optional: Add border radius for rounded corners */
      transition: background-color 0.3s ease; /* Smooth transition for background color change */
  }

  .pay-button-label-container {
      display: flex;
      align-items: center;
      justify-content: center;
  }

  /* Responsive styles using media queries */
  @media (max-width: 768px) {
      .pay-button {
          width: 80%;  /* On smaller screens, make the button a little smaller */
          max-width: 280px;
          background-color: #353434;
          color: white; /* Keep the same background color */
      }
  }

  @media (max-width: 480px) {
      .pay-button {
          width: 90%;  /* Further reduce the size on very small screens */
          max-width: 250px;
          background-color: #1b74e4; /* Change background color for smaller screens */
      }

      .pay-button-text {
          font-size: 14px;  /* Adjust text size for smaller screens */
      }
  }

  /* Hover effect for the button */
  .pay-button:hover {
      background-color: #005ea6; /* Darker color on hover */
  }

  #paypal-button-container {
    display: flex;
    justify-content: center;
    margin-left: 178px;
    font-size: 18px;
    width: 62%;
  }

@media (min-width: 1400px) {
  #paypal-button-container {
    margin-left: 310px;
    width: 48.4%;
  }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *



 */
