.survey-card{
    width:100%;
    max-width:640px;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    margin: 0 auto;
}

.top-banner{
    background:#FFF8FA;
    padding-top:10px;
    text-align:center;
    border: 1px solid #E8E1E6;
}

.top-banner h3{
    color: #C63C6D;
    margin-bottom: 3px;
    font-size: 16px;
    line-height: 23px;
    margin-top: 0;
}
.top-banner h3 img {
    position: relative;
    top: 2px;
}
.top-banner p{
    color:#6F6F6F;
    font-size:12px;
    line-height: 18px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 0;
}

.progress{
    height:8px;
    background:#EDF0F4;
    border-radius:20px;
    margin-top:10px;
    overflow:hidden;
}

.progress-bar{
    width:16%;
    height:100%;
    background:#C63C6D;
}

.content{
    padding:7px 20px 20px 20px;
    text-align:center;
}

.step{
    color: #D96C8A;
    font-weight: 800;
    letter-spacing: 1.25px;
    margin-bottom: 0;
    margin-top: 0;
    font-size: 11px;
}

.survey-card .step-heading {
    font-size:21px;
    font-weight:900;
    color:#333333;
    line-height:29px;
    margin-bottom:20px;
}
.survey-card .step-heading span.hbr {
  display: block;
  margin-top: 15px;
}
.radio-options {
    display:flex;
    gap:15px;
    justify-content:center;
    flex-wrap:wrap;
}
/* hide default radio */
.radio-option input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #D96C8A;   /* default border */
    border-radius: 50%;
    display: grid;
    place-content: center;
    margin: 0;
    cursor: pointer;
    min-width: 18px;
}

/* inner dot (fill) */
.radio-option input[type="radio"]::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transform: scale(0);
    transition: 0.2s ease-in-out;
    background-color: #D96C8A; /* fill color */
}

/* checked state */
.radio-option input[type="radio"]:checked {
    border-color:#D96C8A; /* border color when selected */
}

.radio-option input[type="radio"]:checked::before {
    transform: scale(1);
}

/*.radio-circle*/
.radio-option {
    min-width:220px;
    padding:10px 15px;
    border-radius:9px;
    background:#F7F8FA;
    color:#5B6170;
    font-size:15px;
    font-weight:500;
    cursor:pointer;
    transition:.3s;
    border:2px solid #E8E1E6;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, .12);
    width: 40%;
    line-height: 1.1;
}
.radio-circle {padding-left: 10px;}
.radio-group input[type="radio"]:checked + .radio-btn {
    background:#16A34A;
    color:#fff;
    border-color:#16A34A;
}

