/*------------------------------------*\
    COMMENTS
\*------------------------------------*/

.post-comments {
    display: flex;
    margin: 0 auto;
    justify-content: center;
}

.comments-container {
    border-top: 1px solid #DDD;
    width: 90%;
    margin: 0 auto;
    color: #707070;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 3rem 0;
}

@media (max-width: 900px) {
    .comments-container {
        width: 90%;
        padding: 0 1rem 2rem;
    }
}

@media (min-width: 1200px) {
    .comments-container {
        width: 60%;
    }
}



.comment-list {
    padding: 0;
    border-bottom: 1px solid #DDD;
    padding-bottom: 3rem;
}

.comment {
    border-top: 1px solid #DDD;
    padding-top: 2rem;
}

.comment:first-child, .comment .children .comment {
    border: none;
}

#comments p {
    font-size: 1.1rem;
}

.comment-list .comment-body {
    background: #EEE;
    border-radius: 5px;
    font-size: 1.1rem;
    padding: 1.5rem;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.comment-list .children .comment-body{
    background: #F9F9F9;
    border-radius: 5px;
    font-size: 1.1rem;
    padding: 1.5rem;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.comment-list .children:last-child{
    margin-bottom: 2rem;
}

.comment .children:first-of-type {
    margin-left: 1.5rem;
}


.comment-author {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: baseline;
}

.avatar {

    background-color: #E6E6E6;
    margin-right: 0.5rem;
}

#comments cite {
    font-family: 'Lato';
    font-size: 1.2em;
    margin-right: 0.4rem;
    font-weight: 300;
    font-style: normal;
}

.comment-meta {
    font-size: 0.8em;
}






.reply:before {
    content: "\F0da";
    font-size: 0.8rem;
    padding: 0;
    margin: 5px;
    margin-right: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
}

#respond {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
}

.logged-in-as {

    margin: 0;
}

.comment-form {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.comment-form p {
    padding: 1rem 0 !important;
}

.comment-form-comment textarea {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: none;
    border-radius: 5px;
    resize: none;
    outline: none;
    background: #EEE;
    color: #707070;
}

.comment-form-comment textarea::selection,
.comment-form-comment textarea::selection {
    background: #2E2E2B;
    color: #B9B9AE;
}

.comment-notes,
.comment-form-comment,
.comment-form-cookies-consent,
.form-submit {
    width: 100%;
}

.comment-form-author,
.comment-form-email,
.comment-form-url {
    width: calc(33% - 1rem);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.comment-form-author,
.comment-form-email {
    margin-right: 1rem;
}

@media (max-width:900px) {

    .comment-form-author,
    .comment-form-email,
    .comment-form-url {
        width: 100%;
        margin: 0 0 0.5rem;
    }
}

.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
    box-sizing: border-box;
    border: none;
    border-radius: 5px;
    resize: none;
    outline: none;
    background: #76766E;
    color: #F2F1E1;
    padding: 12px 20px;
}

.comment-form .wpgdprc-checkbox {
    width: 100%;
    margin: 0 !important;
}

.submit {
    border-radius: 1.5rem;
    border: none;
    padding: 0.75rem;
    background-color: #D1D1D1;
    color: #6A6A6A;
    cursor: pointer;
    text-transform: uppercase;
}

.submit:hover {
    background-color: #6A6A6A;
    color: #D1D1D1;
}
