* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100vh;
    overflow: auto;
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background: url('../img/background3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.survey-navbar {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 15px;
    justify-content: space-between;
    margin: 0;
    border-radius: 10px;
}

/* Navbar */
.survey-navbar img {
    max-width: 100px;
    height: auto;
}

.survey-icons-container {
    display: flex;
    align-items: center;
    padding: 10px;
}

.survey-icons {
    display: flex;
}

.survey-icons a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
}

.survey-icons a:hover {
    color: #007bff;
}

/* Survey content */
.survey-content {
    display: flex;
    padding: 30px;
    margin: 30px;
    height: 80vh;
    border-radius: 10px;
}

.survey-container {
    display: flex;
    margin: 20px auto;
    padding: 0px 30px;
    width: 100%;
    justify-content: space-between;
    border-radius: 10px;
    color: white;
}

.survey-container .row {
    display: flex;
    width: 100%;
    justify-content: space-between;
    border-radius: 10px;
}

/* Left side*/
.left-survey {
    flex: 1;
    margin: auto;
    padding: 30px 10px;
    border-radius: 10px;
}

.left-survey-container {
    padding: 0px 20px 20px;
    border-radius: 10px;
}

.left-survey-container h3 {
    font-size: 55px;
    font-weight: bold;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-style: normal;
    padding: 10px;
}

.left-survey-image {
    color: rgb(255, 70, 70);
}

.left-survey-container p {
    font-size: 15px;
    font-family: 'Caveat', cursive;
    line-height: 1.3;
    margin-left: 10px;
}

.left-survey-container p em {
    font-family: 'Caveat', cursive;
    font-style: normal;
    color: rgba(255, 70, 70);
}

/* Right Side */
.right-survey {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex: 1;
    margin: 0 auto;
    padding: 30px 10px;
    border-radius: 10px;
    width: 100%;
}

.right-survey-container {
    width: 80%;
    min-height: 600px;
    background: rgba(0, 0, 0, 0.514);
    padding: 10px 30px 20px 30px;
    margin: 20px auto;
    border-radius: 20px;
}

/* Form steps*/

.step {
    display: none;
}

.step:first-of-type {
    display: block;
}

.right-survey-step {
    color: #fff;
    text-decoration: none;
    position: relative;
    background: rgba(255, 70, 70, 0.802);
    padding: 10px;
    margin: 10px auto;
    border-radius: 10px;
    display: block;
    width: fit-content;
    overflow: hidden;
    font-size: 15px;
}

.right-survey-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid transparent;
    width: 0;
    height: 0;
    border-radius: 10px;
    transition: width 0.3s ease, height 0.3s ease;
}

.right-survey-step:hover::before {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 1px solid white;
}

/* Form user details */

.form-group {
    margin-bottom: 10px;
    align-items: center;
}

.form-user-data {
    display: flex;
}

.terms{
    display: inline;
    align-items: center;
}

.terms-button {
    justify-content: space-between;
    align-items: center;
}

.terms-button .terms label {
    display: inline;
    align-items: center;
}

.checkbox-input {
    margin: auto; 
}

.fl-label {
    font-weight: bold;
    padding: 0 20px;
    font-size: 16px;
}

.form-group input,
.form-group select,
.checkbox-label {
    flex: 1;
    vertical-align: baseline;
}


.fl-input,
.fl-select {
    width: 100%;
    margin: 0 50px;
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    align-items: center;
}

.fl-select {
    color: #0197b9;
}

/* Drop down */

.fl-select option { 
    color: rgba(255, 70, 70);
}

.fl-select:focus {
    border-color: rgba(255, 70, 70);
    outline: none;
}

/* Question */
.survey-question {
    margin: 0 auto;
    text-align: center;
    padding: 10px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 14px;
}

/* Form plus contents */
.review_block_smiles {
    display: flex;
    flex-direction: column;
    margin: 0;
    align-items: center;
    height: 100%;
}

.icon-options {
    list-style-type: none;
    display: flex;
    justify-content: center;
    padding: 0;
}

.option-icon {
    font-size: 56px;
    transition: transform 0.2s, color 0.2s, opacity 0.2s, background 0.2s;
    cursor: pointer;
    color: white;
    padding: 12px;
    border-radius: 10px;
    display: inline-block;
    margin: 0 20px;
    /* background: rgba(0, 225, 255, 0.169); */
}

