.popUpFadeExclusiveOffer {
  display:block;background-color:rgba(247, 248, 250,0.6);top:0;bottom:0;left:0;right:0;z-index:100000090;position:fixed;cursor:pointer;
}
#exclusive-offer-wrapper.hidden,
.success-btn.hidden,
.popUpFadeExclusiveOffer.hidden,
.form-inputs.hidden {display: none}
.exclusive-offer-eop{border-radius:10px;
    border:1px solid #dce0e1;background-color:#f7f8fa;text-align:center;color:#5b5b5b;padding:0;text-align:center;
    position: fixed;
    top: 200px !important;
    margin-top: 0 !important;
    min-height: 400px;
    width: 430px;
    left: 50%;
    margin-left: -215px;
    z-index: 100000099;
}
.exclusive-offer-eop .form-inner{position:relative;width:100%;height:100%;padding:16px 0 60px 0; margin-right: auto;margin-left: auto;padding-right:0!important;padding-left:0!important;}

#exclusive-offer-wrapper {

}

.exclusive-offer-eop .chevron-btn {
    /* Your existing positioning */
    position: absolute;
    top: 16px;
    right: -34px;
    display: block;
    cursor: pointer;
    width: 20px;
    height: 20px;
    background: none;
    border: none; /* Remove default button border */
    padding: 0;
}

.exclusive-offer-eop .chevron-btn::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    /* Create the chevron by coloring two sides */
    border-top: 3px solid #5b5b5b;
    border-right: 3px solid #5b5b5b;
    /* Rotate the square 45 degrees to point right */
    transform: rotate(45deg);
    /* Center it inside the 20x20 button */
    margin-left: 2px;
}

.exclusive-offer-eop .chevron-btn:hover::after {
    border-color: #000; /* Optional hover effect */
}


.exclusive-offer-eop .close {
    position: absolute;
    top: 16px;
    right: auto !important;
    left: -30px !important;
    display: block;
    cursor: pointer;
    width: 20px;
    height: 20px;
    background: none; /* Removes the old image */
}

/* Creating the two lines of the X */
.exclusive-offer-eop .close::before,
.exclusive-offer-eop .close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;       /* Length of the line */
    height: 2px;       /* Thickness of the line */
    background-color: #5b5b5b;
    border-radius: 2px;
}

/* Rotate the lines to form the X */
.exclusive-offer-eop .close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.exclusive-offer-eop .close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Optional: Add a slight hover effect */
.exclusive-offer-eop .close:hover::before,
.exclusive-offer-eop .close:hover::after {
    background-color: #000; /* Darkens on hover */
}

