#artwork_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 10rem;
}

#mobile_artwork_container {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 10rem;
}

#imgs_container {
    width: 65%;
    display: flex;
}

#bandeau_img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    height: 315px;
}

#prev_img {
    width: 217px;
    height: 293px;
    border-radius: 25px;
    position: absolute;
    left: 23%;
    top: 73px;
    border: var(--main-color) solid 2px;
}

#info_container,
#mobile_info_container {
    width: 65%;
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;

    flex-direction: row;
    column-gap: 2rem;
}

#info_container img,
#mobile_info_container img {
    width: 750px;
    height: 450px;
}

#info_container>div,
#mobile_info_container>div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#desc_container,
#mobile_desc_container {
    width: 65%;
    display: flex;
    /*! justify-content: space-between; */
    margin-top: 2rem;
    flex-direction: column;
}

#desc_container>p:not(:first-child) {
    text-transform: capitalize;
}

#desc_container>p:first-child{
    white-space: break-spaces;
    margin-bottom: 2rem;
    margin-bottom: 1rem;
}

#user_tools_container,
#mobile_user_tools_container {
    width: 65%;
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
}

#chaps_container {
    margin-top: 5rem;
    width: 40%;
}

#filter p {
    text-align: end;
    cursor: pointer;
}

#chap_scroll,
#mobile_chap_scroll {
    display: block ruby;
    overflow: auto;
}

#chaps_list,
#mobile_chaps_list {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.chap_row {
    width: 100%;
    height: 40px;
    background-color: var(--main-color);
    color: white;
    align-items: center;
    display: flex;
    border-bottom: 1px solid white;
    cursor: pointer;
    text-decoration: none;
}

.readed {
    background-color: var(--disabled-main-color);
}

#vues_container,
#mobile_vues_container {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 0.45rem;
}

#vues_container img,
#mobile_vues_container img {
    filter: var(--main-disables-color-filter);
    width: 25px;
    height: 25px;
}

#goBackBtn {
    filter: var(--main-color-filter);
    width: 50px;
    margin-top: 2rem;
    margin-left: 2rem;
    cursor: pointer;
}


#chap_nav_tools,
#mobile_chap_nav_tools {
    display: flex;
    justify-content: space-between;
}

#chap_nav_tools,
#mobile_chap_nav_tools {
    margin-bottom: 2rem;
}

#chap_nav_tools>div,
#mobile_chap_nav_tools>div {
    background-color: var(--main-color);
    color: white;
    border-radius: 10px;
    padding: 0rem 0.5rem;
}

#mobile_chap_nav_tools>div {
    cursor: pointer;
}

#chap_nav_tools>div:not(.notDisplaed),
#mobile_chap_nav_tools>div:not(.notDisplaed) {
    display: flex;
    align-items: center;
}

#chap_nav_tools>div:last-child,
#chap_nav_tools>div:first-child {
    font-size: x-large;
}

#artwork_mobile_nav {
    display: none;
}

#mobile_chap_nav_go_right_mobile p,
#mobile_chap_nav_go_left_mobile p {
    width: 2rem;
    text-align: center;
}

.taps {
    background-color: var(--main-color);
    border-radius: 25px;
    width: fit-content;
    padding: 0px 8px;
    color: white;
    text-transform: capitalize;
}

#mobile_chaps_container {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
    width: 90%;
}

#filter_last,
#filter_first,
#chap_nav_go_right,
#chap_nav_go_left,
#filter_last_mobile,
#filter_first_mobile,
#chap_nav_go_right_mobile,
#chap_nav_go_left_mobile {
    cursor: pointer;
}


@media only screen and (max-width: 1700px) {
    #prev_img {
        width: 217px;
        height: 293px;
    }
}

@media only screen and (max-width: 1500px) {
    #prev_img {
        width: 183px;
        height: 241px;
    }

    #bandeau_img {
        height: 279px;
    }
}

@media only screen and (max-width: 1266px) {
    #prev_img {
        width: 176px;
        height: 234px;
    }
}

@media only screen and (max-width: 1084px) {
    #prev_img {
        width: 176px;
        height: 234px;
        left: 20%;
    }

    #imgs_container,
    #info_container,
    #desc_container,
    #user_tools_container {
        width: 75%;
    }
}

@media only screen and (max-width: 992px) {

    #prev_img {
        width: 150px;
        height: 204px;
        left: 20%;
    }
}

@media only screen and (max-width: 768px) {

    #mobile_artwork_info_desc_wrap {
        flex-direction: column;
        width: 90%;
    }

    #mobile_oeuvre_titre {
        width: 100%;
        margin-top: 2rem;
    }

    #mobile_desc_container {
        row-gap: 1rem;
        width: 100%;
    }

    #goBackBtn {
        margin-left: 0rem;
    }


    #prev_img,
    #info_container,
    #desc_container,
    #chaps_container,
    #artwork_container>#comments_container,
    #mobile_chaps_container {
        display: none;
    }

    #mobile_artwork_container {
        display: flex;
        order: 4;
        margin-bottom: 2rem;
    }

    #imgs_container {
        width: 100%;
    }

    #goBackBtnWrap {
        position: absolute;
    }

    #info_container {
        margin-top: 2rem;
    }




    #imgs_container {
        order: 1;
    }

    #info_container {
        order: 4;
    }

    #artwork_mobile_nav {
        order: 3;
        display: flex;
        justify-content: space-between;
        width: 100%;
        margin-top: 1rem;
    }

    #artwork_mobile_nav>p {
        padding: 0.5rem;
        width: 100%;
        text-align: center;
        background-color: #a6a5a5;
        color: gainsboro;
        cursor: pointer;
        text-transform: lowercase;
    }

    #artwork_mobile_nav>p:nth-child(n+1) {
        border-left: 1px solid #bbb;
    }

    #artwork_mobile_nav .active {
        background-color: var(--main-color);
        color: white;
    }

    #user_tools_container {
        order: 2;
    }

    #desc_container {
        order: 5;
    }

    #chaps_container {
        order: 6;
    }

    #artwork_container>#comments_container {
        margin-top: 2rem;
        width: 90%;
        margin-bottom: 2rem;
        order: 7;
    }

    #artwork_container>#comments_container #smilyes_list_container {
        width: 90%;
    }

    #artwork_container>#comments_container .com_rep_container {
        display: flex;
        flex-direction: column;
        row-gap: 0.5rem;
    }

    /*#mobile_artwork_container>*/

}