/*
.option-icon-very-bad:hover {
    color: black;
    background: red;
    transition: color 0.5s, background 0.5s;
    padding: 12px;
    border-radius: 10px;
}

.option-icon-bad:hover {
    color: black;
    background: orange;
    transition: color 0.5s, background 0.5s;
    padding: 12px;
    border-radius: 10px;
}

.option-icon-average:hover {
    color: black;
    background: yellow;
    transition: color 0.5s, background 0.5s;
    padding: 12px;
    border-radius: 10px;
}

.option-icon-good:hover {
    color: black;
    background: rgba(172, 255, 47, 0.864);
    transition: color 0.5s, background 0.5s;
    padding: 12px;
    border-radius: 10px;
}

.option-icon-very-good:hover {
    color: black;
    background: rgb(0, 255, 0);
    transition: color 0.5s, background 0.5s;
    padding: 12px;
    border-radius: 10px;
}

*/
/* new hover */

.option-icon-very-dissatisfied:hover {
    color: black;
    background: red;
    transition: color 0.5s, background 0.5s;
    padding: 12px;
    border-radius: 10px;
}

.radio-very-dissatisfied:hover {
    background: red;
    color: black;
}

.option-icon-dissatisfied:hover {
    color: black;
    background: orange;
    transition: color 0.5s, background 0.5s;
    padding: 12px;
    border-radius: 10px;
}

.radio-dissatisfied:hover {
    background: orange;
    color: black;
}

.option-icon-neutral:hover {
    color: black;
    background: yellow;
    transition: color 0.5s, background 0.5s;
    padding: 12px;
    border-radius: 10px;
}

.radio-neutral:hover {
    background: yellow;
    color: black;
}

.option-icon-satisfied:hover {
    color: black;
    background: rgba(172, 255, 47, 0.864);
    transition: color 0.5s, background 0.5s;
    padding: 12px;
    border-radius: 10px;
}

.radio-satisfied:hover {
    background:rgba(172, 255, 47, 0.864);
    color: black;
}

.option-icon-very-satisfied:hover {
    color: black;
    background: rgb(0, 255, 0);
    transition: color 0.5s, background 0.5s;
    padding: 12px;
    border-radius: 10px;
}

.radio-very-satisfied:hover {
    background: rgb(0, 255, 0);
    color: black;
}

/* Checked icon

.container_smile .radio-input:checked + .option-icon-very-bad {
    color: black;
    background: red;
    transition: color 0.5s, background 0.5s;
    padding: 12px;
    border-radius: 10px;
    animation: spin 0.5s linear;
    transform-style: preserve-3d;
    transform-origin: center;
}

.container_smile .radio-input:checked + .option-icon-bad {
    color: black;
    background: orange;
    transition: color 0.5s, background 0.5s;
    padding: 12px;
    border-radius: 10px;
    animation: spin 0.5s linear;
    transform-style: preserve-3d;
    transform-origin: center;
}

.container_smile .radio-input:checked + .option-icon-average {
    color: black;
    background: yellow;
    transition: color 0.5s, background 0.5s;
    padding: 12px;
    border-radius: 10px;
    animation: spin 0.5s linear;
    transform-style: preserve-3d;
    transform-origin: center;
}

.container_smile .radio-input:checked + .option-icon-good {
    color: black;
    background: rgba(172, 255, 47, 0.864);
    transition: color 0.5s, background 0.5s;
    padding: 12px;
    border-radius: 10px;
    animation: spin 0.5s linear;
    transform-style: preserve-3d;
    transform-origin: center;
}

.container_smile .radio-input:checked + .option-icon-very-good {
    color: black;
    background: rgb(0, 255, 0);
    transition: color 0.5s, background 0.5s;
    padding: 12px;
    border-radius: 10px;
    animation: spin 0.5s linear;
    transform-style: preserve-3d;
    transform-origin: center;
}

*/

/* Checked icon new*/

.container_smile .radio-input:checked + .option-icon-very-dissatisfied {
    color: black;
    background: red;
    transition: color 0.5s, background 0.5s;
    padding: 12px;
    border-radius: 10px;
    animation: spin 0.5s linear;
    transform-style: preserve-3d;
    transform-origin: center;
}

.radio-very-dissatisfied.checked {
    background: red;
    color: black;
}

