.error {
    color: red;
}

.progressbar {
    position: relative;
    display: flex;
    justify-content: space-between;
    counter-reset: step;
    margin: -1rem 0 4rem;
}

.progressbar::before,
.progress {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    width: 100%;
    background-color: #65bfc4;
    z-index: 1
}

.progress {
    background-color: #65bfc4;
    width: 0%;
    transition: 0.3s
}

.progress-step {
    width: 2.1875rem;
    height: 2.1875rem;
    background-color: #fff;
    border: 3px solid #65bfc4;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1
}

.progress-step::before {
    counter-increment: step;
    content: counter(step)
}

.progress-step::after {
    content: attr(data-title);
    position: absolute;
    top: calc(100% + 0.5rem);
    font-size: 0.85rem;
    color: #666
}

.progress-step-active {
    background-color: #65bfc4;
    color: #fff;
}


.step-forms {
    display: none;
    transform-origin: top;
    animation: animate 1s
}

.step-forms-active {
    display: block
}

.group-inputs {
    margin: 1rem 0
}


.progress-step-check {
    position: relative;
    background-color: #65bfc4 !important;
    transition: all 0.8s
}

.progress-step-check::before {
    position: absolute;
    content: '\2713';
    width: 100%;
    height: 100%;
    top: 2px;
    left: 0px;
    font-size: 19px;
    text-align: center;
}


.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #7ac142;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards
}

.checkmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 10% auto;
    box-shadow: inset 0px 0px 0px #7ac142;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0
    }
}

@keyframes scale {

    0%,
    100% {
        transform: none
    }

    50% {
        transform: scale3d(1.1, 1.1, 1)
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #7ac142
    }
}

/* radio buttons */

.radios {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

@media (max-width: 640px) {
    .radios {
        flex-direction: column;
    }
}

.checkbox {
    width: 100%;
}

.checkbox input {
    position: absolute;
    pointer-events: none;
    visibility: hidden;
}

.checkbox p {
    margin-bottom: 0;
}

.checkbox input:focus + label {
    background: #eeeeff;
}

.checkbox input:focus + label .checker {
    border-color: #6666ff;
}

.checkbox input:checked + label .checker,
.checkbox input:checked ~ label .checker {
    box-shadow: inset 0 0 0 6px #65bfc4; /* Line 277 */
}

.checkbox label {
    display: flex;
    align-items: center;
    height: auto;
    border-radius: 3px;
    margin-bottom: 15px;
    padding: 2px 8px 2px 2px;
    cursor: pointer;
    line-height: 20px;
    transition: background-color 0.3s ease;
}

.checkbox label > span, .checkbox label > div.text {
    padding-left: 25px;
}

.checkbox.three label {
    height: unset;
    align-items: flex-start;
    padding: 15px 15px 15px 10px;
    border-radius: 3px;
    margin-bottom: 25px
}

.checkbox.three label h3 {
    margin-top: 0;
    margin-bottom: 6px;
    margin-top: -3px;
}

.checkbox.three label p {
    margin-bottom: 0px !important;
}

.checkbox.three .checker {
    margin-right: 15px
}

.checkbox.three .text {
    width: 100%;
    line-height: 24px;
}

.checkbox label:hover {
    background: #e8f8ff;
}

.checkbox label:hover .checker {
    box-shadow: inset 0 0 0 2px #65bfc4;
}

.checkbox .checker {
    position: absolute;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    box-shadow: inset 0 0 0 2px #ccc;
    transition: box-shadow 0.3s ease;
    background-color: #ffffff;
    border-radius: 50px;
}

.radio {
    width: fit-content;
}

.radio input {
    position: absolute;
    pointer-events: none;
    visibility: hidden;
}

.radio input:focus + label {
    background: #eeeeff;
}

.radio input:focus + label .checker {
    border-color: #6666ff;
}

.radio input:checked + label .checker {
    box-shadow: inset 0 0 0 6px #65bfc4;
}

.radio label {
    display: flex;
    align-items: center;
    height: auto;
    border-radius: 50px;
    margin-bottom: 15px;
    padding: 2px 8px 2px 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    line-height: 20px;
}

.radio label > span,
.radio label > div.text {
    padding-left: 25px;
}

.radio.two label {
    height: unset;
    align-items: flex-start;
    padding: 15px 15px 15px 10px;
    border-radius: 3px;
    margin-bottom: 25px
}

.radio.two label h3 {
    margin-top: 0;
    margin-bottom: 6px;
    margin-top: -3px;
}

.radio.two label p {
    margin-bottom: 0px;
}

.radio.two .checker {
    margin-right: 15px
}

.radio.two .text {
    width: 100%;
    line-height: 24px;
}

.radio label:hover {
    background: #d0eced;
}

.radio label:hover .checker {
    box-shadow: inset 0 0 0 2px #65bfc4;
}

.radio .checker {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: inset 0 0 0 2px #ccc;
    transition: box-shadow 0.3s ease;
    background-color: #ffffff;
    position: absolute;
}

.progress-step.progress-step-active:before {
    opacity: 1;
}

.progress-step:before {
    opacity: 0;
}



@media (max-width: 767px) {
    .progress-step.progress-step-active {
        opacity: 1
    }
    
    .progress-step-check {
        opacity: 0!important;
        transition: unset!important;
    }

    .progress-step {
        opacity: 0;
        position: relative;
    }

    .report .hero-content .row {
        background-color: unset;
        margin-top: unset;
        position: relative;
        padding: 40px;
    }

    .progress-step.progress-step-active:before,
    .progress-step.progress-step-active:after{
        opacity: 1;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .progressbar .progress-step:last-child {
        opacity: 1;
    }
}

/* Question 3 Answers Font */

.three label div h3,
    .two label div h3 {
    font-size: 18px;
}