
#criticsInfos {
    display: flex;
    max-width: 60%;
    gap: 20px;
    margin-bottom: 50px;
}

#criticsInfosImage {
    display: flex;
    flex-direction: column;

    & img {
        width: 265px;
        height: 360px;
        object-fit: cover;
        border-radius: 5px;
    }

    & button {
        background: none;
        border: none;
        width: fit-content;
        font-size: 150%;
    }

    & #bookMark {
        margin-top: 15px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    & #bookMark small {
        font-size: 85%;
        font-weight: 200;
    }

    & #musicCriticsInfos {
        height: 265px;
    }
}

#criticsInfosText {
    display: flex;
    flex-direction: column;
    
    & i {
        margin-bottom: 20px;
        font-size: 90%;
        font-weight: 300;
    }

    & h1 {
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    & h2 {
        font-weight: 200;
        letter-spacing: 0.5px;
    }
}



#scoreContainer {
    margin-top: 25px;
    display: flex;
    justify-content: flex-start;
    gap: 35px;
}

#oneCriticScore {
    display: flex;
    flex-direction: column;
    align-items: center;

    & strong {
        margin-bottom: 7.5px;
        font-size: 125%;
        font-weight: 500;
    }
}

#oneCriticScoreToken {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    color: black;
    font-size: 125%;
    font-weight: 800;
    border-radius: 50%;

    & hr {
        border: none;
        width: 25%;
        height: 2px;
        background: black;
    }
}

#oneCriticScoreToken.goodScore {
    background: var(--green);
}

#oneCriticScoreToken.averageScore {
    background: var(--lightOrange);
}

#oneCriticScoreToken.badScore {
    background: var(--red);
}

#oneCriticScoreToken.noScore {
    background: var(--lightGrey);
}



#criticsInfosTextPara {
    margin-top: 25px;
    line-height: 1.4;
    font-weight: 200;
    overflow: hidden;

    & strong {
        font-weight: 500;
    }

    & p {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        line-clamp: 3;
    }
}



#moreInfosLink {
    align-self: flex-end;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
    padding: 4px 8px;
    border-radius: 5px;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    transition: all 0.1s;
}

#moreInfosLink .fa-plus {
    margin-bottom: 0;
    font-weight: 900;
    font-size: 175%;
}

#moreInfosLink:hover {
    background: var(--orange);
    color: black;
}



#criticsContainer {
    display: flex;
    flex-direction: column;
}

#criticsContainer h3:not(.openModal *) {
    font-size: 150%;
    font-weight: 500;
}

#criticsContainer hr:first-of-type {
    width: 60%;
    margin: 7.5px 0 25px 0;
    color: var(--white);
}

#criticsContainer hr {
    margin: 25px 0 50px;
    width: 20%;
    color: var(--white);
}



#oneCriticContainer {
    display: flex;
}

#criticVideo {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;

    & .youtube_player {
        width: 100%;
    }

    & .youtube_player iframe {
        aspect-ratio: 16 / 9;
        width: 100%;
    }
}

#likeDislikeButtons {
    margin-top: 25px;
}

/* > Like/Dislike buttons */
.likeBtn, .dislikeBtn {
    width: 75px;
    height: 40px;
    font-size: 150%;
    font-weight: 900;
    border: none;
}

.likeBtn {
    border-right: solid 1px black;
    border-radius: 25px 0 0 25px;
}

.dislikeBtn {
    border-left: solid 1px black;
    border-radius: 0 25px 25px 0;
}


/* > Like/Dislike bars */
.likdisBarContainer {
    margin-top: 15px;
    margin-bottom: 35px;
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    position: relative;

    & small {
        position: absolute;
        font-size: 100%;
        font-weight: 200;
    }
}

.likdisBarContainer small:first-child {
    top: -7.5px;
    left: -57.5px;
}

.likdisBarContainer small:nth-of-type(2) {
    top: 12.5px;
    font-size: 90%;
    font-weight: 300;
}

