.select_check{
	color: rgb(220, 220, 220);
}
.select_check.selected{
	color: rgb(74, 188, 181);
}
.crew_item:hover{
	background-color: rgb(245, 245, 245);
	cursor: pointer;
}
@media(min-width: 992px){
	.crew_item:hover .select_check{
		color: rgb(74, 188, 181);
	}
}
.select_box{
	max-height: 15vh;
}

body {
	counter-reset: section list;
}
.list_number::before {
	counter-increment: list;
	content: "#" counter(list); 
}

#bookmark_area{
	position: sticky;
	top: 20px;
}
@media(min-width: 992px){
	#content_area {
		padding: 2% calc(50px + 2%);
	}
}
.task_item:not(:first-child){
	margin-top: .125rem;
}
.task_item:not(:first-child):not(:last-child){
	border-radius: 0;
}
.task_item:first-child{
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}
.task_item:last-child{
	border-top-right-radius: 0;
	border-top-left-radius: 0;
}

.content_layer{
	padding-top: 1rem;
	padding-bottom: 1rem;
	background-color: rgba(255,255,255,.5);
}
.task_item{
	background-color: rgb(250,250,250);
	border: 1px solid rgb(255,255,255);
}
.task_item .area{
	padding-top: 1rem;
	padding-bottom: 1rem;
	position: relative;
}
@media (min-width: 576px){
	.content_layer {
		padding: 1.375rem 3%;
	}
	.task_item .area{
		padding: 1.375rem 3%;
	}
}
.half_circle {
	height: 30px;
	border-top-left-radius: 33px;
	border-top-right-radius: 33px;
	border-bottom: 0;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.list_group_item.active{
	background-color: rgb(74, 188, 181);
	border-color: rgb(74, 188, 181);
}
#task_mark{
	max-height: 50vh;
}
#plan_list{
	max-height: 50vh;
}