/*-----------------*/
/* Check Browser Compatibility */
/*-----------------*/
#checkBrowserCompatibility{
  display: block;
  text-align: center;
  height: 100vh;
  min-height: 100%;
  width: 100vw;
  min-width: 100%;
  overflow: hidden;
  position: fixed;
  background: #a4a4a4;
  z-index: 9999999999;
  background-image: repeating-linear-gradient(-45deg,#d4d4d4 10px,#d4d4d4 17px,#eeeeee 17px,#eeeeee 18px);
}

.alertBadBrowser{
    width: 85%;
    max-width: 600px;
    margin: 0 auto;
    transform: translateY(-50%);
    top: 50%;
    background: #fff;
    position: relative;
    padding: 20px 20px 20px 150px;
    line-height: 19px;
    font-size: 13px;
    font-family: arial;
    box-sizing: border-box;
    box-shadow: 10px 10px 20px -19px #000;
    border-radius: 2px;
    outline-color: #0360ff;
    outline-offset: -7px;
    outline-style: solid;
    outline-width: 1px;
    background-image: url(../../images/base/icon_browserCompatibility.svg);
    background-repeat: no-repeat;
    background-size: 120px;
    background-position: 15px 15px;
}

.titlebadbrowser{
    font-size: 15px;
    margin-bottom: 2px;
    color: #0360ff;
    text-transform: uppercase;
    font-weight: bold;
}
.subtitlebadbrowser{
    font-size: 14px;
    margin-bottom: 10px;
    color: #000;
    letter-spacing: -0.01em;
    line-height: 120%;
}
.textbadbrowser{
    font-size: 11px;
    line-height: 130%;
    color: #333;
}
.listbadbrowser{text-align: right;}
.listbadbrowser li{display: inline-block;margin: 15px 12px 0 0;}
.listbadbrowser li a{font-weight:bold;letter-spacing:-0.03em;color: #333;text-decoration:none;padding: 72px 16px 0;display: block;}
.listbadbrowser li a:hover{color:#0060ff;}
.ico_badbrowser{
    background-size: 70px 70px;
    background-repeat: no-repeat;
    background-position: top center;
}
.bw_firefox{background-image: url(../../images/base/bw_firefox.svg);}
.bw_chrome{background-image: url(../../images/base/bw_chrome.svg);}
.bw_safari{background-image: url(../../images/base/bw_safari.svg);}

/*-----------------*/
/* MAINTENANCE */
/*-----------------*/
#maintenance{
  display: grid;
  align-items: center;
  text-align: center;
  justify-items: center;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  position: fixed;
  background: #dadada;
  z-index: 999999999;
  background-image: url(../../images/home-bg1.jpg);
  background-position: center;
  background-repeat:no-repeat;
  background-size:cover;
  font-size: 20px;
  padding: 50px;
}
#maintenance:before{
	background-image: url(../../images/base/bg_maintenance.png);
    background-position:bottom left;
	background-repeat:no-repeat;
}

#maintenance .maint_wrapper{
    background-size:100px;
    border-radius: 10px;
    z-index:9999999999;
    position:relative;
    width: 100%;
    color: var(--white);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
   
}
#maintenance .maint_logo{
	position: absolute;
	top: 20px;
	left: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	right: 20px;
}
#maintenance .maint_coordonnees{
	left: 0;
	right: 0;
	bottom: 0;
	font-weight: bold;
}
#maintenance .maint_coordonnees > div:not(:first-child){
    margin-left: 40px;
}
#maintenance .title{
	margin-bottom: 30px;
	padding-top: 80px;
}

#maintenance .maint_social .share-buttons a {
    min-width: auto;
    margin-right: 0px;
    padding: 14px;
    height: auto;
    width: auto;
    background: var(--primary-color);
    border-radius: 100px;
}

#maintenance .maint_social .share-buttons a svg{fill: var(--white);}
#maintenance .maint_social .share-buttons a:hover{background: var(--secondary-color);}
#maintenance .maint_logo img{width: 220px;height: 140px;}
#maintenance  .maint_title{font-size: 55px;}

