#blog_page .social_button{
	padding: 0.5em;
    border: 1px solid rgb(var(--buttons_background));
    border-radius: var(--border_radius);
    transition: border-color 0.4s, color 0.4s,background 0.4s;
    background:rgb(var(--buttons_background));
    font-size: 1em;
    cursor:pointer;
    display: inline-flex;
    color: white;
    align-items: center;
}

#social_buttons{
	line-height: 3em;
}

#blog_page .social_button:hover{	
	cursor:pointer;
/*	background: var(--buttons_background);
	color:var(--buttons_text);*/
}

#blog_page .signature{
	text-align: center;
	margin:2em;
}

#blog_page .signature .article_date{
	color:#525252e0;
}

/* comments */
#blog_page #comments_container .comment_box{
	width:100%;
	margin:0.5em;
	background: white;
    border-radius: var(--border_radius);
}

#blog_page #comments_container .comment_box.reply{
	margin-left: 2.5em;
}

#blog_page #comments_container .author_name{
	color:var(--text);
}

#blog_page #comments_container .date_comment{
	font-style: italic;
	color:#525252e0;
}

#blog_page #comments_container .comment_content{
	padding:0.5em;
	padding-left: 1em;
}

#blog_page #comments_container .comment_content p{
	padding:0;
	margin:0;
	color:var(--text);
	line-height: 1.5em;
}

#blog_page #comments_container .comment_content p::first-line{
	text-indent: 1em;
}

#blog_page #comments_container .comment_author{
	padding:0.5em;
}

#blog_page #comments_container{
	margin: 1em 0 1em 0;
    justify-content: end;
}

.article_content th{
	background: rgb(var(--buttons_background));
	color: rgb(var(--buttons_text));
}

.article_content th,td{
	border: 1px solid rgb(var(--buttons_background));
}

#blog_page #comments{
	margin-bottom: 2em;
	padding:1em 0;
	/*background: #FFFFFFE0;*/
	border-radius: var(--border_radius);
}
#blog_page #comments a{
	text-decoration: none;
}

#blog_page textarea{
	outline: none;
	width: 100%;
	border-radius: var(--border_radius);
	padding:0.5em;
	color:var(--text);
	font-size: 1em;
	border: 1px solid rgba(var(--background),0.5);
	resize:vertical;

}

#blog_page #comment_textarea{
	
	display: block;

    padding-top: 1.5em;
	outline: none;
	width: 100%;
}

#blog_page #comments textarea::placeholder{
	color:#888888E0;
	font-size: 1em;

}

#blog_page #send_comment_btn{
	padding:0.5em;
	text-align: left;
	/*border: 1px solid var(--buttons_background);*/
	border-radius: 0 0 5px 5px;
	display: none;
}

#blog_page #comments form label{
	padding:0.5em;
	border-radius: 5px 5px 0 0;
    display: block;
    border-bottom:none;
}

#blog_page #comments form{
	padding:0.5em;
	padding-bottom: 0;
	/*background: black;*/
	width: 100%;
}

#blog_page #comments input[type="submit"]{	
	display: inline-block;
	padding: 0.3em;
	border-radius: 5px;
	border: 1px solid rgb(var(--buttons_background));
	background: rgb(var(--buttons_background));
	color:var(--buttons_text);
	font-size: 1em;
	transition:border-color 0.4s, color 0.4s;
}

#blog_page #comments input[type="submit"]:hover{	
	cursor:pointer;
}

#blog_page #comments #redirect_comment a{
	padding: 1em;
	border:1px solid rgb(var(--buttons_background));
	border-radius: 5px;
	transition:border-color 0.4s, color 0.4s,background 0.4s;
}

#blog_page #comments #redirect_comment a:hover{
}

#blog_page #comments #redirect_comment{
	margin:0.5em;
}


/*tags*/
#blog_page #tags h2, #blog_page #comments h2{
	text-align: left;
}

#blog_page #tags{
	margin:2em 0;
}

#blog_page #tags .tag{
	display: inline-block;
	padding:0.2em 0.5em 0.2em 0.5em;
	margin-right: 0.5em;
	/*text-decoration: none;*/
	/*font-weight: bold;*/
    color: rgb(var(--buttons_background));
}

#blog_page h2{
	text-align: left;
	margin-bottom: 1em;
	color:var(--text);
}


#blog_page h1{
	text-align: center;
	margin:1em 0;
	color:var(--text);
}

.article_content a{
	text-decoration: underline;
	font-weight: bold;
}


.article_content a[href^="http"]::after{
	font-family: 'Font Awesome 5 Free';
	content:' \f35d';
}

.article{
	display: inline-block;
    width: 100%;
    max-width: 70em;
}

.article_wrapper{
    padding: 2em 5em;
}

.article_img{
	width: -moz-fit-content;
width: fit-content;
    overflow: hidden;
    margin: auto;	
}

.article_img img{
	height: 400px;
	width: 600px;
    max-width: 100%;
	object-fit: cover;
	/*border-radius: var(--border_radius);*/
}

.article_content img{
	max-height: 400px;
}

.article_content{
	margin:2em 0;
	text-align: justify;
	font-size: 1.1em;
    line-height: 2em;
    display: inline-block;
    color:var(--text);
}

.article_content p::first-line{
	text-indent: 2em;
}

.article_content ol, .article_content ul{
    padding-left: 1em;
}

.article_content p{
    word-break: break-word;
}

.article_content h2{
	font-size: 2em;
	font-weight: bold;
}

.article_content li{

}



@media screen and (max-width: 768px)
{
	.article_wrapper {
	    padding: 2em 1em;
	}

	.article_content{
		font-size: 1em;
		line-height: 1.5em;
	}

	#blog_page h1{
		font-size: 2em;
	}
}