*, *:before, *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    font-size: 10px;
    -webkit-tap-highlight-color: transparent;
}
body {
    font-family: Muli, sans-serif;
    font-size: 62.5%;
    background: #F8F6F6;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    margin: 0;
    background-color: #F5F6F6;
}
.il-container {
    padding-right: 40px;
    padding-left: 40px;
    margin-right: auto;
    margin-left: auto;
}
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
button, input, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}
li, ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
a {
    color: #6c6c6c;
    text-decoration: none;
    outline: none;
    display: inline-block;
    font-weight: 400;
    font-size: 1.5rem;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-weight: 600;
    color: #282828;
}
p, span {
    margin: 0;
    padding: 0;
    color: #282828;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 22px;
}
.primary-btn {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    color: #fff;
    padding: 1.1rem 2.4rem;
    font-size: 1.6rem;
    background: #EC6625;
    border-radius: 5px;
    text-decoration: none;
    outline: none;
    border: 3px solid transparent;
    font-weight: 700;
    text-align: center;
}

.primary-btn:hover {
    background: #FD7B20;
    color: #fff;
}

.primary-btn-disabled {
    background: #C9C9C9;
    pointer-events: none;
    position: relative;
    cursor: not-allowed;
    overflow: hidden;
    padding: 1.4rem 2.7rem;
    font-size: 1.6rem;
    border-radius: 5px;
    text-decoration: none;
    outline: none;
    border: 0;
    font-weight: 700;
    text-align: center;
    color: #FFFFFF;
}

span.ui-error {
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    color: #ff0000;
    font-weight: 400;
    bottom: -20px;
    display: none;
    text-align: left;
}

/***Feedback Form Start***/
.btn-block {
    margin-top: 30px;
    display: block;
}

.heading2 {
    font-size: 2rem;
    line-height: 25px;
    font-weight: 800;
}

.heading3 {
    font-size: 1.6rem;
    line-height: 20px;
    font-weight: 700;
}

.mb-30 {
    margin-bottom: 30px;
}

.sub-title {
    color: #838383;
    font-size: 1.6rem;
    line-height: 20px;
    font-weight: 600;
    padding: 0px 0 20px 0;
}

.next-btn-block {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
}

.progress-bar-block {
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.progress-bar {
    background: #EAEAEA;
    height: 6px;
    width: 200px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.fill {
    background: #0DA526;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
/*    width: 33.33%;*/
    height: 6px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.progress-list-count, .list-count, .list-cnt {
    font-size: 1.6rem;
    line-height: 20px;
    color: #B2B2B2;
    font-weight: 700;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 8px;
}

/****Radio Block Start****/
.radio-block ul li {    
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
    box-shadow: 0px 3px 5px #F8F6F6;
    border-radius: 10px;
    padding: 30px 20px 30px 10px;
    margin-bottom: 20px;
}

.radio-block ul li:last-child {
    margin-bottom: 0;
}

.il-radio-group {
    display: flex;
    align-items: center;
}

.il-radio-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    cursor: pointer;
    opacity: 0;
}
.il-radio-group label {
    position: relative;
    cursor: pointer;
    display: flex;
    font-size: 1.5rem;
    line-height: 19px;
    font-weight: 600;
    padding-left: 40px;
}
.il-radio-group label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #838383;
    padding: 8px;
    display: inline-block;
    position: absolute;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 1rem;
    border-radius: 50%;
/*    height: fit-content;*/
    top: 0px;
    left: 0;
}
.il-radio-group input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 6px;
    left: 6px;
    border: solid #F26624;
    border-width: 4px;
    border-radius: 50%;
}
.il-radio-group input:checked+label:before {
    border-color: #F26624;
}
/*Radio unselected focus*/
.il-radio-group input:focus-visible+label::before {
    border-color: #FFA05D;
}
/*Radio selected focus*/
.il-radio-group input:checked:focus-visible+label::after {
    border-color: #EC6608;
}
/*Radio unselected hover*/
.il-radio-group input+label:hover::before {
    background-color: #EAEAEA;
}
/*Radio selected hover*/
.il-radio-group input:checked+label:hover::before {
    background-color: #FFF2EB;
}
/*Radio selected pressed*/
.il-radio-group input:checked:active+label::before {
    border-color: #FFF2EB;
    background-color: #EC6608;
}
/*Radio unselected pressed*/
.il-radio-group input:active+label::before {
    border-color: #EC6608;
    background-color: #EAEAEA;
}
/****Radio Block End****/

