@font-face {
	font-family: 'anyoldicon';
	src:url('../fonts/anyoldicon/anyoldicon.eot');
	src:url('../fonts/anyoldicon/anyoldicon.eot?#iefix') format('embedded-opentype'),
		url('../fonts/anyoldicon/anyoldicon.woff') format('woff'),
		url('../fonts/anyoldicon/anyoldicon.ttf') format('truetype'),
		url('../fonts/anyoldicon/anyoldicon.svg#anyoldicon') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'ecoico';
	src:url('../fonts/ecoico.eot');
	src:url('../fonts/ecoico.eot?#iefix') format('embedded-opentype'),
		url('../fonts/ecoico.woff') format('woff'),
		url('../fonts/ecoico.ttf') format('truetype'),
		url('../fonts/ecoico.svg#ecoico') format('svg');
	font-weight: normal;
	font-style: normal;
}

input:focus,
textarea:focus {

	outline:  1px solid #2fa827;
}

/* General grid styles */
.cbp-ig-grid {
	list-style: none;
	padding: 0 0 0px 0;
	margin: 0;
}

.cbp-ig-grid .cbp-ig-icon i {
    font-size: 1.7em;
}
/* Clear floats */
.cbp-ig-grid:before,
.cbp-ig-grid:after {
	content: " ";
	display: table;
}

.cbp-ig-grid:after {
	clear: both;
}

/* grid item */
.cbp-ig-grid li {
	width: 33%;
	float: left;
	height: 200px;
	text-align: center;
	border-top: 1px solid #ddd;
}

/* we are using a combination of borders and box shadows to control the grid lines */
.cbp-ig-grid li:nth-child(-n+3){
	border-top: none;
}

.cbp-ig-grid li:nth-child(3n-1),
.cbp-ig-grid li:nth-child(3n-2) {
	box-shadow: 1px 0 0 #ddd;
}

/* anchor style */
.cbp-ig-grid li > a {
	display: block;
	height: 100%;
	color: #dcdada;
	-webkit-transition: background 0.2s;
	-moz-transition: background 0.2s;
	transition: background 0.2s;
}

/* the icon with pseudo class for icon font */
.cbp-ig-icon {
	padding: 20px 0 0 0px;
	display: block;
	-webkit-transition: -webkit-transform 0.2s;
	transition: -moz-transform 0.2s;
	transition: transform 0.2s;
    font-size: 2em;
}

.cbp-ig-icon:before {
	font-family: 'ecoico';
	font-size: 2em;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
}

.cbp-ig-icon-1:before {
	content: "\e002";
	font-family: 'ecoico';
}

.cbp-ig-icon-2:before {
	content: "\e007";
}

.cbp-ig-icon-3:before {
	content: "\e003";
}

.cbp-ig-icon-4:before {
	content: "\e004";
}

.cbp-ig-icon-5:before {
	content: "\e005";
}

.cbp-ig-icon-6:before {
	content: "\e006";
}

/* title element */
.cbp-ig-grid .cbp-ig-title {
    font-family: "Rajdhani", "rajdhaniregular";
	color:#2fa827;
	text-decoration:none;
	margin: 20px 0 0px 0;
	padding: 20px 0 0 0;
	font-size: 2em;
	position: relative;
	-webkit-transition: -webkit-transform 0.2s;
	-moz-transition: -moz-transform 0.2s;
	transition: transform 0.2s;
}

.cbp-ig-grid .cbp-ig-title:before {
	content: '';
	position: absolute;
	background: #2fa827;
	width: 160px;
	height: 1px;
	top: 0px;
	left: 50%;
	margin: -10px 0 0 -80px;
	-webkit-transition: margin-top 0.2s; /* top or translate does not seem to work in Firefox */
	-moz-transition: margin-top 0.2s;
	transition: margin-top 0.2s;
}

.cbp-ig-grid .cbp-ig-category {
    font-family: "Rajdhani", "rajdhaniregular";
	text-decoration:none;
	text-transform: uppercase;
	display: inline-block;
	font-size: 1em;
	letter-spacing: 1px;
	color: #fff;
	-webkit-transform: translateY(10px);
	-moz-transform: -moz-translateY(10px);
	-ms-transform: -ms-translateY(10px);
	transform: translateY(10px);
	opacity: 0;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
	-moz-transition: -moz-transform 0.3s, opacity 0.2s;
	-webkit-transition: transform 0.3s, opacity 0.2s;
}

