#commentsholder{
    display:block;
    width: 100%;
    text-align: center;
    padding-bottom:20px;
}

#comments{
    display:inline-block;
    width: 80%;
    text-align: left;
}

.comment-respond{
    display: block;
    width: 100%;
}

.comment-form{
    display: block;
    width: 100%;
}

.comment-reply-title{
    display: block;
    width: 100%;
}

#comments input[type="text"]{
    display: block;
    margin-bottom: 20px;
    font-weight: bold;
    padding-left: 20px;
    padding-right: 20px;
    height: 40px;
    /*padding and border*/
    width: calc(100% - 46px);
    background: none;
    border: 3px solid var(--contact-border-color);
    font-size: 16px;
}

#comments textarea{
    display: block;
    margin-top: 5px;
    padding: 20px;
    height: 170px;
    width: calc(100% - 46px);
    background: none;
    border: 3px solid var(--contact-border-color);
    font-size: 20px;
}

#comments label{
    display: block;
    padding-bottom: 5px;
}

#respond{
    margin-top:10px;
}

.comment-form-cookies-consent{
    display:block;
    text-align: left;
    width: 100%;
}
.comment-form-cookies-consent input{
    display:inline-block;
    margin-left:10px;
    transform: scale(2.0);
}
.comment-form-cookies-consent label{
    display:inline-block;
    margin-top:5px;
}
#commentform .form-submit{
    display:block;
    text-align: center;
    margin:0;
    width: 100%;
}

#commentform .submit{
    margin-top: 0px;
    height: 60px;
    border: none;
    background: var(--contact-button-color);
    color: white;
    font-weight: bold;
    font-size: 20px;
    display: inline-block;
    width: 100%;
}


.comments-title{
    font-family: var(--main-font-family);
}

.comment-list{
    display:block;
    font-family: var(--main-font-family);
    margin-top: 20px;
    margin-bottom: 10px;
}

.comment-list .fn{
    font-weight: bold;
}

.comment-edit-link{
    background: var(--comment-edit-button-color);
    color: white;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 3px;
    padding-bottom: 3px;
    text-decoration: none;
}

.comment-edit-link:hover{
    opacity: 0.5;
}

.reply{
    margin-top: 2px;
    margin-bottom: 40px;
}
.comment-reply-link{
    background: var(--comment-reply-button-color);
    color: white;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 3px;
    padding-bottom: 3px;
    text-decoration: none;
}

.comment-reply-link:hover{
    opacity: 0.5;
}

.comment-reply-title{
    font-size: 2em;
}

.comment-list li{
    padding: 10px;
    border: 2px solid lightblue;
    margin-top:1px;
    list-style: none;
    margin-left:-40px;
}

.comment-body p{
    display:inline-block;
    padding-top: 4px;
    padding-bottom: 7px;
    padding-left: 6px;
    padding-right: 6px;
    font-size: 1.2em;
    /*
    border: 2px solid lightblue;
    border-radius: 5px;
    */
    background: #d3dcdf;
}

@media only screen and (max-width : 840px) 
{
    #commentform{
        width: 100%;
    }
    
    #commentform .form-submit{
        width: 100%;
    }
}