/*---------------------------------*/
/* FORM */
/*---------------------------------*/
.cekome_form, .cekome_form form{
	margin: 0;
	padding: 0;
	position: relative;
}
.cekome_form .wrap-fieldset {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.wrap-fieldset .blc, 
.wrap-fieldset div[id*="cptchk"],
.wrap-fieldset .button.cf_submit{
    flex: 1 1 45%;
    max-width: 45%;
    width: 100%;
    display: inline-block;
    margin: 5px 2%;
    position: relative;
}

.wrap-fieldset .blc_textarea,
.wrap-fieldset .blc_fileattach,
.wrap-fieldset .blc_checkbox,
.wrap-fieldset .blc_select,
.wrap-fieldset .blc_wide,
.cekome_form .formprivacy_chk{
    flex: 1 1 94%;
    max-width: 94%;
}

.wrap-fieldset div[id*="cptchk"] .blc.blc_captcha {max-width: 100%;}


.cekome_form input[type="text"],
.cekome_form input[type="date"],
.cekome_form input[type="time"],
.cekome_form input[type="tel"],
.cekome_form input[type="email"],
.cekome_form input[type="password"],
.cekome_form textarea,
.cekome_form select {
	color: var(--black);
	outline: none;
	transition: all 0.3s ease-in-out;
	background-color: var(--white);
	border-radius: 100px;
	height: 50px;
	line-height: normal;
	box-sizing: border-box;
	border: 1px solid #a2a2a2;
	border-radius: 0;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	font-size: 14px;
	padding: 6px 15px!important;
	width: 100%;
	font-family: var(--font-text);
	margin: 0!important;
}
.cekome_form input[type="text"]:focus,
.cekome_form input[type="date"]:focus,
.cekome_form input[type="time"]:focus,
.cekome_form input[type="email"]:focus,
.cekome_form input[type="tel"]:focus,
.cekome_form input[type="password"]:focus,
.cekome_form textarea:focus {
	border-color: var(--primary-color);
}

/*placeholder*/
.cekome_form input[type=text]:not(.cf_inputcaptcha)::-webkit-input-placeholder,
.cekome_form input[type=text]:not(.cf_inputcaptcha)::-moz-placeholder,
.cekome_form input[type=text]:not(.cf_inputcaptcha):-ms-input-placeholder,
.cekome_form input[type=text]:not(.cf_inputcaptcha):-moz-placeholder,
.cekome_form input[type=date]:not(.cf_inputcaptcha)::-webkit-input-placeholder,
.cekome_form input[type=date]:not(.cf_inputcaptcha)::-moz-placeholder,
.cekome_form input[type=date]:not(.cf_inputcaptcha):-ms-input-placeholder,
.cekome_form input[type=date]:not(.cf_inputcaptcha):-moz-placeholder,
.cekome_form input[type=tel]::-webkit-input-placeholder,
.cekome_form input[type=tel]::-moz-placeholder,
.cekome_form input[type=tel]:-ms-input-placeholder,
.cekome_form input[type=tel]:-moz-placeholder,
.cekome_form input[type=email]::-webkit-input-placeholder,
.cekome_form input[type=email]::-moz-placeholder,
.cekome_form input[type=email]:-ms-input-placeholder,
.cekome_form input[type=email]:-moz-placeholder,
.cekome_form input[type=password]::-webkit-input-placeholder,
.cekome_form input[type=password]::-moz-placeholder,
.cekome_form input[type=password]:-ms-input-placeholder,
.cekome_form input[type=password]:-moz-placeholder,
.cekome_form textarea::-webkit-input-placeholder,
.cekome_form textarea::-moz-placeholder,
.cekome_form textarea:-ms-input-placeholder,
.cekome_form textarea:-moz-placeholder
{color:transparent; -webkit-transition: all 0.6s ease-in-out;   -moz-transition: all 0.6s ease-in-out;  -ms-transition: all 0.6s ease-in-out;   -o-transition: all 0.6s ease-in-out;  transition: all 0.6s ease-in-out;}

.cekome_form .focused input[type=text]:not(.cf_inputcaptcha)::-webkit-input-placeholder,
.cekome_form .focused input[type=text]:not(.cf_inputcaptcha)::-moz-placeholder,
.cekome_form .focused input[type=text]:not(.cf_inputcaptcha):-ms-input-placeholder,
.cekome_form .focused input[type=text]:not(.cf_inputcaptcha):-moz-placeholder,
.cekome_form .focused input[type=date]:not(.cf_inputcaptcha)::-webkit-input-placeholder,
.cekome_form .focused input[type=date]:not(.cf_inputcaptcha)::-moz-placeholder,
.cekome_form .focused input[type=date]:not(.cf_inputcaptcha):-ms-input-placeholder,
.cekome_form .focused input[type=date]:not(.cf_inputcaptcha):-moz-placeholder,
.cekome_form .focused input[type=tel]::-webkit-input-placeholder,
.cekome_form .focused input[type=tel]::-moz-placeholder,
.cekome_form .focused input[type=tel]:-ms-input-placeholder,
.cekome_form .focused input[type=tel]:-moz-placeholder,
.cekome_form .focused input[type=email]::-webkit-input-placeholder,
.cekome_form .focused input[type=email]::-moz-placeholder,
.cekome_form .focused input[type=email]:-ms-input-placeholder,
.cekome_form .focused input[type=email]:-moz-placeholder,
.cekome_form .focused input[type=password]::-webkit-input-placeholder,
.cekome_form .focused input[type=password]::-moz-placeholder,
.cekome_form .focused input[type=password]:-ms-input-placeholder,
.cekome_form .focused input[type=password]:-moz-placeholder,
.cekome_form .focused textarea::-webkit-input-placeholder,
.cekome_form .focused textarea::-moz-placeholder,
.cekome_form .focused textarea:-ms-input-placeholder,
.cekome_form .focused textarea:-moz-placeholder
{color:#666;}

.cekome_form .required{
	font-family: var(--font-text);
	position: absolute;
	right: 6px;
	top: 7px;
	font-size: 15px;
	font-weight: normal;
	z-index: 2;
	line-height: 1;
}
.cekome_form .blc_fileattach .required,
.cekome_form .blc_time .required, 
.cekome_form .blc_date .required, 
.cekome_form .blc_select .required, 
.desccontact .required{
	top: 0;
	right: 0;
}

.cekome_form label{
	font-size: 12px;
	color: var(--text-color);
	position: absolute;
	top: 14px;
	left: 15px;
	z-index: 2;
	pointer-events: none;
	text-transform: uppercase;
	transition: all 0.1s ease-in-out;
}

.cekome_form .blc_fileattach label,
.cekome_form .blc_time label, 
.cekome_form .blc_date label, 
.cekome_form .blc_select label, 
.desccontact {
    position: relative;
    top: -4px;
    left: 0;
    color: var(--black);
    width: 100%;
    font-family: var(--font-bold);
    font-size: 11px;
    line-height: 1.4;
    display: block;
    text-transform: uppercase;
}

.white .cekome_form .blc_fileattach label, 
.white .cekome_form .blc_time label, 
.white .cekome_form .blc_date label, 
.white .cekome_form .blc_select label, 
.white .desccontact{color: var(--white);}

.cekome_form .blc_fileattach label{
    top: 0;
    margin-right: 10px;
}

.cekome_form .blc.focused label{
	top: 3px;
	color: var(--primary-color);
	font-size: 9px;
}

.privacyform_chk{
	position: absolute;
	left: 0;
	top: 1px;
	box-shadow: none;
}

.cekome_form .blc_checkbox{
    padding: 0 20px 0 30px;
    margin-bottom: 15px!important;
}

.cekome_form .blc_checkbox label{
    top: 0!important;
    left: 0;
    font-size: 14px!important;
    line-height: 1.4;
    display: block;
    text-transform: inherit;
	color: inherit;
}

.cekome_form .blc_checkbox label a{border-bottom: solid 1px;color: var(--primary-color);}
.cekome_form .blc_checkbox label a:hover{color: var(--secondary-color);}

.cekome_form .blc_captcha label{
	position:relative;
	top: 7px;
	text-transform: initial;
	color: var(--black);
	left: 8px;
}

.cekome_form .blc_captcha{
	padding: 9px 15px!important;
	margin-bottom: 0;
	background: #e8e8e8;
	text-align: left;
	margin: 0;
	line-height: 1;
	max-width: 100%!important;
}

.cekome_form .blocaptcha{
	margin: 10px 0 0 10px;
	display: inline-block;
	width: 100%;
}
.cekome_form  input.cf_inputcaptcha{
	line-height: 29px;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	text-align: center;
	margin: 4px 0 0  6px !important;
	background: #f4ebd2;
	outline-color: #ccc !important;
	outline-offset: 2px;
	outline-style: solid !important;
	outline-width: 1px !important;
	padding: 2px;
	float: left;
	width: 80px !important;}

.cekome_form .blocaptcha:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

.cekome_form .captchaimg{margin-top: 2px;}

.cekome_form .blc_fileattach{margin: 5px 2% 15px;} 
.cekome_form .blc_desc label{display: none;}

.cekome_form textarea {
	height: 150px;
	padding: 20px 10px!important;
	box-sizing: border-box;
	resize: none;
}

.cekome_form .button.cf_submit{
	font-size: 16px;
	padding: 18px 25px 18px 50px;
	background-image: url("../../images/icons/mail-white.svg");
	background-size: 25px;
	background-repeat:no-repeat;
	background-position: 15% center;
	transition: all 0.3s ease-in-out;
	border: none;
	cursor: pointer;
}

.cekome_form .msg.fail{ padding: 5px;}


.ckformerror {
	max-width: 400px;
	background-color: #fff;
	font-family: arial, sans-serif;
	border-left: 4px solid #d80404;
	padding: 25px 30px;
	box-sizing: border-box;
	box-shadow: 0 0 100px rgba(0,0,0,0.1);
	margin-top: 20px;
	position: fixed;
	top: 160px;
	right: 0;
	z-index: 999;
	transform: translateX(100%);
	animation: errorckform 5s forwards;
}

@keyframes errorckform {0% {transform: translateX(100%); } 10% {transform: translateX(0); } 90% {transform: translateX(0); } 100% {transform: translateX(100%); } }

.black_cform{background: rgba(0,0,0,0.7) !important;}
.white_cform .msg {margin: 40px 0 0 0!important;}
.white_cform{
	width: 90%!important;
	max-width: 650px;
	left:50%!important;
	transform: translateX(-50%);
	right: auto!important;
}
.close_cform{border: none!important;background: none!important;}
.close_cform:after{content: none;}

/*-----------------*/
/* Modal */
/*-----------------*/
.modal{
  display: grid;
  align-items: center;
  text-align: center;
  justify-items: center;
  width: 100%;
  overflow: hidden;
  position: fixed;
  background: rgba(2, 2, 2, 0.9);
  z-index: 99999999;
  transition:0.5s all ease;
}

.closemodal{
	position: absolute;
	top: 20px;
	right: 20px;
	cursor: pointer;
}
.closemodal svg{
	fill: var(--text-color);
	width: 30px;
	transition: all 0.3s ease;
	transform-origin: center;
}
.closemodal:hover svg{
	transform: scale(1.2);
	fill: var(--primary-color);
}

.innermodal{
    padding: 80px 40px 50px;
    background: #fff;
    box-shadow: 0 13px 20px -22px;
    border-radius: 10px;
    position: relative;
    pointer-events: bounding-box;
    max-width: 500px;
    width: 95%
}

.modal.hide{height:0;opacity:0;filter: transform: scale(7);}
.modal.show{height: 100vh;opacity:1;transform: scale(1);}

.horairemodal{pointer-events: none;}
.white .jourhoraires{color: var(--white);}
.white .infohoraires_ouverture{color: var(--white);}
.jourhoraires{
    font-weight: bold;
    color: var(--primary-color);
    width: 140px;
	text-transform: lowercase;
}


.jourhoraires:first-letter{text-transform: uppercase;}


.horairemodal .titlehoraires{
    font-size: 2.2em;
    font-family: var(--font-title);
    margin-bottom: 20px;
    text-align: center;
    color: var(--title-color);
    line-height: 1.3;
    text-transform: uppercase;
}

.bthoraire{cursor: pointer;}

.horairemodal .infohoraires_ouverture {
    font-family: var(--font-bold);
    text-align: center;
    border-top: solid 1px;
    margin-top: 20px;
    padding-top: 10px;
    line-height: 1.2;
    font-size: 15px;
}

.infohoraires_other{
    margin-top: 30px;
    font-size: 14px;
    text-align: center;
    font-style: italic;
    font-weight: bold;
    letter-spacing: 0.5px;
}


/* ------------------------- */
/* TRADUCTION AUTOMATIQUE */
/* ------------------------- */
#google_translate_element, .skiptranslate {display: none !important;}
#flags {
    display: flex;
    align-items: center;
    justify-content: center;
}
#flags img {
    max-width: 25px;
    margin-right: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border: solid 1px rgba(255,255,255,.2);
}
#flags img:last-child {margin-right: 0;}
#flags img:hover {transform: scale(0.7);}