.likdisBarContainer small:last-of-type {
    top: -7.5px;
    right: -80px;
}

.dislikeBar {
    width: 100%;
    height: 4px;
    background: var(--red);
}

.likeBar {
    height: 4px;
    background: var(--deepGreen);
}

.emptyBar {
    width: 100%;
    height: 4px;
    background: var(--white);
}

#criticVideoInfos {
    margin-left: 20px;

    & h3:not(.openModal *) {
        font-size: 150%;
    }
    
    & h3 a {
        text-decoration: none;
        color: var(--white);
    }
    
    & h3 a:hover {
        text-decoration: underline;
    }
    
    & span {
        font-weight: 300;
    }

    & .portraitLink {
        display: block;
        width: 75px;
        height: 75px;
        border-radius: 50%;
        overflow: hidden;
        margin-left: 25px;
        flex-shrink: 0;
    }

    & .portraitLink img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    & #criticVideoName {
        display: flex;
        align-items: center;
    }

    & blockquote {
        margin-top: 15px;
        margin-bottom: 35px;
        font-size: 115%;
        font-weight: 500;
    }

    & h4 {
        font-size: 150%;
        font-weight: 500;
        margin-bottom: 5px;
    }
    
    .criticVideoInfosPlus {
        margin-top: 35px;
        display: flex;
        flex-direction: column;
        font-weight: 200;
        font-size: 110%;
        line-height: 1.75;

        & strong {
            font-weight: 500;
        }
    }
}



#commentsContainer {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

#criticComments {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;

    & form {
        width: 100%;
    }
}

.addCommentField {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.addComment {
    padding: 0.66em 0.66em;
    border: none;
    border-radius: 5px;
    resize: none;
    font-family: "Inter";
}

.addComment::placeholder {
    color: var(--black);
    font-weight: 300;
    font-size: 90%;
    font-family: "Inter";
}

.addComment:focus::placeholder {
    color: transparent;
}

/* .commentPlus {
    position: absolute;
    color: black;
    top: 1px;
    left: 85px;
} */

/* .addComment:focus + .commentPlus {
    display: none;
} */

.add-comment-submit {
    margin-top: 10px;
    padding: 0.1em 0.2em;
    cursor: pointer;
    align-self: flex-end;
}


/* > Comment display */
.commentDisplay {
    width: 100%;
    height: 110px;
    border: none;
    border-radius: 5px;
    background: var(--white);
    color: var(--black);
    display: flex;
    position: relative;
    /* gap: 15px; */

    & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.ppLink {
    width: 56px;
    height: 56px;
    border: solid 1px var(--black);
    border-radius: 50%;
    margin: 0.35em 0.75em 0 0.75em;
    display: block;
    overflow: hidden;
}

.mainComment {
    width: 80%;
    margin: 0.75em 0 0.62em 0;
    overflow: hidden;

    & a {
        color: var(--black);
        text-decoration: none;
    }

    & span {
        font-weight: 300;
    }

    & p {
        margin-top: 0.5em;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        line-clamp: 3;
        overflow-wrap: break-word;
    }
}

.mainComment a:hover {
    text-decoration: underline;
}

.commentDisplay.expanded, #vipComment .commentDisplay.expanded {
    height: auto;
}

.commentDisplay.expanded p, #vipComment .commentDisplay.expanded p {
    -webkit-line-clamp: initial;
    line-clamp: initial;
}

#vipComment {
    flex-grow: 1;

    & p {
        display: -webkit-box;
        -webkit-line-clamp: 9;
        -webkit-box-orient: vertical;
        line-clamp: 9;
        word-break: break-word;
    }
}

#vipComment .commentDisplay {
    height: 348.5px;
    display: flex;
    flex-direction: column;
}

#vipCommentTitle {
    display: flex;
    justify-content: center;
    margin-top: 1em;
    margin-bottom: 0.5em;
    gap: 10px;
    font-size: 125%;
}

#vipCommentContent {
    display: flex;
}

#vipCommentContent .mainComment {
    width: 75%;
}

