/**
 * Blog comments - collapsed reply threads.
 *
 * Paired with assets/js/comment-replies.js, which adds .agntix-reply-hidden to
 * the replies past the first two and injects the "See More Reply" button.
 */

.postbox__comment li.agntix-reply-hidden {
    display: none;
}

.postbox__comment .agntix-more-replies {
    font-weight: 600;
    font-size: 13px;
    line-height: 1;
    padding: 11px 20px;
    margin-top: 30px;
    margin-left: 100px;
    border-radius: 40px;
    display: inline-block;
    text-transform: uppercase;
    background-color: transparent;
    color: var(--tp-common-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease-in-out;
}

.postbox__comment .agntix-more-replies:hover {
    color: var(--tp-common-black);
    border-color: var(--tp-common-green-light);
    background-color: var(--tp-common-green-light);
}

.agntix-light .postbox__comment .agntix-more-replies {
    color: var(--tp-common-black);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.agntix-light .postbox__comment .agntix-more-replies:hover {
    color: var(--tp-common-white);
    border-color: var(--tp-common-red-3);
    background-color: var(--tp-common-red-3);
}

@media screen and (max-width: 800px) {
    .postbox__comment .agntix-more-replies {
        margin-left: 0;
    }
}
