:root {
    --shadow-1: 0px 1px 3px 1px rgba(0, 0, 0, 0.15), 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
    --shadow-2: 0px 2px 6px 2px rgba(0, 0, 0, 0.15), 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
    --shadow-3: 0px 1px 3px 0px rgba(0, 0, 0, 0.3), 0px 4px 8px 3px rgba(0, 0, 0, 0.15);
    --shadow-4: 0px 2px 3px 0px rgba(0, 0, 0, 0.3), 0px 6px 10px 4px rgba(0, 0, 0, 0.15);
    --shadow-5: 0px 4px 4px 0px rgba(0, 0, 0, 0.3), 0px 8px 12px 6px rgba(0, 0, 0, 0.15);
    --black-10: #121212;
    --black-30: #251a00;
    --white: #ffffff;
    --primary: #3751ff;
    --primary-10: #000c61;
    --primary-90: #f4f2ff;
    --success: #1e9970;
    --success-90: #e9f5f1;
    --tertiary: #fec400;
    --error: #d62733;
    --error-90: #f2e1e2;
    --warning: #f79009;
    --light-grey: #eef1fc;
    --grey-10: #181c22;
    --grey-20: #191c1d;
    --grey-30: #444748;
    --grey-40: #5b5e66;
    --grey-60: #747878;
    --grey-70: #a9acac;
    --grey-90: #e1e3e3;
    --grey-96: #f1f3fd;
    --disabled: #d8d8d8;
    --hamdars-primary: #758beb;
    --light-surface-1: #f3f5ff;
    --light-surface-2: #ebeeff;
    --light-surface-3: #e5e9ff;
    --light-surface-4: #e3e7ff;
    --light-surface-5: #e0e4ff;
    --radius-8: 8px;
    --radius-14: 14px;
    --radius-16: 16px;
    --radius-24: 24px;
}

main.question_answer_page {
    min-height: 500px;
    direction: rtl;
}

.question_answer_page .page-layout {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
}

.question_answer_page .page-layout__aside {
    flex-basis: 335px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.page-layout__aside.page-layout__aside--mobile-clone {
    display: none;
}

.question_answer_page .page-layout__content {
    flex-grow: 1;
    width: calc(100% - 351px);
}

.question_answer_page .search-card {
    background-color: var(--white);
    border-radius: var(--radius-14);
    padding: 1rem;
    margin-bottom: 1rem;
}

.question_answer_page .search-card__top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}

.question_answer_page .search-card__buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.question_answer_page .search-card__ask-btn,
.question_answer_page .search-card__ask-link,
.question_answer_page .search-card__search-btn,
.question_answer_page .search-card__filter-btn {
    cursor: pointer;
    border-radius: var(--radius-14);
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.question_answer_page .search-card__ask-btn,
.question_answer_page .search-card__ask-link {
    background-color: white;
    border: 1px solid var(--grey-70);
    color: var(--grey-40);
}

.question_answer_page .search-card__search-btn {
    background-color: var(--primary);
    color: white;
}

.question_answer_page .search-card__filter-btn {
    background-color: var(--light-surface-1);
    border: 1px solid var(--grey-70);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-card__ask-fixed {
    display: none;
}

.question_answer_page .search-card__searchbox {
    flex-grow: 1;
    position: relative;
}

    .question_answer_page .search-card__searchbox input {
        width: 100%;
        padding: 0.25rem 1rem 0.25rem 2.5rem;
        border-radius: var(--radius-24);
        border: 1px solid var(--grey-70);
    }

    .question_answer_page .search-card__searchbox::after {
        content: "";
        width: 28px;
        height: 24px;
        background-image: url("../img/Magnifier_Icon.svg");
        background-repeat: no-repeat;
        background-position: center;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 6px;
        left: 8px;
    }

.question_answer_page .search-card__filter {
    flex: 1;
}

.question_answer_page .search-card__filters {
    display: none;
}

.search-card__filters .form-select {
    border-radius: var(--radius-24) !important;
    border: 1px solid var(--grey-70) !important;
}

.question-detail-section .question-detail-card {
    background: var(--white);
    border-radius: var(--radius-14);
    padding: 24px;
    display: flex;
    flex-direction: column;
    min-height: 394px;
    margin-bottom: 16px;
}

.question-detail-card__header,
.question-detail-card__footer,
.answer-or-ask-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.question-detail-card__header,
.answer-or-ask-card__header {
    border-bottom: 1px solid var(--grey-90);
    padding-bottom: 16px;
}

.question-detail-card__header {
    margin-bottom: 16px;
}

.answer-or-ask-card__footer {
    border-top: 1px solid var(--grey-90);
    padding-top: 16px;
}

.question-detail-card__body {
    flex-grow: 1;
    padding-top: 0;
    padding-bottom: 16px;
}

.guest-question-card .question-detail-card__body {
    padding-top: 16px;
}

.question-detail-card__body .question-detail-card__title {
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
    color: var(--grey-20);
    margin-bottom: 16px;
}

.question-detail-card__body .question-detail-card__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--grey-20);
    margin-bottom: 16px;
}

.question-detail-card__info,
.question-detail-card__reaction {
    display: flex;
    align-items: center;
    gap: 8px;
}

.question-detail-card__tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.question-detail-card__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    line-height: 24px;
    color: #3d5db7;
    border: 1px solid #3d5db7;
    border-radius: var(--radius-14);
    padding: 4px 12px;
    text-decoration: none;
}

.question-detail-card__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.question-detail-card__text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #333;
}

.question-detail-card__images {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid var(--grey-90);
    border-bottom: 1px solid var(--grey-90);
    padding: 16px 0;
}

.question-detail-card__image-link {
    position: relative;
    display: inline-block;
    width: 72px;
    height: 72px;
}

.question-detail-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--grey-70, #a9acac);
    cursor: pointer;
}

