@charset "utf-8";

.jsclass_bbs {
	display: none;
/*	display: block;
	position: absolute;
	top: 0;
	right: 0;
	height: 500px !important;
	z-index: 1000;*/
}
@media screen and (min-width: 768px) {
	.jsclass_bbs_filter_wrapper {
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		align-items: baseline;
		gap: 10px;
		font-size: 14px;
		color: var(--theme-font-color);
	}
}
@media screen and (max-width: 768px) {
	.jsclass_bbs_filter_wrapper {
		width: 100%;
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: baseline;
		gap: 5px;
		font-size: 14px;
		color: var(--theme-font-color);
	}
	.css-selected-filter-wrapper {
		padding-left: 20px;
	}
}
.jsclass_bbs_wrapper {
	height: 30px;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	cursor: pointer;
	border: 1px solid lightgrey;
	padding-left: 15px;
	border-radius: 2px;
	margin-right: 5px;
	text-transform: capitalize;
	gap: 5px;
}
@media screen and (min-width: 768px) {
	.jsclass_bbs_wrapper {
		width: 100px;
	}
}
@media screen and (max-width: 768px) {
	.jsclass_bbs_wrapper {
		width: 180px;
	}
}
.jsclass_bbs_wrapper:hover {
	border: 1px solid black;
	transition: border-color 0.8s;
}
.jsclass_bbs_data_container {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	overflow: hidden;
	gap: 20px;
}
@media screen and (min-width: 768px) {
	.jsclass_bbs_section_wrapper {
		display: flex;
		flex-direction: column;
		gap: 10px;
		width: 100%;
		height: auto;
		overflow: hidden;
		overflow-y: auto;
		border: 0.5px dotted lightgrey;
	}
	.jsclass_bbs_section {
		flex: 1;
		height: auto;
		max-height: 650px;
		border: 20px solid white;
		display: flex;
		flex-direction: row;
		gap: 5px;
	}
	.jsclass_bbs_section div {
		width: 100%;
		display: flex;
		flex-direction: column;
	}
}
@media screen and (max-width: 768px) {
	.jsclass_bbs_section_wrapper {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 10px;
		width: 100%;
		height: 100%;
		overflow: hidden;
		overflow-y: scroll;
		border: 0.5px dotted lightgrey;
	}
	.jsclass_bbs_section {
		flex: 1;
		height: 80%;
		max-height: 100%;
		border: 20px solid white;
		display: block;
		padding-bottom: 20px;
	}
	.jsclass_bbs_section div {
		width: 100%;
	}
	.jsclass_bbs_section_column:last-child {
		padding-bottom: 20px;
	}
}
.jsclass_bbs_section label {
	width: 100%;
	font-weight: 400;
	margin-right: 10px;
	cursor: pointer;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: start;
}
.jsclass_bbs_section label:hover {
	text-decoration: underline;
}
.jsclass_bbs_section label input[type="checkbox"] {
	font-size: 1rem;
}
#btn-select-cat {
	background-color: var(--theme-font-color) !important;
	cursor: pointer;
}
.jsclass_bbs_wrapper label {
	font-weight: 400 !important;
}
.class_bbs_button_wrapper {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
.class_bbs_button_wrapper .btn-default {
	margin-bottom: 0;
}