.container_smile .radio-input:checked + .option-icon-dissatisfied {
    color: black;
    background: orange;
    transition: color 0.5s, background 0.5s;
    padding: 12px;
    border-radius: 10px;
    animation: spin 0.5s linear;
    transform-style: preserve-3d;
    transform-origin: center;
}

.radio-dissatisfied.checked {
    background: orange;
    color: black;
}

.container_smile .radio-input:checked + .option-icon-neutral {
    color: black;
    background: yellow;
    transition: color 0.5s, background 0.5s;
    padding: 12px;
    border-radius: 10px;
    animation: spin 0.5s linear;
    transform-style: preserve-3d;
    transform-origin: center;
}

.radio-neutral.checked {
    background: yellow;
    color: black;
}

.container_smile .radio-input:checked + .option-icon-satisfied {
    color: black;
    /* background: rgba(172, 255, 47, 0.864); */
    transition: color 0.5s, background 0.5s;
    padding: 12px;
    border-radius: 10px;
    animation: spin 0.5s linear;
    transform-style: preserve-3d;
    transform-origin: center;
}

.radio-satisfied.checked {
    background: rgba(172, 255, 47, 0.864);
    color: black;
}

.container_smile .radio-input:checked + .option-icon-very-satisfied {
    color: black;
    background: rgb(0, 255, 0);
    transition: color 0.5s, background 0.5s;
    padding: 12px;
    border-radius: 10px;
    animation: spin 0.5s linear;
    transform-style: preserve-3d;
    transform-origin: center;
}

.radio-very-satisfied.checked {
    background: rgb(0, 255, 0);
    color: black;
}

@keyframes spin {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}

/* Radio Button*/

.container_smile .radio-input {
    display: none;
}

/* text under icons */

.icons-bottom-text {
    display: flex;
    justify-content: space-between;
    width: 90%;
    align-items: center;
    background: transparent;
    text-align: center;
    margin: 0;
    padding: 0;
    color: white;
}

.icons-bottom-text em {
    margin: 0;
    text-align: center;
}


/* Text area*/

.survey-textarea {
    position: relative;
    padding: 10px 0 0 0;
    display: flex;
}

.survey-textarea .fl-label {
    position: absolute;
    top: 15px;
    left: 18px;
    transition: top 0.3s, left 0.3s, font-size 0.3s;
    font-size: 12px;
    pointer-events: none;
    color: grey;
}

.survey-textarea .fl-textarea {
    width: 80%;
    margin: auto;
    height: 130px;
    font-size: 12px;
    padding: 10px;
    border: 1px solid black;
    border-radius: 10px;
}

/* Terms and Conditions */
.terms{
    display: inline;
    align-items: center;
    padding-left: 80px;
}

.terms-button .terms label {
    display: inline;
    align-items: center;
}

.terms .checkbox-label a {
    color: rgba(255, 70, 70);
}


/* Submit button */
.custom-submit {
    display: flex;
    justify-content: flex-end;
    margin: 10px 20px ;
    padding-right: 40px;
}

.custom-survey-button {
    margin: 0;
    padding: 4px 15px;
    font-weight: bold;
    border-radius: 10px;
    border: 1px solid transparent;
    cursor: pointer;
    background: white; 
    color: black; 
}

/* Step two 

.checkbox-options {
    width: 80%;
    list-style-type: none;
}

.checkbox-options label {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.2);
    transition: background-color 0.3s; /* Add a transition for smooth color change 
}

.checkbox-options input[type="checkbox"] {
    display: none;
}

.checkbox-input:checked + .checkbox-label {
    background: rgb(29, 247, 0);
    color: black;
    border-radius: 10px;
}

.custom-checkmark {
    padding: 4px;
    font-size: 30px;
    text-align: center;
    align-items: center;
    vertical-align: middle;
}

*/

#service-selection {
    display: flex;
    flex-direction: row;
    width: 90%;
}

.add-button {
    padding: 0 6px;
    background: white;
    color: black;
    border-radius: 8px;
    margin-bottom: 8px;
}

/* Style for the container holding the rating options */
.rating-options {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping if needed */
    gap: 4px; /* Adjust spacing between options */
    align-items: center; /* Align items vertically */
}

/* Style for individual rating options */
.rating-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.rating-option input[type="radio"] {
    display: none; /* Hide the default radio button */
}

.rating-option i {
    margin-right: 5px; /* Space between icon and label */
}

