.bg-forum {
    background: url('../images/bg/bg-purple-top.png') no-repeat bottom center;
    background-size: cover;
    background-color: black;
}
.bg-forum .bg-transparent {
    border: none !important;
}

.card-thread {
    background: #1E1E1E;
    color: #ffff;
    border-radius: 12px;
}
.card-thread .btn-vote-comment-thread,
.card-comment .btn-vote-comment-thread {
    cursor: pointer;
}
.card-thread .bi-arrow-up-circle-fill,
.card-thread .bi-arrow-down-circle-fill,
.card-comment .bi-arrow-up-circle-fill,
.card-comment .bi-arrow-down-circle-fill {
    background: linear-gradient(90deg, #FFD154 0%, #F2EAC5 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    color: transparent;
    fill: transparent;
}
.card-thread .post-content {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-thread .share-thread {
    background: #1E1E1E;
    border-radius: 12px;
    padding: 5px 15px;
    filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.5));
    position: absolute !important;
    top: calc(100% + 5px);
    left: 0;
    z-index: 100;
    display: none;
}
.card-thread .share-thread.active {
    display: block;
}
.card-thread .share-thread a {
    color: #ffff;
}
.card-thread .share-thread a:hover {
    color: #FFD154;
}

.card-thread .thread-url,
.card-comment .thread-url,
.container-thread-recommended .thread-url {
    color: white;
    transition: all .2s ease-in-out;
}
.card-thread .thread-url:hover,
.card-comment .thread-url:hover,
.container-thread-recommended .thread-url:hover {
    opacity: 0.8;
}
.container-thread-recommended .profile-comments-img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    object-fit: cover;
}
.container-thread-recommended .thread-description {
    opacity: 0.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-comment-outer .card-comment-box {
    display: none;
}
.card-comment-outer .card-comment-box.active {
    display: block;
}
.card-comment-outer .card-comment-box .profile-comments-img {
    width: 40px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
}
