.artencode_wrapper{
    display: flex;
    flex-direction: row;
}

.artencode_col{
    display: flex;
    margin: 0 10px;
    flex-direction: column;
    width: 50%;
}

.comment_wrapper{
    display: flex;
    flex-direction: column;
    background-image: url("images/veemaa_quotation_marks.svg");
    background-repeat: no-repeat;
    background-size: 10%;
    background-position: 99% 5%;
    position: relative;
    border: grey solid 1px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.1);
    background-color: white;
    margin-bottom: 10px;
}

.artencode_comment_inner_wrapper{
    display: block;
}

.commenter_wrapper{
    display: flex;
    flex-direction: row;
    padding: 10px;
    /*background-color: brown;*/
    align-items:center;
}

.comment{
    margin-left: 10px;
    /*background-color: antiquewhite;*/
    flex: 1;
}

.comment p{
    font-family: "Faruma";
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    direction: rtl;
    color: #111111 !important;
    letter-spacing: 2px;
    line-height: 30px;
}

.commenter_name{
    font-family: "Faruma";
    color: grey;
    text-align: left;
}

.avatar{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: aliceblue;
    background-size: cover;
    border: grey solid 1px;
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 360px) and (max-width: 1024px) {
    .artencode_wrapper{
        flex-direction: column;
    }

    .artencode_col{
        width: 100%;
    }
}