.cbp-ig-grid li:hover .cbp-ig-category,
.touch .cbp-ig-grid li .cbp-ig-category {
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
	text-decoration:none;
}

/* Hover styles */

.cbp-ig-grid li > a:link {
	text-decoration:none;
}

.cbp-ig-grid li > a:hover {
	background: #2fa827;
	text-decoration:none;
}

.cbp-ig-grid li > a:hover .cbp-ig-icon {
	-webkit-transform: translateY(10px);
	-moz-transform: translateY(10px);
	-ms-transform: translateY(10px);
	transform: translateY(10px);
}

.cbp-ig-grid li > a:hover .cbp-ig-icon:before,
.cbp-ig-grid li > a:hover .cbp-ig-title {
	color: #fff;
	text-decoration:none;
}

.cbp-ig-grid li > a:hover .cbp-ig-title {
	-webkit-transform: translateY(-30px);
	-moz-transform: translateY(-30px);
	-ms-transform: translateY(-30px);
	transform: translateY(-30px);
}

.cbp-ig-grid li > a:hover .cbp-ig-title:before {
	text-decoration:none;
	background: #fff;
	margin-top: 80px;
}


@media screen and (max-width: 62.75em) {
	.cbp-ig-grid li {
		width: 50%;
	}

	/* reset the grid lines */
	.cbp-ig-grid li:nth-child(-n+3){
		border-top: 1px solid #ddd;
	}

	.cbp-ig-grid li:nth-child(3n-1),
	.cbp-ig-grid li:nth-child(3n-2) {
		box-shadow: none;
	}

	.cbp-ig-grid li:nth-child(-n+2){
		border-top: none;
	}

	.cbp-ig-grid li:nth-child(2n-1) {
		box-shadow: 1px 0 0 #ddd;
	}
}

@media screen and (max-width: 41.6em) {
	.cbp-ig-grid li {
		width: 100%;
	}

	.cbp-ig-grid li:nth-child(-n+2){
		border-top: 1px solid #ddd;
	}

	.cbp-ig-grid li:nth-child(2n-1) {
		box-shadow: none
	}

	.cbp-ig-grid li:first-child {
		border-top: none;
	}
}

@media screen and (max-width: 25em) {
	.cbp-ig-grid {
		font-size: 80%;
	}

	.cbp-ig-grid .cbp-ig-category {
		margin-top: 20px;
	}
}

.cbp-vimenu {
    position: relative;
    float: left;
	overflow: hidden;
	top: -125px;
	left: 0;
	height: 100%;
	list-style-type: none;
	margin: 0;
	padding: 0;
	background: #f7f7f7;
}

.cbp-vimenu li a {
	display: block;
	height: 6em;
	width: 6em;
	line-height: 5em;
	text-align: center;
	color: #969595;
	position: relative;
	border-bottom: 1px solid rgba(0,0,0,0.05);
	-webkit-transition: background 0.1s ease-in-out;
	-moz-transition: background 0.1s ease-in-out;
	transition: background 0.1s ease-in-out;
    font-size: 1.5em;
}

.cbp-vimenu li a:hover,
.cbp-vimenu li:first-child a{
	text-decoration:none;
	background: #2fa827;
	color: #fff;
}

/* class for current item */
.cbp-vimenu li.cbp-vicurrent a {
	background: #fff;
	color: #2fa827;
}

.cbp-vimenu li a:before {
	font-family: 'ecoico';
	speak: none;
	font-style: normal;
	font-weight: normal;
	text-indent: 0em;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	font-size: 1.4em;
	-webkit-font-smoothing: antialiased;
}

.cbp-vimenu li a.icon-logo:before {
	content: url(../img/logo-expostat-86.jpg);
	margin-top:20px;
	font-weight: 700;
	font-size: 100%;
    font-family: "Rajdhani", "rajdhaniregular";
}

.icon-search:before {
	content: "\e001";
}

.icon-archive:before {
	content: "\e004";
}

.icon-download:before {
	content: "\e003";
}

.icon-location:before {
	content: "\e004";
}

.icon-images:before {
	content: "\e005";
}

.icon-pencil:before {
	content: "\e006";
}

/* Example for media query (depends on total height of menu) */
@media screen and (max-height: 34.9375em) {

	.cbp-vimenu {
		font-size: 70%;
	}

}

.button-line {
	padding: 10px 0;
}