.feedback-form {
    max-width: 875px;
    width: 100%;
    margin: 50px auto 50px;
    padding: 60px;
    background: #fff;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    position: relative;
}

.feedback-form.bg-blue {
    background: linear-gradient(151.58deg, #F3FBFF 14.81%, #FFFDF5 84.35%);
}

.start-quiz-block {
    margin: 0 auto;
    text-align: center;
}

.img-block {
    margin-bottom: 20px;
}

.start-quiz-block h2 {
    font-size: 2.2rem;
    line-height: 28px;
    color: #282828;
    font-weight: 800;
    margin-bottom: 5px;
}

.sub-info {
    font-size: 1.6rem;
    line-height: 20px;
    font-weight: 600;
}

.start-quiz-block .text {
  font-size: 1.6rem;
  line-height: 22px;
  font-weight: 600;
  color: #838383;
  margin-top: 20px;
}

.feedback-list {
    background: #fff;
    border: 1px solid #EBEBEB;
    border-radius: 5px;
    padding: 30px;
    margin-bottom: 10px;
    position: relative;
}

.feedback-list ul li {
    width: 55px;
}

.feedback-list .heading3 {
    padding-bottom: 20px;
}

.feedback-status {
    font-size: 1.2rem;
    line-height: 15px;
    color: #b2b2b2;
    font-weight: 700;
    display: block;
    margin-top: 10px;
}

.feedback-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.feedback-list ul li {
    width: 19%;
}

.feedback-list ul li a {
    border-radius: 5px;
    display: block;
    width: 100%;
    height: 60px;
}

.feedback-list ul li.comp-disagree a {
    background: url('/docs/default-source/assets/renewal/feedback/images/emoji-disagree.svg') #F7F6F6 no-repeat ;
    background-position: center center;
}

.feedback-list ul li.some-disagree a {
    background: url('/docs/default-source/assets/renewal/feedback/images/emoji-two.svg') #F7F6F6 no-repeat ;
    background-position: center center;
}

.feedback-list ul li.neither-agree-disagree a {
    background: url('/docs/default-source/assets/renewal/feedback/images/emoji-three.svg') #F7F6F6 no-repeat ;
    background-position: center center;
}

.feedback-list ul li.some-agree a {
    background: url('/docs/default-source/assets/renewal/feedback/images/emoji-four.svg') #F7F6F6 no-repeat ;
    background-position: center center;
}

.feedback-list ul li.comp-agree a {
    background: url('/docs/default-source/assets/renewal/feedback/images/emoji-agree.svg') #F7F6F6 no-repeat ;
    background-position: center center;
}

.feedback-list ul li a:hover {
   box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.1);
}

.feedback-list ul li.active a {
   border: 2px solid #FE8A1F;
}

.feedback-list ul li.active.comp-disagree a {
    background: url('/docs/default-source/assets/renewal/feedback/images/emoji-disagree-click.svg') #FFEFD7 no-repeat ;
    background-position: center center;
}

.feedback-list ul li.active.some-disagree a {
    background: url('/docs/default-source/assets/renewal/feedback/images/emoji-two-click.svg') #FFEFD7 no-repeat ;
    background-position: center center;
}

.feedback-list ul li.active.neither-agree-disagree a {
    background: url('/docs/default-source/assets/renewal/feedback/images/emoji-three-click.svg') #FFEFD7 no-repeat ;
    background-position: center center;
}

.feedback-list ul li.active.some-agree a {
    background: url('/docs/default-source/assets/renewal/feedback/images/emoji-four-click.svg') #FFEFD7 no-repeat ;
    background-position: center center;
}

.feedback-list ul li.active.comp-agree a {
    background: url('/docs/default-source/assets/renewal/feedback/images/emoji-agree-click.svg') #FFEFD7 no-repeat ;
    background-position: center center;
}

.form-item {
    position: relative;
}

.form-item label {
    position: absolute;
    cursor: text;
    z-index: 2;
    top: 13px;
    left: 10px;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 20px;
    background: #fff;
    padding: 0 10px;
    color: #999;
    transition: all .3s ease;
}

.form-item textarea {
    cursor: auto;
    border: none;
    color: #282828;
    border: 1px solid #c9c9c9;
    font-size: 16px;
    border-radius: 5px;
    z-index: 12;
    width: 100%;
    height: 172px;
    padding: 20px;
    outline: none;
    resize: none;
    font-weight: 500;
}

