@import url("https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400&display=swap");
*{
    font-family: "Vazirmatn",Arial, Helvetica, sans-serif;
    font-weight: 700;
    padding: 0;
    margin: 0;
    color: #555;
    box-sizing: border-box;
}
.flex{
    display: -webkit-flex;
    display: flex;
}
.flexCol{
    flex-direction: column;
}
.flexCenter{
    justify-content: center;
    align-items: center;
}
.alignCenter{
    align-items: center;
}
.gap10{
    gap: 10px;
}
.rel{
    position: relative;
}
.rtl{
    direction: rtl;
}
.content{
    width: 94%;
    margin: 10px auto 30px;
    max-width: 700px;
}

.formDiv,.resultDiv{
    padding: 10px;
    background-color: #ffffff;
    border-radius: 5px;
}
.formDiv.active{
    display: -webkit-flex;
    display: flex;
}
.questionDiv{
    margin: 0 10px 10px;
    padding: 10px 0 20px;
    border-bottom: 1px solid #1111111f;
}
.backBtn{
    position: absolute;
    left: 0;
    top: 5px;
    height: 30px;
    width: 30px;
    outline: none;
    border: none;
    font-size: 1.4em;
    color: #333;
    cursor: pointer;
    border-radius: 5px;
    background-color: transparent;
}
.optionIcon{
    width: 35px;
    height: 35px;
    background-color: rgba(30, 143, 255, 0.164);
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #555;
}
.question{
    direction: rtl;
    padding-left: 30px;
}
.option{
    direction: rtl;
    padding: 5px;
    outline: none;
    border: none;
    text-align: right;
    border-radius: 7px;
    cursor: pointer;
    transition: border .4s;
    margin: 0 10px;
    background-color: transparent;
}
.optionText1,.optionText2 ,.optionText3 ,.optionText4{
    padding: 15px 40px 15px 20px;
    background-color: #00000005;
    width: 100%;
    border-radius: 5px;
    margin: 0 10px;
}
.option:hover::before{
    opacity: 1;
}
.resultTitle{
    gap: 10px;
    direction: rtl;
    padding:  10px 10px 20px;
    border-bottom: 1px solid #00000028;
    margin-bottom: 5px;
}
.resultTitle span{
    color: rgb(47, 127, 207);
}
/* titleImage */
.titleImage{
    border-radius: 7px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    margin-bottom: 20px;
    max-height: 300px;
}
/* nameDiv */
.nameDiv{
    padding: 10px;
    background-color: #ffffff;
    border-radius: 5px;
    direction: rtl;
}
label{
    font-style: .95em;
}
input{
    height: 40px;
    border-radius: 5px;
    background-color: transparent;
    border: none;
    outline: none;
    background-color: #11111109;
    padding: 0 10px;
    color: #555;
}
.submit{
    height: 35px;
    background-color: dodgerblue;
    border-radius: 7px;
    text-align: center;
    margin-top: 20px;
    outline: none;
    border: none;
    color: #fff;
    width: fit-content;
    padding: 0 40px;
    cursor: pointer;
    margin-right: auto;
}
.nameMessage{
    color: #e08272;
    margin-top: 10px;
    font-size: .9em;
}
/* phoneDiv */
.phoneDiv{
    display: none;
    padding: 10px;
    border-radius: 7px;
    direction: rtl;
}
.phoneMessage{
    color: #e08272;
    margin-top: 10px;
    font-size: .9em;
}
/* questionSection */
.questionSection{
    display: none;
}
.progressDiv{
    width: calc( 100% - 40px);
    background-color: rgb(224, 224, 224);
    height: 3px;
    margin: 40px 20px 0;
    border-radius: 7px;
}
.progress{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background-color: dodgerblue;
    transition: width .4s;
}
.progressText{
    margin: 10px auto 0;
}
.progressText span{
    color: #ccc;
    font-size: .9;
}
.passedNumber{
    font-size: 1.4em !important;
    color: #555 !important;
}
/* sendDataForm */
.sendDataForm{
    display: none;
}
.resultList{
    direction: rtl;
    text-align: justify;
    color:#777;
    padding: 10px;
    gap: 15px;
    background-image: url("bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: relative;
}
.resultList li{
    list-style-type: none;
    font-size: .9em;
    color: #777;
    padding-right: 15px;
    position: relative;
}
.resultList li::before{
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: rgba(30, 143, 255, 0.753);
    position: absolute;
    top: 10px;
    right: 0;
    content: "";
}
@media screen and (min-width:769px) {
    .content{
        min-width: 500px;
    }
}