.fab_container{
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: fixed;
	right: 16px;
	bottom: 16px;
}
.fab_container.hided:not(:has(.fab_articles_comments)){
	display: none;
}
.fab_container .fab_button{
	border: none;
	width: 46px;
	height: 46px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 13px;
	border-radius: 8px;
	background: rgba(144, 144, 144, 0.9);
	animation: fadeInFromNone 0.5s ease-in;
}
.fab_container .fab_button.fab_articles_comments{
	animation: none;
}
.fab_container.hided:has(.fab_articles_comments) .fab_button:not(.fab_articles_comments){
	display: none;
}
.fab_container .fab_articles_comments{
	display: none;
}
@media (max-width: 1200px) {
	.fab_container .fab_articles_comments{
		display: flex;
	}
}
@keyframes fadeInFromNone {
    0% {
        display: none;
        opacity: 0;
    }

    1% {
        display: flex;
        opacity: 0;
    }

    100% {
        display: flex;
        opacity: 1;
    }
}
