main.target-quiz-page {
    padding: 3vw;
    width: 100%;
    position: relative;
    gap: 1vw;
    justify-content: space-between!important;
    align-items: start!important;
}


section.target-quiz-page-main-content {
    padding: 2vw;
    width: 69%;
    min-height: 36vw;
    position: relative;
    gap: 1.5vw;
    justify-content: start !important;
    transition: all 0.45s ease-in-out;
    border-radius: 0.5vw;
    box-shadow: 0 0 0.75vw rgba(0, 0, 0, 0.1);
}

body.dark section.target-quiz-page-main-content  {
    box-shadow: 0 0 0.75vw rgba(0, 0, 0, 0.5);
}

.target-quiz-page-top-div {
    width: 100%;
    justify-content: space-between!important;
    position: relative;
}

.target-quiz-page-top-div  > figure {
    width: 15%;
    position: relative;
}

.target-quiz-page-top-div  > figure img {
    width: 100%;
    position: relative;
    z-index: 1;
}

.target-quiz-page-top-div  > figure h6 {
    position: absolute;
    gap: 0.1vw;
    z-index: 2;
    font-size: 1.1vw;
    font-family: Vazir, sans-serif;
    font-weight: 900;
    transform: translateX(0.4vw);
    color: var(--dark-font);
}

.target-quiz-page-top-div  > figure h6 span {
    font-size: 1.25vw;
}

.target-quiz-page-top-div .question-feedbacks {
    width: 50%;
    position: relative;
    justify-content: end!important;
}

.target-quiz-page-top-div .question-feedbacks > div {
    padding: 0.7vw 0.9vw;
    width: 65%;
    position: absolute;
    justify-content: start!important;
    gap: 0.6vw;
    font-family: IRANSans, sans-serif;
    font-size: 0.95vw;
    font-weight: 500;
    border-radius: 0.6vw;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease-in-out;
}

.target-quiz-page-top-div .question-feedbacks > div i {
    font-size: 1.5vw;
}

.target-quiz-page-top-div .question-feedbacks .correct-answer-notification {
    background-color: rgba(10, 189, 114, 0.5);
}

.target-quiz-page-top-div .question-feedbacks .wrong-answer-notification {
    background-color: rgba(189, 79, 10, 0.5);
}

.target-quiz-page-top-div .question-feedbacks > div.active {
    opacity: 1;
    visibility: visible;
}

section.target-quiz-page-main-content form.quiz-form {
    padding: 1vw;
    width: 100%;
    min-height: 10vw;
    justify-content: start!important;
    align-items: start!important;
    gap: 0.5vw;
    position: relative;
    /*border: 1px solid red;*/
}

section.target-quiz-page-main-content form.quiz-form h3 {
    margin-bottom: 1.5vw;
    font-size: 1vw;
}

section.target-quiz-page-main-content form.quiz-form input[type='radio'] {
    display: none!important;
}

section.target-quiz-page-main-content form.quiz-form .answer-container {
    width: 100%;
    position: relative;
    gap: 0.5vw;
}

section.target-quiz-page-main-content form.quiz-form label {
    padding: 1vw;
    width: 100%;
    gap: 0.75vw;
    font-size: 0.95vw;
    font-weight: 500;
    box-shadow: 0 0 0.5vw rgba(0, 0, 0, 0.15);
    border-radius: 0.6vw;
    justify-content: start!important;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

body.dark section.target-quiz-page-main-content form.quiz-form label {
    box-shadow:  0 0 0.5vw rgba(0, 0, 0, 0.5);
}

section.target-quiz-page-main-content form.quiz-form label:hover {
    background-color: rgba(13, 170, 255, 0.15);
}

section.target-quiz-page-main-content form.quiz-form label * {
    pointer-events: none!important;
}

section.target-quiz-page-main-content form.quiz-form label span {
    padding: 0.5vw;
    width: 1vw;
    height: 1vw;
    border-radius: 50%;
    border: 0.1vw solid black;
    position: relative;
    transition: all 0.2s ease-in-out;
}

body.dark section.target-quiz-page-main-content form.quiz-form label span {
    border-color: var(--light-bg);
}

section.target-quiz-page-main-content form.quiz-form label.disabled {
    opacity: 0.5;
    cursor: auto;
    pointer-events: none!important;
}

#answer-radio-btn1:checked ~ .answer-container label:nth-child(1) span {
    background-color: var(--blue2);
    border-color: var(--blue2);
}

#answer-radio-btn2:checked ~ .answer-container label:nth-child(2) span {
    background-color: var(--blue2);
    border-color: var(--blue2);
}

#answer-radio-btn3:checked ~ .answer-container label:nth-child(3) span {
    background-color: var(--blue2);
    border-color: var(--blue2);
}

#answer-radio-btn4:checked ~ .answer-container label:nth-child(4) span {
    background-color: var(--blue2);
    border-color: var(--blue2);
}

section.target-quiz-page-main-content form.quiz-form label.correct-selected {
    background-color: rgba(10, 189, 114, 0.15);
    box-shadow: 0 0 0.25vw green!important;
    opacity: 1!important;
}

