.survey-container {
    width: 80%;
    margin: 0 auto;
    padding-top: 60px;
    /* padding-bottom: 300px; */
}

.survey-container h3 {
    margin: 100px auto 0 auto;
    font-family: var(--font-family-secondary);
    color: #051e52;
    font-size: 32px;
    font-weight: 400;
    text-align: center;
}

.thankyou-title h3 {
    padding: 30px;
    font-size: 20x;
    font-family: var(--font-family-secondary);
    border: 2px #eee solid;
}



.option-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
}

.surveyforminput {
    padding: 10px;
    width: 30%;
}

.surveyformul {
    display: inline-flex;
    list-style: none;
    width: 100%;
    padding: 0px !important;
}

.option-box,
.dropdown-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
    height: 74px;
    padding: 0 40px;
    background-color: #eee;
    box-shadow: 0px 4px 17px rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    transition: 0.2s;
    outline: none;
    border: 0;
}

.option-box:hover {
    transform: scale(1.02);
    cursor: pointer;
}

.option-box textarea {
    border: 0;
    width: 100%;
    height: inherit;
    background-color: transparent;
    outline: none;
    padding-top: 25px;
    color: white
}

.selection-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    border: 0;
    outline: none;
    background-color: #eee;
    color: #051e52;
    width: 100%;
    height: 74px;
}

.icon-bg {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: white;
    background-color: #051e52;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-box p {
    font-size: 16px;
    font-family: var(--font-family-secondary);
    color: #051e52;
}

/* Option Selected */
.selected-box {
    background-color: #051e52;
}

.selected-box p {
    color: white;
}

.selected-box .icon-bg {
    background-color: rgb(255, 77, 6);
    color: white;
}

/* Progress Bar */
.progress-container {
    width: 80%;
    height: 52px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #eee;
    box-shadow: 0px 4px 17px rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    position: fixed;
    bottom: 50px;
    left: 10%;
    right: 10%;
}

.progress-div {
    background-color: var(--color-divider);
    width: 70%;
}

.progress-bar {
    height: 3px;
    width: 0%;
    background-color: #051e52;
}

.question-back-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #C8102E;
    color: var(--color-text);
    border: 1px solid var(--color-text);
    margin-left: 40px;
    margin-right: 20px;
}

.next-btn {
    padding: 0px 30px;
    height: 50px;
    border-radius: 6px;
    background-color: #C8102E;
    border: 0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-left: 20px;
}

.next-btn:hover,
.question-back-btn:hover {
    transform: scale(1.02);
    cursor: pointer;
}

@media only screen and (max-width:900px) {
    .progress-container {
        width: 90%;
        left: 5%;
        right: 5%;
    }

    .surveyforminput {
        padding: 10px;
        width: 100%;
    }

    .surveyformul {
        display: block;
        padding: 0px !important;
        list-style: none;
        width: 100%;
    }

    .option-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media only screen and (max-width:500px) {
    .survey-container {
        padding-top: 30px;
    }

    .survey-headline h3 {
        font-size: 18px;
         font-family: var(--font-family-secondary);

    }

    .progress-container {
        width: calc(100% - 10px);
        left: 5px;
        right: 5px;
        bottom: 5px;
    }

    .progress-div {
        width: 50%;
    }

    .question-back-btn {
        margin-left: 12px;
        margin-right: 12px;
    }

    .next-btn {
        font-size: 16px;
        margin-left: 12px;
        padding: 0 20px;
    }

    .option-container {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}