/* ------------------------- */
/* LIGHTBOX IMG-GALLERY */
/* ------------------------- */
.lightboxOverlay{position: fixed;}
.lightbox{
    position: fixed;
    top: 50% !important;
    transform: translateY(-50%);
    height: auto;
    max-height: 100%;
}
/* ------------------------- */
/* SOCIAL */
/* ------------------------- */
.sociblock .share-buttons{position:relative;}
.sociblock .share-buttons a{
    line-height: 1;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    margin: 0 8px;
}

.sociblock .share-buttons span {display: none!important;}

.sociblock .share-buttons a svg{
    --size:18px;
    transition: 250ms all ease-in-out;
    width: 14px;
    fill: var(--title-color);
    position: relative;
    width: var(--size);
    height: var(--size);
    max-width: var(--size);
    max-height: var(--size);
}

.sociblock .share-buttons a:hover svg{fill: var(--primary-color);}

/* ------------------------- */
/* SHARE */
/* ------------------------- */
#share .label {
    letter-spacing: 1px;
    font-size: 18px;
    margin-right: 30px;
}


/* ------------------------- */
/* MAPS */
/* ------------------------- */
.maps_canvas{min-height: 600px;}
#map_agence #map_canvas{
	min-height: 100%;
}
.maps_canvas img{
    width: 100%;
    height: 100%;
}
.gm-bundled-control-on-bottom{bottom: 240px!important;}