section.target-quiz-page-main-content form.quiz-form label.wrong-selected {
    background-color: rgba(255, 0, 21, 0.15);
    box-shadow: 0 0 0.25vw red!important;
    color: gray;
    pointer-events: none;
    cursor: not-allowed;
}

section.target-quiz-page-main-content form.quiz-form button[type='submit'] {
    margin-top: 1.5vw;
    padding: 0.75vw;
    background-color: var(--blue2);
    width: 10vw;
    color: var(--light-bg);
    font-weight: 500;
    gap: 0.5vw;
    transition: all 0.2s ease-in-out;
}

section.target-quiz-page-main-content form.quiz-form button[type='submit']:hover {
    filter: brightness(1.3);
    color: var(--dark-font);
}

section.target-quiz-page-main-content form.quiz-form button[type='submit']:disabled {
    cursor: not-allowed;
    filter: brightness(1) !important;
    color: var(--light-bg);
}

section.target-quiz-page-main-content .guide-notification {
    width: 100%;
    max-height: 2.75vw;
    position: relative;
    gap: 1vw;
    justify-content: start!important;
    align-self: start!important;
    margin-bottom: 2vw;
    transition: all 0.25s ease-in-out;
    overflow: hidden;
    display: none!important;
}

section.target-quiz-page-main-content .guide-notification.show {
    display: flex!important;
    animation: animate-revealer 0.3s ease-in-out forwards;
}

@keyframes animate-revealer {
    0%{opacity: 0; visibility: hidden}
    100%{opacity: 1; visibility: visible}
}

section.target-quiz-page-main-content .guide-notification.expanded {
    max-height: 200vw;
}

.guide-notification-divider {
    width: 100%;
    gap: 0.4vw;
    position: relative;
    justify-content: start!important;
}

.guide-notification-divider h4 {
    gap: 0.35vw;
    font-size: 0.95vw;
    font-family: Vazir, sans-serif;
    font-weight: normal;
    justify-content: start!important;
    color:mediumvioletred;
}

.guide-notification-divider .btn {
    padding: 0.3vw 1vw;
    color: rgba(199, 21, 133, 0.7);
    border: 0.1vw solid rgba(199, 21, 133, 0.1);
    background: transparent!important;
    gap: 0.3vw;
    font-family: Vazir, sans-serif;
    font-weight: normal;
    transition: all 0.2s ease-in-out;
}

.guide-notification-divider .btn:hover {
    color: rgba(199, 21, 133, 1);
    border: 0.1vw solid rgba(199, 21, 133, 1);
}

.guide-notification-divider .btn i {
    transition: all 0.25s ease-in-out;
}

.guide-notification.expanded .guide-notification-divider .btn i:last-child {
    transform: rotate(-90deg);
}

.guide-notification video {
    margin-top: 1vw;
    width: 80%;
}


aside.quiz-page-sidebar {
    padding: 2vw 1vw;
    width: 30%;
    min-height: 16vw;
    position: relative;
    gap: 1.5vw;
    justify-content: start !important;
    transition: all 0.45s ease-in-out;
    border-radius: 0.5vw;
    box-shadow: 0 0 0.75vw rgba(0, 0, 0, 0.1);
}

body.dark aside.quiz-page-sidebar  {
    box-shadow: 0 0 0.75vw rgba(0, 0, 0, 0.5);
}

aside.quiz-page-sidebar figure {
    width: 100%;
    position: relative;
}

aside.quiz-page-sidebar figure::before {
    content: "";
    width: 100%;
    height: 0.1vw;
    background: linear-gradient(to left, transparent, var(--blue2), transparent);
    position: absolute;
    bottom: -2vw;
    left: 0;
}

aside.quiz-page-sidebar figure img {
    width: 50%;
}

aside.quiz-page-sidebar ul {
    margin-top: 2vw;
    width: 88%;
    position: relative;
    justify-content: start!important;
    gap: 0.5vw;
}

aside.quiz-page-sidebar ul li {
    width: 100%;
    gap: 0.3vw;
}

aside.quiz-page-sidebar ul li a {
    padding: 0.5vw;
    width: 100%;
    gap: 0.4vw;
    border-radius: 0.9vw;
    transition: all 0.2s ease-in-out;
    font-size: 0.8vw;
    font-weight: normal;
    font-family: Vazir, sans-serif;
}

aside.quiz-page-sidebar ul li a:hover {
    background-color: rgba(13, 170, 255, 0.2);
}

aside.quiz-page-sidebar ul li a.active {
    background-color: rgba(13, 170, 255, 0.6);
}

aside.quiz-page-sidebar ul li a i {
    font-size: 0.95vw;
}