/* Optional: Style for checked state, if needed */
.rating-option input[type="radio"]:checked + i {
    color: #f39c12; /* Change color of the icon when selected */
}

.rating-option input[type="radio"]:checked + .option-icon-very-satisfied {
    color: black;
    background: rgb(0, 255, 0);
    transition: color 0.5s, background 0.5s;
    padding: 12px;
    border-radius: 10px;
    animation: spin 0.5s linear;
    transform-style: preserve-3d;
    transform-origin: center;
}

.rating-option input[type="radio"]:checked + .option-icon-satisfied {
    color: black;
    background: rgba(172, 255, 47, 0.864);
    transition: color 0.5s, background 0.5s;
    padding: 12px;
    border-radius: 10px;
    animation: spin 0.5s linear;
    transform-style: preserve-3d;
    transform-origin: center;
}

.rating-option input[type="radio"]:checked + .option-icon-neutral {
    color: black;
    background: yellow;
    transition: color 0.5s, background 0.5s;
    padding: 12px;
    border-radius: 10px;
    animation: spin 0.5s linear;
    transform-style: preserve-3d;
    transform-origin: center;
}

.rating-option input[type="radio"]:checked + .option-icon-dissatisfied {
    color: black;
    background: orange;
    transition: color 0.5s, background 0.5s;
    padding: 12px;
    border-radius: 10px;
    animation: spin 0.5s linear;
    transform-style: preserve-3d;
    transform-origin: center;
}

.rating-option input[type="radio"]:checked + .option-icon-very-dissatisfied {
    color: black;
    background: red;
    transition: color 0.5s, background 0.5s;
    padding: 12px;
    border-radius: 10px;
    animation: spin 0.5s linear;
    transform-style: preserve-3d;
    transform-origin: center;
}

h4{
    background: white;
    color: rgb(255, 70, 70);
    border-radius: 4px;
    padding: 4px;
    margin-bottom: 10px; 
    text-transform: capitalize; 
    font-weight: bold; 
    font-size: 1.2em;
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px;
    border-radius: 4px;
}

.service-header h4 {
    margin: 0;
    padding: 0;
    background: transparent;
}

.service-header .remove-service {
    background: transparent;
    margin-left: 8px;
    margin-bottom: 1px;
    color: white;
    font-size: 1.5rem;
    position: relative;
}

/* Step 3 */
.radio-input:checked + .radio-label {
    color: black; 
}

.form-group small {
    align-self: flex-start;
    margin: 0 40px;
}

/* Add Radio Button Styles */
.radio-options {
    width: 70%;
    list-style-type: none;
}

.radio-options label {
    display: flex;
    align-items: center;
    /* padding: 10px; */
    background: rgba(255, 255, 255, 0.144);
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.radio-options input[type="radio"] {
    display: none;
}

.radio-input:checked + .radio-label {
    width: 100%;
    background: rgb(29, 247, 0);
    color: black;
    border-radius: 10px;
}


/* Step 4 */

.summary-section {
    margin: 4px 10px;
    width: 100%;
    text-align: left;
}

.summary-section span {
    color: cyan;
}

.summary-columns {
    display: flex;
    flex-wrap: wrap;
}

.left-column {
    flex: 1;
}

.right-column {
    flex: 1;
}

.summary-section p {
    margin: 0;
    padding: 4px;
}


/* Footer */
.survey-footer {
    color: rgba(255, 70, 70);
    text-align: center;
    padding: 0px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.survey-footer .container-fluid {
    width: 100%;
}

.survey-footer .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.left-footer {
    text-align: left;
}

.right-footer {
    text-align: right;
}

.survey-footer ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    margin: 10px auto;
}

.survey-footer a {
    color: white;
    text-decoration: none;
    position: relative;
}

.survey-footer a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom: 2px solid rgba(255, 70, 70);
    transform: scaleX(0);
    transform-origin: 50% 100%;
    transition: transform 0.3s ease;
}

.survey-footer a:hover::before {
    transform: scaleX(1);
}

.button-container {
    display: flex;
    justify-content: space-between; /* Adjust as needed */
    margin-top: 20px; /* Space between content and buttons */
    padding: 10px 0; /* Padding for aesthetics */
}

#service-feedback-section {
    min-height: 291px;
    overflow: visible;
    transition: min-height 0.3s ease;
}

.turnstile {
    display: block; 
    flex-flow: row; 
    padding: 20px; 
    margin-bottom: 45px;
}

