/* === NEW STYLE === */

/* COMMENTS */

.comments {
    padding-top: 50px;    
}

.comments__header
{
	display: flex;
    align-items: center;
    padding-bottom: 40px;
}

.comments__count
{
	width: 48px;
    height: 48px;
    background-color: #0f4984;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    margin-left: 30px;
}

.comments__form
{
	margin-bottom: 50px;
}


.comments__form .form-submit
{
	text-align: center;
}


.comment-list__item
{
	margin-bottom: 30px;
}


.comment-list__header
{
	display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.comment-list__user
{
 	width: 48px;
    height: 48px;
    background-color: #bbc2cc;
    border-radius: 50%;
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.comment-list__author
{
	font-size: 1.125rem;
    font-weight: 700;
    margin-right: 16px;
}


.comment-list__date
{
	font-size: 0.875rem;
    font-weight: 300;
    color: #bbc2cc;
    border-left: 1px solid #e6e6e6;
    padding-left: 15px;
    padding-top: 3px;
}




@media screen and (max-width: 575px) {
    .comment-list__date {
            width: 100%;
            padding-top: 10px;
            border:none;
            padding-left: 0;
    }
}

@media screen and (min-width: 576px) {

	.comment-list__item
	{
		margin-bottom: 45px;
	}
	
	.comment-list__text
	{
		padding-left: 64px;
	}
}

/**/

.comment_container 
{
	margin-top: 250px;
    border-top: 1px solid #f4f4f4;
}

.comment_container .form-field label {
    position: absolute;
    color: #52575b;
    font-size: 12px;
    font-weight: 700;
    left: 11px;
    top: -8px;
    background: #fff;
    padding: 0 4px;
    opacity: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.comment_container .form-field {
    position: relative;
    margin-bottom: 18px;
}

.comment_container textarea {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #bbc2cc;
    padding: 15px;
    font-size: 1rem;
    font-family: inherit;
}

.comment_container input[type=text] {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #bbc2cc;
    padding: 15px;
    font-size: 1rem;
    font-family: inherit;
}

.comment_container .form-acceptance {
    margin-bottom: 18px;
}

.comment_container .form-acceptance label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

.comment_container .form-acceptance label input {
    margin-right: 15px;
    font-size: 14px;
    margin-top: 4px;
}

.comment_container input[type=checkbox] {
    width: 20px;
    min-width: 20px;
    height: 20px;
    border: 2px solid #bbc2cc;
    border-radius: 4px;
    background-repeat: no-repeat;
    background-position: center;
}

.comment_container input[type=checkbox]:checked {
    width: 20px;
    min-width: 20px;
    height: 20px;
    border: 2px solid #bbc2cc;
    background-color: #bbc2cc;
    border-radius: 4px;
    background-repeat: no-repeat;
    background-position: center;
}


.comment_container .comments .form-submit {
    text-align: center;
}

.comment_container input[type=submit] {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    color: #edf6f3;
    padding: 20px 40px;
    background: #0f4984;
    border-radius: 4px;
    cursor: pointer;
}

.comment_container .logged-in-as
{
	margin-bottom: 10px;
}