#avli-survey {
    position: relative;
    max-width: 520px;
    margin: auto;
    overflow: hidden;
    background: #f9d15f;
}

.survey-track {
    display: flex;
    transition: transform 0.45s ease;
}

.survey-step {
    min-width: 100%;
    padding: 3rem 1.5rem;
}

.survey-footer {
    position: sticky;
    bottom: 0;
    background: rgba(255,255,255,0.2);
    padding: 12px;
    border-top: 1px solid #eee;
}

.progress-text {
    font-size: 13px;
    color: #555;
}

.progress-bar {
    height: 6px;
    background: #eee;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 6px;
}

.progress-fill {
    height: 100%;
    width: 0;
    background: #0073aa;
    transition: width 0.4s ease;
}


.numbers_wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.numbers_item {
    width: 48px;
    height: 48px;
    border: 2px solid #ddd;
    border-radius: 8px;
    text-align: center;
    line-height: 44px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.numbers_item:hover {
    border-color: #34b93d;
}

.numbers_item.active {
    background: #34b93d;
    color: #fff;
    border-color: #34b93d;
}

.numbers_label {
    position: absolute;
    top: 60px;
    width: 120px;
    font-size: 12px;
    color: #666;
    transform: translateX(-35%);
}

.text-submit-btn,
#submit-survey,
#start-survey {
    border: none;
    outline: none;
    padding: 0.5rem 1rem;
}

.text-answer,
#fullname,
#mobile {
    width: 100%;
    border: none;
    outline: none;
}

.text-answer {
    padding: 1rem;
}

.pretty-checkbox-wrapper {
    box-sizing: border-box;
    --background-color: #fff;
    --checkbox-height: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pretty-checkbox-wrapper input[type=radio] {
    display: none;
}

.pretty-checkbox-wrapper .check-box {
    height: var(--checkbox-height);
    width: var(--checkbox-height);
    background-color: transparent;
    border: calc(var(--checkbox-height) * .1) solid #000;
    border-radius: 5px;
    position: relative;
    display: inline-block;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-transition: border-color ease 0.2s;
    -o-transition: border-color ease 0.2s;
    -webkit-transition: border-color ease 0.2s;
    transition: border-color ease 0.2s;
    cursor: pointer;
}

.pretty-checkbox-wrapper .check-box::before,
.pretty-checkbox-wrapper .check-box::after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    height: 0;
    width: calc(var(--checkbox-height) * .2);
    background-color: #34b93d;
    display: inline-block;
    -moz-transform-origin: left top;
    -ms-transform-origin: left top;
    -o-transform-origin: left top;
    -webkit-transform-origin: left top;
    transform-origin: left top;
    border-radius: 5px;
    content: " ";
    -webkit-transition: opacity ease 0.5s;
    -moz-transition: opacity ease 0.5s;
    transition: opacity ease 0.5s;
}

.pretty-checkbox-wrapper .check-box::before {
    top: calc(var(--checkbox-height) * .72);
    left: calc(var(--checkbox-height) * .41);
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.pretty-checkbox-wrapper .check-box::after {
    top: calc(var(--checkbox-height) * .37);
    left: calc(var(--checkbox-height) * .05);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.pretty-checkbox-wrapper input[type=radio]:checked + .check-box,
.pretty-checkbox-wrapper .check-box:has(input[type=radio]:checked),
.pretty-checkbox-wrapper .check-box.checked {
    border-color: #34b93d;
}

.pretty-checkbox-wrapper input[type=radio]:checked + .check-box::after,
.pretty-checkbox-wrapper .check-box:has(input[type=radio]:checked)::after,
.pretty-checkbox-wrapper .check-box.checked::after {
    height: calc(var(--checkbox-height) / 2);
    -moz-animation: dot-bottom-check 0.2s ease 0s forwards;
    -o-animation: dot-bottom-check 0.2s ease 0s forwards;
    -webkit-animation: dot-bottom-check 0.2s ease 0s forwards;
    animation: dot-bottom-check 0.2s ease 0s forwards;
}

.pretty-checkbox-wrapper input[type=radio]:checked + .check-box::before,
.pretty-checkbox-wrapper .check-box:has(input[type=radio]:checked)::before,
.pretty-checkbox-wrapper .check-box.checked::before {
    height: calc(var(--checkbox-height) * 1.2);
    -moz-animation: dot-top-check 0.4s ease 0s forwards;
    -o-animation: dot-top-check 0.4s ease 0s forwards;
    -webkit-animation: dot-top-check 0.4s ease 0s forwards;
    animation: dot-top-check 0.4s ease 0s forwards;
}

@-moz-keyframes dot-bottom-check {
    0% {
        height: 0;
    }
    100% {
        height: calc(var(--checkbox-height) / 2);
    }
}

@-webkit-keyframes dot-bottom-check {
    0% {
        height: 0;
    }
    100% {
        height: calc(var(--checkbox-height) / 2);
    }
}

@keyframes dot-bottom-check {
    0% {
        height: 0;
    }
    100% {
        height: calc(var(--checkbox-height) / 2);
    }
}

@keyframes dot-top-check {
    0% {
        height: 0;
    }
    50% {
        height: 0;
    }
    100% {
        height: calc(var(--checkbox-height) * 1.2);
    }
}

@-webkit-keyframes dot-top-check {
    0% {
        height: 0;
    }
    50% {
        height: 0;
    }
    100% {
        height: calc(var(--checkbox-height) * 1.2);
    }
}

@-moz-keyframes dot-top-check {
    0% {
        height: 0;
    }
    50% {
        height: 0;
    }
    100% {
        height: calc(var(--checkbox-height) * 1.2);
    }
}