/*Copyright (C) 2016, Symbol SASU, 85 rue du chat noir, 78830 Bullion, France.*/
#tinymce {
	opacity: 1;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
	padding-left: 15px !important;
	padding-right: 15px !important;
}
#tinymce,
.wysiwyg {
  margin-bottom: 45px;
  padding-top: 0;
}
.wysiwyg:last-child {
	margin-bottom: 0;
}
/* HELPERS */
.box {
	position: relative;
	padding-top: 45px;
	padding-bottom: 45px;
}
.button i {
	margin-left: 5px;
}
/* HEADER */
body.mobile.menu-opened {
	overflow: hidden;
}
#header {
	position: relative;
	border-bottom: 1px solid #ccc;
}
#header.fixed {
	z-index: 9999;
	position: fixed;
	top: 0;
	width: 100%;
    background-color: white;
}
body.mobile.menu-opened #header.fixed {
	height: 100%;
	overflow: auto;
}
#header.fixed + div {
	padding-top: 61px;
}
#logo {
	display: inline-block;
}
#logo img {
    height: 60px;
	width: auto;
    padding: 10px 0;
}
#menu {
    margin-bottom: 0;
    float: right;
    height: 60px;
    transition: all 0.3s ease;
}
#menu li {
	position: relative;
	display: inline-block;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
}
#menu li a {
    text-transform: uppercase;
	text-decoration: none;
    vertical-align: middle;
	padding: 20px 5px;
	font-size: 12px;
    color: #7e8082;
    display: block;
	outline: none;
}
#menu > li:hover > a,
#menu > li.current-menu-item > a,
#menu > li:hover .sub-menu > li:hover > a,
#menu > li .sub-menu > li.current > a {
	color: #e66609;
}
.mobile #menu {
	display: block;
    text-align: left;
    clear: both;
    float: none;
	height: 0;
    overflow: hidden;
	visibility: hidden;
	opacity: 0;
}
.mobile #menu li {
	display: block;
	height: 0;
}
.mobile.menu-opened #menu {
	height: 100%;
	opacity: 1;
	visibility: visible;
}
.mobile.menu-opened #menu  li {
	height: auto;
	border-bottom: 1px solid;
}
.mobile.menu-opened #menu  li:last-child {
	border: none;
}
#menu .sub-menu {
	opacity: 0;
	visibility:	hidden;
	position: absolute;
	top: 75px;
	left: 0;
	margin: 0;
	transition: all 0.3s ease;
	width: 210px;
	background-color: white;
    border: 1px solid #ccc;
    border-top: 0;
}
#menu .sub-menu li {
	display: block;
	border-bottom: 1px solid #ccc;
}
#menu .sub-menu li:last-child {
	border-bottom: 0;
}
#menu li.touch .sub-menu,
#menu li:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	top: 100%;
}
#menu .sub-menu li a {
	padding: 20px 25px;
}
.mobile #menu .sub-menu {
	position: relative;
	opacity: 1;
	visibility: visible;
	top: 0;
	width: 100%;
	border: none;
    border-top: 1px solid;
}
/*Slider*/
#slider {
	height: 215px;
	position: relative;
	background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
	transition: all 0.3s ease;
}
#slider .content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
	transition: all 0.3s ease;
}
#slider .title p {
	font-size: 23px;
	transition: all 0.3s ease;
}
/*Trigger*/
#trigger {
    position: absolute;
    width: 60px;
    height: 60px;
    right: 20px;
    opacity: 0;
    top: 0px;
    z-index: 1001;
    visibility: hidden;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
