.invalid-feedback{
    color : red;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}
.d-none {
    display: none !important;
}
.cursor-wait, .cursor-wait * {
    cursor: wait !important;
}
button {
    font-family: Inter, sans-serig;
}
.admin-header {
    background-color: white;
    display: flex;
    padding: 5px 10px;
}
.admin-header-item {
    padding: 0 5px;
}
.admin-header-item:not(:last-child) {
    border-right: 1px solid black;
}
.admin-header a {
    text-decoration: underline;
}
.admin-header a:hover {
    text-decoration: none;
}
.article__image_small {
    max-width: 50%;
}
.admin-only-post {
    margin: 0;
    color: red;
    font-size: 150%;
    text-align: center;
}
.screens-slider-two {
    display: flex;
    gap: 12px;
}

.summary-sites-wrapper {
    display: flex;
}
.summary-sites-item {

}


.game-platforms-wrapper {
}
.game-platforms-item {
    display: inline-block;
    width: 40px;
    height: 40px;
}
.game-platforms-item img{
    object-fit: contain;
    width: 100%;
}


.pagination {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}
.pagination .pagination-number {
    padding: 12px 17px;
    font-size: 15px;
    color: #e9e9ff;
    background-color: #161622;
    transition: all .3s;
    border-radius: 14px;
    border: 2px solid rgba(197,193,242,.1);
}
.pagination .active .pagination-number {
    background-color: rgb(119,44,251);
}
.pagination .pagination-number:hover {
    border-color: rgba(197, 193, 242, 0.273);
}
.pagination .disabled .pagination-side {
    color: #e9e9ffb0;
}
.pagination .pagination-side {
    color: #e9e9ff;
}
.pagination a.pagination-side:hover {
    color: #6842fe;
}
.pagination li:first-child {
    padding-right: 10px;
}
.pagination li:last-child {
    padding-left: 10px;
}
@media screen and (max-width: 800px) {
    .pagination {
        gap: 8px;
    }
    .pagination .pagination-number {
        padding: 7px 12px;
        font-size: 14px;
    }
    .pagination li:first-child {
        padding-right: 7px;
    }
    .pagination li:last-child {
        padding-left: 7px;
    }
    .pagination .pagination-side {
        font-size: 14px;
    }
    .pagination .pagination-side span {
        display: none;
    }
}

/* COMMENTs */
#comments-block.loading:after {
    content: '';
    background-image: url('/images/icons/loading.svg'); /* Path to your spinner gif */
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50px 50px; /* Adjust size as needed */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Dim background */
    z-index: 10; /* Ensure it sits above content */
    display: flex;
    justify-content: center;
    align-items: center;
}

.comment-block:not(:last-child) {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(197,193,242,.1);
}

.comment-item {
    padding-bottom: 20px;
    display: flex;
    gap: 10px;
    position: relative;
}

.comment-item .cb-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    flex-shrink: 0;
}

.cb-has-replies-vertical {
    position: absolute;
    width: 40px;
    border-left: 1px solid rgba(197,193,242,.1);
    height: 100%;
    top: 1px;
    left: 25px;
    z-index: -1;
}

.cb-is-reply-corner {
    position: absolute;
    left: -35px; /* (50/2)+10 */
    top: -1px;
    height: 25px;
    width: 35px;
    border-left: 1px solid rgba(197,193,242,.1);
    border-bottom: 1px solid rgba(197,193,242,.1);
    border-radius: 3px;
    z-index: -1;
}

.cb-has-other-reply-on-same-level-vertical {
    position: absolute;
    left: -35px; /* (50/2)+10 */
    top: 0px;
    height: 100%;
    border-left: 1px solid rgba(197,193,242,.1);
}

.comment-item .cb-avatar img {
    overflow: hidden;
    width: 100%;
}

.comment-item .cb-top {
    display: flex;
    margin-bottom: 5px;
    gap: 8px;
}

.comment-item .cb-name {
    color: white;
    font-weight: bold;
    margin-bottom: 5px;
}

.comment-item .cb-date {
    font-size: 90%;
    margin-bottom: 5px;   
}

.comment-item .cb-text {
    color: white;
    margin-bottom: 5px;
}

.comment-item .cb-text p {
    white-space: pre-line;
    margin-top: 0;
}

.comment-item .cb-actions {
    display: flex;
    gap: 8px;
}

.comment-item .cb-actions button {
    background: none;
    color: #6e6b86;
}

.comment-item .cb-like {
    display: flex;
    gap: 2px;
}

.cb-like.liked svg path{
    stroke: #6842fe
}

.cb-like.liked .cb-likes-count{
    color: #6842fe
}

.comment-reply {
    margin-left: 60px;
}

.cb-see-more-replies {
    background: none;
    color: #6e6b86;
    position: relative;
}

.cb-see-more-replies .corner {
    position: absolute;
    top: 0px;
    left: -35px;
    border-left: 1px solid rgba(197,193,242,.1);
    border-bottom: 1px solid rgba(197,193,242,.1);
    width: 34px;
    height: 11px;
    border-radius: 3px;
    z-index: -1;
}

.reply-form-block {
    margin-top: 15px;
}