.quiz-scale {
    background-color: #e40589;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style-type: none !important;
    color: #ffffff;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 20px 30px;
    margin: 0 !important;
}
.quiz-scale li {
    text-align: center;
    font-size: 13px;
    line-height: 15px;
}

.question {
    padding: 50px 0;
    border-bottom: 2px solid #d7d3d6;
}
.question p {
    text-align: center;
    font-weight: 700;
}
.question ul {
    display: flex;
    justify-content: center; 
    align-items: flex-start;
    margin: 40px auto 0;         
    list-style-type: none;
    max-width: 540px;      
    gap: 20px;              
    padding: 0;
    box-sizing: border-box;
}
.question ul li {
    text-align: center;
}
.question ul li label span.desc {
    display: block;
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 10px;
}
.question ul li label span.radio {
    display: inline-block;
    width: 60px; 
    height: 60px;
    border: 4px solid #F25CBA;
    border-radius: 50%;
    vertical-align: middle;
}
.question ul li:first-child label span.radio {
    border: 4px solid #FFB3EB;
}
.question ul li:last-child label span.radio {
    border: 4px solid #e40589;
}
.question ul li label input[type="radio"]:checked ~ span.radio .inner {
    background-color: #e40589;
    display: inline-block;
    width: 45px; 
    height: 45px;
    border-radius: 50%;
    vertical-align: middle;
    margin: 8px;
}
.question ul li label input[type="radio"]:focus-visible ~ span.radio {
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
}

.question ul li label:hover span.radio {
    border-color: #ab1267;
}
.question ul li label input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

#processing {
    display: none;
}

.spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #e40589; 
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: 10px auto;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media screen and (min-width: 680px) {
    .quiz-scale li {
        font-size: 18px;
        line-height: 20px;
    }
    
    .question ul li label span.radio {
        width: 82px; 
        height: 82px;
    }
    .question ul li label input[type="radio"]:checked ~ span.radio .inner {
        width: 60px; 
        height: 60px;
        margin: 11px;
    }
}