.eachReview{
    box-shadow: 0 0 0.94vmin 0.94vmin rgba(0.2,0.2,0.2,0.2);
    text-align: left;
    margin: 0;
    padding: 1vmin 2vmin;
}
.shareReview{
    background: #00ff00;
}
.delReview{
    background: #ff0000;
}
.drawingCanvas{
    box-shadow: 0 0 0.2vmin 0.2vmin rgba(0.2,0.2,0.2,0.2);

    top: 0;
    left: 30vmin;
    touch-action: none;
}
.malbertDiv{
    width: 50vmin;
    height: auto;
    top: 0;

    position: relative;
    margin: 0 auto;
}
.malbertImg{
    width: 100%;
}
.reviewNameDate{
    font-weight: bold;
}
.reviewLikesAndSource{
    display: flex;
    flex-direction: row;
}
.reviewLikes{
    display: flex;
    flex-direction: row;
    align-items:center;
    height: 6vmin;
}
.source{
    text-align: right;
    flex: auto;
}
.like:hover .likeImg{
    filter: drop-shadow(0 0 0.4vmin #ffff);
}
.like:hover{
    background-color: var(--backgroundColor);
    filter: drop-shadow(0 0 0.4vmin #ffff);
    box-shadow: 0 0 1vmin 1vmin #cfca;
    border-radius: 1vmin;
}
.like{
    width: auto;
    height: 6vmin;
    cursor:pointer;
    flex: auto;
    transition: 0.2s;
}
.likeImg {
    width: 5vmin;
    height: 5vmin;
}
.likesCount{
    flex: auto;
}
.disLike:hover .likeImg{
    filter: drop-shadow(0 0 0.4vmin #ffff);
}
.disLike:hover{
    background-color: var(--backgroundColor);
    filter: drop-shadow(0 0 0.4vmin #ffff);
    box-shadow: 0 0 1vmin 1vmin #cfca;
    border-radius: 1vmin;
}
.disLike{
    width: auto;
    height: 6vmin;
    cursor:pointer;
}
.fullWidth{
    width: 74vmin;
}