* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
*, *:before, *:after {
	box-sizing: inherit;
}
.jobs{
	padding: 54px;
}
aside{
	width: 31%;
	vertical-align: top;
	display: inline-block;
	-ms-order: 1;
	-webkit-order: 1;
	order: 1;
}
#search-filters {
	overflow-x: hidden;
	overflow-y: auto;
	width: 100%;
	z-index: 10;
}
.search-filter-bg {
	background-color: #48a6fa;
}
#search-filters h2{
	color: white;
	height: 66px;
	line-height: 66px;
	position: relative;
	padding: 0 20px 0 20px;
	text-transform: uppercase;
}
#search-filters span{
	display: block;
	background: transparent url(../images/picto-filters.png) no-repeat right center;
	-webkit-background-size: auto 28px;
	background-size: auto 28px;
}
#search-filters .expandable{
	height: 59px;
	display: block;
	overflow: hidden;
	transition: height .3s ease-in-out;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#search-filters .expandable-parent {
	margin: 0;
	padding: 20px;
	color: #29abe2;
	display: block;
	cursor: pointer;
	position: relative;
	background-color: #f2f2f2;
	text-transform: uppercase;
	border-bottom: #cec6be solid 1px;
}
#search-filters .expandable-parent:hover {
	background:#e2e1e1;
}
#search-filters .expandable-parent:before {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}
#search-filters .open .expandable-parent:before {
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	transform: rotate(360deg);
}
#search-filters .expandable-parent:before, #search-filters .expandable-parent:after {
	top: 50%;
	height: 1px;
	width: 20px;
	content: "";
	right: 1.5rem;
	display: block;
	position: absolute;
	box-sizing: inherit;
	background-color: #48a6fa;
	transition: all .3s ease-in-out;
}
#search-filters .expandable-parent:after {
	transform: rotate(180deg);
}
#search-filters .search-filter-list {
	display: block;
	border-top: 1px solid #FFF;
	border-left: 5px solid #f2f2f2;
	border-right: 5px solid #f2f2f2;
	border-bottom: 5px solid #f2f2f2;
	background-color: #FFF;
	list-style: none;
	margin: 0;
	overflow-x: hidden;
	overflow-y: auto;
	box-sizing: border-box;
	max-height: 200px;
}
#search-filters .search-filter-list li{
	padding: 0 !important;
	float: none !important;
	box-sizing: border-box;
	border-right: 0 !important;
}
#search-filters .search-filter-list input[type="checkbox"] {
		clear: right;
		float: right;
		margin: 7px 20px 0 0;
		box-sizing: border-box;
}
#search-filters .search-filter-list label {
		cursor: pointer;
		display: block;
		color: #000;
		text-transform: uppercase;
		padding: 5px 20px 5px 20px;
}
#search-filters .search-filter-list label b {
	font-weight: normal;
	text-transform: uppercase;
}
#search-filter-controls {
	text-align: center;
	padding: 20px 0 20px 0;
	background-color: #f2f2f2;
}
input[type="submit"], input[type="button"] {
	width: 80%;
	color: #FFF;
	border: none;
	padding: 20px;
	border: #a1a1a1 solid 1px;
	text-transform: uppercase;
	background-color: #48a6fa;
}
.right-content{
	width: 69%;
	-ms-order: 2;
	-webkit-order: 2;
	order: 2;
	vertical-align: top;
	display: inline-block;
}
.container, .container-collapse, .container-wide, .container-slim {
	padding-left: 54px;
}
@media screen and (max-width: 980px) {
	aside{
		width: auto;
		display: block;
		max-width: 450px;
		margin: 0 auto 0 auto;
	}
	.right-content{
		width: auto;
		display: block;
		margin-top: 54px;
	}
	.container{
		padding-left: 0;
	}
}
@media screen and (max-width: 640px) {
	.jobs{
		padding: 54px 20px 54px 20px;
	}
}
#search-results-list .list {
	list-style: none;
	border-top: 1px solid #626564;
}
.list li {
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	border-bottom: 1px solid #e2eaf1;
	position: relative;
}
.list li:before, .list li:after {
	z-index: 5;
	right: 20px;
	width: 20px;
	height: 2px;
	content: "";
	display: block;
	position: absolute;
	background-color: #48a6fa;
	-webkit-transition: right .3s ease-in-out;
	-moz-transition: right .3s ease-in-out;
	-ms-transition: right .3s ease-in-out;
	-o-transition: right .3s ease-in-out;
	transition: right .3s ease-in-out;
}
.list li:before{
	top: 40% !important;
	transform: rotate(45deg);
}
.list li:after {
	top: calc(40% + 14px);
	transform: rotate(-45deg);
}
.list li:hover:before, .list li:hover:after {
	right: 5px;
	width: 20px;
	height: 2px;
}
#search-results-list a{
	color: black;
	padding: 20px;
	display: block;
	text-decoration: none;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
#search-results-list li:hover a{
	color: #48a6fa;
	background: #f2f2f2;
}
#search-results-list h2{
	padding-bottom: 10px;
	text-transform: uppercase;
}
.post p.list-details-wrapper{
	padding-top: 0;
	padding-bottom: 18px;
}
.list-details-wrapper span {
	position: relative;
	display: inline-block;
	color: #000 !important;
	padding: 10px 0 10px 30px;
	background: transparent url(../images/picto-contract.png) no-repeat 5px 4px;
	-webkit-background-size: auto 22px;
	background-size: auto 22px;
}
.list-details-wrapper .job-location {
	padding-left: 26px;
	padding-right: 50px;
	background-image: url(../images/picto-geoloc.png);
}
.list-details-wrapper .job-cat {
	padding-left: 42px;
	padding-right: 50px;
	background-image: url(../images/picto-cat.png);
}
.list-details-wrapper .job-studies {
	padding-left: 45px;
	background-image: url(../images/picto-level.png);
}
.list-details-wrapper .job-company {
	padding-right: 50px;
	text-transform: capitalize;
	background-image: url(../images/picto-company.png);
}
.list-details-wrapper .job-type {
	padding-right: 50px;
}
.list-details-wrapper .job-experience {
	background-image: url(../images/picto-experience.png);
}
.showing_jobs.wp-job-manager-showing-all{
	display: none !important;
}
