	#form-mode-candidat div {
		padding:10px;
		padding-left:15px;
	}

	#search-output {
		margin-top:20px;
	}

	#search-output div.spinner-border {
		display:flex;
		justify-self:center;
		margin-top:40px;
	}
	
	div.element_offre_list {
		cursor:pointer;
	}
	
	div.element_offre_list.bookmark:before,
	div.element_offre_list.notforme:before,
	div.element_offre_list.c_statut:before {
		content: '';
		position: absolute;
		top: 0px;
		left: 10px;
		width: 20px;
		height: 20px;
		mask-size: contain;
		mask-repeat: no-repeat;
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;			
	}

	div.element_offre_list.bookmark:before {
		background-color: #198754; /* vert bootstrap */
		mask-image: url('../statics/icons/bookmarks-fill.svg');
		-webkit-mask-image: url('../statics/icons/bookmarks-fill.svg'); /* pour compatibilité */
	}
	
	div.element_offre_list.notforme:before {
		background-color: #d9534f; /* rouge bootstrap */
		mask-image: url('../statics/icons/sign-stop.svg');
		-webkit-mask-image: url('../statics/icons/sign-stop.svg'); /* pour compatibilité */
	}
	
	div.element_offre_list.c_statut_public:before {
		background-color: #0d6efd; /* bleu bootstrap */
		mask-image: url('../statics/icons/check-circle-fill.svg');
		-webkit-mask-image: url('../statics/icons/check-circle-fill.svg'); /* pour compatibilité */
	}

	div.element_offre_list.c_statut_suspended:before {
		background-color: #fd7e14; /* orange bootstrap */
		mask-image: url('../statics/icons/check-circle-fill.svg');
		-webkit-mask-image: url('../statics/icons/check-circle-fill.svg'); /* pour compatibilité */
	}

	div.element_offre_list.c_statut_rejected:before {
		background-color: #d9534f; /* rouge bootstrap */
		mask-image: url('../statics/icons/x-circle-fill.svg');
		-webkit-mask-image: url('../statics/icons/x-circle-fill.svg'); /* pour compatibilité */
	}

	div.element_offre_list.c_statut_canceled:before {
		background-color: #d9534f; /* rouge bootstrap */
		mask-image: url('../statics/icons/x-circle-fill.svg');
		-webkit-mask-image: url('../statics/icons/x-circle-fill.svg'); /* pour compatibilité */
	}

	div.element_offre_list.c_statut_selection:before {
		background-color: #198754; /* vert bootstrap */
		mask-image: url('../statics/icons/check-circle-fill.svg');
		-webkit-mask-image: url('../statics/icons/check-circle-fill.svg'); /* pour compatibilité */
	}

	div.element_offre_list.c_statut_validee:before {
		background-color: #198754; /* vert bootstrap */
		mask-image: url('../statics/icons/check-circle-fill.svg');
		-webkit-mask-image: url('../statics/icons/check-circle-fill.svg'); /* pour compatibilité */
	}
	
body.noscroll {
  overflow-y: hidden !important;
  overflow-x: hidden !important;
}

#offerFullView {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

#offerFullView * {
  max-width: 100%;
  box-sizing: border-box;
}

#offerFullView.active {
  transform: translateX(0);
}

#offerFullView.d-flex {
  display: flex !important;
  flex-direction: column;
}