body.mobile #trigger {
	opacity: 1;
	visibility: visible;
}
body.mobile #trigger span,
body.mobile #trigger span:before,
body.mobile #trigger span:after {
    position: relative;
    top: 30px;
    left: 24px;
	height: 3px;
    width: 32px;
    background-color: #888;
    display: block;
	cursor: pointer;
    content: '';
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
body.mobile #trigger span:before {
    top: -12px;
    left: 0;
}
body.mobile #trigger span:after {
    top: 9px;
    left: 0;
}
body.mobile.menu-opened #trigger span {
    background-color: transparent;
}
body.mobile.menu-opened #trigger span:before {
    -moz-transform: translateY(12px) rotate(45deg);
    -o-transform: translateY(12px) rotate(45deg);
    -webkit-transform: translateY(12px) rotate(45deg);
    -ms-transform: translateY(12px) rotate(45deg);
    transform: translateY(12px) rotate(45deg);
}
body.mobile.menu-opened #trigger span:after {
    -moz-transform: translateY(-12px) rotate(-45deg);
    -o-transform: translateY(-12px) rotate(-45deg);
    -webkit-transform: translateY(-12px) rotate(-45deg);
    -ms-transform: translateY(-12px) rotate(-45deg);
    transform: translateY(-12px) rotate(-45deg);
}
body.mobile.menu-opened #trigger span:before,
body.mobile.menu-opened #trigger span:after {
	background-color: #e66609;
}
/*Back-to-top*/
#back-to-top {
    cursor: pointer;
	z-index: 1000;
	display: inline-block;
	width: 50px;
	height: 50px;
	position: fixed;
	border: 1px solid #888;
	bottom: 25px;
	right: 25px;
	color: #888;
	opacity: 0;
	visibility: hidden;
	padding-top: 12px;
	text-align: center;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background-color: white;
	background-position: center 15px;
	background-repeat: no-repeat;
}
.mobile #back-to-top {
	bottom: 0px;
	right: 0px;
	width: 35px;
	height: 35px;
}
#back-to-top:hover {
	background-color: #e66609;
	color: white;
	border-color: #e66609;
}
#back-to-top.show {
	opacity: 1;
	bottom: 75px;
	right: 50px;
	visibility: visible;
}
/* FORM */
.wpcf7 {
	position: relative;
}
.wpcf7-form .fields {
	position: relative;
}
.wpcf7-form p {
	margin-bottom: 0;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="number"],
.wpcf7-form textarea {
    width: 100%;
	margin-bottom: 20px;
}
.wpcf7-form textarea {
	height: 300px;
	resize: none;
	overflow: auto;
	margin-bottom: 30px;
}
.wpcf7-form label {
	margin-right: 15px;
}
.wpcf7 img.ajax-loader {
    position: absolute;
    left: 0px;
    top: 65px;
}
.wpcf7-form .wpcf7-response-output {
	display: block;
	margin: 15px 0 0 0;
	padding: 0;
	border: none;
}
.wpcf7-form .wpcf7-response-output.wpcf7-display-none {
	display: none;
}
.wpcf7-form .wpcf7-not-valid-tip {
	display: none;
}
input[type="text"].wpcf7-not-valid,
input[type="email"].wpcf7-not-valid,
input[type="radio"].wpcf7-not-valid,
textarea.wpcf7-not-valid,
select.wpcf7-not-valid {
	background-color: rgba(230, 102, 9, 0.23);
}
/*Information From*/
.wpcf7-form .submit:after,
.wpcf7-form-control-wrap:before,
.wpcf7-form-control-wrap:after,
.wpcf7-form .wpcf7-response-output:before {
	font-family: fontawesome;
    position: relative;
}
.wpcf7-form .submit:before,
.wpcf7-form-control-wrap:before {
    position: absolute;
	left: 11px;
    top: -11px;
}
.wpcf7-form-control-wrap:after {
	content: '\f069';
	position: absolute;
	color: #e66609;
	font-size: 10px;
    top: -8px;
	right: 8px;
}
.wpcf7-form-control-wrap.souscripteur:after {
	content: '';
}
.wpcf7-form-control-wrap.action-inter:after {
	content: '';
}
.wpcf7-form-control-wrap.nom:before,
.wpcf7-form-control-wrap.your-lastname:before {
	content: '\f007';
}
.wpcf7-form-control-wrap.prenom:before,
.wpcf7-form-control-wrap.your-firstname:before {
	content: '\f007';
}
.wpcf7-form-control-wrap.email:before,
.wpcf7-form-control-wrap.your-email:before {
	content: '\f0e0';
}
.wpcf7-form-control-wrap.adress:before,
.wpcf7-form-control-wrap.your-adress:before {
	content: '\f041';
}
.wpcf7-form-control-wrap.your-subject:before {
	content: '\f095';
}
.wpcf7-form-control-wrap.your-phone:before {
	content: '\f095';
}
.wpcf7-form-control-wrap.souscripteur:before {
	content: '\f0b0';
}
.wpcf7-form-control-wrap.message:before ,
.wpcf7-form-control-wrap.your-message:before {
	content: '\f075';
	top: -143px;
}
.wpcf7-form-control-wrap.message:after,
.wpcf7-form-control-wrap.your-message:after {
    top: -142px;
}
.wpcf7-form-control-wrap.message:after {
	content: '';
}
.wpcf7-form-control-wrap.action-cinemage:after ,
.wpcf7-form-control-wrap.action-sofica:after,
.wpcf7-form-control-wrap.action-collecte:after {
	content: '';
}
.wpcf7-form .wpcf7-response-output:before {
	content: '\f069';
	color: #e66609;
	font-size: 10px;
    position: relative;
    left: -4px;
	top: -2px;
}
.wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok:before {
	content: '';
}
span.wpcf7-list-item {
	margin-left: 0;
	margin-right: 5px;
}
span.wpcf7-list-item.first {
	margin-right: 15px;
}
.wpcf7-list-item-label {
	margin-right: 5px;
}
.wpcf7-form-control.wpcf7-radio {
	vertical-align: middle;
	display: inline-block;
}
.wpcf7-form .submit {
	position: relative;
}
.wpcf7-form .submit:after {
    content: '\f1d8';
    position: relative;
    color: white;
    left: -30px;
    top: 15px;
    font-size: 12px;
	pointer-events: none;
}
select.action-inter {
	margin-top: 5px;
	margin-bottom: 5px;
}
input[type="submit"].demand {
	padding-right: 40px;
	margin-top: 30px;
}
/*Banner*/
.banner {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
	position: relative;
}
.banner .title {
    position: relative;
	padding: 80px 15px;
}
.banner .title h1 {
	text-align: center;
	color: white;
	font-weight: 700;
	margin: 0;
	text-transform: uppercase;
	font-size: 45px;
}
/*Container*/
.container {
	background-color: white;
}
.container.last {
	margin-top: 25px;
}
/* HOME*/
#news {
	background-color: #eee;
    backface-visibility: hidden;
	}
