body {
    font-family: Arial, sans-serif;
	background:#f1f1f1;
}

.aisfy-quiz-step {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
	flex-direction:column;
	gap:20px;
}

.aisfy-quiz-step .step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #3498db;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.step-bar {
    flex-grow: 1;
    height: 5px;
    background-color: #ddd;
}

.aisfy-quiz-form {
    margin-top: 20px;
}

.aisfy-quiz-form .question {
    margin-bottom: 15px;
}

button {
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #2980b9;
}

button[disabled] {
    background-color: #95a5a6;
}

.aisfy-quiz-container {
    max-width: 990px;
    margin: 50px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.question {
    display: flex;
    flex-direction: column;
    gap: 10px;
	padding:10px 0;
	border-bottom:1px solid #f1f1f1;
}
label.aisfy-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.steps-wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 30px;
    margin-top: 10px;
    position: relative;
}
.step-active{
    color: #00cc97;
    border-color: #00cc97;
}
.aisfy-step {
    border: 2px dashed #ddd;
    line-height: 40px;
    width: 43px;
    text-align: center;
    border-radius: 30px;
    background: #fff;
	z-index:9;
	font-weight:700;
}
.aisfy-border {
    position: absolute;
    width: calc(100% - 60px);
    border: 1px dashed #ddd;
    left: 30px;
    top: 20px;
}

.quiz-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.quiz-buttons button{
	min-width: 150px;
}