/* ------------------------- */
/* REASSURANCES */
/* ------------------------- */
.picto-container {display: flex;}

.picto-container li{
    display: flex;
    align-items: center;
    padding: 0 20px;
    margin: 15px 0;
    flex-direction: column;
    text-align: center;
    flex: 1 1 25%;
}

.picto-container li svg,
.picto-container li img{
	--size: 35px;
    width: var(--size);
    height: var(--size);
    min-width: var(--size);
    max-width: var(--size);
}

 .picto-container li p{
    margin: 30px 0 0 0;
    font-size: 14px;
    line-height: 1.4;
    color: var(--title-color);
}
/* ------------------------- */
/* PARTENAIRES - widget_element */
/* ------------------------- */
.widget_element{margin: 0 !important;}

.widget_partenaires li {
    position: relative;
    padding: 10px!important;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}
.widget_element li:before{
	content: none!important;
}

.widget_partenaires a {
    position: relative;
    background: none!important;
    border: none!important;
}

.widget_partenaires li .wrap-element {
    transition: all 1s cubic-bezier(.25,.8,.25,1);
    border: 1px solid #f2f2f2;
    padding: 16px;
    position: relative;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--white);
    border-radius: 5px;
    width: 100%;
}

.widget_partenaires img {
    height: auto;
    max-height: 80px;
}