#news .container .news-title {
	padding: 0 0 20px 0;
	margin: 0;
	background-color: #eee;
}
#news .container .image {
	overflow: hidden;
    backface-visibility: hidden;
}
#news .container .image .overlay {
	position: relative;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
    backface-visibility: hidden;
}
#news .container:hover .image .overlay {
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.image .overlay {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
#news .container .image .overlay:before,
#news .container .image .overlay:after {
	content: '';
	opacity: 0;
	position: absolute;
}
#news .container .image .overlay:before {
	background-color: #e66609;
	width: 100%;
	height: 100%;
}
#news .container:hover .image .overlay:before {
	opacity: 0.45;
}
#news .container .image .overlay:after {
	background-image: url('../img/lire_plus.png');
	background-repeat: no-repeat;
	background-size: contain;
	border: 1px solid white;
	border-radius: 100%;
    width: 50px;
    height: 50px;
    background-size: 54px;
    background-position: -3px;
	top: 100px;
	left: 50%;
    -moz-transform: translateX(-25px);
    -o-transform: translateX(-25px);
    -webkit-transform: translateX(-25px);
    -ms-transform: translateX(-25px);
    transform: translateX(-25px);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
#news .container:hover .image .overlay:after {
    -moz-transform: translateX(-25px) translateY(-25px);
    -o-transform: translateX(-25px) translateY(-25px);
    -webkit-transform: translateX(-25px) translateY(-25px);
    -ms-transform: translateX(-25px) translateY(-25px);
    transform: translateX(-25px) translateY(-25px);
	opacity: 1;
	top: 50%;
}
#news .container .content {
	padding: 25px 25px 0;
	position: relative;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
    margin-bottom: auto;
}
#news .container .read-more {
    padding: 0 25px;
	margin-bottom: 20px;
}
#news .subscribe img {
	width: auto;
}
/* SOFICA */
#cinemage .bg-image {
	position: relative;
}
#cinemage .image-bg {
	background-repeat: no-repeat;
	background-size: cover;
	padding-right: 50px;
	position: absolute;
	height: 100%;
	width: 80%;
}
#cinemage .content {
	padding-right: 15px;
}
#resume .col-1-3 {
	margin-top: 30px;
}
#resume .title {
	margin-bottom: 20px;
}
#resume .cinemage-icon {
	height: 50px;
	background-repeat: no-repeat;
    background-position: center;
}
.cinemage-content {
	padding: 25px 25px 0;
}
.cinemage-content p {
	font-size: 16px;
}
#societe .container .image-bg {
	height: 220px;
	overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
	background-color: #ececec;
}
#societe .content {
	padding: 20px;
}
#team .team-item {
	margin-top: 30px;
}
#team .team-content {
	background-color: #f5f5f5;
	padding: 20px;
}
#team .team-content .name {
	font-size: 18px;
	margin-bottom: 20px;
}
#team .team-content .content {
	margin-bottom: auto;
}
.prevnext {
	margin-top: 30px;
}
.prevnext a {
    display: inline-block;
    padding: 15px;
    width: 50px;
    border: 1px solid #888;
    background: #fff;
    color: #888;
    margin: 0 10px;
    text-decoration: none;
    text-align: center;
}
.prevnext a:first-child {
	margin-left: 0;
}
.prevnext a:hover {
	background-color: #e66609;
	color: white;
	border-color: #e66609;
}
/* Blog */
#blog .container .image .overlay {
	text-align: center;
}
#blog .container .image .overlay img {
	max-height: 210px;
}
article.single .image {
	text-align: center;
}
article.single .image img {
	width: auto;
	height: auto;
	max-height: 500px;
}
/* ASIDE */
.sidebar {
	padding: 0;
}
aside .widget {
  margin-bottom: 40px;
  font-size: 12px;
}
aside .widget h3 {
  margin: 0;
  padding: 0 0 20px 0;
  text-transform: uppercase;
}
aside .widget li {
	padding: 10px;
}
aside .widget li a {
	text-decoration: none;
}
aside .widget li a:hover {
	color: #e66609;
}
aside .widget li:before {
    font-family: fontawesome;
    position: relative;
    color: #79d6d4;
    content: '\f138';
    left: -9px;
}
aside .widget.populars li {
	padding-left: 0;
}
aside .widget.populars li:before {
    content: '';
}
aside .widget.populars li .post-date {
	margin-left: 9px;
}
aside .widget.populars li .post-date:before {
    font-family: fontawesome;
    position: relative;
    color: #bbbbbb;
    content: '\f017';
    left: -9px;
}
/*Counter*/
.-dashboard {
    min-width: 280px;
    height: 80px;
    margin: auto;
}
#souscripteurs .-dashboard {
	margin: 0;
    height: 135px;
}
.-dash_title {
	/*position: absolute; */
    /* top: 50px; */
    color: white;
    margin-top: 60px;
    text-transform: uppercase;
    text-align: center;
}
#souscripteurs .-dash_title {
    margin-top: 110px;
	font-size: 20px;
}
.-dash.-days_dash,
#souscripteurs .-dash.-days_dash {
	margin-left: 0;
}
.-dash.-minutes_dash,
#souscripteurs .-dash.-minutes_dash {
	margin-right: 0;
}
.-dash {
	position: relative;
    /* top: 50px; */
    /* margin: 0; */
    width: 60px;
    height: 60px;
    /* color: #009688; */
    /* margin-top: 60px; */
    margin: 0 10px;
    text-transform: uppercase;
    text-align: center;
    display: inline-block;
    background-color: white;
}
#souscripteurs .-dash {
    width: 100px;
    height: 100px;
	margin: 0 20px;
}

