﻿.chaterRaam{
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 95%;
    max-width: var(--page-max-width);
    gap:60px;
}
.chaterPreview{
    display: inline-flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: fit-content;
    gap:30px;
}

.chapter-translation {
    font-size: 130%;
    color: var(--main-color1);
    text-transform: uppercase;
}

.chapter-title{
    font-size: 150%;
    font-weight: bold;
    margin-left: 20px;
    color:var(--main-color1);
}

.chapter-description {
    font-size: 110%;
    margin-left: 20px;
    margin-top: 10px;
    color: var(--main-color1);
}

.chapter-list {
    font-size: 100%;
    margin-block-start: 1em;
}

li span{
    margin-left: 10px;
    line-height: 1.5;
    filter:none!important;
}
li::marker {
    content:var(--check-svg);
}

.high-contrast li::marker{
    content:var(--check-conrast-svg);
}
.lesson-txt{
    display: inline-flex;
    flex-direction: column;
    flex-grow: 1;
}

.lesson-img{
    border: none;
    width: var(--img-width);
    flex-basis: 40%;
    text-align: right;
}
.lesson-img img{
    width: var(--img-width);
    border-radius: var(--border-radius);
}
@media screen and (max-width: 750px), screen and (max-device-width: 750px),screen and (orientation: portrait) {
    .lessonProgress{
        display: none;
    }
    .chaterRaam{
        margin-top: 10px;
        flex-direction: column;
        align-items: center;
    }
    .lesson-img{
        max-width: 220px;
        max-height: 220px;
    }
    .chapter-list{
        font-size: 90%;
        padding-inline-start: 30px!important;
    }
    .lesson-txt{
        width: 95%;
    }
    .chapter-description {
        font-size: 100%;
        margin-left: 20px;
    }
}