.widget_partenaires .gotolink {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    align-items: center;
    transition: all .25s cubic-bezier(.3,.3,0,.8);
}

.widget_partenaires .gotolink a{
	opacity: 0;
	visibility: hidden;
	color: var(--title-color)!important;
	font-size: 12px;
	text-transform: uppercase;
	transform: translateY(16px);
	transition: all .25s cubic-bezier(.3,.3,0,.8);
	font-family: var(--font-bold);
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.widget_partenaires li:hover .gotolink {background-color: var(--white);}
.widget_partenaires li:hover .gotolink a {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ------------------------- */
/* newsletter */
/* ------------------------- */
.formwidgetnewsletter{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.formwidgetnewsletter .labelnewsletter, .formwidgetnewsletter .wrapnewsletter{
	flex: 1 1 50%;
	width: 50%;
	width: auto;
}

.formwidgetnewsletter .submitnewsletter{position: absolute;right: 0;top: 0;}


.formwidgetnewsletter .checkrgpdnewsletter{
	margin-bottom: 10px;
	position: relative;
	line-height: 1.1;
	padding-left: 30px;
}

.formwidgetnewsletter .checkrgpdnewsletter a, 
.formwidgetnewsletter .noticenewsletter a{
	color: var(--primary-color);
	text-decoration: underline;
}

.formwidgetnewsletter .checkrgpdnewsletter a:hover, 
.formwidgetnewsletter .noticenewsletter a:hover{ color: var(--secondary-color); }

.formwidgetnewsletter .submitnewsletter:after{
	content: ">";
	position: absolute;
	right: 0;
	font-size: 20px;
	width: 30px;
	height: 21px;
	top: 11px;
	color: var(--primary-color);
	transition: 250ms all ease-in-out;
	line-height: 1;
}

.checkrgpdnewsletter #check_insert {
	position: absolute;
	left: 0;
	top: 4px;
}


.formwidgetnewsletter .submitnewsletter input{
	background: none!important;
	padding: 15px 40px 15px 0;
	box-shadow: none;
	border: none;
	cursor: pointer;
	transform: scale(1);
	transition: 250ms all ease-in-out;
	color: var(--primary-color);
}

.formwidgetnewsletter .submitnewsletter input:hover{color: var(--secondary-color)!important;}
.formwidgetnewsletter .submitnewsletter:hover:after{color: var(--secondary-color)!important;;}

.formwidgetnewsletter .inputnewsletter{margin-bottom: 20px;}

.formwidgetnewsletter .inputnewsletter input{
	background: none;
	border: none;
	border-bottom: solid 1px rgb(0 0 0 / 0.1);
	width: 100%;
	padding: 15px 0;
	font-family: var(--font-text);
	font-size: 15px;
}

.formwidgetnewsletter .inputnewsletter input:focus,
.formwidgetnewsletter .submitnewsletter input:focus{outline: none;background:none;}

.formwidgetnewsletter .noticenewsletter{
	font-style: italic;
	font-size: 13px;
	line-height: 1.2;
}


.formwidgetnewsletter .labelnewsletter label{
	font-size: 45px;
	font-family: var(--font-title);
	position: relative;
	line-height: 1.1;
	max-width: 600px;
	display: block;
	color: var(--title-color);
}

/*---------------------------------*/
/* ckslider */
/*---------------------------------*/
.cksliderwrap{
    width: 100%;
    position:relative;
    padding-bottom: 60px;
}

.ckslider {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
    overflow: hidden;
}

.ckslider>*{animation-fill-mode: forwards!important;}

@keyframes ckslide {
    0% { -webkit-transform:translateX(0); transform:translateX(0); }
    100% { -webkit-transform:translateX(-100%); transform:translateX(-100%); }
}
@keyframes ckslideSkew {
    0% { -webkit-transform:translateX(0) skew(-10deg); transform:translateX(0) skew(-10deg); }
    100% { -webkit-transform:translateX(-100%) skew(-10deg); transform:translateX(-100%) skew(-10deg); }
}

@keyframes cksliderevSkew {
    0% { -webkit-transform:translateX(-100%) skew(-10deg); transform:translateX(-100%) skew(-10deg); }
    100% { -webkit-transform:translateX(0) skew(-10deg); transform:translateX(0) skew(-10deg); }
}
@keyframes cksliderev {
    0% { -webkit-transform:translateX(-100%); transform:translateX(-100%); }
    100% { -webkit-transform:translateX(0); transform:translateX(0); }
}

.progressBar{
    position: absolute;
    bottom: 42px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e8e8e8;
    z-index: 2;
}
.progressBar .sizeBar{
    width: 0%;
    height: 100%;
    background: var(--primary-color);
}
@keyframes progressBar {to { width:100%; }}

.ckslidercontrols .next,
.ckslidercontrols .prev {
	--size: 30px;
	position: absolute;
	-webkit-transition: all 0.3s cubic-bezier(1, 0, 0, 0);
	-moz-transition: all 0.3s cubic-bezier(1, 0, 0, 0);
	-o-transition: all 0.3s cubic-bezier(1, 0, 0, 0);
	transition: all 0.3s cubic-bezier(1, 0, 0, 0);
	height: auto;
	width: var(--size);
	z-index: 6;
	background-size: 11px;
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
	background-color: var(--primary-color);
	bottom: 0;
}

.ckslidercontrols .next {
    background-image: url(../../images/icons/arrowright.svg);
    right: 0;
}
.ckslidercontrols .prev{
    background-image: url(../../images/icons/arrowleft.svg);
    left: 0;
}

.ckslidercontrols .next:hover, 
.ckslidercontrols .prev:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.ckctrldiv{
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    position: absolute;
    display: flex;
    align-items: center;
    padding: 5px 3px;
    transition: all 0.6s cubic-bezier(1, 0, 0, 0);
    bottom: 0;
}

.ckctrldiv .play{
    width: 15px;
    min-width: 20px;
    height: 20px;
    position: relative;
    cursor:pointer;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto;
    margin: 0 0.3em;
}

.ckctrldiv .play.playing{background-image: url("../../images/icons/play.svg");}

.ckctrldiv .play,
.ckctrldiv .play.stopped{background-image: url("../../images/icons/pause.svg");}

.ckctrldiv .counter{
    text-align: right;
    display: flex;
    flex-wrap: nowrap;
}

.ckctrldiv .counter span{
    height: 4px;
    width: 20px;
    background: none;
    margin: 0 6px;
    display: inline-block;
    transition: 250ms all ease-in-out;
    cursor: pointer;
    background: #ddd;
}

.ckctrldiv .counter span:hover,
.ckctrldiv .counter span.active{background: var(--primary-color);}

.ckctrldiv .counter span.active{ width: 40px;}


/* ------------------------- */
/* RATING */
/* ------------------------- */
.cekome-stars-list p{
    color: var(--black);
    background: var(--light-color);
    padding: 1em;
}
.cekome-stars-list article{
    padding: 2vmin !important;
    margin: 0 !important;
}
.cekome-stars-list article:nth-child(even){background: rgba(0,0,0,0.05);}
.cekome-stars-list article:nth-child(odd){background: transparent;}
.cekome-stars-list article .st-review{font-size: 18px;}

.cekome-stars-list article .st-quote{
    margin-top: 5px;
    font-size: 15px;
}

/* ------------------------- */
/* AGENCES */
/* ------------------------- */
#filterwidgetagence{display: none}
#map_agence {height: 400px;}
#mapwidgetagence {padding-left: 80px;}
.list_imgagence {
    width: 140px;
    height: 160px;
}
.list_infoagence {
	padding: 0 0 0 30px;
	font-size: 15px;
	line-height: 1.4;
}

.list_infoagence .title_list_infoagence {
    font-family: var(--font-bold);
    font-size: 16px;
    text-transform: uppercase;
}
.tel_list_infoagence{
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 12px;
	padding-left: 23px;
	background-image: url(../../images/icons/phone.svg);
	margin-top: 10px;
}
.more_list_infoagence{margin-top: 20px;}
.itemlistwidgetagence {
    padding: 20px 10px;
    align-items: center;
}
.tel_list_infoagence a {
    color: var(--title-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    font-family: var(--font-bold);
}
.list_infoagence .title_list_infoagence a {color: var(--title-color);}

.list_infoagence .title_list_infoagence a:hover,
.tel_list_infoagence a:hover{color: var(--primary-color);}


#infosupAgence{
    padding: 20px;
    background: var(--light-color);
    border: solid 1px #40404042;
    margin-bottom: 30px;
    color: var(--title-color);
    line-height: 1.3;
    font-style: italic;
}
#agenceCoordonnees{
	border-bottom: solid 1px rgb(0 0 0 / 10%);
	padding-bottom: 40px;
	margin-bottom: 70px;
}
#infoagence > div{
	margin: 0 40px;
	padding: 35px 0 0 0;
	text-align: center;
}
#infoagence > div:before{
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	--size: 20px;
}

.agence-img{height: 300px;}
.agence-wrapper{
	background: var(--light-color);
	padding: 20px;
}
.agence-title{
	margin-top: 0;
	font-size: 28px;
	margin-bottom: 10px;
}
.agence-title a{color: var(--title-color)}
.agence-title a:hover{color: var(--primary-color);}
.agence-content{
	font-size: 15px;
	line-height: 1.5;
	margin-bottom: 20px;
}
/* ------------------------- */
/* NAVIGATION PAGES */
/* ------------------------- */
.navigpages li{ margin: 0 1px;}
.navigpages .next{margin-left: auto;}
.navigpages .previous{margin-right: auto;}

.navigpages .page-numbers{
    letter-spacing: 0;
    padding: 14px 18px;
}
.navigpages .page-numbers.current{
    background: var(--secondary-color);
    cursor: not-allowed;
    color: var(--white);
}

.navigpages .left, .navigpages .right{margin: 0 30px;}
