#derive_app {
	display: flex;
	flex-direction: column;
}

#derive_app,
#derive_app > .row {
	height: 100vh;
}

#derive_app > .row {
}

#derive_app .current_card_wrap {
	flex: 1;
	display: flex;
	flex-direction: column;
	background-color: rgba(255,255,255,.05);
	backdrop-filter: blur(2px);
}

#derive_app .current_card {
	display: flex;
	flex: 1;
}

#derive_app .thumbnail {
	justify-content: center;
}

#derive_app .task {
	justify-content: center;
}

#derive_app .task,
#derive_app .thumbnail {
	display: flex;
	align-items: center;
}

#derive_app .task .h1 {
	width: 100%;
}

#derive_app .current_card .thumbnail_wrap {
	/*max-height: 50vh; */
	max-width: 100%;
	width: auto;
	height: auto;
}

@media screen and (orientation:portrait) {
	#derive_app .current_card {
		flex-direction: column;
	}
	
	#derive_app .current_card .thumbnail {
		width: 100%;	
	}
	
	#derive_app .current_card .thumbnail_wrap,
	#derive_app .current_card .thumbnail_wrap img {
		height: 50vh;
	}
	
	#derive_app .current_card .thumbnail_wrap .img {
		max-height: 50vh;
	}
	
	#derive_app .current_card .task {
		width: 100%;
		flex: 1;	
	}
}
@media screen and (orientation:landscape) {
	#derive_app .current_card {
		flex-direction: row;
	}

	#derive_app .current_card .thumbnail {
		width: 50%;	
	}
	
	#derive_app .current_card .thumbnail_wrap img {
		width: 100%;
		height: auto;
	}
	
	#derive_app .current_card .task {
		width: 50%;	
	}
}

/* progress */

#derive_app .progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
}

/* modals */

#derive_app .modal-content{
	background: none;
}

#derive_app .modal .close {
	opacity: 1;
}

/* open derives */
.join_derive {
	align-items: center;
}