@media screen and (max-width: 450px){
    main.target-quiz-page {
        padding: 4vw;
        gap: 3vw;
        flex-direction: column!important;
        justify-content: start!important;
        align-items: center!important;
    }


    section.target-quiz-page-main-content {
        padding: 5vw;
        width: 100%;
        min-height: 100vw;
        gap: 3vw;
        border-radius: 3vw;
        box-shadow: 0 0 2.75vw rgba(0, 0, 0, 0.1);
        order: 1;
        justify-content: start!important;
    }

    body.dark section.target-quiz-page-main-content  {
        box-shadow: 0 0 2.75vw rgba(0, 0, 0, 0.5);
    }

    .target-quiz-page-top-div > figure {
        width: 30%;
    }

    .target-quiz-page-top-div h3 {
        font-size: 4.25vw;
    }


    .target-quiz-page-top-div h4 {
        font-size: 3.5vw;
        gap: 3vw;
    }

    .target-quiz-page-top-div h4 span {
        width: 40vw;
    }

    .target-quiz-page-top-div a.btn {
        padding: 2vw;
        margin-top: 5vw;
        width: 50vw;
        font-size: 3.5vw;
        border-radius: 2.5vw;
    }

    .target-quiz-page-top-div  > figure h6 {
        gap: 0.35vw;
        font-size: 3.1vw;
        transform: translateX(1vw);
    }

    .target-quiz-page-top-div  > figure h6 span {
        font-size: 3.5vw;
    }

    .target-quiz-page-top-div .question-feedbacks {
        width: 50%;
    }

    .target-quiz-page-top-div .question-feedbacks > div {
        padding: 1.5vw 2.9vw;
        width: 100%;
        gap: 2.6vw;
        font-size: 2.75vw;
        border-radius: 2.6vw;
        font-weight: 300;
    }

    .target-quiz-page-top-div .question-feedbacks > div i {
        font-size: 5vw;
    }

    section.target-quiz-page-main-content form.quiz-form {
        padding: 2vw;
        width: 100%;
        min-height: 20vw;
        gap: 3vw;
    }

    section.target-quiz-page-main-content form.quiz-form h3 {
        margin-bottom: 3.5vw;
        font-size: 3.25vw;
    }

    section.target-quiz-page-main-content form.quiz-form .answer-container {
        gap: 1.5vw;
    }

    section.target-quiz-page-main-content form.quiz-form label {
        padding: 3vw;
        gap: 2.75vw;
        font-size: 2.95vw;
        box-shadow: 0 0 2.5vw rgba(0, 0, 0, 0.15);
        border-radius: 2.6vw;
    }

    body.dark section.target-quiz-page-main-content form.quiz-form label {
        box-shadow:  0 0 2.5vw rgba(0, 0, 0, 0.5);
    }

    section.target-quiz-page-main-content form.quiz-form label span {
        padding: 1vw;
        width: 3vw;
        height: 3vw;
        border: 0.2vw solid black;
    }

    section.target-quiz-page-main-content form.quiz-form label.correct-selected {
        box-shadow: 0 0 1.25vw green!important;
    }

    section.target-quiz-page-main-content form.quiz-form label.wrong-selected {
        box-shadow: 0 0 1.25vw red!important;
    }

    section.target-quiz-page-main-content form.quiz-form button[type='submit'] {
        margin-top: 3.5vw;
        padding: 2.75vw;
        width: 30vw;
        gap: 1.5vw;
        font-size: 3.4vw;
        border-radius: 3vw;
    }

    section.target-quiz-page-main-content .guide-notification {
        max-height: 15vw;
        gap: 3vw;
        margin-bottom: 5vw;
    }

    section.target-quiz-page-main-content .guide-notification.expanded {
        max-height: 400vw;
    }

    .guide-notification-divider {
        gap: 5vw;
        flex-direction: column;
    }

    .guide-notification-divider h4 {
        gap: 1vw;
        font-size: 3.1vw;
    }

    .guide-notification-divider .btn {
       transform: scale(3.25);
    }

    .guide-notification-divider .btn i {
        transition: all 0.25s ease-in-out;
    }

    .guide-notification.expanded .guide-notification-divider .btn i:last-child {
        transform: rotate(-90deg);
    }

    .guide-notification video {
        margin-top: 4vw;
        width: 100%;
    }



    aside.quiz-page-sidebar {
        padding: 5vw 3vw;
        width: 100%;
        min-height: 50vw;
        gap: 3vw;
        border-radius: 3vw;
        box-shadow: 0 0 2.75vw rgba(0, 0, 0, 0.1);
        order: 2;
    }

    body.dark aside.quiz-page-sidebar  {
        box-shadow: 0 0 2.75vw rgba(0, 0, 0, 0.5);
    }

    aside.quiz-page-sidebar figure {
        width: 100%;
        position: relative;
    }

    aside.quiz-page-sidebar figure::before {
        height: 0.5vw;
        bottom: -8vw;
    }

    aside.quiz-page-sidebar figure img {
        width: 50%;
    }

    aside.quiz-page-sidebar ul {
        width: 95%;
        margin-top: 10vw;
        gap: 1.5vw;
    }

    aside.quiz-page-sidebar ul li {
        gap: 1vw;
    }

    aside.quiz-page-sidebar ul li a {
        padding: 2.5vw;
        gap: 2vw;
        border-radius: 2.9vw;
        font-size: 3.25vw;
    }


    aside.quiz-page-sidebar ul li a i {
        font-size: 4vw;
    }


}