.-dash::after {
    content: ":";
    position: absolute;
    top: 14px;
    right: -13px;
    color: white;
    font-size: 26px;
    /* font-weight: bold; */
}
#souscripteurs .-dash::after {
    top: 8px;
	right: -27px;
    font-size: 46px;
}
.-dash.-minutes_dash:after {
	content: "";
}
.-dash.-seconds_dash {
	display: none;
}
.-digit {
	display: inline-block;
    position: relative;
    width: 20px;
    top: -78px;
    left: -2px;
    height: 60px;
    font-size: 26px;
    color: #79d6d4;
    font-family: verdana;
}
#souscripteurs .-digit {
    height: 80px;
    font-size: 46px;
    width: 35px;
    top: -140px;
    left: 0;
}
.tc_top,
.tc_bottom {
    position: absolute;
    top: 13px;
    width: 25px;
}
#souscripteurs .tc_top,
#souscripteurs .tc_bottom {
    width: 35px;
}
/*Isotope*/
#filter-films {
	text-align: center;
	margin: auto;
}
#filter-films li a {
	border: 1px solid #888;
	text-transform: uppercase;
	padding: 10px;
	text-decoration: none;
	outline: none;
}
#filter-films li a:hover,
#filter-films li a:focus,
#filter-films li a.active {
	border-color: #e66609;
	color: #e66609;
}
#filter-films li {
	line-height: 40px;
	padding: 5px;
}
.film-item {
	width: 23%;
	margin-bottom: 30px;
	overflow: hidden;
	height: 304px;
	backface-visibility: hidden;
}
.film-item .image {
	transition: all 0.3s ease;
    height: 100%;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.film-item:hover .image {
	transform: scale(1.1);
}
.film-gutter {
	width: 2.666%;
}
.grid-item {
	margin: 0 auto;
}
.blog-item {
	margin-bottom: 30px;
}
.blog-item .content {
	padding: 20px 20px 0;
	position: relative;
    flex-direction: column;
    margin-bottom: auto;
	backface-visibility: hidden;
}
.blog-item  .category {
padding: 2px 4px;
    background-color: #79d6d4;
    color: white;
    position: absolute;
    top: -45px;
    backface-visibility: hidden;
}
#news .post-date,
.blog-content  .post-date,
.blog-item  .post-date {
	margin-bottom: 6px;
	margin-top: 0;
}
.blog-content  .post-date {
	margin-top: 6px;
}
.blog-item .image {
	overflow:hidden;
}
.blog-item .container:hover .image .overlay {
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.blog-item .read-more {
    padding: 0 20px;
	margin-bottom: 20px;
}
.post-date {
	color: #bbbbbb;
}
/*Blog*/
#blog {
	background-color: #f5f5f5;
}
/*Page*/
#page,
#archive,
#category {
	background-color: #f5f5f5;
}
/*Member*/
#team .member {
	padding: 30px;
}
#team .socials {
    margin-bottom: 0;
}
/*Date*/
.post-date i {
	margin-right: 5px;
}
/*Socials*/
.socials {
	font-size: 20px;
    padding: 9px 0px;
    margin-bottom: 15px;
    margin-top: 15px;
}
.socials .social {
    padding: 13px 25px;
    margin-right: 14px;
    position: relative;
}
.socials .social i {
	position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
	padding: 14px 18px;
    left: 0px;
    border-radius: 100%;
    background-color: #79d6d4;
    background-position: 12px;
}
/*Partner*/
.partner-images img {
	width: 200px;
	height: auto;
	padding: 20px;
}
/*Copyrights*/
#copyright {
	padding: 25px 0;
}
#copyright ul,
#copyright ul li {
	margin: 0;
	display: inline-block;
}
#copyright ul li {
	padding: 5px 40px;
}
#copyright ul li a:hover {
	color: white;
}
/*Footer*/
#footer {
	position: relative;
}
#newsletter,
#inscription {
	padding: 20px 0;
}
#newsletter .fa-pencil,
#inscription .fa-pencil {
	margin-left: 9px;
}
/*Video*/
.video-wrapper iframe {
	width: 100%;
}
/*WP Page Navi*/
.pager {
	text-align: center;
	height: 50px;
}
.wp-pagenavi {
	margin-top: 20px;
	padding: 14px 0;
}
.wp-pagenavi span.current,
.wp-pagenavi a {
	padding: 15px;
	margin: 7px;
}
.wp-pagenavi a:hover,
.wp-pagenavi span.current {
	border-color: #e66609;
	color: #888;
}
/*Image Copyright*/
.image {
	position: relative;
}
.image-copyright {
	position: absolute;
    right: 0;
    color: white;
    bottom: 0;
	font-size: 8px;
}