.fa-star, .fa-star-o, .fa-star-half-stroke, .fa-star-half-o {
    font-size: 1rem;
    line-height: initial;
    background: none;
}

.fa-star::before {
    font-size: 1rem;
    line-height: initial;
}

#ratingModal .fa-star,
#ratingModal .fa-star-o,
#ratingModal .fa-star-half-stroke,
#ratingModal .fa-star-half-o {
    color: gray;
    cursor: pointer;
}

#ratingModal .fa-star::before,
#ratingModal .fa-star-o::before,
#ratingModal .fa-star-half-stroke::before, 
#ratingModal .fa-star-half-o::before {
    font-size: 2rem;
}

#sidebar .fa-star::before {
    color: white;
    font-size: 1.875rem;
    line-height: 2.25rem;
}

#ratingData .fa-star,
#ratingData .fa-star::before,
#ratingData .fa-star-o,
#ratingData .fa-star-o::before,
#ratingData .fa-star-half-stroke,
#ratingData .fa-star-half-stroke::before,
#ratingData .fa-star-half-o,
#ratingData .fa-star-half-o::before {
    color: var(--color-primary);
    opacity: 1;
    font-size: 1rem;
    line-height: 1rem;
}

.line-clamp-2 {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

#btmNavStar::before {
    font-size: 1rem;
    line-height: 1rem;
}

#profilePic {
    border-radius: 50%;
    height: 150px;
    width: 150px;
}
.profileImg {
    display: flex;
    position: relative;
    width: fit-content;
    height: fit-content;
}
.profileImg i {
    display: none;
    position: absolute;
    background-color: rgba(44, 44, 45, 0.5);
    height: 150px;
    width: 150px;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    border-radius: 50%;
}
.profileImg:hover i {
    display: flex;
    cursor: pointer;
}

@keyframes jump {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes shake {
    0%, 100% {
      transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
      transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
      transform: translateX(10px);
    }
}
  
.error-shake {
    animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

@media screen and (max-width: 500px) {

    .sidebar {
        display: none;
    }
}