
.asdf {
	height: 60px;
}

.separe {
	width: 100%;
	height: 30px;
}

.blog_section {
	/*float: right;*/
}

.blog_filters {
	width: 300px;
	margin: 40px;
	margin-top: 160px;
	height: fit-content;
	position: fixed;
	backdrop-filter: blur(5px);
	background-color: rgba(0, 0, 0, 0.2);
	border: 1px solid #444;
	color: #fff;
	border-radius: 12px;
	z-index: 0;
}

.blog_filters_title {
	padding: 20px;
	font-size: 40px;
	font-weight: 600;
}

.blog_filters_content {
	padding: 40px;
	padding-top: 0;
}

.blog_filters_tfilter {
	width: fit-content;
	color: #fff;
}

.tfilter_title {
	color: #fff;
	font-size: 25px;
	font-weight: 600;
}

.tfilter_option {
	color: #cccc;
	padding-left: 20px;
	font-weight: 400;
	transition: color 0.2s;
	transition: font-weight 0.2s;
}

.active {
	color: #fff;
	font-weight: 600;
}

.tfilter_option:hover {
	color: #fff;
	font-weight: 600;
	transition: color 0.2s;
	transition: font-weight 0.2s;
}


.not_visible_on_screen {
	left: -999px;
	transition: left 0.4s;
}

.visible_on_screen {
	left: 0;
	transition: left 0.4s;
}

.filter_button {
	width: fit-content;
	height: fit-content;
	padding: 10px;
	margin-top: 60px;
	margin-left: 40px;
	padding-bottom: 7px;
	z-index: 0;
	position: fixed;
	border-radius: 16px;
	backdrop-filter: blur(5px);
	background-color: rgba(0, 0, 0, 0.2);
	border: 1px solid #444;
}

.filter_button_icon {
	width: 40px;
}

@media (max-width: 1200px) {
	.blog_filters {
		background-color: #1a1a1a;
	}
}

@media (max-width: 370px) {
	.blog_filters {
		margin-left: 10px;
	}
} 