.meta-list-wrapper .button-wrapper{
	text-align: center;
	margin-bottom: 15px;
}

.meta-list-wrapper .button-wrapper a {
	padding: 10px 0;
	font-weight: bold;
	font-size: 1em;
}

.button.block {
	display: block;
}

.button, #form .button {
	background: #2fa827;
	font-family: "Rajdhani", "rajdhaniregular";
	text-decoration: none;
	border: none;
	color: #FFFFFF;
	width: auto;
	cursor: pointer;
	text-transform: uppercase;
	display: inline-block;
	padding: 5px 15px;;
	font-size: 0.8em;
	border-radius: 2px;
	letter-spacing: 0px;
}

.button.disabled {
	background:grey;
	cursor: not-allowed;
}

.button:hover {
	background: #d80104;
}

.TabbedPanelsTab a {
	color: black;
}

.TabbedPanelsTab.disable {
	background: #90a88a;
	color: black;
	cursor: not-allowed;
}
.TabbedPanelsTab.disable a {
	color: black;
	cursor: not-allowed;
	pointer-events: none;
}

form select {
	width: 100%;
}

.TabbedPanelsTab.print-button {
	color: black;
}

.pagination {
    margin: 15px 0 15px;
    font-family: "Rajdhani", "rajdhaniregular";
}
.pagination > span {
    display: inline-block;
}
.pagination > span.current {
    background-color: #d2d2d2;
    color: black;
    padding: 4px 10px;
    border-radius: 2px;
}
.pagination a {
    padding: 4px 8px;
    background-color: #2fa827;
    color: #ffffff;
    text-decoration: none;
    border-radius: 2px;
}
.pagination a:hover {
    background-color: #3e8e41;
}

form.inline {
	display: inline;
}

.breadcrumb{
	font-family: "Rajdhani", "rajdhaniregular";
	list-style:none;
	margin: 0 15px 0 0;
	padding: 0;
	float: right;
	display: inline-block;
	color: #949494;
	font-size: 12px;
}
.breadcrumb li{
	display:inline;
}
.breadcrumb a{

}

.breadcrumb .separator {
	margin: 0 5px;
}

.progress {
	float: left;
	width: calc(100% - 20px);
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 2px dashed #DDD;
}
.progress:after {
	content: '';
	clear: both;
}
.progress img {
	float: left;
}

.niveau2_vert {
	color: green;
}

.niveau2_rouge {
	color: red;
}

.TabbedPanelsContent table {

	font-family: "Rajdhani", "rajdhaniregular";
}

.table-td-dark {
	color: #605F61;
	font-weight: bold;
}
.ht_item input {
	float:left;
	width: 75%;
}
.delete_item {
	float: left;
	width: 20%;
	color: red;
}

.inspections * {
	font-family: "Rajdhani", "rajdhaniregular";
}

#searchfield {
	width: 300px;
}

.inspections textarea {
	width: 100%;
	height:150px;
	display:block;
}
.inspections input[type=text] {
	width: 50%;
	display:block;
}

.western.titre {
	background: #00b050;
	color: white;
	padding: 10px;
}

.cbp-mc-submit {
	background: #00b050;
	color: white;
	border: none;
	padding: 3px 5Px;
	text-transform: uppercase;
}

.actions-frise a {
	background: #2fa827;
	height: 45px;
	border: none;
	font-family: "Rajdhani", "rajdhaniregular";
	text-decoration: none;
	font-weight: 600;
	color: #FFFFFF;
	width: auto;
	cursor: pointer;
	display: inline-block;
	padding: 27px 22px 15px 22px;
	font-size: 1.0em;
	border-radius: 2px;
	letter-spacing: 0px;
	float: right;
}
.actions-frise a:hover {
	background: #d80104;
}

.tippy-tooltip {
	font-family: "Rajdhani", "rajdhaniregular";
	background-color: #2fa827 !important;
}
.tippy-tooltip  .tippy-backdrop {
	/* Your styling here. Example: */
	background-color: #2A9E23;
}

.datepicker.dropdown-menu,
.select2-container,
*,
label {
	font-family: "Rajdhani", "rajdhaniregular";
}

textarea.form {
	width: 100%;
	height: 100px;
	font-family: "Rajdhani", "rajdhaniregular";
	font-size: 15px;
}

input#reset_password_email {
	width: 66%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
input[type='number'] {
    -moz-appearance:textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}