#projectHeader>div{
    display: flex;
    align-items: center;
}

#backButton{
    cursor: pointer;
    width: fit-content;
}

#backButton svg{
    fill: transparent;
    stroke: var(--makeon-color);
    stroke-linecap: round;
}

#projectName{
    width: fit-content !important;
    max-width: 100%;
    color: var(--color-black);
    font-weight: bold;
    font-size: 26px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}

#projectRating{
    color: var(--color-black);
    font-size: 26px;
    font-weight: 600;
    border: 1px solid var(--makeon-color);
    border-radius: 10px;
}

#jenres{
    word-break: break-word;
}

#projectBody>div#projectImage{
    text-align: center;
}

#projectBody>div#projectImage img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: contain;
    background-color: var(--color-gray-light);
    border-radius: 10px;
}

#projectBody>div#projectImage button{
    width: 100px;
}

#projectSettingsButton{
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

#notificationsButton{
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}



#counters{
    align-items: center;
    justify-content: end;
    color: var(--color-gray);
}

#counters svg{
    fill: var(--color-gray-light);
    stroke: var(--color-gray-light);
}

#counters>span{
    min-width: 83px;
}



.tags div{
    font-size: 14px;
    display: inline-block;
    background-color: gray;
    border-radius: 5px;
    padding: 0 10px;
    margin: 2px 4px;
    color: var(--background-color);
    font-weight: 600;
}





#playLink{
    text-decoration: none;
    background-color: var(--makeon-color);
    color: var(--color-white);
    border-radius: 10px;
    display: block;
    width: fit-content;
    margin: 10px auto 0 auto;
}


#projectBody .authorAvatar{
    border-radius: 50%;
    width: 28px;
    height: 28px;
    background-color: var(--background-color);
}

#projectBody .authorAvatarBorder{
    position: absolute;
    height: calc(100% + 2px);
    top: -1px;
    right: 8.5px;
}

#authors{
    border-top: 2px solid var(--makeon-color-30);
    padding-top: .5rem;
    max-height: 270px;
    overflow-y: auto;
}

#authors>.author{
    color: var(--color-black);
    text-decoration: none;
    position: relative;
    margin-bottom: 2px;
}

#authors>.authorJob{
    color: var(--color-gray-disable);
    font-size: 13px;
}

#authors>.author:nth-child(n+2){
    margin-top: 1rem;
}



#comments .author{
    position: relative;
}

#comments img.avatar{
    width: 100%;
    background-color: var(--background-color);
    border-radius: 50%;
    aspect-ratio: 1/1;
}

#comments .commentary{
    box-shadow: 3px 5px 5px 1px var(--shadow-color-transparent);
    border-radius: 10px;
    word-break: break-word;
    position: relative;
}

#comments .commentary>.deleteSign{
    position: absolute;
    right: 10px;
    top: 0px;
    color: var(--color-gray);
    cursor: pointer;
}

#comments .commentary>div>div{
    white-space: pre-line;
}

#comments .commentLikesCount{
    cursor: pointer;
    color: var(--color-gray);
    padding: 3px 0px;
}

#comments .commentLikesCount>svg{
    fill: var(--color-gray-light);
    stroke: var(--color-gray-light);
}

#comments .commentLikesCount.set>svg{
    fill: var(--makeon-color-30) !important;
    stroke: var(--makeon-color-30) !important;
}

div.spoiler{
    filter: blur(5px);
    user-select: none;
    cursor: pointer;
}

svg.likeSet{
    fill: var(--makeon-color-30) !important;
    stroke: var(--makeon-color-30) !important;
}

.commentInputContainer{
    box-shadow: 3px 5px 5px 1px var(--shadow-color-transparent);
    border-radius: 10px;
}

.commentInput{
    resize: none;
    border: none;
    width: 100%;
    height: 100px;
    padding: 1rem;
    background-color: var(--background-color);
}

.commentInput:focus{
    outline: none;
}

.commentSend{
    width: fit-content;
    font-weight: 600;
    border:none;
    padding: 3px 10px;
    cursor: pointer;
    text-decoration: none;
    background-color: var(--makeon-color);
    color: var(--color-white);
    border-radius: 10px;
}

#commentsSectionPicker>div.chapters>div:first-child{
    margin-left: 0;
}

#commentsSectionPicker>div.chapters>div:last-child{
    margin-right: 0;
}

#commentsSectionPicker>div.chapters>div{
    display: inline-block;
    margin: 0 .25rem;
    background-color: var(--makeon-color-30);
    color: var(--color-white);
    border-radius: 10px;
    padding: 3px 5px;
    width: 28px;
    height: 28px;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
}

#commentsSectionPicker>div.reviews>div{
    display: inline-block;
    margin: 0 .25rem;
    background-color: var(--color-orange-light);
    color: var(--color-gray);
    border-radius: 10px;
    padding: 3px 5px;
    height: 28px;
    text-align: center;
    cursor: pointer;
}

#commentsSectionPicker>div.chapters>div.picked{
    background-color: var(--makeon-color);
}

#commentsSectionPicker>div.reviews>div.picked{
    background-color: var(--makeon-color);
    color: var(--color-white)
}

#commentsSectionPicker>div.chapters>span{
    display: inline-block;
    width: 28px;
    text-align: center;
    font-weight: bold;
}



#chaptersRating .star {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 0 .25rem;
}

#chaptersRating .title{
    color: var(--color-gray);
}

#chaptersRating .ratingNumber{
    color: var(--color-gray);
    display: inline-block;
    width: 50px;
    font-size: 30px;
    vertical-align: middle;
}

svg{
    stroke-linecap: round;
}

#chaptersRating .chapterTitle>span{
    background-color: var(--color-gray-e9);
    border-radius: 10px;
    padding: 3px 5px;
}

#chaptersCountContainer{
    color: var(--color-gray);
}

.underComment>div{
    width: fit-content;
    display: inline-block;
}

.underComment>*{
    color: var(--color-gray);
}

.underComment>.answersCount{
    background-color: var(--color-gray-e9);
    border-radius: 10px;
    padding: 3px 5px;
    user-select: none;
}

.loadMore>span{
    background-color: var(--color-gray-e9);
    border-radius: 10px;
    padding: 3px 5px;
    user-select: none;
    width: fit-content;
}

.answersSection>div>div:first-child{
    border-left: 3px solid var(--color-gray-disable);
}

#comments .author{
    text-decoration: none;
    color: var(--color-black);
}

#commentDelete>div{
    max-width: 700px;
}

.confirmButton{
    background-color: var(--makeon-color);
    border: 1px solid var(--makeon-color);
    border-radius: 30px;
    color: var(--color-white);
    font-size: 18px;
    font-weight: bold;
    padding: 6px 10px;
    box-shadow: 5px 5px 10px -3px var(--shadow-color);
    width: fit-content;
}

.declineButton{
    background-color: var(--color-gray-light);
    border: 1px solid var(--color-gray-light);
    border-radius: 30px;
    color: var(--color-black);
    font-size: 18px;
    font-weight: bold;
    padding: 6px 10px;
    box-shadow: 5px 5px 10px -3px var(--shadow-color);
    width: fit-content;
}

.avatarBorder{
    height: calc(100% + 6px);
    position: absolute;
    top: -3px;
    left: 49%;
    transform: translateX(-50%);
}