.quiz-form {
    width: 100%;
}

.question-details,
.quiz-step {
    margin-bottom: 20px
}

.quiz-answers {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex-direction: column;
    gap: 16px;
  }

.quiz-question-title {
    margin-bottom: 12px;
}

.loading-component {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999; 
}

.quiz-answers .open-text {
    width: 100%;
    height: 100px;
} 

.quiz-answers:has(label.type_nps) {
    display: flex;
    flex-direction: row;
    gap: 0px;
}

.submit-btn {
    margin-top: 40px;
}

.loading-component.loading-screen {
    display: block;
}

.loading-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: inherit;
    background-color: rgba(0, 0, 0, 0.7); 
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Keyframes for spinner animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
  

.nps-answer-scale {
    width: 100%;
    margin-bottom: 20px;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
}

.nps-scale-label {
    display: flex;
    justify-content: space-between;
    width: 90%;
}

@media screen and (min-width: 836px) {  
    .nps-scale-label {
        width: 100%;
        justify-content: flex-start;
    }

    .nps-scale-high-label {
        position: relative;
        left: 350px;
    }
}

