/* Style both app and desktop version */
.fixed_message {
	display: none;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 99;
}
.fixed_message_content {
	padding: 20px 35px;
	border-radius: 30px;
	font-size: 21px;
	color: white;
	background-color: color(srgb 0.629 0.629 0.629 / 0.8);
}

.no_margin_top {
	margin-top: 0 !important;
}

.border_box {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.btn_disable_form {
	pointer-events: none;
	background-color: #ccc !important;
}

.icon_menu i {
	margin-left: 5px;
	font-size: 27px;
	line-height: 27px;
}

.table_default {
	width: 100%;
}

.table_default th {
	text-align: left;
	font-weight: bold;
	border-bottom: 1px solid var(--main-color);
	color: var(--main-color);
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 10px;
}

.table_default td {
	vertical-align: middle;
	border-bottom: 1px solid #bdbdbd;
	line-height: 18px;
	padding-left: 10px;
	padding-top: 8px;
	padding-bottom: 8px;
}

.table_default tr:hover {
	background-color: rgb(233, 233, 233) !important;	
}
.table_cell_hover:hover {
	background-color: rgb(233, 233, 233) !important;
	cursor: pointer;
}

.table_default tr:first-child:hover {
	background-color: transparent !important;	
}

.table_default td a {
	color: black;
}

.table_default input {
	width: 40px;
	padding: 2px;
}

.table_default .buttons a {
	color: var(--main-color);
}

.status_placement {
	float: left;
	width: 20px;
	height: 20px;
	border: 2px solid black;
	border-radius: 50%;
}

.assigned {
	background-color: #d8bccd;
}

.mobile {
	display: none !important;
}
/* Horizontale mobiel */
@media only screen and (max-width: 767px) {		
	.mobile {
		display: inline !important;
	}
}


.drag-image {
	float: left;
	border: 1px dashed black;
	height: 200px;
	width: 100%;
	border-radius: 20px;
	font-weight: 400;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	margin-top: 10px;
}
.drag-image.active_drag {
	border: 2px solid black;
}
.drag-image .drag-image-title {
	font-size: 20px;
	font-weight: 300;
	color: black;
	margin-bottom: 10px;
}
.drag-image .drag-image-subtext {
	font-weight: 300;
	color: black;
	margin-bottom: 10px;
}
.drag-image .upload_button {
	padding-top: 10px;
	padding-bottom: 10px;
}
.drag-image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 5px;
}
