/*!*************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./extensions/RewardPagePoints-ui/styles/App.css ***!
  \*************************************************************************************************/
.rtz-purchase-options-container {
  width: 100%;
  max-width: 600px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}

.rtz-option-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #f0f0f0;
  background-color: #f9f9f9;
}

.rtz-radio-section {
  display: flex;
  align-items: center;
}

.rtz-radio-section input[type='radio'] {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  accent-color: #2874f0;
}

.rtz-radio-section label {
  font-size: 14px;
  color: #212121;
}

.rtz-price-section {
  font-weight: bold;
  font-size: 16px;
  color: #212121;
}

.rtz-price-section.discount {
  color: #388e3c;
}

.rtz-rewards-row {
  padding: 0px 15px;
  border-bottom: 1px solid #f0f0f0;
}

.rtz-rewards-heading {
  font-size: 14px;
  font-weight: 600;
  color: #212121;
  margin-bottom: 10px;
}

.rtz-rewards-content {
  padding-left: 0px;
  padding-top: 10px;
}
.rtz-without-exchange {
  display: contents;
  font-weight: bold;
  font-size: medium;
}

.rtz-reward-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 13px;
  padding-bottom: 5px;
  color: #212121;
}

.rtz-reward-icon {
  display: flex;
  margin-right: 8px;
  font-size: 10px;
  align-items: center;
}

.rtz-exchange-info {
  padding: 15px;
  background-color: #f9f9f9;
}

.rtz-extra-discount {
  font-size: 13px;
  color: #212121;
  margin-bottom: 10px;
}

.rtz-pincode-check {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.rtz-pincode-input {
  padding: 8px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  width: 120px;
}

.rtz-check-button {
  background: none;
  border: none;
  color: #ff6161;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

.rtz-check-button:hover {
  text-decoration: underline;
}

.rtz-reward-reddem-lnk {
  margin-left: 10px;
}

.rtz-reward-image {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

.rtz-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.rtz-modal-content {
  background: white;
  /* padding: 20px; */
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.rtz-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  height: 40px;
}

.rtz-modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
}

.rtz-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  margin-right: 15px;
}

.rtz-modal-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rtz-points-info {
  display: flex;
  justify-content: space-between;
  background: #f5f5f5;
  padding: 15px;
  border-radius: 8px;
}

.rtz-points-info p {
  margin: 0;
}

.rtz-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  outline: none;
  transition: all 0.2s;
}

.rtz-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid currentColor;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  margin-top: -8px;
}

.rtz-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid currentColor;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.rtz-slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  border-radius: 4px;
}

.rtz-slider::-moz-range-track {
  width: 100%;
  height: 8px;
  border-radius: 4px;
}

.rtz-slider-container {
  padding: 20px 15px;
}

.rtz-slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: #666;
  font-size: 14px;
}

.rtz-slider-value {
  text-align: center;
  margin-top: 12px;
  font-size: 16px;
  color: #333;
}

.rtz-redeem-btn {
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.rtz-redeem-btn:disabled {
  cursor: not-allowed;
}

.rtz-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.rtz-coupon-container {
  background: #f5f5f5;
  padding: 15px;
  border-radius: 8px;
}

.rtz-coupon-code {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 10px 15px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.rtz-coupon-code span {
  font-size: 1.125rem;
  font-weight: 500;
}

.rtz-copy-btn {
  border: none;
  background: none;
  padding: 8px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rtz-coupon-expiry {
  margin: 0;
  color: #666;
  font-size: 0.875rem;
}

.rtz-toast {
  position: fixed;
  top: 75%;
  right: 40%;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  animation: toastSlideIn 0.3s ease-out;
}

@keyframes toastSlideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media screen and (max-width: 468px) {
  .rtz-toast {
    right: 20%;
  }
}

/*!*******************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./extensions/RewardPagePoints-ui/RedeemRulesModal.css ***!
  \*******************************************************************************************************/
.product-redeem-rules-icon-wrapper {
  width: 30px;
  height: 30px;
}

.product-redeem-rules-icon-wrapper svg {
  width: 100%;
  height: 100%;
}

.product-redeem-rules-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-redeem-rules-content {
  display: flex;
  gap: 20px;
  align-items: center;
}

.product-redeem-btn {
  border: none;
  width: 80px;
  min-width: 80px;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.product-redeem-content-title {
  font-weight: 500;
  font-size: 13px;
}
.product-redeem-content-subtitle {
  color: #818181;
  font-size: 12px;
}
.product-redeem-content {
  display: flex;
  flex-direction: column;
}
.product-redeem-copy-code-box {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border: 1px solid;
  border-radius: 10px;
}