.survey-card .step-description{
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
    color:#5B6170;
    margin-bottom: 15px;
}
.note {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #5B6170;
  margin-top: 15px;
}
.survey-card .step-description span.cbr {
  display: block;
  margin-top: 10px;
}
.btn-next, .btn-submit {
    width: 100%;
    height: 50px;
    border: none;
    background: green;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    border-radius: 9px;
    line-height: 27px;
    cursor: pointer;
    background: #C63C6D;
    transition:.3s;
}
.btn-submit {margin-top: 15px}
.back-button {
    font-size: 14px;
    color: #343434;
    cursor: pointer;
    margin-top: 15px;
}
.btn-next:hover, .btn-submit:hover {background: #C63C6D; opacity: 0.95}
.back-button:hover {
  color: #C63C6D;
}
button {
    outline: none;
    border: none;
}

button:focus,
button:active,
button:focus-visible {
    outline: none;
    box-shadow: none;
}

button::-moz-focus-inner {
    border: 0;
}

button {
    -webkit-tap-highlight-color: transparent; /* Mobile */
}
.footer{
    border-top:1px solid #E3E6EC;
    padding:18px;
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    color:#6F6F6F;
    font-size:12px;
    line-height: 18px;
    font-weight: 700;
    background: #FAFBFC;
}

.footer span{
    color:#D96C8A;
    font-weight:600;
    margin-right: 3px;
}
.input-group+.input-group {
    margin-top: 15px;
  }
  
  .input-wrapper {
    position: relative;
    width: 100%;
    height: 60px;
    border-radius: 0;
    box-shadow: rgba(216, 216, 216, .5) 2px 2px 12px 2px;
    background: #fff;
    overflow: hidden;
  }
  
  .input-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 0, 0, .42);
    transition: height .2s, background .2s;
  }
  
  .input-wrapper.focused::after {
    height: 2px;
    background: #C63C6D;
  }
  
  .input-wrapper label {
    position: absolute;
    top: 10px;
    left: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #a3a3a3;
    pointer-events: none;
    transition: all .2s;
    transform-origin: top left;
    font-weight: 500;
  }
  
  .input-wrapper.focused label,
  .input-wrapper.has-value label {
    top: 10px;
    font-size: 12px;
  }
  
  .input-wrapper.focused label {
    color: #C63C6D;
  }
  
  .input-wrapper input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    padding: 10px 12px 10px;
    font-size: 16px;
    color: #000;
    background: transparent;
  }

  .phone-intl {
    overflow: visible;
  }
  
  .phone-intl .iti {
    width: 100%;
    height: 100%;
  }
  
  .phone-intl .iti__selected-country-primary {
    padding-left: 12px;
  }
  
  .phone-intl .iti__country-container {
    height: 100%;
    padding-top: 20px;
  }
  
  .phone-intl .iti input.iti__tel-input {
    width: 100%;
    height: 100%;
    padding: 26px 12px 8px 0;
    border: none;
    background: transparent;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
  }
  
  .phone-intl label {
    z-index: 2;
  }
  
  .iti__dropdown-content {
    z-index: 9999 !important;
    border: 1px solid #dadada;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
    border-radius: 4px;
    background: #fff;
  }
  
  .iti__search-input {
    padding: 10px 12px;
    font-size: 14px;
  }
  
  .iti__country-list {
    max-height: 220px;
  }
  
  .iti__country {
    padding: 8px 12px;
    font-size: 14px;
  }
  
  .iti__country:hover {
    background: #f5f5f5;
  }
  
  .iti__dial-code {
    color: #999;
  }
  
  .survey-card .field-error {
    font-size: 11px;
    color: #d32f2f;
    margin-top: 3px;
    padding-left: 12px;
    display: none;
    font-weight: 400;
    letter-spacing: 0.01em;
  }
  
  .field-error.visible {
    display: block;
  }
  
  .textarea-wrapper {
    position: relative;
    width: 100%;
    border-radius: 0;
    box-shadow: rgba(216, 216, 216, .5) 2px 2px 12px 2px;
    background: #fff;
    overflow: hidden;
    margin-bottom: 20px;
  }
  
  .textarea-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 0, 0, .42);
    transition: height .2s, background .2s;
  }
  
  .textarea-wrapper:focus-within::after {
    height: 2px;
    background: #C63C6D;
  }
  
  .textarea-wrapper label {
    position: absolute;
    top: 20px;
    left: 12px;
    font-size: 14px;
    color: #a3a3a3;
    pointer-events: none;
    transition: all .2s;
    font-weight: 500;
  }
  
  .textarea-wrapper:focus-within label,
  .textarea-wrapper.has-value label {
    top: 8px;
    font-size: 12px;
  }
  
  .textarea-wrapper:focus-within label {
    color: #C63C6D;
  }
  
  .textarea-wrapper textarea {
    width: 100%;
    min-height: 90px;
    border: none;
    outline: none;
    padding: 27px 12px 10px;
    font-size: 16px;
    color: #000;
    background: transparent;
    resize: none;
  }
  .survey-card .consent-text {
    font-size: 11px;
    color: #5B6170;
    text-align: center;
    line-height: 1.5;
    margin-top: 10px;
    margin-bottom: 0;
  }
  @media screen and (max-width: 767px) {
    .footer {
        padding: 10px;
        gap: 5px;
    }
    .step-heading span.hbr {
        margin-top: 10px;
    }
    .step-heading {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 15px;
    }
    .step, .back-button, .consent-text {
        margin-bottom: 15px;
    }
    .top-banner h3{font-size: 15px}
  }