.question-detail-card__image-link::after {
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    right: -2px;
    top: -2px;
    background-color: var(--primary-90, #f4f2ff);
    background-image: url("../img/download_primary_10.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    box-shadow: var(--shadow-1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    border-radius: 24px;
}

.question-detail-card__files {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    border-bottom: 1px solid var(--grey-90);
    padding: 16px 0;
}

.question-detail-card__file {
    background-color: var(--white);
    max-width: calc(50% - 12px);
    flex: 1 1 calc(50% - 12px);
    border-radius: 16px;
    border: 1px solid var(--grey-70, #a9acac);
}

.question-detail-card__file-download {
    position: relative;
    display: flex;
    align-items: center;
    height: 40px;
    width: 100%;
    cursor: pointer;
}

    .question-detail-card__file-download::before {
        content: "";
        width: 40px;
        height: 40px;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        background-image: url("../img/description_file.svg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-left: 1px solid var(--grey-70, #a9acac);
    }

.question-detail-card__file-name {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    color: var(--black-10);
    padding-left: 40px;
    padding-right: 48px;
}

.question-detail-card__file-download::after {
    content: "";
    width: 40px;
    height: 40px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-image: url("../img/download_primary-60.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.question-detail-card__footer {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #555;
}

.question-detail-card__like-btn {
    width: 24px;
    height: 24px;
    background-image: url("../img/favorite_outline_gray.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.question-detail-card__like-btn--active {
    background-image: url("../img/favorite_fill_red.svg");
}

.question-detail-card__like-count {
    font-size: 12px;
}

.question-detail-card__created-at {
    margin-right: auto;
    color: #999;
}

.question-detail-card__author {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.question-detail-card__footer-actions .question__answer-item-header-report {
    display: none;
}

.answer-or-ask-card {
    border-radius: 14px;
    border: 1px solid var(--grey-90, #e1e3e3);
    background-color: #fff;
    padding: 16px;
}

.answer-or-ask-card__header-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    color: #000;
}

.answer-or-ask-card__header-input {
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    color: #000;
    padding: 0px 16px;
    border: none;
}

.answer-or-ask-card__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .answer-or-ask-card__actions button {
        background-repeat: no-repeat;
        background-size: 24px;
        background-position: center;
        display: inline-block;
        width: 40px;
        height: 40px;
        padding: 8px;
        border: none;
    }

.answer-or-ask__add-formula {
    background-image: url("../img/function_icon.svg");
}

.answer-or-ask__add-photos {
    background-image: url("../img/add_photo_icon.svg");
}

.answer-or-ask__add-files {
    background-image: url("../img/add_files_icon_.svg");
}

.answer-or-ask__submit {
    border-radius: 14px;
    background-color: #f7f7fa;
    display: flex;
    padding: 12px 12px 12px 8px;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

    .answer-or-ask__submit::after {
        content: url("../img/send_icon_primary.svg");
        display: inline-block;
        width: 24px;
        height: 24px;
    }

    .answer-or-ask__submit[disabled] {
        color: var(--grey-70);
        cursor: not-allowed;
        user-select: none;
    }

        .answer-or-ask__submit[disabled]::after {
            content: url("../img/send_icon_disabled.svg");
        }

.answer-or-ask-image-preview-list {
    display: none;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid var(--grey-90);
    padding: 16px 0;
}

    .answer-or-ask-image-preview-list.active {
        display: flex;
    }

.answer-image-preview-item {
    position: relative;
    display: inline-block;
    width: 72px;
    height: 72px;
}

    .answer-image-preview-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
        border: 1px solid var(--grey-70, #a9acac);
        cursor: pointer;
    }

.answer-or-ask-card .remove-preview-btn {
    width: 24px;
    height: 24px;
    position: absolute;
    right: -2px;
    top: -2px;
    background-color: var(--primary-90, #f4f2ff);
    background-image: url("../img/close_primary_24px.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    box-shadow: var(--shadow-1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    border-radius: 24px;
}

.answer-or-ask-card .answer-or-ask-file-list {
    display: none;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    border-top: 1px solid var(--grey-90);
    padding: 16px 0;
}

    .answer-or-ask-card .answer-or-ask-file-list.active {
        display: flex;
    }

.answer-or-ask-card .answer-file-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--white);
    max-width: calc(50% - 12px);
    flex: 1 1 calc(50% - 12px);
    border-radius: 16px;
    border: 1px solid var(--grey-70, #a9acac);
    position: relative;
    padding: 8px;
}

    .answer-or-ask-card .answer-file-item::before {
        content: "";
        width: 40px;
        height: 40px;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        background-image: url(../img/description_file.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-left: 1px solid var(--grey-70, #a9acac);
    }

.answer-or-ask-card .answer-file-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    color: var(--black-10);
    padding-left: 8px;
    padding-right: 48px;
}

.answer-or-ask-card .remove-file-btn {
    width: 24px;
    height: 24px;
    background-image: url("../img/close_primary_24px.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    border-radius: 24px;
}

.answer-or-ask-card .answer-or-ask-text textarea {
    border-radius: var(--radius-16);
    color: var(--grey-40);
    border: 1px solid var(--grey-90);
    background-color: var(--white);
}

.create-new-question .answer-or-ask__topic {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 16px auto;
}

.create-new-question .answer-or-ask__topic__header {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    color: var(--grey-40);
}

.create-new-question .answer-or-ask__topic__selectors {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.create-new-question .answer-or-ask__topic__select {
    flex: 1 1 calc(50% - 16px);
}

    .create-new-question .answer-or-ask__topic__select .form-select {
        border-radius: 16px;
    }

.create-new-question .form-select:disabled {
    opacity: 0.5;
    background-color: var(--grey-90);
    cursor: not-allowed;
}

.create-new-question .answer-or-ask__topic__info {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--grey-40, #5b5e66);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

    .create-new-question .answer-or-ask__topic__info::before {
        content: url("../img/info.svg");
        width: 24px;
        height: 24px;
        display: inline-block;
    }

.answer-or-ask__actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
}

.answer-or-ask__cancel {
    display: inline-block;
    font-size: 14px;
    color: var(--grey-40, #5b5e66);
    font-weight: 500;
    line-height: 20px;
    padding: 14px 24px;
}

.question__answer-card--my-questions .question__answer-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.question__answer-card--my-questions
.question__answer-item-footer-status-tag.answered-tag {
    display: inline-block;
}

.question__answer-card--my-questions
.question__answer-item-footer
.question__answer-item-actions {
    display: none;
}

.resource-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    width: 100%;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 8px;
    flex: 1 1 calc(20% - 12px);
    padding: 12px 8px;
    border-radius: 48px;
    background-color: #fafdfd;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    box-shadow: var(--shadow-1);
}

    .resource-link::before {
        content: "";
        display: inline-block;
        width: 32px;
        height: 32px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

.resource-link--notebook {
    color: #00898a;
}

    .resource-link--notebook::before {
        background-image: url("../img/note.svg");
    }

.resource-link--sample-question {
    color: #758beb;
}

    .resource-link--sample-question::before {
        background-image: url("../img/unknown_document.svg");
    }

.resource-link--video {
    color: #0cbaba;
}

    .resource-link--video::before {
        background-image: url("../img/smart_display.svg");
    }

.resource-link--step-by-step {
    color: #3d5db7;
}

    .resource-link--step-by-step::before {
        background-image: url("../img/menu_book.svg");
    }

.resource-link--online-exam {
    color: #3d5db7;
}

    .resource-link--online-exam::before {
        background-image: url("../img/help_center.svg");
    }

.question__answer-card,
.question__answer-empty-state {
    background-color: var(--white);
    border-radius: var(--radius-14);
    margin-bottom: 1rem;
}

.question__answer-card-header,
.question__answer-empty-state-header {
    padding: 1rem;
    border-bottom: 1px solid var(--grey-90);
}

    .question__answer-card-header h2,
    .question__answer-empty-state-header h2 {
        font-family: Kalameh;
        font-size: 24px;
        font-weight: 500;
        line-height: 40px;
    }

.question__answer-card-body,
.question__answer-empty-state-body {
    padding: 1rem;
}

.empty_state_no_question .question__answer-empty-state-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.empty_state_no_question .empty_state_firstAnswer-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary);
    color: white;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    padding: 16px;
    border-radius: 14px;
    width: 100%;
    max-width: 314px;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.empty_state_no_question .empty_state_firstQuestion-btn {
    display: block;
    background-color: var(--primary);
    color: white;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    padding: 16px;
    border-radius: 14px;
    min-width: 100%;
    width: 314px;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ask-new-question-link {
    border-radius: var(--radius-16);
    background-color: var(--primary);
    color: var(--white);
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
}

.question__answer-item-header,
.question__answer-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.question__answer-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.question__answer-item {
    position: relative;
}

.question__answer-item-wrapper {
    border-radius: 14px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.question__answer-item:hover .question__answer-item-wrapper {
    background-color: var(--light-surface-1);
}

.question__answer-item:not(:first-child) {
    border-top: 1px solid var(--grey-70);
    padding-top: 12px;
}

.question__answer-item-link {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}

.question__answer-item-header-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--grey-40);
}

.question__answer-item-footer-info {
    display: none;
}

.question__answer-item-header-info-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.question__answer-item-header-info-name {
    display: inline-block;
}

.question__answer-item-header-info-avatar {
    width: 24px;
    height: 24px;
    border-radius: 24px;
}

    .question__answer-item-header-info-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.question__answer-item-body-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    color: var(--grey-20);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.question__answer-item-header-report {
    background-image: url("../img/report-card-item.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 24px;
    height: 24px;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    z-index: 90;
}

.question__answer-item-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.question__answer-item-remove {
    background-image: url("../img/dataTable_delete.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 24px;
    height: 24px;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    z-index: 90;
}

.question__answer-item-edit {
    display: inline-block;
    background-image: url("../img/dataTable_edit.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 24px;
    height: 24px;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    z-index: 90;
}

.question-detail-card__footer .question__answer-item-actions {
    display: none;
}

.question__answer-item-header-status-tag.answered-tag,
.question__answer-item-footer-status-tag.answered-tag {
    background-color: var(--success-90);
    color: var(--success);
    border-radius: 12px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 500;
    line-height: 24px;
}

.question__answer-item-footer-status-tag.answered-tag {
    display: none;
}

.question__answer-item-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.question__answer-item-answer-btn {
    background-color: var(--white);
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 8px;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    padding: 4px 24px;
    position: relative;
    z-index: 90;
    margin-right: auto;
}

.question__answer-item-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.question__answer-item-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 14px;
    border: 1px solid var(--grey-40);
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-wrap: nowrap;
    text-decoration: none;
    color: var(--grey-40);
    transition: all 0.2s ease;
    position: relative;
    z-index: 90;
}

.question__answer-card-load-more-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 104px;
    padding: 4px 16px;
    border-radius: 16px;
    background-color: var(--white);
    border: 1px solid var(--grey-70);
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;
    color: var(--grey-40);
    cursor: pointer;
    margin: 0 auto;
    margin-top: 16px;
    transition: all 0.2s ease;
}

.question__answer-empty-state-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 1rem;
}

.question__answer-empty-state-img {
    width: 160px;
    height: 166px;
}

    .question__answer-empty-state-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.question__answer-empty-state-description {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    color: var(--grey-20);
    margin-bottom: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

.empty_state-submsg {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: var(--grey-40);
}

.empty_state_ask_question {
    width: 100%;
}

.empty_state_ask_question-btn {
    display: block;
    background-color: var(--primary);
    color: white;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    padding: 12px 16px;
    border-radius: 14px;
    width: 100%;
    max-width: 314px;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.question__answer-card .latest-info-content-row {
    margin: 0;
}

.related-question__card {
    border-radius: 14px;
    background: var(--white);
    padding: 8px;
    overflow: hidden;
}

.answer-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-radius: 14px;
    border: 1px solid var(--grey-90);
    background: var(--white);
    padding: 12px;
    overflow: hidden;
}

.related-question__item .related-question__item-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-radius: 14px;
    background: var(--white);
    padding: 12px;
    overflow: hidden;
    position: relative;
}

.related-question__item-link {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.related-question__item:hover .related-question__item-content {
    background-color: var(--light-surface-1);
    border-radius: 14px;
}

.related-question__item:not(:first-child) {
    padding-top: 8px;
}

.related-question__item:not(:last-child) {
    border-bottom: 1px solid var(--grey-90);
    padding-bottom: 8px;
}

.ai-answer-card {
    gap: 24px;
    border: 2px solid #ccf3ff;
    background: linear-gradient(98deg, #f2fcff 0%, #d9f6ff 98.05%);
}

.correct-answer-card {
    border: 1px solid var(--success);
    background: var(--success-90);
}

.answer-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.answer-card__user-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.answer-card__user-avatar,
.related-question__user-avatar,
.question-detail__user-avatar {
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .answer-card__user-avatar img,
    .related-question__user-avatar img,
    .question-detail__user-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.answer-card__badge-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ai-answer-card__badge {
    display: flex;
    align-items: center;
    background: #0088b2;
    color: #f2fcff;
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 500;
    line-height: 24px;
    gap: 4px;
}

.ai-answer-card__badge-icon {
    background-image: url("../img/AI_star.svg");
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 24px;
    height: 24px;
}

.correct-answer-card__badge {
    background-color: var(--success);
    color: var(--white);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 500;
    line-height: 24px;
}

.popular-answer-card__badge {
    color: #1d0061;
    border-radius: 12px;
    background-color: #f7f1ff;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 500;
    line-height: 24px;
}

.teacher-answer-card__badge {
    background-color: var(--primary);
    color: var(--white);
    border-radius: 12px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 500;
    line-height: 24px;
}

.user-selected-answer-card__badge {
    display: flex;
    align-items: center;
    gap: 4px;
    border-radius: 12px;
    background-color: #ededed;
    font-size: 11px;
    font-weight: 500;
    line-height: 24px;
    padding: 4px 12px;
    cursor: pointer;
}

    .user-selected-answer-card__badge::before {
        content: "";
        background-image: url("../img/radio_button_unchecked.svg");
        background-size: contain;
        background-repeat: no-repeat;
        display: inline-block;
        width: 20px;
        height: 20px;
    }

.ai-answer-card__brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ai-answer-card__brand-text,
.answer-card__user-name,
.related-question__user-name {
    color: var(--grey-40, #5b5e66);
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;
}

.created-at,
.question__answer-item-header-info-responses,
.question__answer-item-footer-info-responses {
    color: var(--grey-40, #5b5e66);
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
}

.related-question__title {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    color: var(--primary-10);
    padding: 8px 0;
}

.ai-answer-card__brand-logo {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .ai-answer-card__brand-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.answer-card__body {
    color: #191c1d;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.answer-card__footer {
    display: flex;
    justify-content: space-between;
}

.ai-answer-card .answer-card__footer {
    flex-direction: column;
}

.answer-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

.ai-answer-card .answer-card__actions {
    width: 100%;
}

.answer-card__reactions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.answer-card__like,
.answer-card__dislike {
    background: none;
    border: none;
    color: #5b5e66;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.answer-card__reactions .answer-card__reaction-btn {
    display: inline-block;
    width: 20px;
    height: 20px;
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.answer-card__like-btn {
    background-image: url("../img/thumb_up_gray.svg");
}

.answer-card__dislike-btn {
    background-image: url("../img/thumb_down_gray.svg");
}

.answer-card__like-btn.answer-card__like-btn--active {
    background-image: url("../img/thumb_up_green.svg");
}

.answer-card__dislike-btn.answer-card__dislike-btn--active {
    background-image: url("../img/thumb_down_grey_fill.svg");
}

.answer-card__report {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-answer-card__divider {
    width: 100%;
    height: 1px;
    background-color: #b8dbe5;
    margin: 12px auto;
}

.ai-answer-card__notice {
    color: #5b5e66;
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
}

.answer-card__divider,
.related-question__divider,
.question-detail__divider {
    width: 1px;
    height: 16px;
    background-color: var(--grey-70, #e1e3e3);
    display: inline-block;
}

.related-question__item-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.related-question__item-body {
    color: #191c1d;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.QARemove_modal .remove-question-btn {
    background-color: #d62733;
    border-radius: 14px;
    padding: 14px 24px;
    color: var(--white);
}

.QARemove_modal .dismiss_btn {
    color: #5b5e66;
    padding: 14px 24px;
}

.QARemove_modal .remove-question-item-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--black-10);
}

.QAReport_modal .sendReport {
    background-color: var(--primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    padding: 14px 24px;
    border-radius: 14px;
}

.QAReport_modal .dismiss_btn {
    background-color: transparent;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.QAReport_modal .reportItems {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 1rem;
    margin-bottom: 16px;
}

.QAReport_modal .reportDescription-textarea {
    border-radius: 4px;
    border: 1px solid var(--grey-70, #a9acac);
    background-color: var(--white);
}

#QASubmitCorrectAnswerModal .submit-correct-answer-btn {
    background-color: var(--primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    padding: 14px;
    border-radius: 14px;
}

.guest_login_modal .floating_input,
.guest_register_modal .floating_input {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    direction: ltr;
    text-align: left;
    padding: 1rem;
}

.guest_login_modal label,
.guest_register_modal label {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    top: 1rem;
}

.guest_login_modal .send_code_btn {
    margin: 0 !important;
}

.guest_login_modal .signup_account_btn {
    width: 100% !important;
    background-color: var(--primary) !important;
    color: var(--white) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 20px !important;
    padding: 14px 24px !important;
    border-radius: 14px !important;
    margin-top: 1rem !important;
}

.guest_register_modal .eye_wrapper {
    top: 28px !important;
}

.question_answer_page .hamdars_gift_section {
    display: block !important;
}

.question_answer_page .hamdars_gift_btn {
    font-size: 11px;
    font-weight: 800;
    line-height: 18px;
    color: #222222;
    min-width: 132px !important;
}

.question_answer_page .hamdars_gift_container {
    height: 100%;
}

.question_answer_page .hamdars_gift_section .giftـpicture {
    width: 100%;
    height: 100%;
    background-image: url("../img/hamdarsGiftCardHighRes.gif");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.question_answer_page .other-content-lesson {
    margin: 2rem 0 !important;
}

    .question_answer_page .other-content-lesson ul {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        list-style: none;
        padding: 0 !important;
        margin: 0 !important;
        margin-top: 1.5rem !important;
        width: 100%;
        justify-content: center !important;
        align-items: center;
    }

        .question_answer_page .other-content-lesson ul li {
            width: 100%;
            flex: 1 1 calc(20% - 8px);
            padding: 0;
        }

    .question_answer_page .other-content-lesson li .link-icon {
        margin-left: 4px;
    }

    .question_answer_page .other-content-lesson li a {
        height: 100%;
        display: block;
        padding: 12px 8px;
    }

.question_answer_page .most-visited-content-section .card {
    height: 248px !important;
}

.question_answer_page .most-visited-content-section .card-text-truncate {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.answers-list {
    background-color: var(--white);
    border-radius: var(--radius-14);
    margin: 1rem 0;
}

    .answers-list .answers-list_more-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 114px;
        padding: 4px 16px;
        border-radius: 16px;
        background-color: var(--white);
        border: 1px solid var(--grey-70);
        font-size: 12px;
        font-weight: 500;
        line-height: 24px;
        color: var(--grey-40);
        cursor: pointer;
        margin: 0 auto;
        margin-top: 16px;
        transition: all 0.2s ease;
    }

    .answers-list .answers-list__header {
        padding: 16px 16px 0 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.answer-list__header-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    color: var(--black-10);
}

.sort-dropdown {
    position: relative;
    user-select: none;
}

.sort-dropdown__toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    font-size: 13px;
    font-weight: 400;
    line-height: 24px;
    color: var(--grey-40);
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
}

    .sort-dropdown__toggle::after {
        content: "";
        width: 24px;
        height: 24px;
        background-image: url("../img/arrow_dropdown.svg");
        background-size: contain;
        background-repeat: no-repeat;
        transition: transform 0.15s ease;
        margin-right: 4px;
    }

.sort-dropdown--open .sort-dropdown__toggle::after {
    transform: rotate(180deg);
}

.sort-dropdown__menu {
    position: absolute;
    top: 110%;
    left: 0;
    background: var(--white);
    border-radius: var(--radius-14);
    box-shadow: var(--shadow-2);
    overflow: hidden;
    width: 154px;
    z-index: 100;
    border: 1px solid #e5e7eb;
    display: none;
}

.sort-dropdown--open .sort-dropdown__menu {
    display: block;
}

.sort-dropdown__item {
    padding: 0.75rem 1rem;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    cursor: pointer;
    white-space: nowrap;
}

    .sort-dropdown__item:not(:last-child) {
        border-bottom: 1px solid var(--grey-90);
    }

.sort-dropdown__item--active {
    background-color: var(--light-surface-1);
}

.answers-list .answers-list__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
}

.guest-submit__answer .guest-submit__answer-card {
    background-color: var(--white);
    border-radius: var(--radius-14);
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guest-submit__answer .guest-submit__answer-text {
    color: var(--grey-40);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.guest-submit__answer .guest-submit__answer-button button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary);
    color: white;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    padding: 16px;
    border-radius: 14px;
    width: 172px;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.question_answer_page.teacher_home_page .search-card__filter-btn {
    width: 50%;
    background-color: var(--white);
}

    .question_answer_page.teacher_home_page .search-card__filter-btn::after {
        content: "فیلتر کردن";
        display: inline-block;
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        color: var(--grey-40);
    }

.question_answer_page .question__answer-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.question__answer-item-score {
    border-radius: 16px;
    background-color: #fff2dc;
    display: flex;
    padding: 0 8px;
    align-items: center;
    gap: 4px;
    color: var(--grey-20);
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;
}

    .question__answer-item-score::after {
        content: "";
        background-image: url("../img/Spark_icon.svg");
        background-size: 16px;
        background-position: center;
        background-repeat: no-repeat;
        width: 16px;
        height: 16px;
    }

.question_answer_page.teacher_home_page .search-card__search-btn {
    min-width: 132px;
}

.question_answer_page.teacher_home_page .search-card__filter-btn::after {
    display: none;
}

.question_answer_page.teacher_home_page .page-layout__aside,
.teacher_score_page .page-layout__aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.question_answer_page .hamdars-banner {
    display: flex;
    width: 100%;
    text-align: center;
    padding: 16px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    border-radius: var(--radius-14);
    background: linear-gradient(164deg, #a5b8fe 0%, #788eec 100%);
}

    .question_answer_page .hamdars-banner img {
        width: 100px;
        margin: 0 auto;
        height: 100px;
    }

    .question_answer_page .hamdars-banner a {
        display: flex;
        height: 48px;
        padding: 14px 24px;
        justify-content: center;
        align-items: center;
        text-align: center;
        border-radius: 14px;
        background-color: #f7be00;
        gap: 8px;
        color: var(--primary-10);
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
    }

    .question_answer_page .hamdars-banner h3 {
        font-size: 20px;
        color: var(--white);
        font-weight: 500;
        line-height: 28px;
        text-align: center;
    }

    .question_answer_page .hamdars-banner h4 {
        font-size: 14px;
        color: var(--white);
        font-weight: 500;
        text-align: center;
        line-height: 20px;
    }

.teachers-profit-card {
    width: 100%;
    padding: 16px 0px;
    background-color: var(--white);
    border-radius: var(--radius-14);
}

    .teachers-profit-card h5 {
        font-size: 16px;
        color: var(--grey-20);
        font-weight: 500;
        line-height: 24px;
        margin-bottom: 16px;
        text-align: center;
    }

    .teachers-profit-card .profit-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px 16px;
    }

        .teachers-profit-card .profit-row:not(:last-child) {
            border-bottom: 1px solid #e1e3e3;
            padding-bottom: 16px;
            margin-bottom: 12px;
        }

        .teachers-profit-card .profit-row .profile {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 4px;
        }

            .teachers-profit-card .profit-row .profile img {
                width: 42px;
                height: 42px;
                border-radius: 42px;
            }

            .teachers-profit-card .profit-row .profile p {
                font-size: 14px;
                color: var(--grey-20);
                font-weight: 500;
                line-height: 24px;
            }

    .teachers-profit-card .result {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        flex-direction: column;
        align-items: flex-end;
    }

.user-profile-card {
    background-color: var(--white);
    border-radius: 14px;
}

.user-profile-card__header {
    border-bottom: 1px solid #e1e3e3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
}

.user-profile-card__footer {
    border-top: 1px solid #e1e3e3;
    padding: 16px;
}

.user-profile-card__divider {
    width: 100%;
    height: 1px;
    background-color: var(--grey-90);
    margin: 16px auto;
}

.user-profile-card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;
}

    .user-profile-card__row:not(:last-child) {
        margin-bottom: 16px;
    }

.user-profile-card__header .user-profile-card__row {
    margin-bottom: 0px;
}

.user-profile-card__avatar-img {
    display: inline-block;
    width: 48px;
    height: 48px;
}

.user-profile-card__profile-name {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #191c1d;
    margin-right: 16px;
}

.user-profile-card__grade-number,
.user-profile-card__student-role {
    color: #000c61;
    font-size: 12px;
    font-weight: 500;
}

.user-profile-card__body {
    padding: 16px;
}

.user-profile-card__label {
    width: max-content;
    white-space: nowrap;
    margin-left: 4px;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
}

.user-profile-card__value {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.user-profile-card__body .user-profile-card__value {
    display: flex;
    align-items: flex-start;
}

.user-profile-card__spark-icon {
    margin-right: 8px;
    background-image: url("../img/Spark_icon.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.user-profile-card__spark-icon--large {
    width: 24px;
    height: 24px;
}

.user-profile-card__spark-icon--small {
    width: 16px;
    height: 16px;
}

.user-profile-card__info-msg {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--grey-40);
    font-weight: 400;
    line-height: 24px;
}

    .user-profile-card__info-msg::before {
        content: url("../img/info.svg");
        width: 24px;
        height: 24px;
        display: inline-block;
    }

.user-profile-card__link {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 12px;
}

    .user-profile-card__link a {
        width: max-content;
        padding: 4px 8px;
        display: block;
        font-size: 12px;
        color: var(--grey-40);
        font-weight: 500;
        line-height: 24px;
    }

.user-profile-card__value-span {
    color: var(--success);
    margin-left: 4px;
    display: inline-block;
}

.question_answer_page .teacher__score {
    background-color: var(--white);
    border-radius: 14px;
}

.teacher__score-card-header {
    padding: 16px;
    border-bottom: 1px solid var(--grey-90);
}

    .teacher__score-card-header .teacher__score-card-title {
        font-family: Kalameh;
        font-size: 28px;
        font-weight: 500;
        line-height: 40px;
        color: var(--primary-10);
    }

.teacher__score-card-body {
    padding: 16px;
}

.teacher__score-card-list {
    padding: 0;
    margin: 0;
}

.teacher__score-card-item {
    color: var(--grey-20);
    padding: 8px 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

    .teacher__score-card-item strong {
        font-weight: 700;
    }

.hamdars-middle-card {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    gap: 24px;
    border-radius: 14px;
    border: 2px solid var(--Hamdars-Primary-color, #758beb);
    background-color: var(--light-surface-1);
    overflow: hidden;
    min-height: 336px;
}

.hamdars-middle-card__content {
    width: calc(100% - 308px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.hamdars-middle-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    padding: 8px;
    border-radius: 14px;
    background-color: #3d5db7;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
}

    .hamdars-middle-card__icon img {
        display: block;
        width: 42px;
        height: 42px;
    }

.hamdars-middle-card__title {
    color: #1d3f70;
    font-family: Kalameh;
    font-size: 28px;
    font-weight: 600;
    line-height: 42px;
}

.hamdars-middle-card__description {
    color: #1d3f70;
    font-size: 20px;
    font-weight: 500;
    line-height: 42px;
    max-width: 398px;
}

.hamdars-middle-card__button {
    border: 0;
    outline: 0;
    box-shadow: none;
    border-radius: 14px;
    background-color: #fec400;
    color: #191c1d;
    box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15), 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
    padding: 12px 24px;
    text-align: center;
    display: inline-block;
    width: max-content;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.hamdars-middle-card__image img {
    min-width: 205px;
    max-width: 246px;
    height: 398px;
    display: block;
    transform: scale(1.2);
    position: absolute;
    right: 48px;
    top: -129px;
    z-index: 1;
    border-radius: 14px;
    box-shadow: var(--shadow-2);
}

.hamdars-middle-card--large-screen {
    flex-direction: row-reverse;
}

    .hamdars-middle-card--large-screen .hamdars-middle-card__image img {
        min-width: 236px;
        max-width: 260px;
        height: 434px;
        display: block;
        transform: rotate(-24deg);
        position: absolute;
        right: auto;
        left: 24px;
        top: -69px;
    }

    .hamdars-middle-card--large-screen .hamdars-middle-card__description {
        max-width: 100%;
    }

.student-landing_page {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: auto !important;
    padding-top: 104px;
}

.student-landing {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
}

.student-landing__card {
    background: #fff;
    border-radius: 14px;
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    min-height: 288px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 88px 24px 24px 24px;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.student-landing__badge {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    background: #f4f2ff;
    border-radius: 14px;
    box-shadow: 0px 6px 10px 4px rgba(0, 0, 0, 0.15), 0px 2px 3px 0px rgba(0, 0, 0, 0.3);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.student-landing__badge-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.student-landing__title {
    font-family: Kalameh;
    font-weight: 500;
    font-size: 24px;
    color: #000c61;
    line-height: 40px;
    text-align: center;
    margin-bottom: 16px;
    margin-top: 0;
    white-space: nowrap;
}

.student-landing__desc {
    font-weight: 500;
    font-size: 16px;
    color: #191c1d;
    line-height: 24px;
    text-align: center;
    margin-bottom: 24px;
    margin-top: 0;
    max-width: 288px;
}

.student-landing__button {
    width: 100%;
    border-radius: 100px;
    overflow: hidden;
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 0;
    margin-top: 0;
}

.student-landing__button-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    padding: 0 24px 0 16px;
    background: none;
    cursor: pointer;
    transition: background 0.2s;
}

    .student-landing__button-inner:hover {
        background: #fbfcff;
    }

    .student-landing__button-inner::after {
        content: url("../img/primary_arrow_left.svg");
        width: 24px;
        height: 24px;
        object-fit: contain;
    }

.student-landing__button-text {
    font-weight: 700;
    font-size: 16px;
    color: #3751ff;
    line-height: 24px;
    text-align: center;
    white-space: nowrap;
}

.teacher-landing_page {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: auto !important;
    padding-top: 104px;
}

.teacher-landing {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.teacher-landing__card {
    position: relative;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0px 6px 10px 4px rgba(0, 0, 0, 0.15), 0px 2px 3px 0px rgba(0, 0, 0, 0.3);
    flex: 1 1 0;
    width: 512px;
    min-height: 264px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 88px 24px 24px 24px;
    box-sizing: border-box;
}

.teacher-landing__card__icon {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    background: #000c61;
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0px 6px 10px 4px rgba(0, 0, 0, 0.15), 0px 2px 3px 0px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .teacher-landing__card__icon img {
        width: 64px;
        height: 64px;
        display: block;
    }

.teacher-landing__card__title {
    font-family: Kalameh;
    font-weight: 500;
    font-size: 24px;
    line-height: 40px;
    color: #000c61;
    text-align: center;
    margin-bottom: 16px;
    margin-top: 0;
}

.teacher-landing__card__subtitle {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #191c1d;
    text-align: center;
    margin-bottom: 24px;
    margin-top: 0;
}

.teacher-landing__card__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 48px;
    border-radius: 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    color: #3751ff;
    transition: background 0.2s;
    padding: 0 12px;
}

    .teacher-landing__card__button:hover {
        background: #fbfcff;
    }

    .teacher-landing__card__button::after {
        content: url("../img/primary_arrow_left.svg");
        width: 24px;
        height: 24px;
        object-fit: contain;
    }

.progress-container {
    display: flex;
    gap: 2px;
    align-items: center;
    justify-content: space-between;
    margin-top: 52px;
    width: 100%;
}

    .progress-container .segment {
        min-width: 28px;
        width: 100%;
        flex: 1;
        height: 8px;
        background-color: #e0e0e0;
        border-radius: 4px;
        position: relative;
    }

        .progress-container .segment.active {
            background-color: #000c61;
        }

        .progress-container .segment:last-child::after {
            content: "10% سود بیشتر";
            background-image: url("../img/tooltip_bg.svg");
            background-position: center;
            background-repeat: no-repeat;
            width: 86px;
            height: 38px;
            position: absolute;
            left: 0px;
            bottom: 12px;
            font-size: 11px;
            line-height: 32px;
            text-align: center;
            color: var(--white);
        }

    .progress-container .marker {
        width: 16px;
        height: 16px;
        background-color: #000c61;
        border: 4px solid #f4f2ff;
        border-radius: 50%;
        position: absolute;
        top: -5px;
        left: 50%;
        transform: translateX(-50%);
        box-shadow: var(--shadow-1);
        cursor: pointer;
    }

body .tooltip-inner {
    font-family: IRANYekanX !important;
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;
}

.question-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 14px;
    border: 1px solid var(--grey-90, #e1e3e3);
    background: var( --light-surface-1, linear-gradient( 0deg, rgba(55, 81, 255, 0.04) 0%, rgba(55, 81, 255, 0.04) 100% ), #fbfcff );
    padding: 16px 12px;
    color: #000000;
}

.question-box__title {
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
}

.question-box__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.answer-or-ask-card .tox-tinymce {
    border: none;
}

.tinymce_textEditor textarea::placeholder {
    font-size: 12px !important;
}

.answer-or-ask-card .tox .tox-edit-area::before {
    border: 0 !important;
}

.answer-or-ask-card .tox-editor-header {
    direction: rtl !important;
}

.answer-or-ask-card .tox-toolbar__primary {
    justify-content: flex-start !important;
}

.answer-or-ask-card .tox-toolbar__group {
    flex-direction: row-reverse !important;
    padding: 0 !important;
}

.answer-or-ask-card .tox .tox-tbtn--bespoke {
    background: #f7f7f7;
    max-width: 64px;
    padding: 0 6px;
}

.answer-or-ask-card .answer-or-ask-formula__List {
    margin: 0;
    padding-right: 0;
    padding-left: 0;
    direction: ltr;
    text-align: left;
}

.question-detail-card__formulas ul {
    margin: 0;
    padding-right: 0;
    padding-left: 0;
    direction: ltr;
    text-align: left;
}

.answer-or-ask-card .answer-or-ask-formula__List math-field {
    border: none;
    font-size: 16px !important;
    font-weight: 500;
    line-height: 24px;
}

.answer-or-ask-card .answer-or-ask-formula__List li {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    padding: 8px 0;
}

.question-detail-card__formulas li {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    padding: 8px 0;
}

    .answer-or-ask-card .answer-or-ask-formula__List li:not(:last-child),
    .question-detail-card__formulas li:not(:last-child) {
        border-bottom: 1px solid var(--grey-90);
    }

.answer-or-ask-card .answer-or-ask-formula__List .remove-formula__btn {
    width: 16px;
    height: 16px;
    background-image: url(../img/red_close.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

#addFormulaModal {
    z-index: 1056 !important;
}

    #addFormulaModal math-field {
        width: 100% !important;
        border: 1px solid var(--grey-70, #a9acac) !important;
        border-radius: 4px !important;
        margin: 12px 0 !important;
        direction: ltr !important;
        padding-left: 12px;
    }

.question-detail-card__formulas math-field {
    border: none !important;
    font-size: 16px !important;
    font-weight: 500;
    line-height: 24px;
}

#addFormulaModal .add-formula__label {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: var(--grey-40);
}

.add-formula__notice {
    display: flex;
    align-items: center;
    color: var(--grey-40);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

    .add-formula__notice::before {
        content: url("../img/info.svg");
        width: 24px;
        max-height: 24px;
    }

.add-formula__btn {
    width: 92px;
    border-radius: 14px;
    padding: 14px 24px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

math-field::part(menu-toggle) {
    display: none !important;
}

.ML__keyboard {
    z-index: 1056 !important;
}

    .ML__keyboard.is-visible {
        z-index: 1056 !important;
    }

.ranking-card {
    background: #fff;
    border-radius: 14px;
    padding: 1rem;
}

.ranking-card__title {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    color: #251a00;
}

.ranking-card__select {
    width: 100%;
    margin: 16px auto;
}

.ranking-card__list {
    list-style: none;
    counter-reset: rank;
    padding: 0;
    margin: 0;
}

.ranking-card__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    counter-increment: rank;
    padding: 8px 0px;
}

    .ranking-card__item::before {
        content: counter(rank);
        width: 16px;
        display: inline-block;
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
    }

.ranking-card__user {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 0.5rem;
}

.ranking-card__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

    .ranking-card__avatar img {
        width: 100%;
        height: auto;
        border-radius: 50%;
        object-fit: cover;
    }

.ranking-card__name {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    color: #212121;
}

.ranking-card__score {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    color: var(--black-10);
}

    .ranking-card__score::after {
        content: url("../img/Spark_icon.svg");
        display: inline-block;
        width: 24px;
        height: 20px;
    }

.myQuestions .myQuestions__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    border-radius: 14px;
    padding: 16px;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    color: var(--grey-20);
}

    .myQuestions .myQuestions__nav::after {
        content: url("../img/arrowleftpaginate.svg");
        display: inline-block;
        width: 24px;
        height: 24px;
    }

.question_answer_page .description {
    margin-top: 16px;
}

@media (min-width: 992px) {
    .question_answer_page .search-card__filters {
        display: flex;
        gap: 12px;
        margin-top: 1.5rem;
    }

    #offcanvas__filters {
        display: none;
    }

    .question_answer_page .search-card__filters.hidden-on-desktop {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .hamdars-middle-card__image img {
        min-width: 178px;
        height: 336px;
        right: 32px;
        top: -50px;
    }

    .hamdars-middle-card {
        padding: 12px;
        gap: 12px;
    }

    .hamdars-middle-card__content {
        width: calc(100% - 236px);
    }

    .hamdars-middle-card__title {
        font-size: 20px;
        line-height: 32px;
    }

    .hamdars-middle-card__description {
        font-size: 14px;
        line-height: 28px;
        max-width: 260px;
    }

    .hamdars-middle-card--large-screen {
        min-height: 300px;
    }

        .hamdars-middle-card--large-screen .hamdars-middle-card__content {
            width: calc(100% - 330px);
        }

        .hamdars-middle-card--large-screen .hamdars-middle-card__image img {
            min-width: 196px;
            max-width: 260px;
            height: 360px;
            display: block;
            transform: rotate(-24deg);
            position: absolute;
            right: auto;
            left: 0px;
            top: -64px;
        }
}

@media (max-width: 1320px) {
    .question_answer_page .hamdars_gift_section .giftـpicture {
        background-image: url("../img/hamdarsGiftCardMidRes.gif");
    }

    .question_answer_page .other-content-lesson li {
        border-radius: 24px;
    }

        .question_answer_page .other-content-lesson li .link-text {
            font-size: 16px;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

    .question_answer_page .resource-link {
        flex-direction: column;
        padding: 8px 12px;
        border-radius: 14px;
    }
}

@media (max-width: 1200px) {
    .student-landing_page {
        min-height: 100%;
        height: 100%;
        padding-top: 178px;
        padding-bottom: 104px;
    }

    .student-landing__card {
        min-height: 269px;
        padding: 78px 16px 16px 16px;
    }

    .teacher-landing_page {
        min-height: 100%;
        height: 100%;
        padding-top: 178px;
        padding-bottom: 104px;
    }

    .teacher-landing__card {
        width: 428px;
        min-height: 269px;
    }
}

@media (max-width: 991px) {
    .question_answer_page .page-layout {
        flex-direction: column-reverse;
    }

    .question_answer_page .page-layout__content {
        width: 100%;
    }

    .question_answer_page .page-layout__aside {
        display: none;
    }

    .page-layout__aside.page-layout__aside--mobile-clone {
        display: block;
    }

    .teacher_home_page .page-layout__aside {
        display: none !important;
    }

    .teacher_score_page .page-layout__aside {
        display: flex !important;
    }

    #offcanvas__filters {
        border-radius: 14px 14px 0px 0px;
        height: 340px;
    }

        #offcanvas__filters .offcanvas-header {
            border-bottom: 1px solid var(--grey-70);
            padding: 1rem;
        }

        #offcanvas__filters .offcanvas-body {
            padding-top: 1.5rem;
        }

        #offcanvas__filters .offcanvas-footer {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            padding: 0rem 1rem 1.5rem 1rem;
            gap: 1rem;
        }

            #offcanvas__filters .offcanvas-footer .dismiss-btn {
                background-color: transparent;
                color: var(--primary);
                border: none;
                outline: none;
                padding: 14px 24px;
                font-size: 14px;
                font-style: normal;
                font-weight: 500;
                line-height: 20px;
            }

            #offcanvas__filters .offcanvas-footer .filter-btn {
                background-color: #3d5db7;
                color: var(--white);
                border: none;
                outline: none;
                padding: 14px 16px;
                font-size: 14px;
                font-style: normal;
                font-weight: 500;
                line-height: 20px;
                border-radius: 14px;
            }

    .search-card__filters {
        display: flex !important;
        flex-direction: column;
        gap: 20px;
    }

    .student_home_page .search-card__ask-link {
        display: none;
    }

    .search-card__ask-fixed {
        display: flex;
        align-items: center;
        gap: 4px;
        position: fixed;
        bottom: 48px;
        right: 12px;
        z-index: 900;
        font-size: 14px;
        font-weight: 600;
        line-height: normal;
        color: var(--white);
        background-color: var(--primary);
        box-shadow: var(--shadow-1);
        border-radius: 16px;
        padding: 16px 16px 16px 20px;
    }

        .search-card__ask-fixed::before {
            display: inline-block;
            content: url("../img/add_white_icon.svg");
            width: 24px;
            height: 24px;
        }

    .question_answer_page.teacher_home_page .search-card__filter-btn,
    .question_answer_page.student_home_page .search-card__filter-btn {
        width: 50%;
        background-color: var(--white);
    }

        .question_answer_page.teacher_home_page .search-card__filter-btn::after,
        .question_answer_page.student_home_page .search-card__filter-btn::after {
            content: "فیلتر کردن";
            display: inline-block;
            font-size: 14px;
            font-weight: 500;
            line-height: 20px;
            color: var(--grey-40);
        }

    .question-detail-card__header .question__answer-item-header-report,
    .question-detail-card__header .question__answer-item-actions {
        display: none;
    }

    .question-detail-card__footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .question-detail-card__footer-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

        .question-detail-card__footer-actions .question__answer-item-header-report {
            display: inline-block;
        }

        .question-detail-card__footer-actions .question__answer-item-actions {
            display: flex;
        }

    .question-detail-card__reaction {
        flex-direction: row-reverse;
    }

    .question_answer_page .search-card__top {
        gap: 0.5rem;
    }

    .question_answer_page .search-card__buttons {
        width: 100%;
    }

    .question_answer_page .search-card__search-btn {
        flex-grow: 1;
    }

    .question_answer_page .resource-links {
        justify-content: center;
    }

    .question_answer_page .resource-link {
        flex-direction: column;
        padding: 8px 12px;
        border-radius: 14px;
    }

    .question__answer-item-tags,
    .question__answer-item-header-actions,
    .question__answer-item-header-info-divider,
    .question__answer-list--my-questions
    .question__answer-item-header-info
    .question__answer-item-header-info-date,
    .question__answer-list--my-questions
    .question__answer-item-header-info
    .question__answer-item-header-info-responses {
        display: none;
    }

    .teacher__answer-list .question__answer-item-header-actions {
        display: flex;
    }

    .teacher__answer-list .question__answer-item-header-report,
    .teacher__answer-list .question__answer-item-header-info-date,
    .teacher__answer-list
    .question__answer-item-header
    .question__answer-item-score {
        display: none;
    }

    .teacher__answer-list .question__answer-item-header-info {
        width: auto;
    }

    .teacher__answer-list .question__answer-item-header-info-divider {
        display: inline-block;
    }

    .teacher__answer-list .question__answer-item-header-info-divider {
        display: none;
    }

    .teacher__answer-list .question__answer-item-wrapper,
    .question__answer-list--my-questions .question__answer-item-wrapper {
        gap: 12px;
    }

    .question__answer-card--my-questions
    .question__answer-item-footer
    .question__answer-item-actions {
        display: flex;
    }

    .teacher__answer-list
    .question__answer-item-footer-info
    .question__answer-item-score {
        display: flex;
    }

    .question__answer-item-footer-info {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        color: var(--grey-40);
    }

    .question__answer-item-footer-status-tag.answered-tag {
        display: inline-block;
    }

    .teacher__answer-list .question__answer-item-footer-status-tag.answered-tag {
        display: none;
    }

    .question__answer-item-footer {
        justify-content: space-between;
    }

    .question__answer-item-header-info {
        width: 100%;
        justify-content: space-between;
    }

    .question__answer-item-body-text {
        -webkit-line-clamp: 4;
        line-clamp: 4;
        text-align: justify;
    }

    .question_answer_page .hamdars_gift_btn {
        width: 132px !important;
    }

    .question_answer_page .hamdars_gift_section .giftـpicture {
        background-image: url("../img/hamdarsGiftCardHighRes.gif");
    }

    .ranking-card {
        display: none;
    }

    .myQuestions {
        display: none;
    }

    .user_questions_page .ranking-card {
        display: block;
        margin-top: 16px;
    }

    .student-landing_page {
        padding-top: 172px;
        padding-bottom: 64px;
    }

    .student-landing {
        gap: 32px;
    }

    .student-landing__card {
        flex: 1 1 calc(50% - 32px);
        max-width: calc(50% - 32px);
    }

    .teacher-landing_page {
        padding-top: 172px;
        padding-bottom: 64px;
    }

    .teacher-landing {
        gap: 48px;
    }

    .teacher-landing__card {
        flex: 1 1 100%;
        width: 100%;
        max-width: 528px;
    }

    .user-profile-card {
        display: none;
    }

    .answer-or-ask-card .answer-file-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .question_answer_page .resource-link {
        flex: 1 1 calc(33.33% - 12px);
        max-width: calc(33.33% - 12px);
        font-size: 13px;
        font-weight: 500;
        line-height: 24px;
    }

    .guest_login_modal .signupWithTaraz {
        flex-direction: column;
        gap: 0.5rem;
    }

        .guest_login_modal .signupWithTaraz p {
            font-size: 12px;
            font-weight: 400;
            line-height: 16px;
        }

        .guest_login_modal .signupWithTaraz button {
            font-size: 14px;
        }

    .guest-submit__answer {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 99;
    }

        .guest-submit__answer .guest-submit__answer-card {
            box-shadow: var(--shadow-1);
            border-radius: 14px 14px 0px 0px;
            padding: 24px 16px;
        }

        .guest-submit__answer .guest-submit__answer-text {
            display: none;
        }

        .guest-submit__answer .guest-submit__answer-button,
        .guest-submit__answer .guest-submit__answer-button button {
            width: 100%;
        }

    .question-detail-card__file {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .question-detail-card__body .question-detail-card__title {
        font-size: 18px;
    }

    .question-detail-card__body .question-detail-card__text,
    .answer-card__body,
    .related-question__item-body {
        font-size: 14px;
    }

    .question_answer_page .hamdars_gift_section .giftـpicture {
        background-image: url("../img/hamdarsGiftCardMidRes.gif");
    }

    .question__answer-card-header h2 {
        font-size: 16px;
        font-weight: 500;
        line-height: 28px;
    }

    .hamdars-middle-card {
        flex-direction: column;
    }

    .hamdars-middle-card__image {
        height: 196px;
    }

        .hamdars-middle-card__image img {
            width: 178.971px !important;
            height: 397.712px !important;
            margin: 0 auto !important;
            left: 0 !important;
            right: 0 !important;
            top: -170px !important;
            transform: none !important;
            z-index: 1;
        }

    .hamdars-middle-card__content {
        width: 100%;
        position: relative;
        gap: 12px;
        z-index: 10;
    }

    .hamdars-middle-card__title {
        font-size: 20px;
        line-height: 32px;
    }

    .hamdars-middle-card__description {
        font-size: 16px;
        line-height: 32px;
        max-width: 100%;
    }

    .student-landing_page {
        padding-top: 152px;
        padding-bottom: 64px;
    }

    .student-landing {
        gap: 48px;
    }

    .student-landing__card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .teacher-landing_page {
        padding-top: 152px;
        padding-bottom: 64px;
    }

    .teacher-landing__card {
        padding: 78px 16px 16px 16px;
    }
}

@media (max-width: 567px) {
    .question_answer_page .hamdars_gift_Logo {
        display: none;
    }

    .question_answer_page .hamdars_gift_section .giftـpicture {
        background-image: url("../img/hamdarsGiftCardLowestRes.gif");
    }

    .question_answer_page .other-content-lesson ul li {
        width: 100%;
        flex: 1 1 calc(33.33% - 8px);
        max-width: calc(33.33% - 8px);
    }
}

@media (max-width: 467px) {
}