.exclusive-offer-eop .first-msg,
.exclusive-offer-eop .first-msg-page-1,
.exclusive-offer-eop .first-msg-page-2 {color:#2da76e;font-size:24px;text-align:center;letter-spacing:.1px;padding-bottom:16px}
.exclusive-offer-eop .form-inputs{text-align:right;margin-right:1px}
.exclusive-offer-eop .input-wrapperrer{position:relative}
.exclusive-offer-eop .req-asterik{position:absolute;color:#a0a0a2;left:-16px;top:10px;font-size:30px;color:red}
.exclusive-offer-eop input{border:1px solid #dce0df;background:0 0;border-radius:6px;margin-bottom:10px;padding:5px 12px 5px 12px;
    width:100%;max-width:100%;height:39px;font-size:20px;color:#a1a0a5;background-color:#fff}
.exclusive-offer-eop input.input-email-rtlltr{text-align:left;direction:ltr}
.exclusive-offer-eop .success-btn{
    margin-top:24px;width:100%;height:42px;padding-top:5px;background-color:#2aab6b;margin-bottom:10px;color:#fff;line-height:28px;
    text-align:center;border-radius:6px;font-size:30px;font-weight:200;cursor:pointer;
    margin-right: auto;
    margin-left: auto;
}
.exclusive-offer-eop input::placeholder {
  text-align: right;
  direction: rtl;
}
.exclusive-offer-eop .spinner{width:20px;height:20px;position:relative;margin:0 auto;float:right;margin-top:2px;margin-right:0;margin-left:-9px}
.exclusive-offer-eop .spinner.not-active{display:none}
.exclusive-offer-eop .form-inner {max-width: 300px;}

.form-inputs.page-2 {
    padding-top: 20px;
}
.input-wrapperrer2.flexy {
    display: flex;
    flex-direction: row;
    gap: 6px;
    margin-bottom: 0px;
}

.input-wrapperrer2.flexy label {
    flex-basis: 50%;
}

/* Inputs styling (optional but recommended) */
.input-wrapperrer2.flexy input {
    font-size: 1rem;
    box-sizing: border-box;
    flex-basis: 50%;
}
.styled-radio-wrapper label{
    cursor: pointer;
}
.styled-radio-wrapper input{
    visibility: hidden;
    max-width: 1px;
    max-height: 1px;
}
/* The base state (the outer circle) */
.styled-radio-wrapper input + .img {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #dce0df; /* The border color you requested */
    border-radius: 50%;         /* Makes it a circle */
    background-color: #ffffff;
    margin-bottom: -6px;
    margin-left: 10px;
    position: relative;         /* Allows us to center the inner circle */
    box-sizing: border-box;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

/* The inner circle (hidden by default) */
.styled-radio-wrapper input + .img::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0); /* Start hidden/shrunk */
    width: 10px;               /* Size of the inner dot */
    height: 10px;
    background-color: #2aab6b; /* The green color you requested */
    border-radius: 50%;
    transition: transform 0.2s ease; /* Smooth "pop" animation */
}

/* Change the border color when checked */
.styled-radio-wrapper input:checked + .img {
    border-color: #2aab6b;
}

/* Show the inner circle when checked */
.styled-radio-wrapper input:checked + .img::after {
    transform: translate(-50%, -50%) scale(1); /* Shrink-to-grow effect */
}

/* Hide the actual ugly radio button input */
.styled-radio-wrapper input {
    display: none;
}

textarea {
    border: 1px solid #dce0df;
    border-radius: 6px;
    margin-bottom: 10px;
    padding: 5px 21px;
    width: 100%;
    max-height: 110px;
    font-size: 20px;
    color: #a1a0a5;
    background-color: #fff;
}
.form-inputs h3 {
   font-size: 1rem;
   line-height: 1.25;
   font-weight: 600;
}
.form-inputs h3.alert-success {
    color: rgb(42, 171, 107);
}
.form-inputs h3.alert-info {
    color: rgb(10, 118, 190);
}
.form-inputs h3.alert-danger {
    color: #c00;
}
#exclusive-offer-age {
    padding-left: 6px;
    padding-right: 12px;
    max-width: 140px;
}



.input-wrapperrer2.flexy.flexy-vertical {
    display: flex;
    flex-direction: column; /* Stacks label above input */
    gap: 8px;               /* Natural vertical spacing between them */
    width: 100%;            /* Container takes full width */
    margin-bottom: 1px;    /* Space before the next form group */
}

.input-wrapperrer2.flexy.flexy-vertical label,
.input-wrapperrer2.flexy input {
    width: 100%;            /* Each element stretches to 100% */
    box-sizing: border-box; /* Ensures padding doesn't break the 100% width */
}

.input-wrapperrer2.flexy.flexy-vertical input {
    padding: 10px;          /* Internal padding for the input field */
}


@media  only screen and (max-width:600px) {
    .exclusive-offer-eop {
        background:#fff;border-radius:10px;width:100%;
        top:20px;left:0;right:0;
        margin-top:0;margin-right:0;margin-left:0;
    }
    .exclusive-offer-eop .form-inner{width:100%;height:100%;padding:40px 20px 60px}
    .exclusive-offer-eop .form-inputs.page-2,
    .exclusive-offer-eop .form-inputs.page-3 {
      padding-top: 0;
    }
    .exclusive-offer-eop .close{background-size:20px 20px;background-repeat:no-repeat;width:20px;height:20px}
    .exclusive-offer-eop .success-btn{font-size:24px}

}
.form-inputs.hidden {
    display: none;
}



/* 1. Target modern browsers (Chrome, Edge, Safari, Firefox) */
.exclusive-offer-eop #exclusive-offer-age::placeholder,
.exclusive-offer-eop input::placeholder,
.exclusive-offer-eop textarea::placeholder {
  text-align: right !important;
  direction: rtl !important;
}

/* 2. Target Legacy WebKit (Older Safari/Chrome) */
.exclusive-offer-eop ::-webkit-input-placeholder {
  text-align: right !important;
  direction: rtl !important;
}

/* 3. Target Legacy Firefox */
.exclusive-offer-eop input:-moz-placeholder {
  text-align: right !important;
  direction: rtl !important;
}

.exclusive-offer-eop .success-btn {
    position: relative;
}

.exclusive-offer-eop .success-btn .spinner {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.exclusive-offer-eop .form-input-inner-90 {
  position: relative;
  width: 100%;
  height: 100%;
}

.exclusive-offer-eop .overlay-loader {
  position: absolute;
  inset: 0;
  background: rgba(247,248,250,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.exclusive-offer-eop .overlay-loader.hidden {
  display: none;
}

.exclusive-offer-eop .loader-spinner {
  width: 46px;
  height: 46px;
  border: 4px solid #dce0df;
  border-top: 4px solid #2aab6b;
  border-radius: 50%;
  animation: spinExclusiveOffer 0.9s linear infinite;
}

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

.exclusive-offer-eop .exclusive-success-message {
  background-color: #2ba96c;
  color: #fff;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
  padding: 40px 20px;
  border-radius: 6px;
}
.exclusive-offer-eop.make-green {
  background-color: #2ba96c;
}

.exclusive-offer-eop.make-green .close {
  background-color: #fff !important;
}