.form-item.il-input-block.focus.onFocused label, .form-item.il-input-block.focus label {
    top: -8px !important;
    left: 1rem;
    color: #ec6625;
    font-size: 1.2rem;
    z-index: 99;
    padding: 0 1rem;
}

.form-item.il-input-block.focus label {
    color: #999;
}

.form-item textarea:focus {
    border: 2px solid #EC6625;
}

.error_message {
    color: #ff0000 !important;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 15px;
    position: relative;
    left: 0;
    display: none;
}

.number-count, .number-count span {
    font-size: 1.4rem;
    line-height: 18px;
    font-weight: 400;
    text-align: right;
    color: #575757;
}

.thankYou-screen h2 {
    color: #282828;
    font-size: 2rem;
    line-height: 25px;
    font-weight: 800;
    text-align: center;
}

.thankYou-screen .text {
    font-size: 1.6rem;
    line-height: 22px;
    font-weight: 400;
    color: #282828;
    margin-top: 8px;
}
/***Feedback Form End****/

.quest-feedback-form, .thankYou-screen {
    display: none;
}

.quest6, .quest7 {
    display: none;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.others-block, .others-block-specify {
    display: none;
}

.check-block {
    border: 1px solid #F7F6F6;
    border-radius: 10px;
    padding: 40px 30px;
}

.check-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.check-wrap .check-row {
    width: 45%;
}

.check-row .check-group {
    display: block;
    margin-bottom: 15px;
    min-height: 40px;
}

.check-row .check-group:last-child {
    margin-bottom: 0;
    min-height: auto;
}

.check-group input {
    padding: 0;
    height: 0;
    width: 0;
    margin-bottom: 0;
    cursor: pointer;
    min-height: auto;
    margin-top: 0;
    display: inherit;
    opacity: 0;
}
.check-group label {
    position: relative;
    cursor: pointer;
    display: flex;
    font-size: 1.6rem;
    line-height: 2rem;
    font-weight: 500;
    color: #282828;
}
.check-group label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #838383;
    padding: 8px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 1rem;
    border-radius: 3px;
    height: fit-content;
    transition: .3s all ease;
}
.check-group input:checked+label:before {
    background-color: #EC6625;
    border: 2px solid #EC6625;
}
.check-group input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 7px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    background: ;
    transform: rotate(45deg);
    .transition: .3s all ease;
}

/*Checkbox Unselected focus*/
.check-group input:focus-visible+label::before {
    border-color: #F58820;
}
/*Checkbox Unselected Pressed*/
.check-group input:active+label::before {
    border-color: #F58820;
    background-color: #CBCDCE;
}
/*Checkbox Checked Pressed*/
.check-group input:checked:active+label:before {
    background-color: #fff;
    border-color: #FFF2EB;
}
/*Checkbox Checked focus*/
.check-group input:checked:focus-visible+label:before {
    background: #EC6625;
    box-shadow: 0 0 0px 2px #EC6625;
    border: 2px solid #fff;
}
/*Checkbox Checked tickmark pressed*/
.check-group input:checked:active+label:after {
    border-color: #EC6608;
}

.quest2  .check-row .check-group {
    min-height: auto;
}

.quest-block .primary-btn {
    margin-left: auto;
} 

/*******Media Query Start*******/

