.customer-feedback-coupon_apply_btn {
  padding: 15px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: var(--secondary-color);
  color: white;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
}

.loader-customer-feedback {
  width: 60px;
  aspect-ratio: 4;
  --_g: no-repeat radial-gradient(circle closest-side, #ffffff 90%, #0000);
  background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: calc(100% / 3) 100%;
  animation: l7 1s infinite linear;
}

.floating-container .floating-button {
  background-color: #46c655;
  border: 1px #3ab348 solid;
  padding: 10px;
  border-radius: 50%;
  color: white;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.floating-customer-feedback-container {
  position: fixed;
  bottom: 0px;
  left: 0px;
  z-index: 80;
  display: block;
  width: 255px;
  background: black;
  cursor: pointer;
  border-radius: 5px 5px 0px 0px;
}

.feedback-popup-button {
  display: flex;
  gap: 4px;
  align-items: center;
}

.feedback-popup-button-text {
  color: white;
  font-size: 12px;
  text-align: center;
  padding: 6px 0px;
}

.feedback-popup-button-icon {
  color: white;
  font-size: 12px;
  text-align: center;
  padding: 0px 10px 0px 5px;
}

.feedback-popup-strip {
  background: var(--secondary-color-new);
  padding: 3px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px 5px 0px 0px;
}

.customer-feedback-expansion {
  display:none;
  background-color: #fafafc;
}

.open {
  display: block;
}

.customer-feedback-expansion-header {
  font-size: 12px;
  text-align: center;
}

.customer-feedback-expansion {
  max-width: 100%;
  margin: 0px 0px 20px 0px;
  padding: 5px;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.customer-feedback-expansion-header {
  margin-bottom: 20px;
}

.customer-feedback-expansion-header-text {
  font-size: 12px;
  font-weight: bold;
  color: #333;
  line-height: 1.5;
  display: block;
  text-align: center;
}

/* Form Styling */
#customer-feedback-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

label {
  font-size: 13px;
  color: #555;
}

input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  font-size: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
}

textarea {
  resize: none;
  height: 100px;
}

.submit-btn {
  padding: 10px;
  color: white;
  font-size: 14px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 108%;
}

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

.customer-feedback-expansion-body {
  width: 90%;
}

select {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  background-color: #fff;
  appearance: none; /* Removes default browser styles for consistent appearance */
  cursor: pointer;
}

/* Optional: Add custom dropdown arrow */
select {
  background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 6"%3E%3Cpath fill="%23333" d="M0 0l5 6 5-6z"/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px 6px;
  width: 110%;
}

select:hover {
  border-color: #007bff;
}

select:focus {
  border-color: #007bff;
  box-shadow: 0 0 3px rgba(0, 123, 255, 0.5);
}

.recaptcha-container {
  display: inline-block;
  width: 100%; /* Ensure it scales with the parent container */
  max-width: 304px; /* Original reCAPTCHA width */
}

.g-recaptcha {
  transform: scale(0.8); /* Adjust the scaling factor for responsiveness */
  transform-origin: 0 0; /* Ensure scaling starts from the top-left corner */
}

@media (max-width: 400px) {
  .g-recaptcha {
      transform: scale(0.75); /* Smaller scale for smaller devices */
  }
}

.customer-feedback-form-feedback {
 font-family: 'Arial', sans-serif;
}

@media screen and (max-width: 1024px) {
  .floating-customer-feedback-container {
    display: none;
  }
}

@media screen and (min-width: 1306px) {
  .floating-customer-feedback-container {
    display: block;
  }
}