.disabled-option {
    color: grey !important;
    cursor: not-allowed;
}

.step-5 .form-user-data {
    min-height: 455px;
}

/* Media Query */

@media only screen and (max-width: 600px) { 
    html, body {
        height: 100%;
        width: 100%;
        overflow: auto; 
    }
    
    .survey-navbar img {
        max-width: 80px;
    }

    .survey-icons {
        font-size: 10px;
    }
    
    /* Survey content */

    .survey-content {
        padding: 10px;
        margin: 10px;
        height: auto;
    }

    .survey-container {
        display: flex;
        margin: 4px auto;
        padding: 4px;
    }

    .survey-container .row {
        margin: auto;
        flex-direction: column;
    }

    /* Left side */

    .left-survey {
        padding: 10px;
    }

    .left-survey-container {
        padding: 0;
        margin-top: 20px;
    }

    .left-survey-container h3 {
        font-size: 40px;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        font-weight: bolder;
        margin: 10px auto;
        text-align: center;
        width: 100%;
        color: rgba(255, 70, 70)
    }

    .left-survey-container p {
        font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    .left-survey-container p em {
        font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .survey-image {
        display: none;
    }

    .left-survey-container p {
        text-align: center;
        line-height: 1.5;
    }

    /* Right side */

    .right-survey {
        padding: 0;
        margin: 0;
    }
    
    .right-survey-container {
        padding: 10px 20px 20px 20px;
        background: rgba(0, 0, 0, 0.514);
        width: 100%;
        min-height: max-content;
    }

    .right-survey-container .right-survey-step  {
        padding-top: 10px;
        padding: 6px;
        font-size: 15px;
    }
    
    .fl-input,
    .fl-select {
        margin: 0 20px;
    }

    .option-icon {
        font-size: 46px;
        margin: 0 10px;
    }

    .icons-bottom-text {
        font-size: 11px;
        width: 100%;
    }

    .survey-textarea .fl-textarea {
        width: 90%;
        height: 120px;
    }

    .survey-footer {
        position: relative;
    }   
    
    .summary-section h5 {
        font-size: 1rem;
    }

    .terms{
        padding-left: 0;
        display: block;
        text-align: center;
    }

    .step-2 .form-user-data {
        flex-direction: column;
    }

    .step-2 .rating-options {
        gap: 1px;
    }

    .step-2 .option-icon {
        margin: 0 8px;
    }

    .step-4 .radio-options {
        width: 80%;
    }

    .step-5 .radio-options {
        width: 80%;
    }

    .step-6 .radio-options {
        width: 80%;
    }
    
}

@media screen and (min-width: 768px) and (max-width: 1280px) {
    .right-survey-container {
        width: 90%;
        padding: 0;
        min-height: 450px;
        margin-top: -20px;
    }

    .right-survey-step {
        margin-top: 20px;
        padding: 6px;
    }

    h3 {
        font-size: 20px;
    }

    .radio-options label {
        margin-left: 16px;
        margin-right: 16px;
    }

    .radio-options {
        margin-bottom: 0;
    }

    .fl-label {
        font-size: 16px;
    }

    .fl-input,
    .fl-select {
        width: 100%;
        margin: 0 20px;
        padding: 4px;
        padding-left: 12px;
        font-size: 14px;
    }
    
    .survey-question {
        padding: 0 10px 0 10px;
    }

    .question5 p {
        margin: 0;
        padding: 0;
    }

    .option-icon {
        margin: 0;
        font-size: 40px;
        padding: 8px;
    }

    .container_smile .radio-input:checked + .option-icon-very-dissatisfied {
        padding: 8px;
    }

    .container_smile .radio-input:checked + .option-icon-dissatisfied {
        padding: 8px;
    }

    .container_smile .radio-input:checked + .option-icon-neutral {
        padding: 8px;
    }

    .container_smile .radio-input:checked + .option-icon-satisfied {
        padding: 8px;
    }

    .container_smile .radio-input:checked + .option-icon-very-satisfied {
        padding: 8px;
    }

    .custom-survey-button {
        margin: 4px 20px;
        padding: 2px 12px;
    }

    .rating-options {
        gap: 10px;
    }

    .button-container {
        /* margin-top: -20px; */
    }

    .step-1 .form-user-data {
        height: auto;
        /*min-height: 450px;*/
        min-height: 340px;
    }

    .step-2 .form-user-data {
        /* height: 47.85vh; */
        height: auto;
        min-height: 40px;
        flex-direction: column;
    }

    .step-2 .add-button {
        margin-left: 8px;
    }

    #service-selection {
        width: 80%;
    }

    #service-feedback-section {
        min-height: 214px;
    }

    .step-3 .form-group {
        /* margin-bottom: 10px; */
        margin: 0 12px;
    }

    .step-3 .survey-textarea {
        padding: 0;
    }

    .step-3 .survey-textarea .fl-textarea {
        height: 120px;
    }

    .step-3 .form-user-data {
        /* height: 47.85vh; */
        height: auto;
        /* min-height: 450px; */
        min-height: 350px;
    }

    .step-4 .form-user-data {
        margin: 0 12px;
    }

    .step-4 .form-user-data {
        height: auto;
        /* min-height: 450px; */
        min-height: 350px;
    }

    .survey-textarea .fl-textarea {
        height: 100px;
    }

    .step-5 .form-user-data {
        margin: 0 12px;
    }

    .step-5 .form-user-data {
        height: auto;
        /* min-height: 450px; */
        min-height: 350px;
    }

    .step-6 .form-user-data {
        margin: 0 12px;
    }

    .step-6 .form-user-data {
        height: auto;
        /* min-height: 450px; */
        /* min-height: 340px; */
    }

    .step-6 .button-container {
        margin-top: 0;
    }

    .form-step-7 {
        min-height: 420px;
    }

    .step-7 .custom-survey-button {
        margin-top: 70px;
    }

    .turnstile {
        margin-bottom: -8px;
    }

    .summary-section h5 {
        font-size: 1rem;
    }

    .summary-section p {
        padding: 2px;
    }

    .summary-section span {
        font-size: smaller;
    }
}