@media (max-width: 768px) {
    body {
        background-color: #fff;
    }

    .primary-btn {
        width: 100%;
    }

    .heading2 {
        font-size: 1.8rem;
        line-height: 23px;
    }

    .heading3 {
        font-size: 1.5rem;
        line-height: 19px;
    }

    .sub-title {
        font-size: 1.4rem;
        line-height: 18px;
    }

    .feedback-form {
        background: #fff;
        padding: 40px 20px;
        border-radius: 0;
        box-shadow: none;
        margin: 0;
    }

    .start-quiz-block h2 {
        font-size: 1.6rem;
        line-height: 20px;
    }

    .sub-info {
        font-size: 1.4rem;
        line-height: 18px;
    }

    .start-quiz-block .text {
        font-size: 1.4rem;
        line-height: 22px;
    }

    .start-quiz-block .text br {
        display: none;
    }

    .img-block {
        margin-bottom: 35px;
    }

    .feedback-list {
        padding: 20px;
        padding-bottom: 40px;
    }

    .feedback-list ul li {
        width: 55px;
    }

    .feedback-list ul li a {
        height: 55px;
    }

    .feedback-list ul li.active a {
        border: 1.5px solid #FE8A1F;
    }

    .feedback-status {
        font-size: 1rem;
        line-height: 13px;
        position: absolute;
        width: 100px;
        display: flex;
    } 

    .feedback-list ul li:last-child .feedback-status {
        text-align: right;
        right: 0;
    }

    .feedback-list ul li.comp-disagree a {
        background: url('/docs/default-source/assets/renewal/feedback/images/emoji-disagree.svg') #fff no-repeat ;
        background-position: center center;
        background-size: 25px;
    }

    .feedback-list ul li.some-disagree a {
        background: url('/docs/default-source/assets/renewal/feedback/images/emoji-two.svg') #fff no-repeat ;
        background-position: center center;
        background-size: 25px;
    }

    .feedback-list ul li.neither-agree-disagree a {
        background: url('/docs/default-source/assets/renewal/feedback/images/emoji-three.svg') #fff no-repeat ;
        background-position: center center;
        background-size: 25px;
    }

    .feedback-list ul li.some-agree a {
        background: url('/docs/default-source/assets/renewal/feedback/images/emoji-four.svg') #fff no-repeat ;
        background-position: center center;
        background-size: 25px;
    }

    .feedback-list ul li.comp-agree a {
        background: url('/docs/default-source/assets/renewal/feedback/images/emoji-agree.svg') #fff no-repeat ;
        background-position: center center;
        background-size: 25px;
    }

    .feedback-list ul li.active.comp-disagree a {
        background: url('/docs/default-source/assets/renewal/feedback/images/emoji-disagree-click.svg') #FFEFD7 no-repeat ;
        background-position: center center;
        background-size: 25px;
    }

    .feedback-list ul li.active.some-disagree a {
        background: url('/docs/default-source/assets/renewal/feedback/images/emoji-two-click.svg') #FFEFD7 no-repeat ;
        background-position: center center;
        background-size: 25px;
    }

    .feedback-list ul li.active.neither-agree-disagree a {
        background: url('/docs/default-source/assets/renewal/feedback/images/emoji-three-click.svg') #FFEFD7 no-repeat ;
        background-position: center center;
        background-size: 25px;
    }

    .feedback-list ul li.active.some-agree a {
        background: url('/docs/default-source/assets/renewal/feedback/images/emoji-four-click.svg') #FFEFD7 no-repeat ;
        background-position: center center;
        background-size: 25px;
    }

    .feedback-list ul li.active.comp-agree a {
        background: url('/docs/default-source/assets/renewal/feedback/images/emoji-agree-click.svg') #FFEFD7 no-repeat ;
        background-position: center center;
        background-size: 25px;
    }

    .feedback-list ul li a:hover {
        box-shadow: none;
    }

    .progress-bar-block {
        position: absolute;
        display: block;
        top: 0;
        width: 100%;
        left: 0;
        transform: none;
    }

    .progress-list-count, .list-count {
        display: none;
    }

    .progress-bar {
        width: 100%;
        z-index: 2;
        border-radius: 0;
    }

    .mb-30 {
        margin-bottom: 40px;
    }

    .thankYou-screen h2 {
        font-size: 2rem;
        line-height: 25px;
    }

    .thankYou-screen .text {
        font-size: 1.6rem;
        line-height: 22px;
    }

    .thankYou-screen img {
        width: 200px;
        height: 118px;
    }

    .radio-block ul li {
        padding: 20px 20px 20px 10px;
    }


    .il-radio-group label {
        padding-left: 40px;
    }

    .next-btn-block {
        position: static;
    } 

}

@media(max-width: 480px) {
    .check-block {
        border: none;
        border-radius: 0;
        padding: 0;
    }

    .check-wrap {
        flex-direction: column-reverse;
        margin: 0;
    }

    .check-wrap .check-row{
        width: 100%;
    }

    .check-row .check-group:last-child {
        margin-bottom: 15px;
    }

    .check-row .check-group {
        min-height: auto;
    }

    .others-check {
        margin: 0;
    }

    .feedback-list {
        padding: 20px 12px;
    }

    .feedback-status {
        margin-top: 0;
    }

    .check-group input:checked+label:after {
        top: 4px;
        left: 7px
    }
}

/*******Media Query End*******/