#vipCommentUserScore {
    margin-top: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;

    & h4 {
        font-size: 120%;
        font-weight: 300;
    }
}

#vipCommentUserScore .fa-star{
    font-size: 133%;
}



.delComBtn, .vipBtn, .moreBtn {
    width: 25px;
    height: 28px;
    position: absolute;
}

.delComBtn, .vipBtn {
    top: 3px;
}

.delComBtn {
    right: 7.5px;
}

.vipBtn {
    right: 37.5px;
}

.delComIcon, .vipIcon {
    font-size: 125%;
}

.vipLink {
    height: fit-content;
}

.moreBtn {
    bottom: 0.5em;
    right: 7.5px;
    border: none;
    border-radius: 2.5px;
    background: #F2F2F2;
    transition: background 0.1s ease-in;
}

.moreBtn:hover {
    background: #aaaaaa;
}

.moreIcon {
    font-size: 150%;
}



.shareBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
    width: 75px;
    height: 40px;
    font-size: 150%;
    border: none;
    border-radius: 25px;
}

.shareCopyIcon {
    font-size: 60%;
    /* font-style: normal; */
}

.shareCopyIcon::before {
    content: 'Copied !'
}





@media screen and (max-width: 1650px) {
    
    #vipComment p {
        -webkit-line-clamp: 8;  
        line-clamp: 8;
    }

    #vipCommentContent .mainComment {
        width: 65%;
    }
}


@media screen and (max-width: 1150px) {
    
    #criticsPage {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #criticsInfos {
        max-width: 66%;
    }

    #criticsContainer {
        width: 85%;
    }

    #oneCriticContainer {
        flex-wrap: wrap;
        justify-content: center;
    }

    #criticVideo {
        width: 85%;
    }

    #criticVideoInfos {
        width: 85%;
        margin-left: 0;
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;

        & blockquote {
            text-align: center;
            margin-bottom: 30px;
        }

        & .criticVideoInfosPlus {
            margin-top: 30px;
            align-items: center;
        }
    }

    #commentsContainer {
        flex-wrap: wrap;
        flex-direction: column-reverse;
        align-items: center;
    }

    #vipComment {
        width: 66%;
    }

    #criticComments {
        width: 66%;
    }

    .mainComment {
        width: 75%;
    }

    #vipCommentContent .mainComment {
        width: 80%;
    }

    .nextLink {
        align-self: center;
    }
}

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

    #criticsInfos {
        max-width: 85%;
    }

    #criticVideo {
        width: 100%;
    }

    #criticVideoInfos {
        width: 100%;
    }

    #vipComment {
        width: 80%;
    }

    #criticComments {
        width: 80%;
    }

    #vipCommentContent .mainComment {
        width: 75%;
    }
}

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

    #criticsInfos {
        max-width: 100%;
    }

    #criticsContainer {
        width: 100%;
    }

    #vipCommentContent .mainComment {
        width: 75%;
    }
}

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

    #vipComment {
        width: 100%;
    }

    #criticComments {
        width: 100%;
    }

    #criticComments .vipBtn {
        left: 35px;
        top: 75px;
    }

    #criticComments .delComBtn {
        left: 5px;
        top: 75px;
    }

    .mainComment {
        width: 66%;
    }

    #criticsInfos {
        flex-wrap: wrap;
        justify-content: center;
    }

    #criticsInfosText {
        margin-top: 25px;
        align-items: center;

        & h1 {
            text-align: center;
        }
    }

    #criticsInfosTextPara {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #criticsInfosImage {
        align-items: center;
    }
}

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

    #vipComment p {
        -webkit-line-clamp: 7;  
        line-clamp: 7;
    }

    #vipCommentContent .mainComment {
        width: 66%;
    }

    #vipCommentContent .vipBtn {
        right: 8px;
        top: 35px;
    }

    #criticsInfosText {
        margin-top: 25px;
        align-items: center;

        & h1 {
            text-align: center;
        }
    }
}