@media screen and (min-width: 1281px) and (max-width: 1700px){
    .fl-input,
    .fl-select {
        margin: 0 20px;
    }

    .right-survey-container {
        width: 80%;
    }

    .step-1 .icons-bottom-text {
        width: 100%;
    }

    .step-2 .form-user-data {
        /* height: 68.5vh; */
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .rating-options {
        gap: 10px;
    }

    .option-icon {
        margin: 0 8px;
    }

    .step-3 .form-user-data {
        /* height: 68.5vh; */
        height: auto;
    }

    .step-3 .survey-textarea {
        padding: 0;
    }

    .step-4 .form-user-data {
        height: auto;
        min-height: 455px;
    }

    .step-5 .form-group {
        margin-bottom: 0;
    }

    .step-5 .form-user-data {
        height: auto;
        min-height: 455px;
    }

    .step-6 .form-user-data {
        height: auto;
        /*min-height: 455px;*/
    }

    .step-7 .custom-survey-button {
        margin-top: 160px;
    }

}


@media screen and (min-width: 1701px) and (max-width: 1919px){
    .fl-input,
    .fl-select {
        margin: 0 20px;
    }

    .right-survey-container {
        width: 60%;
    }

    .step-1 .icons-bottom-text {
        width: 100%;
    }

    .step-2 .form-user-data {
        /* height: 51.4vh; */
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .option-icon {
        margin: 0 8px;
    }

    .step-3 .form-user-data {
        /* height: 51.4vh; */
        height: auto;
    }

    .step-3 .survey-textarea {
        padding: 0;
    }

    .step-4 .form-user-data {
        height: auto;
    }

    .step-5 .form-user-data {
        height: auto;
        min-height: 485px;
    }

    .step-6 .form-user-data {
        height: auto;
        /*min-height: 335px;*/
        /*min-height: 458px;*/
    }

    .step-7 .custom-survey-button {
        margin-top: 160px;
    }
}

@media screen and (min-width: 1920px) and (max-width: 2560px){
    .fl-input,
    .fl-select {
        margin: 0 20px;
    }

    .right-survey-container {
        width: 60%;
    }

    .step-2 .form-user-data {
        /* height: 48vh; */
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .option-icon {
        margin: 0 8px;
    }

    .step-3 .form-user-data {
        height: 48vh;
    }

    .step-3 .survey-textarea {
        padding: 0;
    }

    .step-4 .form-user-data {
        height: auto;
    }

    .step-7 .custom-survey-button {
        margin-top: 160px;
    }
}