@charset "UTF-8";
/******************************************************************************************

Project : Styles vitrine I14
Version: 1.0
Author: FX Lair - Bordenave Danny

**********************************************************************************************

Lasts Modifs :

**********************************************************************************************

Summary
0.  Mixin and general var (include in child)
1.  Base code
	1.1 Reset, clearfix, box-sizing, fix
	1.2 Colors
	1.3 Typo


	1.6 useful classes (utils)

2.  layout & modules
	2.1  General

3. Main styles
4. Forms
5. Popin
6. MediaQuery
9.  slider
11. Cartes
Specifics

All styles must be prefix with the ".cc" class

Base: 1em=13px;
**********************************************************************************************/
/*********************************************************************************************

Project : Styles vitrine I14 : general
Version: 1.0
Author: FX Lair - Bordenave Danny

**********************************************************************************************

Lasts Modifs :

**********************************************************************************************

Summary
1.  General var
    1.1 Colors
    1.2 Themes blocs
    1.3 Breakpoint
2.  Margin


X.  Mixin
    X.1  px-to-rem
    X.2  Rem mixin
**********************************************************************************************/
/* ==========================================================================
0.  Fonts
========================================================================== */
/*
@font-face {
  font-family: 'glyphs_cm2015';
  src:url('/fr/vitrine/styles/font/icomoon.eot?-o8tn8g');
  src:url('/fr/vitrine/styles/font/icomoon.eot?#iefix-o8tn8g') format('embedded-opentype'),
    url('/fr/vitrine/styles/font/icomoon.woff?-o8tn8g') format('woff'),
    url('/fr/vitrine/styles/font/icomoon.ttf?-o8tn8g') format('truetype'),
    url('/fr/vitrine/styles/font/icomoon.svg?-o8tn8g#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}
*/
/* ==========================================================================
1.  General var
========================================================================== */
/*
1.1 Colors
========================================================================== */
/* specif hors charte Dago */
/*
1.2 Themes blocs
========================================================================== */
/*
1.3 Breakpoint
========================================================================== */
/* spécial pour les sliders */
/* ==========================================================================
2.  Margin
========================================================================== */
/* Main content padding */
/* =GridMargin+cmrPadding */
/*
60
40
30 */
/* ==========================================================================
X.  Mixin
========================================================================== */
/*
  body is set to
*/
/*
  Def police
*/
/*
X.1  px-to-rem
==========================================================================
Convert px to rem
Usage:
margin:px-to-em(13) px-to-em(13) 0;
->
margin: 0.8125rem 0.8125rem 0;

Deprecated : use Rem mixin instead to give a fallback for browser wichn don't interpret rem
*/
/*
X.2  Rem mixin
==========================================================================
http://hugogiraudel.com/2013/03/18/ultimate-rem-mixin/
https://css-tricks.com/snippets/css/less-mixin-for-rem-font-sizing/

Usage:
.toto {
  @include rem(font-size, 1.6rem);
  @include rem(padding, 20px 10px);
  @include rem(margin, 13px auto 0 10px);
}
->
body {
  font-size: 25.6px;
  font-size: 1.6rem;
  padding: 20px 10px;
  padding: 1.25rem 0.625rem;
}

parse-int : parse an integer from a value with a unit
$px : (); $rem: (); -> define a list of values for both units then iterate through each value in the given parameter $values
 If the value is either auto or 0, we append it to the list as-is
 If the value has a unit, we split it to get both the unit and the raw value
 We append according values to the lists depending on the unit of the given value
 @if $px == $rem  -> If the two lists are the same, we ouput only one (like margin-top: 0)
 Then We output the result
*/
/* ========================================================================== */
/* rem function */
/* exemple utilisation: */
/* margin: rem(80 0 0 0); */
/* ========================= */
/* getIcon
* Génère le code pour utiliser des icones SVG.
* Prend en paramètres le nom, le variant et une taille
*/
/*
//Fix FX ordre déclaration
$glyphe_ic_help:$glyphe_ic_help_circle;
$glyphe_ic_email:$glyphe_ic_mail;
$glyphe_ic_warning:$glyphe_ic_alert;
$glyphe_alert:$glyphe_ic_warning;
$glyphe_ic_info:$glyphe_ic_info_circle;

//Fix name variable
$glyphe_suite:"";
$glyphe_hpage:"";
$glyphe_ul_niv1:"";
$suite_glyphe:$glyphe_suite;
$hpage_glyphe:$glyphe_hpage;
$ul_niv1glyphe:$glyphe_ul_niv1;
$glyphe_navigation_default:$glyphe_ic_chevron_right;
$glyphe_action_default:"";
$glyphe_coeur:$glyphe_ic_favorite;
$glyphe_rafraichir:$glyphe_ic_refresh;
$glyphe_aide:$glyphe_ic_help;
$glyphe_archive:$glyphe_ic_archive;
$glyphe_ei_add:$glyphe_ic_add_circle;
$glyphe_overflow:$glyphe_ic_menu;
$glyphe_au_dessus:$glyphe_ic_arrow_upward;
$glyphe_au_dessous:$glyphe_ic_arrow_downward;
$glyphe_premier:$glyphe_ic_arrow_upward;
$glyphe_dernier:$glyphe_ic_arrow_downward;
$glyphe_differeplus:$glyphe_ic_call_made;
$glyphe_listen:$glyphe_ic_hearing;
$glyphe_mail:$glyphe_ic_email;
$glyphe_graphic:$glyphe_ic_insert_chart;
$glyphe_iban:$glyphe_rib;
$glyphe_img:$glyphe_ic_image;
$glyphe_imprimer:$glyphe_ic_print;
$glyphe_modifier:$glyphe_ic_edit;
$glyphe_new:$glyphe_ic_create_new_folder;
$glyphe_param:$glyphe_ic_settings;
$glyphe_piecejointe:$glyphe_attachment;
$glyphe_search:$glyphe_ic_search;
$glyphe_reply:$glyphe_ic_reply;
$glyphe_restore:$glyphe_ic_settings_backup_restore;
$glyphe_supprimer:$glyphe_ic_delete;
$glyphe_download:$glyphe_ic_file_download;
$glyphe_telephone:$glyphe_phone;
$glyphe_fbasse:$glyphe_ic_trending_down;
$glyphe_fhaute:$glyphe_ic_trending_up;
$glyphe_fstable:$glyphe_ic_trending_flat;
$glyphe_info:$glyphe_ic_info;
$glyphe_error:$glyphe_ic_close_circle; //$glyphe_ic_cancel;
$glyphe_succes:$glyphe_ic_check_circle;
$glyphe_success:$glyphe_ic_check_circle;
$glyphe_attr:$glyphe_ic_priority_high;
$glyphe_cb:$glyphe_ic_credit_card;
$glyphe_afficher:$glyphe_ic_chevron_down;
$glyphe_masquer:$glyphe_ic_chevron_up;

//Fix
$glyphe_fhr:$glyphe_fhaute;
$glyphe_fbv:$glyphe_fbasse;
$glyphe_zip:$glyphe_archive;
$coeur_glyphe:$glyphe_coeur;
$suite_glyphe:$glyphe_ic_chevron_right;
$hpage_glyphe:$glyphe_ic_arrow_upward;

//Fix nettoyage pictos 10/2018
$glyphe_ic_expand_more:$glyphe_ic_chevron_down;
$glyphe_ic_expand_less:$glyphe_ic_chevron_up;
$glyphe_ic_keyboard_arrow_up:$glyphe_ic_chevron_up;
$glyphe_ic_keyboard_arrow_right:$glyphe_ic_chevron_right;
$glyphe_ic_keyboard_arrow_down:$glyphe_ic_chevron_down;
$glyphe_ic_keyboard_arrow_left:$glyphe_ic_chevron_left;
$glyphe_ic_navigate_next:$glyphe_ic_chevron_right;
$glyphe_ic_navigate_before:$glyphe_ic_chevron_left;

// dédoublonnage Fabien CAFFIER - 09/10/2018
$glyphe_ic_store_mall_directory:$glyphe_ic_store;
$glyphe_ic_settings_input_composite:$glyphe_ic_settings_input_component;

// dédoublonnage Florian BOISSY - 01/2019
$glyphe_ic_perm_identity:$glyphe_ic_person_outline;
$glyphe_ic_group:$glyphe_ic_people;
$glyphe_ic_highlight_off:$glyphe_ic_close_circle_outline;
$glyphe_ic_card_giftcard:$glyphe_ic_redeem;
$glyphe_ic_local_airport:$glyphe_ic_flight;
$glyphe_ic_airplanemode_active:$glyphe_ic_flight;
$glyphe_ic_local_printshop:$glyphe_ic_print;
$glyphe_ic_get_app:$glyphe_ic_file_download;
$glyphe_ic_turned_in:$glyphe_ic_bookmark;
$glyphe_ic_turned_in_not:$glyphe_ic_bookmark_border;
$glyphe_ic_not_interested:$glyphe_ic_do_not_disturb;
$glyphe_ic_block:$glyphe_ic_do_not_disturb_alt;
$glyphe_ic_markunread:$glyphe_ic_mail;
$glyphe_ic_local_post_office:$glyphe_ic_mail;
$glyphe_ic_local_play:$glyphe_ic_local_activity;
$glyphe_ic_local_phone:$glyphe_ic_phone;
$glyphe_ic_local_grocery_store:$glyphe_ic_shopping_cart;
$glyphe_ic_local_see:$glyphe_ic_photo_camera;
$glyphe_ic_camera_alt:$glyphe_ic_photo_camera;
$glyphe_ic_create:$glyphe_ic_edit;
$glyphe_ic_mode_edit:$glyphe_ic_edit;
$glyphe_ic_control_point:$glyphe_ic_add_circle_outline;
$glyphe_ic_https:$glyphe_ic_lock;
$glyphe_ic_filter_hdr:$glyphe_ic_landscape;
$glyphe_ic_terrain:$glyphe_ic_landscape;
$glyphe_ic_wb_cloudy:$glyphe_ic_cloud;
$glyphe_ic_access_alarm:$glyphe_ic_alarm;
$glyphe_ic_access_alarms:$glyphe_ic_alarm;
$glyphe_ic_add_alarm:$glyphe_ic_alarm_add;
$glyphe_ic_query_builder:$glyphe_ic_schedule;
$glyphe_ic_report_problem:$glyphe_ic_warning;
$glyphe_ic_publish:$glyphe_ic_file_upload;
$glyphe_ic_games:$glyphe_ic_gamepad;
$glyphe_ic_insert_photo:$glyphe_ic_image;
$glyphe_ic_gps_fixed:$glyphe_ic_my_location;
$glyphe_ic_gps_not_fixed:$glyphe_ic_location_searching;
$glyphe_ic_gps_off:$glyphe_ic_location_disabled;
$glyphe_ic_insert_invitation:$glyphe_ic_event;
$glyphe_ic_queue:$glyphe_ic_library_add;
$glyphe_ic_add_to_photos:$glyphe_ic_library_add;
$glyphe_ic_bluetooth_audio:$glyphe_ic_bluetooth_searching;
$glyphe_ic_time_to_leave:$glyphe_ic_directions_car;
$glyphe_ic_clear:$glyphe_ic_close;
$glyphe_ic_cancel:$glyphe_ic_close_circle;
$glyphe_ic_done:$glyphe_ic_check;
$glyphe_ic_error:$glyphe_ic_error_circle;
$glyphe_ic_check_outline:$glyphe_ic_check_circle_outline;
$glyphe_ic_close_outline:$glyphe_ic_close_circle_outline;
$glyphe_ic_error_outline:$glyphe_ic_error_circle_outline;
$glyphe_ic_help_outline:$glyphe_ic_help_circle_outline;
$glyphe_ic_info_outline:$glyphe_ic_info_circle_outline;
$glyphe_ic_place:$glyphe_ic_location_on;
$glyphe_ic_crop_din:$glyphe_ic_check_box_outline_blank;
$glyphe_ic_insert_emoticon:$glyphe_ic_mood;
$glyphe_ic_room:$glyphe_ic_location_on;
$glyphe_ic_loop:$glyphe_ic_sync;
$glyphe_ic_drive_eta:$glyphe_ic_directions_car;


*/
/*********************************************************************************************

0.  chargement de fts_picto dans l'attente de la mep de M150

*********************************************************************************************/
/*@font-face {
	font-family: fts_picto;
	src: url(/partage/fr/CC/CM/styles/fonts/fts_picto.woff2) format('woff2'),
		url(/partage/fr/CC/CM/styles/fonts/fts_picto.woff) format('woff'),
		url(/partage/fr/CC/CM/styles/fonts/fts_picto.svg) format('svg');
	font-weight: 400;
	font-style: normal
}*/
/*********************************************************************************************

1.  Base code

*********************************************************************************************/
/*********************************************************************************************

Project : Styles vitrine I14 : Grids
Version: 1.0
Author: FX Lair - Bordenave Danny

**********************************************************************************************

Lasts Modifs :

**********************************************************************************************

Summary
1.  Reset, clearfix, box-sizing
2.  Typo and alignements
3.  Title
4.  Link
5.  emphasize / strong
6.  btn
7.  Legal
8.  Min and max width
9.  table
10.  Forms
11.  Phone number
12.  EI content in cc (bloc appli ...)
13.  legal
14.  Messages blocs
15.  Pixel tracking
16. loader
17.  Adaptation bandeau cookie
X  Test and debug
XX. EI Fix

All styles must be prefix with the ".cc" class
**********************************************************************************************/
/*==========================================================================
1.  Reset, clearfix, box-sizing
========================================================================== */
/*
Reset (part of Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/) http://cssreset.com)
========================================================================== */
/*div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}*/
/* Angular a tendance à ajouter des balises pre un peu partout, ce reset evite que cela ne casse la police*/
pre {
  font: inherit;
  font-size: 100%;
}

/*===========  EI Fixs ================================ */
/* Test pour webperf tchat */
.ircc__app {
  contain: content;
}

/* pour eviter le nouveau focus un peu violent de Chrome */
#ei_tpl_footer a:focus,
#ei_tpl_ariane a:focus {
  outline: 1px dashed currentColor;
  outline-offset: 1px;
}

/* Fix autocompletion de la recherche */
#ei_tpl_menuMobil #ei_tpl_searchmobil .autocomplete_search_top ul li {
  line-height: 1.2em;
  padding: 5px;
}

#ei_tpl_search .autocomplete_search_top ul li a {
  padding-right: 16px;
  width: auto;
}

/*======================================================= */
.cc button:focus,
.cc a:focus {
  outline: 1px dashed currentColor;
  outline-offset: 1px;
}

/* .cc ol, */
.cc ul {
  list-style: none;
}

.cc table {
  border-collapse: collapse;
  border-spacing: 0;
}

.cc iframe {
  border: 0;
}

.cc figure {
  margin: 0;
}

/*
clearfix https://css-tricks.com/snippets/css/clear-fix/
========================================================================== */
.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

/*
box-sizing
========================================================================== */
#ei_tpl_contener {
  min-width: 320px;
}

.cc {
  box-sizing: border-box;
  padding: 1px 28px;
  padding: 0.0625rem 1.75rem;
}

.cc *,
.cc *::after,
.cc *::before {
  box-sizing: inherit;
}

/*
.invisible {
  clip: rect(1px 1px 1px 1px);

  // IE6, IE7
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}
*/
/*
fix
========================================================================== */
.cc img {
  border: 0;
  vertical-align: middle;
}

.cc table {
  table-layout: fixed;
}

.cc img,
.cc table,
.cc td,
.cc blockquote,
.cc code,
.cc pre,
.cc textarea,
.cc input,
.cc svg {
  /*height: auto;*/
  max-width: 100%;
}

/*==========================================================================
2.  Typo and alignements
========================================================================== */
.cc {
  color: #666;
  line-height: 21px;
  line-height: 1.3125rem;
}

.cc em {
  font-style: italic;
}

.cc .soft {
  color: #999;
  font-weight: normal;
}

.cc b,
.cc strong {
  font-weight: 600;
}

.cc sup,
.cc sub {
  font-size: 0.8em;
  position: relative;
  top: -0.4em;
  vertical-align: baseline;
}

.cc sub {
  top: 0.4em;
}

.cc cite {
  font-style: italic;
}

.cc small {
  font-size: 0.8em;
}

.cc .hidden {
  display: none !important;
}

/*
Font
========================================================================== */
/*
Defined in ei_base :
  - OpenSansLight
  - OpenSansRegular
  - OpenSansSemibold
  - OpenSansBold
  - OpenSansExtraBold
*/
/*==========================================================================
3.  Title
========================================================================== */
.cc h1.light,
.cc .h1.light,
.cc h2.light,
.cc .h2.light,
.cc h3.light,
.cc .h3.light,
.cc h4.light,
.cc .h4.light {
  font-weight: 300;
}

.cc h1,
.cc .h1 {
  position: relative;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  color: #262626;
  font-weight: 600;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 36px;
  line-height: 2.25rem;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
}

.cc h2,
.cc .h2,
.cc header + .contacts h2 {
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  color: #3f8bd2;
  font-weight: 300;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 34px;
  line-height: 2.125rem;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
}

.cc h3,
.cc .h3 {
  position: relative;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  color: #262626;
  font-weight: 600;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 24px;
  line-height: 1.5rem;
  padding: 0 0 10px 0;
  padding: 0 0 0.625rem 0;
}

.cc h3.light,
.cc .h3.light {
  font-size: 20px;
  font-size: 1.25rem;
  color: #3f8bd2;
  font-weight: 300;
}

.cc h4,
.cc .h4 {
  position: relative;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  color: #262626;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 21px;
  line-height: 1.3125rem;
  padding: 0 0 5px 0;
  padding: 0 0 0.3125rem 0;
}

.cc h2.center,
.cc .h2.center {
  flex: 1 1 auto;
}

.cc .vertical-line {
  flex: 1 1 auto;
  position: relative;
}

.cc h2.vertical-line::before,
.cc .h2.vertical-line::before {
  background: #3f8bd2;
  content: " ";
  display: block;
  height: 30px;
  left: 50%;
  left: calc(50% - 1px);
  position: absolute;
  top: -30px;
  width: 1px;
}

.cc h2 a,
.cc h3 a,
.cc h4 a,
.cc .h2 a,
.cc .h3 a,
.cc .h4 a {
  color: inherit;
  text-decoration: none;
}

.cc h2 a:hover,
.cc h3 a:hover,
.cc h4 a:hover,
.cc .h2 a:hover,
.cc .h3 a:hover,
.cc .h4 a:hover {
  text-decoration: underline;
}

.cc [data-back=true]::after {
  color: #3f8bd2;
  content: "__";
  position: absolute;
  bottom: 15px;
  bottom: 0.9375rem;
  padding-left: 7px;
  padding-left: 0.4375rem;
  font-size: 40px;
  font-size: 2.5rem;
}

.cc .h-back {
  padding-right: 7px;
  padding-right: 0.4375rem;
  position: relative;
  text-decoration: none;
}

.cc a.h-back::before {
  border-right-style: solid;
  /* border-right: 1px solid $MineShaft; */
  border-right-width: 1px;
  color: #262626;
  content: "\f009b";
  font-family: "fts_picto";
  line-height: 20px;
  position: absolute;
  text-decoration: none;
  transition: all 0.3s linear;
  right: 10px;
  right: 0.625rem;
  bottom: 8px;
  bottom: 0.5rem;
  font-size: 20px;
  font-size: 1.25rem;
  /*IE bug l'alignement vertical si on passe cette valeur en rem*/
  height: 20px;
  height: 1.25rem;
  padding-right: 5px;
  padding-right: 0.3125rem;
}

.cc a.h-back:hover::before {
  border-color: #03b2f3;
  color: #03b2f3;
}

/*
Titre avec une flêche devant
========================================================================== */
.cc .redac .arrow {
  position: relative;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  color: #262626;
  font-weight: 600;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 24px;
  line-height: 1.5rem;
  padding: 0 0 10px 0;
  padding: 0 0 0.625rem 0;
  padding-left: 32px;
  padding-left: 2rem;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
}

.cc .redac .arrow::before {
  color: #3f8bd2;
  content: "\f0154";
  font-family: "fts_picto";
  font-weight: 100;
  position: absolute;
  left: 0;
  top: 2px;
  top: 0.125rem;
  font-size: 24px;
  font-size: 1.5rem;
}

.cc .redac .arrow.light {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 20px;
  line-height: 1.25rem;
  color: #3f8bd2;
}

/*
Titre mélengant du gras et du régular avec passage à la ligne
========================================================================== */
.cc .header-img h1.mixed-font-weight,
.cc h2.mixed-font-weight,
.cc h3.mixed-font-weight {
  display: block;
  font-weight: 300;
}

.cc h3.mixed-font-weight {
  line-height: 22px;
  line-height: 1.375rem;
}

.cc .mixed-font-weight strong {
  font-weight: 600;
  /* display: block; // Suppression car pas logique sur un STRONG !!! */
}

/*==========================================================================
4.  Link
========================================================================== */
/*.cc .redac p a,.cc .redac ul a,.cc .redac table a{*/
.cc a {
  color: #4170a9;
  font-family: inherit;
  text-decoration: underline;
}

/*.cc .redac p a:hover,.cc .redac ul a:hover,.cc .redac table a:hover{*/
.cc a:hover {
  color: #03b2f3;
}

.cc a[data-show] {
  display: block;
  position: relative;
  text-decoration: none;
  padding-right: 15px;
  padding-right: 0.9375rem;
}

.cc a[data-show]::after {
  content: " \e635";
  display: inline;
  font-family: "fts_picto";
  line-height: 8px;
  text-decoration: none;
  /*to fix underline bug*/
  vertical-align: middle;
  /*IE bug l'alignement vertical si on passe cette valkeur en rem*/
  font-size: 8px;
  font-size: 0.5rem;
}

.cc a.expanded[data-show]::after {
  content: " \f009d";
}

.cc a.gt {
  display: block;
  font-weight: 600;
  position: relative;
  text-decoration: none;
  padding-right: 15px;
  padding-right: 0.9375rem;
}

.cc a.gt::after {
  content: " \f009a";
  /*position: display;*/
  /*right: 0px;*/
  /*top: 50%;*/
  display: inline;
  font-family: "fts_picto";
  line-height: 8px;
  text-decoration: none;
  /*to fix underline bug*/
  vertical-align: middle;
  /*IE bug l'alignement vertical si on passe cette valkeur en rem*/
  font-size: 8px;
  font-size: 0.5rem;
}

.cc a.gt.expanded::after {
  content: " \f009d";
}

.cc a.gt__small {
  display: inline-block;
}

.cc a.pdf,
.cc a[href$=".pdf"] {
  display: inline-block;
  position: relative;
  text-decoration: none;
}

.cc a.pdf::before,
.cc a[href$=".pdf"]::before {
  background: #999;
  border-radius: 2px;
  color: #fff;
  /*to fix underline bug*/
  content: "PDF";
  display: inline;
  text-decoration: none;
  padding: 0 3px;
  padding: 0 0.1875rem;
  margin-right: 5px;
  margin-right: 0.3125rem;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 15px;
  line-height: 0.9375rem;
}

/*
.cc a.pdf::after,.cc a[href$=".pdf"]::after{
  display: inline;
  margin-top: -3px;
  @include rem(line-height, 8px);
  @include rem(font-size, 8px);
  @include rem(margin-top, -3px);
  content: "\00a0\f009a";
  font-family: $glyphs;
  text-decoration: none;
}*/
.cc a.no-pdf-style {
  text-decoration: initial;
}

/*,.cc a.no-pdf-style::after*/
.cc a.no-pdf-style::before {
  content: normal;
}

.cc [data-show-label] {
  cursor: pointer;
}

/*==========================================================================
5.  emphasize / strong
========================================================================== */
.cc em {
  color: #3f8bd2;
  font-style: normal;
  font-weight: 600;
}

.cc .catch {
  color: #3f8bd2;
  font-style: 600;
  font-size: 16px;
  font-size: 1rem;
}

/*==========================================================================
6.  btn
========================================================================== */
.cc .btn {
  align-items: center;
  background-color: #3f8bd2;
  border: 0;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  position: relative;
  text-decoration: none;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 15px;
  line-height: 0.9375rem;
  padding: 13px 35px 13px 25px;
  padding: 0.8125rem 2.1875rem 0.8125rem 1.5625rem;
}

.cc .btn + .btn {
  margin-left: 28px;
  margin-left: 1.75rem;
}

/*
autre possibilité à la place des before / after, mais demande de décomposer les glyphs en svg ...
 background:$Havelock url(/partage/fr/CC/CM-I14/styles/img/picto-next-border.png) 20px center no-repeat;
 background-image: url(/partage/fr/CC/CM-I14/styles/img/picto-next-border.svg), url(/partage/fr/CC/CM-I14/styles/img/picto-next.svg);
 background-position: 20px center,right 20px center;
 background-size:25px, 10px;
*/
.cc .btn::after {
  content: "\f009a";
  font-family: "fts_picto";
  line-height: 8px;
  margin-top: -1px;
  position: absolute;
  right: 20px;
  top: 50%;
  /*IE bug l'alignement vertical si on passe cette valkeur en rem*/
  font-size: 8px;
  font-size: 0.5rem;
}

.cc .btn:hover {
  background-color: #2a71b4;
  color: #fff;
}

.cc .btn:focus {
  outline: 1px dashed #2a71b4;
}

.cc .btn--bottom::after {
  content: "\f0098";
}

/* .btn--larger : 20px de plus à gauche et à droite */
.cc .btn--larger {
  padding-left: 55px;
  padding-left: 3.4375rem;
  padding-right: 55px;
  padding-right: 3.4375rem;
}

.cc .btn--larger::after {
  right: 40px;
}

.cc [class*=btn__].btn--larger {
  padding-left: 80px;
  padding-left: 5rem;
}

.cc [class*=btn__].btn--larger::before {
  left: 40px;
}

/* .btn--smaller : plus petit ! */
.cc .btn--smaller {
  font-size: 12px;
  font-size: 0.75rem;
  padding: 5px 25px 5px 10px;
  padding: 0.3125rem 1.5625rem 0.3125rem 0.625rem;
}

.cc .btn--smaller::after {
  right: 10px;
  margin-top: -3px;
  margin-top: -0.1875rem;
}

.cc .justify-end .grow > .btn {
  width: 100%;
  /*car passer mettre le flex à 1 sur un inline bloc bug sous IE */
}

/*
.cc .btn__nopicto{
  @include rem(padding-left,35px);
}
.cc .btn__nopicto::before{
  display: none;
}*/
.cc [class*=btn__] {
  padding-left: 60px;
  padding-left: 3.75rem;
}

.cc [class*=btn__]::before {
  content: "\f058e";
  font-family: "fts_picto";
  left: 20px;
  line-height: 24px;
  margin-top: -12px;
  position: absolute;
  top: 50%;
  /*IE bug l'alignement vertical si on passe cette valkeur en rem*/
  font-size: 24px;
  font-size: 1.5rem;
}

.cc .btn__souscription,
.cc .btn__souscription::before,
.cc .btn__simulate,
.cc .btn__simulate::before,
.cc .btn__link,
.cc .btn__link::before,
.cc .btn__auto,
.cc .btn__auto::before {
  background-color: #ee8686;
}

.cc .btn__souscription:hover,
.cc .btn__souscription:hover::before,
.cc .btn__simulate:hover,
.cc .btn__simulate:hover::before,
.cc .btn__link:hover,
.cc .btn__link:hover::before,
.cc .btn__auto:hover,
.cc .btn__auto:hover::before {
  background-color: #e85959;
}

.cc .btn__souscription::before {
  content: "\f071b";
}

html:not(.cc_user_authenticated) body:not(.ei_tpl_transac) .cc [class*=btn][href*="/banque/"],
html:not(.cc_user_authenticated) body:not(.ei_tpl_transac) .cc [class*=btn][href*="/assurances/"] {
  padding-left: 60px;
  padding-left: 3.75rem;
}
html:not(.cc_user_authenticated) body:not(.ei_tpl_transac) .cc [class*=btn][href*="/banque/"]::before,
html:not(.cc_user_authenticated) body:not(.ei_tpl_transac) .cc [class*=btn][href*="/assurances/"]::before {
  content: "\f0545";
  font-family: "fts_picto";
  left: 20px;
  line-height: 24px;
  margin-top: -12px;
  position: absolute;
  top: 50%;
  /*IE bug l'alignement vertical si on passe cette valkeur en rem*/
  font-size: 24px;
  font-size: 1.5rem;
}

.cc .btn__simulate::before {
  content: "\f0074";
}

.cc .btn__link::before {
  content: "\f0533";
}

.cc .btn__question::before {
  content: "\f051d";
}

.cc .btn__quotation::before {
  content: "\f0074";
}

/*
.cc .btn__adviser::before{
}


.cc .btn__information::before{
  content: $glyphe_help_phylactere;
}

.cc .btn__quiz::before{
  content: $glyphe_info_vide;
}
*/
.cc .btn__rdv::before {
  content: "\f0078";
}

.cc .btn__form::before {
  content: "\f00f7";
}

.cc .btn__auto::before {
  content: "\f0757";
}

.cc .btn__zoom::before {
  content: "\f0773";
}

.cc [class*=btn] .soft {
  color: #fff;
  display: block;
  font-size: 0.8125rem;
}

/*
  .link-action
========================================================================== */
.cc .link-action .btn {
  background-color: #fff;
  border: 1px solid #d2d0cc;
  color: #666;
  font-weight: 600;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 18px;
  line-height: 1.125rem;
  /* @include rem(padding, 0); */
  margin: 0;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  padding-top: 20px;
  padding-top: 1.25rem;
}

.cc .link-action .btn::after {
  font-size: 16px;
  font-size: 1rem;
}

.cc .link-action span.soft {
  color: #666;
  display: block;
  font-size: 100%;
  font-weight: 100;
}

.cc .link-action .btn::before {
  background-color: #fff;
  color: #666;
}

.cc .link-action .btn:hover,
.cc .link-action .btn:hover::before,
.cc .link-action .btn:hover::after {
  color: #03b2f3;
}

/*
  .top-btn
========================================================================== */
.top-btn {
  background: #908f8c;
  bottom: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  display: inline-block;
  height: 60px;
  opacity: 0;
  position: fixed;
  right: 30px;
  /* image replacement properties */
  /*overflow: hidden;*/
  text-indent: 100%;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  visibility: hidden;
  white-space: nowrap;
  width: 60px;
  z-index: 10;
}

.top-btn:hover {
  background: #868582;
}

.top-btn:hover::after {
  background: #868582;
  opacity: 1;
  visibility: visible;
}

.top-btn::after {
  background: #908f8c;
  bottom: -10px;
  color: #fff;
  content: "Haut de page";
  display: block;
  margin-left: -50%;
  opacity: 0;
  overflow: visible;
  padding: 2px 5px;
  position: absolute;
  right: 0;
  text-indent: 0;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  visibility: hidden;
  z-index: 30;
  font-size: 14px;
  font-size: 0.875rem;
}

.top-btn::before {
  color: #fff;
  content: "\f0159";
  font-family: "fts_picto";
  left: 50%;
  line-height: 24px;
  margin-left: -12px;
  margin-top: -12px;
  position: absolute;
  text-indent: 0;
  top: 50%;
  /*IE bug l'alignement vertical si on passe cette valkeur en rem*/
  font-size: 24px;
  font-size: 1.5rem;
}

.top-btn:hover::before {
  -webkit-animation: arrowup 1s infinite;
          animation: arrowup 1s infinite;
}

.top-btn-visible {
  opacity: 1;
  transition: opacity 0.3s 0s, visibility 0s 0s;
  visibility: visible;
}

@-webkit-keyframes arrowup {
  0%, 20%, 50%, 80%, 100% {
    top: 50%;
  }
  40% {
    top: 35%;
  }
  60% {
    top: 45%;
  }
}

@keyframes arrowup {
  0%, 20%, 50%, 80%, 100% {
    top: 50%;
  }
  40% {
    top: 35%;
  }
  60% {
    top: 45%;
  }
}
/*==========================================================================
7.  Legal
========================================================================== */
.cc .legal {
  margin: 20px 12px 10px 12px;
  margin: 1.25rem 0.75rem 0.625rem 0.75rem;
}

.cc article > div .example,
.cc .note {
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 16px;
  line-height: 1rem;
}

.cc .info-credit {
  margin: 0 20px 10px 20px;
  margin: 0 1.25rem 0.625rem 1.25rem;
}

.cc .info-credit p {
  color: #999;
  text-align: center;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 20px;
  line-height: 1.25rem;
}

.cc .info-credit.border {
  border: 1px solid #999;
}

.cc article > .info-credit.border {
  padding: 12px 28px;
  padding: 0.75rem 1.75rem;
  margin-top: 0;
  margin-left: -28px;
  margin-left: -1.75rem;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  margin-right: -28px;
  margin-right: -1.75rem;
}

.cc .info-credit.border p {
  text-align: left;
}

.cc-legal-general {
  background: #f2efed;
}

.cc-legal-general p {
  color: #999;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 28px 20px 28px;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 16px;
  line-height: 1rem;
}

#ei_tpl_footer .cc-legal-general a {
  padding: 0;
}

/*==========================================================================
.  mention haut
========================================================================== */
.cc.deconnection > div > .legal {
  margin: 24px -28px 0 -28px;
  margin: 1.5rem -1.75rem 0 -1.75rem;
  padding: 5px;
  padding: 0.3125rem;
  font-size: 17px;
  font-size: 1.0625rem;
  background: #fff;
  border-bottom: 1px solid #f2efed;
  color: #000;
  text-align: center;
}

.cc.deconnection > div + .redac {
  margin-top: 0;
}

.cc .accueil > div > .legal {
  margin: 0 -28px;
  margin: 0 -1.75rem;
  padding: 5px;
  padding: 0.3125rem;
  font-size: 17px;
  font-size: 1.0625rem;
  background: #fff;
  color: #000;
  text-align: center;
}

/*==========================================================================
8.  Min and max width
========================================================================== */
.cc .min-w-50 {
  min-width: 50px;
}

.cc .max-w-50 {
  max-width: 50px;
}

.cc .min-w-100 {
  min-width: 100px;
}

.cc .max-w-100 {
  max-width: 100px;
}

.cc .min-w-150 {
  min-width: 150px;
}

.cc .max-w-150 {
  max-width: 150px;
}

.cc .min-w-200 {
  min-width: 200px;
}

.cc .max-w-200 {
  max-width: 200px;
}

.cc .min-w-250 {
  min-width: 250px;
}

.cc .max-w-250 {
  max-width: 250px;
}

.cc .min-w-300 {
  min-width: 300px;
}

.cc .max-w-300 {
  max-width: 300px;
}

.cc .min-w-350 {
  min-width: 350px;
}

.cc .max-w-350 {
  max-width: 350px;
}

.cc .min-w-400 {
  min-width: 400px;
}

.cc .max-w-400 {
  max-width: 400px;
}

.cc .min-w-450 {
  min-width: 450px;
}

.cc .max-w-450 {
  max-width: 450px;
}

.cc .min-w-500 {
  min-width: 500px;
}

.cc .max-w-500 {
  max-width: 500px;
}

.cc .min-w-550 {
  min-width: 550px;
}

.cc .max-w-550 {
  max-width: 550px;
}

.cc .min-w-600 {
  min-width: 600px;
}

.cc .max-w-600 {
  max-width: 600px;
}

.cc .min-w-650 {
  min-width: 650px;
}

.cc .max-w-650 {
  max-width: 650px;
}

.cc .min-w-700 {
  min-width: 700px;
}

.cc .max-w-700 {
  max-width: 700px;
}

.cc .min-w-750 {
  min-width: 750px;
}

.cc .max-w-750 {
  max-width: 750px;
}

.cc .min-w-800 {
  min-width: 800px;
}

.cc .max-w-800 {
  max-width: 800px;
}

/*==========================================================================
9.  Table
========================================================================== */
/*
.double-entry == two-entry (nommage CIC)
*/
.cc table tr td + td {
  border-left: 1px dotted #eae9e7;
}

.cc table.list,
table.one-entry,
table.double-entry,
table.two-entry {
  margin-top: 10px;
  margin-top: 0.625rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  background-color: white;
  border-collapse: collapse;
  border-spacing: 0;
  margin-left: auto;
  margin-right: auto;
}

.cc table.striped tr:nth-child(odd) td,
table.striped.one-entry tr:nth-child(odd) td,
table.striped.double-entry tr:nth-child(odd) td,
table.striped.two-entry tr:nth-child(odd) td {
  background-color: #fafaf8;
}

.cc table.list caption,
.cc table.one-entry caption,
.cc table.double-entry caption,
.cc table.two-entry caption {
  background-color: #d3545a;
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  font-size: 1.0625rem;
  padding: 5px;
  padding: 0.3125rem;
}

.cc table.list th,
.cc table.one-entry th,
.cc table.double-entry th,
.cc table.two-entry th {
  background-color: #fff;
  border-bottom: 1px solid #eae9e7;
  color: #262626;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  vertical-align: middle;
  padding: 10px 14px;
  padding: 0.625rem 0.875rem;
}

.cc table.double-entry th,
.cc table.two-entry th {
  text-align: left;
}

.cc table.one-entry thead th,
.cc table.two-entry th,
.cc table.two-entry thead td,
.cc table.double-entry th,
.cc table.double-entry thead td {
  background-color: #ee8686;
  color: #fff;
}

.cc table.list th,
.cc table.one-entry th,
.cc table.list thead td,
.cc table.one-entry thead td {
  background-color: #f2efed;
}

.cc table.list tfoot + tbody tr:first-of-type th,
.cc table.one-entry tfoot + tbody tr:first-of-type th,
.cc table.list thead + tbody tr:first-of-type th,
.cc table.one-entry thead + tbody tr:first-of-type th {
  background-color: #fff;
  color: #262626;
}

.cc table.double-entry tfoot + tbody tr:first-of-type th,
.cc table.double-entry thead + tbody tr:first-of-type th,
.cc table.double-entry tbody th,
.cc table.two-entry tfoot + tbody tr:first-of-type th,
.cc table.two-entry thead + tbody tr:first-of-type th,
.cc table.two-entry tbody th {
  background-color: #f2efed;
  border-bottom: 1px solid #d2d0cc;
  color: #262626;
}

.cc table.list tfoot tr th,
.cc table.one-entry tfoot tr th,
.cc table.double-entry tfoot tr th {
  background-color: #fff;
  border-bottom: 0;
  color: #262626;
  font-size: 0.7rem;
  line-height: 1.5;
  text-align: left;
  padding: 15px 0;
  padding: 0.9375rem 0;
}

.cc table.list td,
.cc table.one-entry td,
.cc table.double-entry td,
.cc table.two-entry td {
  border-bottom: 1px solid #eae9e7;
  color: #666;
  text-align: left;
  vertical-align: middle;
  padding: 10px 14px;
  padding: 0.625rem 0.875rem;
}

.cc table.list td.g,
.cc table.one-entry td.g,
.cc table.double-entry td.g,
.cc table.two-entry td.g,
.cc table.list th.g,
.cc table.one-entry th.g,
.cc table.double-entry th.g,
.cc table.two-entry th.g {
  text-align: left;
  padding: 6px 44px;
  padding: 0.375rem 2.75rem;
}

.cc table.tab-texte td {
  border-right: 1px solid #eae9e7;
}

.cc table .break,
.cc table.list tr td.group,
.cc table.one-entry tr td.group,
.cc table.double-entry tr td.group,
.cc table.two-entry tr td.group {
  background: #fff;
  color: #262626;
  font-weight: 600;
  text-align: left;
}

/*==========================================================================
10.  Forms
========================================================================== */
input[readonly=readonly] {
  background: none;
  border: 0;
}

/*==========================================================================
11.  Phone number
========================================================================== */
/*<div class="phone" itemscope itemtype="http://schema.org/ContactPoint">
                            <div class="number"><span>N° Cristal :</span><span itemprop="telephone">09 69 39 00 88</span></div>
                            <span class="price">Appel non surtaxé</span>
                            <time itemprop="openingHours" datetime="Mo-Fr 06:00-22:00, Sa-Su 06:00-20:00">en semaine de 6h à 22h, week-end et jours fériés de 6h&nbsp;à&nbsp;20h.</time>
                        </div>
*/
/*
Phone "normal"
========================================================================== */
.cc .phone {
  font-weight: normal;
}

.cc .phone .phone-num {
  font-size: 14px;
  font-size: 0.875rem;
  color: #262626;
  font-weight: 600;
}

.cc .phone .phone-rate {
  color: #666;
}

.cc .phone time {
  color: #666;
}

/*
Phone sva
========================================================================== */
.cc .phone-sva {
  margin: 12px 0;
  margin: 0.75rem 0;
  vertical-align: middle;
}

.cc .phone-sva > div {
  border: 1px solid #1b1b1f;
  color: #28467b;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  padding: 0 5px 0 10px;
  padding: 0 0.3125rem 0 0.625rem;
}

.cc .phone-sva .phone-num {
  color: #1b1b1f;
  display: inline-block;
  font-weight: 600;
  vertical-align: middle;
  white-space: nowrap;
  font-size: 16px;
  font-size: 1rem;
  padding: 2px 5px 2px 0;
  padding: 0.125rem 0.3125rem 0.125rem 0;
}

.cc .phone-sva time {
  padding: 5px 0 0 10px;
  padding: 0.3125rem 0 0 0.625rem;
  line-height: 16px;
  line-height: 1rem;
  display: block;
}

.cc .phone-sva .phone-rate {
  background: #1b1b1f;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  position: relative;
  vertical-align: middle;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 11px;
  line-height: 0.6875rem;
  padding: 5px 10px 5px 15px;
  padding: 0.3125rem 0.625rem 0.3125rem 0.9375rem;
  margin: -7px 0 -6px 0;
  margin: -0.4375rem 0 -0.375rem 0;
}

.cc .phone-rate abbr {
  border: none;
  text-decoration: none;
  vertical-align: middle;
}

.cc .phone-sva .phone-rate::before {
  border: solid transparent;
  border-color: rgba(255, 255, 255, 0);
  border-left-color: #fff;
  border-width: 8px;
  content: " ";
  height: 0;
  left: 0;
  margin-top: -8px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  width: 0;
}

/* Freephone service */
.cc .free .phone-rate {
  background: #79b51e;
}

.cc .free .phone-num {
  color: #79b51e;
}

/* Regular phone cost */
.cc .regular {
  min-width: 235px;
}

.cc .regular .phone-rate {
  background: #91919b;
}

.cc .regular .phone-num {
  color: #91919b;
}

/* Premium phone cost */
.cc .premium .phone-rate {
  background: #a50f78;
}

.cc .premium .phone-num {
  color: #a50f78;
}

.cc .phone-sva .free,
.cc .phone-sva .regular,
.cc .phone-sva .premium {
  background: #fff;
  border-color: #b4b4b4;
}

/*
NumVert:#038547;
NumAzur:#0C98D6;
NumIndigo:#393280;
NumCristal:#989DA1;
NumAudiotel:#92600B;
*/
/*
Old Nums
========================================================================== */
.cc [class*=num-] .phone-num {
  border: 2px solid #28467b;
  color: #28467b;
  display: inline-block;
  font-size: 1.2em;
  font-weight: 600;
  position: relative;
  border-radius: 14px;
  border-radius: 0.875rem;
  padding: 0 10px 0 0;
  padding: 0 0.625rem 0 0;
}

.cc [class*=num-] .phone-num span {
  white-space: nowrap;
}

.cc [class*=num-] .phone-type {
  background: #28467b;
  border-color: #28467b;
  color: #fff;
  display: inline-block;
  position: relative;
  border-radius: 10px;
  border-radius: 0.625rem;
  padding: 0 10px 0 25px;
  padding: 0 0.625rem 0 1.5625rem;
  margin-right: 10px;
  margin-right: 0.625rem;
}

.cc [class*=num-] .phone-type::before {
  border: solid transparent;
  border-color: rgba(255, 255, 255, 0);
  border-left-color: #fff;
  border-width: 7px;
  content: " ";
  height: 0;
  left: 10px;
  margin-top: -7px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  width: 0;
}

.cc [class*=num-] .phone-type::after {
  border: 2px solid #fff;
  border-radius: 10px;
  content: " ";
  height: 20px;
  left: 2px;
  position: absolute;
  top: 1px;
  width: 20px;
  z-index: 10;
}

.cc [class*=num-] .phone-rate,
.cc [class*=num-] time {
  display: inline-block;
  padding: 0 0 0 10px;
  padding: 0 0 0 0.625rem;
}

.cc [class*=num-] .phone-rate {
  padding: 5px 0 5px 10px;
  padding: 0.3125rem 0 0.3125rem 0.625rem;
}

.cc [class*=num-] .phone-rate {
  background: none;
  color: #666;
  display: block;
  font-weight: 600;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 21px;
  line-height: 1.3125rem;
}

.cc [class*=num-] .phone-rate::before {
  display: none;
}

.cc .num-vert .phone-num {
  border-color: #038547;
  color: #038547;
}

.cc .num-vert .phone-type {
  background: #038547;
  border-color: #038547;
}

.cc .num-azur .phone-num {
  border-color: #0c98d6;
  color: #0c98d6;
}

.cc .num-azur .phone-type {
  background: #0c98d6;
  border-color: #0c98d6;
}

.cc .num-indigo .phone-num {
  border-color: #393280;
  color: #393280;
}

.cc .num-indigo .phone-type {
  background: #393280;
  border-color: #393280;
}

.cc .num-cristal .phone-num {
  border-color: #989da1;
  color: #989da1;
}

.cc .num-cristal .phone-type {
  background: #989da1;
  border-color: #989da1;
}

.cc .num-audiotel .phone-num {
  border-color: #92600b;
  color: #92600b;
}

.cc .num-audiotel .phone-type {
  background: #92600b;
  border-color: #92600b;
}

/*==========================================================================
12.  EI content in cc (bloc appli ...)
========================================================================== */
.cc-ei > .a_blocappli {
  margin: 28px 0 0 0;
  margin: 1.75rem 0 0 0;
}

/*==========================================================================
13.  Legal
========================================================================== */
.cc .maxi {
  font-size: 1.2em;
}

.cc .mini {
  font-size: 0.8em;
}

.cc .legal-example {
  /*@include rem(margin,$cmrPadding);*/
}

/*==========================================================================
14.  Messages blocs
========================================================================== */
.cc .blocmsg {
  background: #fff none;
  border: 1px solid #00a3f7;
  color: #666;
  margin-top: 30px;
  overflow: hidden;
  padding: 15px 30px 15px 40px;
}

/*==========================================================================
15.  Pixel tracking
========================================================================== */
#insertion_track {
  height: 0 !important;
}

#insertion_track img {
  border-style: none;
}

/*==========================================================================
16. loader
========================================================================== */
.cc .loader {
  height: 40px;
  margin: 10px auto;
  position: relative;
  width: 40px;
}
.cc .loader > div {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.cc .loader > div::before {
  -webkit-animation: loaderFadeDelay 1.2s infinite ease-in-out both;
          animation: loaderFadeDelay 1.2s infinite ease-in-out both;
  background-color: #333;
  border-radius: 100%;
  content: "";
  display: block;
  height: 15%;
  margin: 0 auto;
  width: 15%;
}
.cc .loader > div:nth-child(2) {
  transform: rotate(30deg);
}
.cc .loader > div:nth-child(3) {
  transform: rotate(60deg);
}
.cc .loader > div:nth-child(4) {
  transform: rotate(90deg);
}
.cc .loader > div:nth-child(5) {
  transform: rotate(120deg);
}
.cc .loader > div:nth-child(6) {
  transform: rotate(150deg);
}
.cc .loader > div:nth-child(7) {
  transform: rotate(180deg);
}
.cc .loader > div:nth-child(8) {
  transform: rotate(210deg);
}
.cc .loader > div:nth-child(9) {
  transform: rotate(240deg);
}
.cc .loader > div:nth-child(10) {
  transform: rotate(270deg);
}
.cc .loader > div:nth-child(11) {
  transform: rotate(300deg);
}
.cc .loader > div:nth-child(12) {
  transform: rotate(330deg);
}
.cc .loader > div:nth-child(2)::before {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s;
}
.cc .loader > div:nth-child(3)::before {
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}
.cc .loader > div:nth-child(4)::before {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s;
}
.cc .loader > div:nth-child(5)::before {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}
.cc .loader > div:nth-child(6)::before {
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s;
}
.cc .loader > div:nth-child(7)::before {
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s;
}
.cc .loader > div:nth-child(8)::before {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
}
.cc .loader > div:nth-child(9)::before {
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s;
}
.cc .loader > div:nth-child(10)::before {
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s;
}
.cc .loader > div:nth-child(11)::before {
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
}
.cc .loader > div:nth-child(12)::before {
  -webkit-animation-delay: -0.1s;
          animation-delay: -0.1s;
}
@-webkit-keyframes loaderFadeDelay {
  0%, 39%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
@keyframes loaderFadeDelay {
  0%, 39%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}

/*==========================================================================
17.  Adaptation bandeau cookie
========================================================================== */
.ei_cookie {
  z-index: 500;
}

.ei_cookie p {
  color: inherit;
  font-size: 16px;
  line-height: 24px;
  margin: 0 auto;
}

.ei_cookie button.allow {
  background-color: #03b2f3;
  border-radius: 4px;
  font-size: 20px;
  margin: 20px;
  max-width: 200px;
  min-width: 200px;
  padding: 10px 50px;
}
.ei_cookie button.allow:hover {
  background: #03a3df;
}
.ei_cookie button.allow:focus {
  background: #03abe9;
}

.ei_cookie__wrapper {
  text-align: center;
}

/*==========================================================================
X.  Test and debug
========================================================================== */
.bar_debug_bad a {
  color: #fff;
  font-size: 11px;
  font-weight: normal;
  text-decoration: none;
}

.bar_debug_bad a:hover {
  text-decoration: underline;
}

.bar_debug_bad {
  background: #b4b4b4;
  border-bottom: 1px solid #8c8c8c;
  border-left: 1px solid #8c8c8c;
  border-radius: 0 0 0 10px;
  color: #fff;
  height: 20px;
  padding: 0 15px 0 10px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2000;
}

.cc .amc-content,
.cc .ace-content,
.cc.amc-content,
.cc.ace-content {
  border: 2px dashed #e70b0b !important;
  margin: -2px !important;
  position: relative !important;
}

.cc .amc-content-edit,
.cc .ace-content-edit {
  background-color: #e70b0b;
  color: #fff;
  display: block;
  font-family: "fts_picto";
  left: 0;
  line-height: 18px;
  padding: 5px;
  position: absolute;
  top: 0;
  width: 30px;
  z-index: 200;
  /*IE bug l'alignement vertical si on passe cette valkeur en rem*/
  font-size: 18px;
  font-size: 1.125rem;
}

.debug-amc,
.debug-ace {
  background: #fde7e7;
  border: 2px dashed #e70b0b;
  margin: -5px;
  padding: 3px 10px;
  position: absolute;
}

/* Mise en exergue du ALT de l'image manquant
alt vide n'est pas un soucis, c'est l'abscence de alt qui en est un
*/
/*.debug img[alt=""] {
  border: 1px solid #e70b0b !important;
}*/
/* .debug img[alt=""]::before {
  content: "! Alt !";
  background-color: #e70b0b;
  color: #fff;
  position: absolute;
} */
/* Mise en exergue du ALT de l'image manquant */
/* Mise en exergue des liens vides */
.debug [href=""] {
  -webkit-animation: blink 0.5s linear infinite;
          animation: blink 0.5s linear infinite;
  color: #f00 !important;
  font-weight: 900 !important;
  text-decoration: line-through !important;
}

.debug [href="#"] {
  -webkit-animation: blink 0.5s linear infinite;
          animation: blink 0.5s linear infinite;
  color: #f90 !important;
  text-decoration: line-through !important;
}

/* Mise en exerge des liens vides */
pre {
  white-space: pre-wrap;
  /* css-3 */
  word-wrap: break-word;
  /* Internet Explorer 5.5+ */
}

/*

#sfWebDebug [id^="sfWebDebug"]{
display: block !important;
}*/
/*==========================================================================
X.  EI Fix
========================================================================== */
#ei_tpl_ariane {
  background: transparent;
}

/*==========================================================================
X.  Test FX
========================================================================== */
#ei_tpl_menuPrincipal nav ul li.e_menuinline > a {
  display: none;
}

/* pour corriger bug du menu quand seul le menu espace est visible */
#ei_tpl_menuPrincipal .cc_menu_espace:first-child:last-child > a {
  border-right: 1px solid #d2d0cc;
  max-width: 200px;
}

#ei_tpl_menuPrincipal .cc_menu_espace:first-child:last-child > .e_smenu {
  left: 0 !important;
}

/* --------------------------------------------------------------------- */
#ei_tpl_menuPrincipal .cc_menu_espace > .e_smenu > ul > li {
  min-width: 200px;
}

#ei_tpl_menuPrincipal .cc_menu_espace > a {
  color: #3f8bd2;
  padding: 0 9px 0 10px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

#ei_tpl_menuPrincipal > nav > ul > .cc_menu_espace.e_select a {
  color: #666;
}

#ei_tpl_menuPrincipal .cc_menu_espace > a::before {
  background: #3f8bd2 none repeat scroll 0% 0%;
  border-left: 1px solid #666;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  top: 100%;
  transition: all 0.3s linear 0s;
  width: 100%;
}

#ei_tpl_menuPrincipal .cc_menu_espace .e_select {
  display: none;
}

#ei_tpl_menuPrincipal nav ul li.cc_menuinline_groupe > a {
  display: none;
}

.ei_tpl_conseil #ei_tpl_mMobPrincipal .cc_menu_espace > a {
  background: #3f8bd2;
  color: #fff;
  text-align: left;
}

.ei_tpl_conseil #ei_tpl_mMobPrincipal .cc_menu_espace > a::after {
  color: #fff;
}

.ei_tpl_conseil #ei_tpl_mMobPrincipal .cc_menu_espace + li[id^=menu_espace_] > a {
  display: none;
}

.ei_tpl_conseil #ei_tpl_mMobSec .cc_menu_espace > a {
  text-align: left;
}

/*********************************************************************************************

2.  layout & modules

*********************************************************************************************/
/*********************************************************************************************

Project : Styles vitrine I14 : general
Version: 1.0
Author: FX Lair - Bordenave Danny

**********************************************************************************************

Lasts Modifs :

**********************************************************************************************

Summary
0.  Import var and mixin
1.  Positioning
2.  Margin-Padding
3.  Widths
4.  Decoration
5.  Tableaux
6.  Fonts

All styles must be prefix with the ".cc" class
**********************************************************************************************/
/*==========================================================================
0.  Import var and mixin
========================================================================== */
/*@import "config_var_mixin.scss";*/
/*==========================================================================
1.  Positioning, alignement
========================================================================== */
.cc .top {
  vertical-align: top !important;
}

.cc .bottom {
  vertical-align: bottom !important;
}

.cc .vertical-align {
  vertical-align: middle !important;
}

.cc .inline-center {
  text-align: center !important;
}

.cc .block-center {
  margin-left: auto !important;
  margin-right: auto !important;
}

.cc .left {
  text-align: left !important;
}

.cc .right {
  text-align: right !important;
}

.cc .center, .cc.center {
  text-align: center !important;
}

.cc .nowrap {
  white-space: nowrap;
}

.cc .float-left,
.cc .float-left-1-2,
.cc .float-left-1-3,
.cc .float-left-2-3,
.cc .float-left-1-4,
.cc .float-left-3-4 {
  float: left;
}

.cc .float-right,
.cc .float-right-1-2,
.cc .float-right-1-3,
.cc .float-right-2-3,
.cc .float-right-1-4,
.cc .float-right-3-4 {
  float: right;
}

/*
	NB: les classes float-left-x-x sont gérées par le responsive, elles repassent à 100% au bout d'un moment
	Pour avoir des float sans responsive : utiliser float-left et float right avec une classe de largeur (w10,w20,w1-3 ...)
*/
.cc .float-left-1-2, .cc .float-left-1-3, .cc .float-left-2-3, .cc .float-left-1-4, .cc .float-left-3-4, .cc .float-right-1-2, .cc .float-right-1-3, .cc .float-right-2-3, .cc .float-right-1-4, .cc .float-right-3-4 {
  padding-left: 12px;
  padding-left: 0.75rem;
  padding-right: 12px;
  padding-right: 0.75rem;
}

.cc .float-left-1-4,
.cc .float-right-1-4 {
  width: 25%;
}

.cc .float-left-1-3,
.cc .float-right-1-3 {
  width: 33.3333%;
}

.cc .float-left-1-2,
.cc .float-right-1-2 {
  width: 50%;
}

.cc .float-left-2-3,
.cc .float-right-2-3 {
  width: 66.6666%;
}

.cc .float-left-3-4,
.cc .float-right-3-4 {
  width: 75%;
}

/*----------------------------------------------------*/
.cc .clear {
  clear: both;
}

.cc .clear-left {
  clear: left;
}

.cc .clear-right {
  clear: right;
}

.cc .table {
  display: table;
}

.cc .table-cell {
  display: table-cell;
  vertical-align: top;
}

.cc .valign-bloc {
  display: flex;
}

.cc .valign-bloc > div, .cc .valign-bloc > img, .cc .valign-bloc > p, .cc .valign-bloc > strong, .cc .valign-bloc > input, .cc .valign-bloc > select, .cc .valign-bloc > a {
  margin: auto;
}

.cc .break-line::before {
  content: "\a";
  background: #00ff00;
}

.cc .flex {
  display: flex;
}

.cc .flex-row {
  display: flex;
  flex-direction: row;
}

.cc .flex-column {
  display: flex;
  flex-direction: column;
}

.cc .flex p, .cc .flex-row p, .cc .flex-column p {
  max-width: 100%;
}

.cc .flex > img, .cc .flex-row > img, .cc .flex-column > img {
  min-height: 1px;
}

.cc .flex-row-space-around {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.cc .flex-row-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.cc .justify-center {
  justify-content: center;
}

.cc .justify-start {
  justify-content: flex-start;
}

.cc .justify-end {
  justify-content: flex-end;
}

.cc .justify-space-between {
  justify-content: flex-space-between;
}

.cc .justify-space-around {
  justify-content: flex-space-around;
}

.cc .align-center, .cc .grid .align-center {
  align-items: center;
}

.cc .align-start, .cc .grid .align-start {
  align-items: flex-start;
}

.cc .align-end, .cc .grid .align-end {
  align-items: flex-end;
}

.cc .align-baseline, .cc .grid .align-baseline {
  align-items: baseline;
}

.cc .align-stretch, .cc .grid .align-stretch {
  align-items: stretch;
}

.cc .position-relative {
  position: relative;
}

.cc .position-absolute {
  position: absolute;
}

.cc .top-0 {
  top: 0;
}

.cc .bottom-0 {
  bottom: 0;
}

.cc .left-0 {
  left: 0;
}

.cc .right-0 {
  right: 0;
}

/*==========================================================================
2.  Margin
========================================================================== */
.cc .no-margin {
  margin: 0 !important;
}

.cc .no-margin-top {
  margin-top: 0 !important;
}

.cc .no-margin-bottom {
  margin-bottom: 0 !important;
}

.cc .no-margin-left {
  margin-left: 0 !important;
}

.cc .no-margin-right {
  margin-right: 0 !important;
}

.cc .no-margin-vertical {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.cc .no-margin-horizontal {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.cc .margin-grid {
  margin: 12px;
}

.cc .margin-grid-top {
  margin-top: 12px;
}

.cc .margin-grid-bottom {
  margin-bottom: 12px;
}

.cc .margin-grid-left {
  margin-left: 12px;
}

.cc .margin-grid-right {
  margin-right: 12px;
}

.cc .margin-grid-vertical {
  margin-top: 12px;
  margin-bottom: 12px;
}

.cc .margin-grid-horizontal {
  margin-right: 12px;
  margin-left: 12px;
}

.cc .no-padding {
  padding: 0 !important;
}

.cc .no-padding-top {
  padding-top: 0 !important;
}

.cc .no-padding-bottom {
  padding-bottom: 0 !important;
}

.cc .no-padding-left {
  padding-left: 0 !important;
}

.cc .no-padding-right {
  padding-right: 0 !important;
}

.cc .no-padding-vertical {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.cc .no-padding-horizontal {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.cc .padding-grid {
  padding: 12px;
}

.cc .padding-grid-top {
  padding-top: 12px;
}

.cc .padding-grid-bottom {
  padding-bottom: 12px;
}

.cc .padding-grid-left {
  padding-left: 12px;
}

.cc .padding-grid-right {
  padding-right: 12px;
}

.cc .padding-grid-vertical {
  padding-top: 12px;
  padding-bottom: 12px;
}

.cc .padding-grid-horizontal {
  padding-right: 12px;
  padding-left: 12px;
}

/*==========================================================================
3.  Widths
========================================================================== */
.wauto {
  width: auto !important;
}

.w10 {
  width: 10%;
}

.w20 {
  width: 20%;
}

.w30 {
  width: 30%;
}

.w40 {
  width: 40%;
}

.w50, .w1-2 {
  width: 50%;
}

.w60 {
  width: 60%;
}

.w70 {
  width: 70%;
}

.w80 {
  width: 80%;
}

.w90 {
  width: 90%;
}

.w100 {
  width: 100%;
}

.w1-4 {
  width: 25%;
}

.w1-3 {
  width: 33.3333%;
}

.w2-3 {
  width: 66.6666%;
}

.w3-4 {
  width: 75%;
}

/*==========================================================================
4.  Decoration
========================================================================== */
.cc .background-transparent, .cc .contacts.background-transparent, .cc .products-teaser.background-transparent {
  background: none;
}

img {
  -ms-interpolation-mode: bicubic;
}

/*==========================================================================
5.  Tableaux
========================================================================== */
.cc .tab-1-2 {
  width: 50%;
}

/*max-width:((100/$num-columns) * $i) *1%;*/
.oldie .cc .tab-1-2 {
  width: 50%;
  float: left;
}

.cc .tab-1-3 {
  width: 33.3333333333%;
}

/*max-width:((100/$num-columns) * $i) *1%;*/
.oldie .cc .tab-1-3 {
  width: 33.3333333333%;
  float: left;
}

.cc .tab-2-3 {
  width: 66.6666666667%;
}

/*max-width:((100/$num-columns) * $i) *1%;*/
.oldie .cc .tab-2-3 {
  width: 66.6666666667%;
  float: left;
}

.cc .tab-1-4 {
  width: 25%;
}

/*max-width:((100/$num-columns) * $i) *1%;*/
.oldie .cc .tab-1-4 {
  width: 25%;
  float: left;
}

.cc .tab-2-4 {
  width: 50%;
}

/*max-width:((100/$num-columns) * $i) *1%;*/
.oldie .cc .tab-2-4 {
  width: 50%;
  float: left;
}

.cc .tab-3-4 {
  width: 75%;
}

/*max-width:((100/$num-columns) * $i) *1%;*/
.oldie .cc .tab-3-4 {
  width: 75%;
  float: left;
}

.cc .tab-1-5 {
  width: 20%;
}

/*max-width:((100/$num-columns) * $i) *1%;*/
.oldie .cc .tab-1-5 {
  width: 20%;
  float: left;
}

.cc .tab-2-5 {
  width: 40%;
}

/*max-width:((100/$num-columns) * $i) *1%;*/
.oldie .cc .tab-2-5 {
  width: 40%;
  float: left;
}

.cc .tab-3-5 {
  width: 60%;
}

/*max-width:((100/$num-columns) * $i) *1%;*/
.oldie .cc .tab-3-5 {
  width: 60%;
  float: left;
}

.cc .tab-4-5 {
  width: 80%;
}

/*max-width:((100/$num-columns) * $i) *1%;*/
.oldie .cc .tab-4-5 {
  width: 80%;
  float: left;
}

.cc .tab-1-6 {
  width: 16.6666666667%;
}

/*max-width:((100/$num-columns) * $i) *1%;*/
.oldie .cc .tab-1-6 {
  width: 16.6666666667%;
  float: left;
}

.cc .tab-2-6 {
  width: 33.3333333333%;
}

/*max-width:((100/$num-columns) * $i) *1%;*/
.oldie .cc .tab-2-6 {
  width: 33.3333333333%;
  float: left;
}

.cc .tab-3-6 {
  width: 50%;
}

/*max-width:((100/$num-columns) * $i) *1%;*/
.oldie .cc .tab-3-6 {
  width: 50%;
  float: left;
}

.cc .tab-4-6 {
  width: 66.6666666667%;
}

/*max-width:((100/$num-columns) * $i) *1%;*/
.oldie .cc .tab-4-6 {
  width: 66.6666666667%;
  float: left;
}

.cc .tab-5-6 {
  width: 83.3333333333%;
}

/*max-width:((100/$num-columns) * $i) *1%;*/
.oldie .cc .tab-5-6 {
  width: 83.3333333333%;
  float: left;
}

.cc .tab-1-12 {
  width: 8.3333333333%;
}

/*max-width:((100/$num-columns) * $i) *1%;*/
.oldie .cc .tab-1-12 {
  width: 8.3333333333%;
  float: left;
}

.cc .tab-2-12 {
  width: 16.6666666667%;
}

/*max-width:((100/$num-columns) * $i) *1%;*/
.oldie .cc .tab-2-12 {
  width: 16.6666666667%;
  float: left;
}

.cc .tab-3-12 {
  width: 25%;
}

/*max-width:((100/$num-columns) * $i) *1%;*/
.oldie .cc .tab-3-12 {
  width: 25%;
  float: left;
}

.cc .tab-4-12 {
  width: 33.3333333333%;
}

/*max-width:((100/$num-columns) * $i) *1%;*/
.oldie .cc .tab-4-12 {
  width: 33.3333333333%;
  float: left;
}

.cc .tab-5-12 {
  width: 41.6666666667%;
}

/*max-width:((100/$num-columns) * $i) *1%;*/
.oldie .cc .tab-5-12 {
  width: 41.6666666667%;
  float: left;
}

.cc .tab-6-12 {
  width: 50%;
}

/*max-width:((100/$num-columns) * $i) *1%;*/
.oldie .cc .tab-6-12 {
  width: 50%;
  float: left;
}

.cc .tab-7-12 {
  width: 58.3333333333%;
}

/*max-width:((100/$num-columns) * $i) *1%;*/
.oldie .cc .tab-7-12 {
  width: 58.3333333333%;
  float: left;
}

.cc .tab-8-12 {
  width: 66.6666666667%;
}

/*max-width:((100/$num-columns) * $i) *1%;*/
.oldie .cc .tab-8-12 {
  width: 66.6666666667%;
  float: left;
}

.cc .tab-9-12 {
  width: 75%;
}

/*max-width:((100/$num-columns) * $i) *1%;*/
.oldie .cc .tab-9-12 {
  width: 75%;
  float: left;
}

.cc .tab-10-12 {
  width: 83.3333333333%;
}

/*max-width:((100/$num-columns) * $i) *1%;*/
.oldie .cc .tab-10-12 {
  width: 83.3333333333%;
  float: left;
}

.cc .tab-11-12 {
  width: 91.6666666667%;
}

/*max-width:((100/$num-columns) * $i) *1%;*/
.oldie .cc .tab-11-12 {
  width: 91.6666666667%;
  float: left;
}

/*==========================================================================
6.  Fonts
========================================================================== */
/* mini, tiny, small */
.cc .font-tiny {
  font-size: 8px !important;
  line-height: 12px !important;
}

.cc .font-small {
  font-size: 11px !important;
  line-height: 15px !important;
}

.cc .font-regular {
  font-size: 13px !important;
  line-height: 17px !important;
}

.cc .font-medium {
  font-size: 16px !important;
  line-height: 20px !important;
}

.cc .font-large {
  font-size: 18px !important;
  line-height: 22px !important;
}

.cc .font-tall {
  font-size: 24px !important;
  line-height: 28px !important;
}

.cc .font-huge {
  font-size: 28px !important;
  line-height: 32px !important;
}

.cc .font-giant {
  font-size: 32px !important;
  line-height: 36px !important;
}

/*Gargantuan
Colossal*/
/*********************************************************************************************

Project : Styles vitrine I14 : Grids
Version: 1.0
Author: FX Lair - Bordenave Danny

**********************************************************************************************

Lasts Modifs :

**********************************************************************************************

Summary
0.  Import var and mixin
1.  Flex "%" grids
2. .Flex "Grow" grids (DO NOT USE Until min-support browser will be up to IE9)
3. .Flex "G" grids (Test : DO NOT USE)
4.  Test grid Guide
**********************************************************************************************/
/* ==========================================================================
0.  Import var and mixin
========================================================================== */
/* @import "config_var_mixin.scss"; */
/* ==========================================================================
1.  Flex "%" grids
========================================================================== */
.cc .grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  /* justify-content:flex-start;  */
  min-width: 100%;
}

.cc .grid.justify-center {
  justify-content: center;
}

.cc .grid.justify-start {
  justify-content: flex-start;
}

.cc .grid.justify-end {
  justify-content: flex-end;
}

.cc .grid.justify-space-between {
  justify-content: flex-space-between;
}

.cc .grid.justify-space-around {
  justify-content: flex-space-around;
}

.oldie .cc .grid::before,
.oldie .cc .grid::after,
.oldie ~ #ei_tpl_fullsite .cc .grid::before,
.oldie ~ #ei_tpl_fullsite .cc .grid::after {
  content: "";
  display: table;
}

.oldie .cc .grid::after, .oldie ~ #ei_tpl_fullsite .cc .grid::after {
  clear: both;
}

.oldie .cc .grid, .oldie ~ #ei_tpl_fullsite .cc .grid {
  zoom: 1;
}

.cc .grid-1-2 {
  width: 50%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-1-2, .oldie ~ #ei_tpl_fullsite .cc .grid-1-2 {
  float: left;
  width: 50%;
}

.cc .grid-1-3 {
  width: 33.3333333333%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-1-3, .oldie ~ #ei_tpl_fullsite .cc .grid-1-3 {
  float: left;
  width: 33.3333333333%;
}

.cc .grid-2-3 {
  width: 66.6666666667%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-2-3, .oldie ~ #ei_tpl_fullsite .cc .grid-2-3 {
  float: left;
  width: 66.6666666667%;
}

.cc .grid-1-4 {
  width: 25%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-1-4, .oldie ~ #ei_tpl_fullsite .cc .grid-1-4 {
  float: left;
  width: 25%;
}

.cc .grid-2-4 {
  width: 50%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-2-4, .oldie ~ #ei_tpl_fullsite .cc .grid-2-4 {
  float: left;
  width: 50%;
}

.cc .grid-3-4 {
  width: 75%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-3-4, .oldie ~ #ei_tpl_fullsite .cc .grid-3-4 {
  float: left;
  width: 75%;
}

.cc .grid-1-5 {
  width: 20%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-1-5, .oldie ~ #ei_tpl_fullsite .cc .grid-1-5 {
  float: left;
  width: 20%;
}

.cc .grid-2-5 {
  width: 40%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-2-5, .oldie ~ #ei_tpl_fullsite .cc .grid-2-5 {
  float: left;
  width: 40%;
}

.cc .grid-3-5 {
  width: 60%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-3-5, .oldie ~ #ei_tpl_fullsite .cc .grid-3-5 {
  float: left;
  width: 60%;
}

.cc .grid-4-5 {
  width: 80%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-4-5, .oldie ~ #ei_tpl_fullsite .cc .grid-4-5 {
  float: left;
  width: 80%;
}

.cc .grid-1-6 {
  width: 16.6666666667%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-1-6, .oldie ~ #ei_tpl_fullsite .cc .grid-1-6 {
  float: left;
  width: 16.6666666667%;
}

.cc .grid-2-6 {
  width: 33.3333333333%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-2-6, .oldie ~ #ei_tpl_fullsite .cc .grid-2-6 {
  float: left;
  width: 33.3333333333%;
}

.cc .grid-3-6 {
  width: 50%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-3-6, .oldie ~ #ei_tpl_fullsite .cc .grid-3-6 {
  float: left;
  width: 50%;
}

.cc .grid-4-6 {
  width: 66.6666666667%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-4-6, .oldie ~ #ei_tpl_fullsite .cc .grid-4-6 {
  float: left;
  width: 66.6666666667%;
}

.cc .grid-5-6 {
  width: 83.3333333333%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-5-6, .oldie ~ #ei_tpl_fullsite .cc .grid-5-6 {
  float: left;
  width: 83.3333333333%;
}

.cc .grid-1-10 {
  width: 10%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-1-10, .oldie ~ #ei_tpl_fullsite .cc .grid-1-10 {
  float: left;
  width: 10%;
}

.cc .grid-2-10 {
  width: 20%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-2-10, .oldie ~ #ei_tpl_fullsite .cc .grid-2-10 {
  float: left;
  width: 20%;
}

.cc .grid-3-10 {
  width: 30%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-3-10, .oldie ~ #ei_tpl_fullsite .cc .grid-3-10 {
  float: left;
  width: 30%;
}

.cc .grid-4-10 {
  width: 40%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-4-10, .oldie ~ #ei_tpl_fullsite .cc .grid-4-10 {
  float: left;
  width: 40%;
}

.cc .grid-5-10 {
  width: 50%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-5-10, .oldie ~ #ei_tpl_fullsite .cc .grid-5-10 {
  float: left;
  width: 50%;
}

.cc .grid-6-10 {
  width: 60%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-6-10, .oldie ~ #ei_tpl_fullsite .cc .grid-6-10 {
  float: left;
  width: 60%;
}

.cc .grid-7-10 {
  width: 70%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-7-10, .oldie ~ #ei_tpl_fullsite .cc .grid-7-10 {
  float: left;
  width: 70%;
}

.cc .grid-8-10 {
  width: 80%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-8-10, .oldie ~ #ei_tpl_fullsite .cc .grid-8-10 {
  float: left;
  width: 80%;
}

.cc .grid-9-10 {
  width: 90%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-9-10, .oldie ~ #ei_tpl_fullsite .cc .grid-9-10 {
  float: left;
  width: 90%;
}

.cc .grid-1-12 {
  width: 8.3333333333%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-1-12, .oldie ~ #ei_tpl_fullsite .cc .grid-1-12 {
  float: left;
  width: 8.3333333333%;
}

.cc .grid-2-12 {
  width: 16.6666666667%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-2-12, .oldie ~ #ei_tpl_fullsite .cc .grid-2-12 {
  float: left;
  width: 16.6666666667%;
}

.cc .grid-3-12 {
  width: 25%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-3-12, .oldie ~ #ei_tpl_fullsite .cc .grid-3-12 {
  float: left;
  width: 25%;
}

.cc .grid-4-12 {
  width: 33.3333333333%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-4-12, .oldie ~ #ei_tpl_fullsite .cc .grid-4-12 {
  float: left;
  width: 33.3333333333%;
}

.cc .grid-5-12 {
  width: 41.6666666667%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-5-12, .oldie ~ #ei_tpl_fullsite .cc .grid-5-12 {
  float: left;
  width: 41.6666666667%;
}

.cc .grid-6-12 {
  width: 50%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-6-12, .oldie ~ #ei_tpl_fullsite .cc .grid-6-12 {
  float: left;
  width: 50%;
}

.cc .grid-7-12 {
  width: 58.3333333333%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-7-12, .oldie ~ #ei_tpl_fullsite .cc .grid-7-12 {
  float: left;
  width: 58.3333333333%;
}

.cc .grid-8-12 {
  width: 66.6666666667%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-8-12, .oldie ~ #ei_tpl_fullsite .cc .grid-8-12 {
  float: left;
  width: 66.6666666667%;
}

.cc .grid-9-12 {
  width: 75%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-9-12, .oldie ~ #ei_tpl_fullsite .cc .grid-9-12 {
  float: left;
  width: 75%;
}

.cc .grid-10-12 {
  width: 83.3333333333%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-10-12, .oldie ~ #ei_tpl_fullsite .cc .grid-10-12 {
  float: left;
  width: 83.3333333333%;
}

.cc .grid-11-12 {
  width: 91.6666666667%;
  /* -ms-flex-preferred-size: ((100/$num-columns) * $i) *1%; */
  /* -ms-flex: 1 0 0px; */
}

/* max-width:((100/$num-columns) * $i) *1%; */
.oldie .cc .grid-11-12, .oldie ~ #ei_tpl_fullsite .cc .grid-11-12 {
  float: left;
  width: 91.6666666667%;
}

/* fx      $classes_inf85 */
.cc .grid-1-1 {
  width: 100%;
}

.oldie .cc .grid-1-1, .oldie ~ #ei_tpl_fullsite .cc .grid-1-1 {
  float: left;
  width: 100%;
}

.cc [class^=grid-] {
  display: flex;
  align-items: stretch;
  padding: 12px;
  padding: 0.75rem;
}

.cc [class^=grid-].nomargintop {
  margin-top: -12px;
  margin-top: -0.75rem;
}

.cc .grid .grid {
  margin: -12px;
  margin: -0.75rem;
}

.cc .grow {
  flex: 1 1 100%; /* IE bug si on met flex: 1 1 auto; */
}

.cc .notstretch, .cc .no-stretch {
  align-items: baseline;
}

/*

.cc [class^="grid-"].separator-left{
  border-left: 1px solid $Havelock;
}
.cc [class^="grid-"].separator-right{
  border-right: 1px solid $Havelock;
}

.cc [class^="grid-"].separator-right,.cc [class^="grid-"].separator-left{
  @include rem(margin-top,$GridMargin);
  @include rem(margin-bottom,$GridMargin);
  padding-top: 0;
  padding-bottom: 0;
}
*/
.cc .grid.separator {
  margin-left: -24px;
  margin-left: -1.5rem;
  margin-right: -24px;
  margin-right: -1.5rem;
}

.cc .separator [class^=grid-] {
  padding-top: 0;
  padding-bottom: 0;
  border-right: 1px solid #3f8bd2;
  margin-top: 12px;
  margin-top: 0.75rem;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  padding-left: 24px;
  padding-left: 1.5rem;
  padding-right: 24px;
  padding-right: 1.5rem;
}

.cc .separator [class^=grid-]:last-child {
  border-right: none;
}

.cc .separator [class^=grid-] p {
  line-height: 17px;
  line-height: 1.0625rem;
}

/* ==========================================================================
2. Flex "Grow" grids
========================================================================== */
/*
DO NOT USE Until min-support browser will be up to IE9
*/
.cc .gridf {
  display: flex;
  justify-content: center;
}

.cc .grid-flex-1 {
  flex: 1 1 auto;
}

.cc .grid-flex-2 {
  flex: 2 1 auto;
}

.cc .grid-flex-3 {
  flex: 3 1 auto;
}

.cc .grid-flex-4 {
  flex: 4 1 auto;
}

.cc .grid-flex-5 {
  flex: 5 1 auto;
}

.cc .grid-flex-6 {
  flex: 6 1 auto;
}

.cc .grid-flex-7 {
  flex: 7 1 auto;
}

.cc .grid-flex-8 {
  flex: 8 1 auto;
}

.cc .grid-flex-9 {
  flex: 9 1 auto;
}

.cc .grid-flex-10 {
  flex: 10 1 auto;
}

.cc .grid-flex-11 {
  flex: 11 1 auto;
}

/* ========================================================================= */
/* ==========================================================================
3. Flex "G" grids
========================================================================== */
/*
abbandon de cette methode : resultats assez aleatoires sous IE
*/
/*
$gutter: 1.5em;
$number: 12;
.cc .gridg{
  display:flex;
  flex-wrap:wrap;
  align-items:stretch;
  margin-left: -$gutter;
}
[class*="gridg-"] {
    display: block;
    margin-left: $gutter;
    background: #83a1cf;
    margin-top: $gutter;
}
.cc .gridg-1-12
{
width: calc(100% * 1 / $number - $gutter);
}
.cc .gridg-2-12,.cc .gridg-1-6
{
width: calc(100% * 2 / $number - $gutter);
}
.cc .gridg-3-12,.cc .gridg-1-4
{
width: calc(100% * 3 / $number - $gutter);
}
.cc .gridg-4-12,.cc .gridg-2-6,.cc .gridg-1-3
{
width: calc(100% * 4 / $number - $gutter);
}
.cc .gridg-5-12
{
width: calc(100% * 5 / $number - $gutter);
}
.cc .gridg-6-12,.cc .gridg-3-6,.cc .gridg-2-4,.cc .gridg-1-2
{
width: calc(100% * 6 / $number - $gutter);
}
.cc .gridg-7-12
{
width: calc(100% * 7 / $number - $gutter);
}
.cc .gridg-8-12,.cc .gridg-4-6,.cc .gridg-2-3
{
width: calc(100% * 8 / $number - $gutter);
}
.cc .gridg-9-12,.cc .gridg-3-4
{
width: calc(100% * 9 / $number - $gutter);
}
.cc .gridg-10-12,.cc .gridg-5-6
{
width: calc(100% * 10 / $number - $gutter);
}
.cc .gridg-11-12
{
width: calc(100% * 11 / $number - $gutter);
}
.cc .gridg-12-12
{
width: calc(100% * 12 / $number - $gutter);
}
*/
/* ==========================================================================
3.  Test grid Guide
========================================================================== */
.cc.grid_test [class^=grid-] > div {
  background: #83a1cf !important;
  /* padding:0;
  @include rem(border-width,$GridMargin);
  border-style: solid;
  border-color: #ffffff; */
}

.cc .grid_test_item {
  display: flex;
  flex: 1 1 auto;
  align-items: stretch;
  margin: -2px;
  border: 2px dashed #ffa200;
}

.cc .grid_test_item .grid_test_item {
  border: 2px dashed #82c336;
}

.cc.grid_test, .cc.grid_test .grid {
  background: #fff !important;
}

/*
.cc.grid_test  .grid:nth-child(4){
  background:$SanMarino;
  @include rem(margin,0 -$cmrPadding);
  @include rem(padding,0 $cmrPadding);
} */
/*********************************************************************************************
3.  Main Styles
*********************************************************************************************/
/*********************************************************************************************

Project : Styles I14 : Widgets
Version: 1.0
Author: BORDENAVE Danny - FX Lair

**********************************************************************************************

Notes:

Lasts Modifs :

**********************************************************************************************

Summary

All styles must be prefix with the ".cc" class
**********************************************************************************************/
.cc .widget-info {
  background: #FFF;
  box-shadow: 0px 3px 10px -3px rgba(0, 0, 0, 0.2);
}

.cc .widget-info .content {
  padding: 20px 10px 20px;
  padding: 1.25rem 0.625rem 1.25rem;
}

.cc .widget-info .content h3 {
  padding: 0 0 5px 0;
  padding: 0 0 0.3125rem 0;
  margin: 0;
  color: #262626;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 21px;
  line-height: 1.3125rem;
}

.cc .widget-info .content p {
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  line-height: 18px;
  line-height: 1.125rem;
}

.cc .widget-info .img img {
  width: 100%;
}

.cc .widget-info.wi-dossiers div.content {
  padding-top: 10px;
  margin: 0px;
  position: relative;
}

.cc .widget-info.wi-dossiers div.img {
  margin: 0px;
  padding: 10px;
  -ms-interpolation-mode: bicubic;
}

/*********************************************************************************************

Project : Styles vitrine I14 : Grids
Version: 1.0
Author: FX Lair - Bordenave Danny

**********************************************************************************************

Notes:
IE bug si un inline-block est en flex à 1 (sa largeur peu dépasser celle de son conteneur), d'ou l'utilisation de bloc suplèmentaires dans ce cas
Sous IE Le centrage flex vertical ne fonctionne pas si la hauteur du bloc est seulement définie par un min-height
Sous IE l'utilisation du line-height en rem pose problème pour gérer le centrage vertical des glyph
IE a tendance à bugger si l'on utilise flex:1; bien préciser flex: 1 1 auto;
box-sizing: border-box; ne fonctionne pas avec IE (ex avec un  flex:1 1 50%; padding:10px;)

Lasts Modifs :

**********************************************************************************************

Summary
0.  Import var and mixin


All styles must be prefix with the ".cc" class
**********************************************************************************************/
/*==========================================================================
0.  Import var and mixin
========================================================================== */
/*==========================================================================
.  Mise en page en dehors de la grille
========================================================================== */
/*Pour avoir la même marge avant un titre lorsque l'on utilise pas la grille pour structurer */
.cc .redac p + h3,
.cc .redac ul + h3,
.cc .redac h2 + h3,
.cc .redac .phone + h3,
.cc .redac .aplat + h3,
.cc .redac p + .h3,
.cc .redac ul + .h3,
.cc .redac h2 + .h3,
.cc .redac .phone + .h3,
.cc .redac .aplat + .h3,
.cc .redac p + .arrow,
.cc .redac ul + .arrow,
.cc .redac h2 + .arrow,
.cc .redac .phone + .arrow,
.cc .redac .aplat + .arrow,
.cc .redac p + h2,
.cc .redac ul + h2,
.cc .redac h2 + h2,
.cc .redac .phone + h2,
.cc .redac .aplat + h2,
.cc .redac p + .h2,
.cc .redac ul + .h2,
.cc .redac h2 + .h2,
.cc .redac .phone + .h2,
.cc .redac .aplat + .h3,
.cc .redac .aplat + p {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.cc .redac p + h4,
.cc .redac ul + h4,
.cc .redac h3 + h4,
.cc .redac .aplat + h4 {
  margin-top: 12px;
  margin-top: 0.75rem;
}

.cc .redac h2 + .aplat,
.cc .redac h3 + .aplat,
.cc .redac h4 + .aplat,
.cc .redac p + .aplat,
.cc .redac ul + .aplat {
  margin-top: 24px;
  margin-top: 1.5rem;
}

/*==========================================================================
.  Pictos
========================================================================== */
.cc .picto-inclus {
  display: inline-block;
  position: relative;
  height: 1px;
  width: 1px;
  text-indent: -9999px;
  white-space: nowrap;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  width: 25px;
  width: 1.5625rem;
  padding: 5px 0;
}

.cc .picto-inclus::before {
  position: absolute;
  display: block;
  z-index: 10;
  left: 0;
  font-size: 25px;
  font-size: 1.5625rem;
  content: "\f008e";
  font-family: "fts_picto";
  color: #5a992b;
  text-indent: 0;
}

/*==========================================================================
.  essential
========================================================================== */
.cc .essential ul {
  background: url("/partage/fr/CC/CM-I14/styles/img/essential.gif") no-repeat scroll right 10px;
  background-size: 1px calc(100% - 17px);
  margin-right: -12px;
  margin-right: -0.75rem;
  font-weight: 600;
  font-weight: 600;
}

.cc .essential ul li {
  position: relative;
  text-align: right;
  padding: 0 20px 10px 0;
  padding: 0 1.25rem 0.625rem 0;
}

.cc .essential ul li:last-child {
  padding-bottom: 0;
}

.cc .essential ul li::after {
  position: absolute;
  content: "\f00f3";
  font-family: "fts_picto";
  color: #3f8bd2;
  font-size: 24px;
  font-size: 1.5rem;
  right: -12px;
  right: -0.75rem;
  top: 2px;
  top: 0.125rem;
}

.cc .essential .btn {
  margin: 10px 0 10px 40px;
  margin: 0.625rem 0 0.625rem 2.5rem;
}

.cc .essential .grow.valign-bloc-m {
  flex-wrap: wrap;
  justify-content: flex-start;
}

/*==========================================================================
.  widget-info
========================================================================== */
.cc .widget-info {
  background: #fff;
  box-shadow: 0 3px 10px -3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 10px -3px rgba(0, 0, 0, 0.2);
}

.cc .widget-info .img img {
  width: 100%;
}

/*==========================================================================
.  step1
========================================================================== */
.cc [class*=step-] {
  position: relative;
}

.cc [class*=step-] .grow {
  position: relative;
  padding: 40px 20px 30px 20px;
  padding: 2.5rem 1.25rem 1.875rem 1.25rem;
  background: #c8e6ff;
}

.cc [class*=step-] .grow::before,
.cc [class*=step-] .grow::after {
  content: "";
  position: absolute;
  border: 0 solid #fff;
  width: 0;
}

.cc [class*=step-] .grow::before {
  top: 0;
  left: 0;
  border-top-width: 30px;
  border-top-width: 1.875rem;
  border-right-width: 30px;
  border-right-width: 1.875rem;
  border-right-color: #c8e6ff;
}

.cc [class*=step-] .grow::after {
  bottom: 0;
  right: 0;
  border-bottom-width: 30px;
  border-bottom-width: 1.875rem;
  border-left-width: 30px;
  border-left-width: 1.875rem;
  border-left-color: #c8e6ff;
}

/*pour avoir la couleur $Onahau pour le step-4*/
.cc .step-6 .grow {
  background: #b4ddff url(/partage/fr/CC/CM-I14/styles/img/6.png) -30px center no-repeat;
  background-image: url(/partage/fr/CC/CM-I14/styles/img/6.svg), none;
  background-size: 160px;
  background-size: 10rem;
}

.cc .step-6 .grow::before {
  border-right-color: #b4ddff;
}

.cc .step-6 .grow::after {
  border-left-color: #b4ddff;
}

.cc .step-5 .grow {
  background: #bee1ff url(/partage/fr/CC/CM-I14/styles/img/5.png) -30px center no-repeat;
  background-image: url(/partage/fr/CC/CM-I14/styles/img/5.svg), none;
  background-size: 160px;
  background-size: 10rem;
}

.cc .step-5 .grow::before {
  border-right-color: #bee1ff;
}

.cc .step-5 .grow::after {
  border-left-color: #bee1ff;
}

.cc .step-4 .grow {
  background: #c8e6ff url(/partage/fr/CC/CM-I14/styles/img/4.png) -30px center no-repeat;
  background-image: url(/partage/fr/CC/CM-I14/styles/img/4.svg), none;
  background-size: 160px;
  background-size: 10rem;
}

.cc .step-4 .grow::before {
  border-right-color: #c8e6ff;
}

.cc .step-4 .grow::after {
  border-left-color: #c8e6ff;
}

.cc .step-3 .grow {
  background: #d2ebff url(/partage/fr/CC/CM-I14/styles/img/3.png) -30px center no-repeat;
  background-image: url(/partage/fr/CC/CM-I14/styles/img/3.svg), none;
  background-size: 160px;
  background-size: 10rem;
}

.cc .step-3 .grow::before {
  border-right-color: #d2ebff;
}

.cc .step-3 .grow::after {
  border-left-color: #d2ebff;
}

.cc .step-2 .grow {
  background: #dcefff url(/partage/fr/CC/CM-I14/styles/img/2.png) -30px center no-repeat;
  background-image: url(/partage/fr/CC/CM-I14/styles/img/2.svg), none;
  background-size: 160px;
  background-size: 10rem;
}

.cc .step-2 .grow::before {
  border-right-color: #dcefff;
}

.cc .step-2 .grow::after {
  border-left-color: #dcefff;
}

.cc .step-1 .grow {
  background: #e7f4ff url(/partage/fr/CC/CM-I14/styles/img/1.png) -30px center no-repeat;
  background-image: url(/partage/fr/CC/CM-I14/styles/img/1.svg), none;
  background-size: 160px;
  background-size: 10rem;
}

.cc .step-1 .grow::before {
  border-right-color: #e7f4ff;
}

.cc .step-1 .grow::after {
  border-left-color: #e7f4ff;
}

.cc [class*=step-] .grow p {
  line-height: 17px;
  line-height: 1.0625rem;
}

.cc .step__awards .grow {
  background-image: url(/partage/fr/CC/CM-I14/styles/img/awards.png);
  background-image: url(/partage/fr/CC/CM-I14/styles/img/awards.svg), none;
  background-position: center center;
}

.cc .redac .step__awards .grow p {
  font-weight: 600;
  font-weight: 600;
  text-align: center;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
}

.cc .step__awards h3 {
  text-align: center;
  font-size: 60px;
  font-size: 3.75rem;
  line-height: 60px;
  line-height: 3.75rem;
  font-weight: 600;
  font-weight: 600;
  color: #3f8bd2;
}

.cc .step__awards sup {
  font-size: 30px;
  font-size: 1.875rem;
  vertical-align: top;
}

/*==========================================================================
.  redac
========================================================================== */
.cc .redac {
  background: #fff;
}

.cc .break {
  margin-top: 24px;
  margin-top: 1.5rem;
  /*$cmrPadding+$GridMargin*/
}

.cc .medium-break {
  margin-top: 28px;
  margin-top: 1.75rem;
}

.cc .small-break {
  margin-top: 4px;
  margin-top: 0.25rem;
  padding-top: 28px;
  padding-top: 1.75rem;
}

.cc .very-small-break {
  margin-top: 1px;
  margin-top: 0.0625rem;
  padding-top: 28px;
  padding-top: 1.75rem;
}

.cc .intro {
  /*//## font-family: "OpenSansSemibold",Arial,Helvetica,sans-serif;
  font-weight: 600;*/
}

.cc .clickable {
  cursor: pointer;
}

/*
.cc div.grow > .intro:first-child{
	@include rem(margin-top,-$GridMargin);
}*/
.cc ol {
  padding-left: 15px;
  padding-left: 0.9375rem;
}

.cc ul.styled,
.cc ul.styled ul,
.cc ol {
  margin: 4px 0 10px;
  margin: 0.25rem 0 0.625rem;
}

.cc ul.styled li,
.cc ul.styled li li {
  position: relative;
  padding-left: 15px;
  padding-left: 0.9375rem;
}

.cc ol.styled li,
.cc ol.styled li li {
  margin-left: 15px;
  margin-left: 0.9375rem;
}

.cc ul.styled li::before,
.cc ul.styled li li::before {
  position: absolute;
  left: -5px;
  left: -0.3125rem;
  top: 3px;
  top: 0.1875rem;
  /*@include rem(vertical-align,-9px);*/
  content: "\f00f3";
  font-family: "fts_picto";
  color: #3f8bd2;
  font-size: 24px;
  font-size: 1.5rem;
}

.cc ul.styled li li::before {
  color: #666;
}

.cc ul.styled li > img {
  vertical-align: text-top;
}

.cc ul.faq > li {
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
}

.cc ul.check {
  margin: 4px 0 10px;
  margin: 0.25rem 0 0.625rem;
}

.cc ul.check:last-child {
  margin-bottom: 0;
}

.cc ul.check li {
  position: relative;
  padding: 0 0 16px 30px;
  padding: 0 0 1rem 1.875rem;
}

.cc ul.check li:last-child {
  padding-bottom: 0;
}

.cc ul.check li::before {
  position: absolute;
  left: 0;
  /*// @include rem(top, -2px); // décallage ???*/
  content: "\f071d";
  font-family: "fts_picto";
  color: #3f8bd2;
  font-size: 16px;
  font-size: 1rem;
}

.cc ul.links-inline li {
  display: inline;
}

.cc ul.links-inline li::before {
  content: " - ";
}

.cc ul.links-inline li:first-child::before {
  display: none;
}

.cc .redac .arrow ~ h4,
.cc .redac .arrow ~ .h4,
.cc .redac .arrow ~ p,
.cc .redac .arrow ~ ul.styled,
.cc .redac .arrow ~ ol,
.cc .redac .arrow ~ ul.styled,
.cc .redac .arrow ~ ul.note,
.cc .redac .arrow ~ ul.faq,
.cc .redac .arrow ~ ul.check,
.cc .redac .arrow ~ time,
.cc .redac .arrow ~ .float-right-1-2,
.cc .redac .arrow ~ .float-left-1-2,
.cc .redac .arrow ~ .phone,
.cc .redac .arrow ~ .phone-sva,
.cc .redac .arrow ~ pre {
  padding-left: 32px;
  padding-left: 2rem;
}

/* gestion marge des aplats quand hors grid - 04/03/2016 */
.cc .redac .arrow ~ .aplat {
  margin-left: 32px;
  margin-left: 2rem;
  margin-top: 12px;
  margin-top: 0.75rem;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}

.cc .redac img + h3 {
  margin-top: 24px;
  margin-top: 1.5rem;
}

/*test pour numéros utiles*/
.cc .redac .arrow-padding-left {
  padding-left: 32px;
  padding-left: 2rem;
}

.cc .redac .grow p,
.cc .redac .zoom p,
.cc .redac .external-website p,
.cc .redac .offer p,
.cc .redac .aplat p {
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
}

.cc .redac .grow .titre-1 + p {
  /*// @include rem(padding-bottom,15px);*/
  font-weight: 600;
  font-weight: 600;
}

.cc .redac .grow p + ul.styled,
.cc .redac .grow p + ol {
  margin-top: -10px;
  margin-top: -0.625rem;
}

.cc .redac .grow time {
  font-weight: 600;
  font-weight: 600;
}

.cc .redac.insert {
  background: #4170a9;
}

.cc .redac.insert,
.cc .redac.insert h2,
.cc .redac.insert .h2,
.cc .redac.insert h3,
.cc .redac.insert .h3 {
  color: #fff;
}

/* ==========================================================================
.  Headers
========================================================================== */
.cc [class^=header-] {
  margin-left: -28px;
  margin-left: -1.75rem;
  margin-right: -28px;
  margin-right: -1.75rem;
  position: relative;
  /*overflow: hidden; maj ul.menu*/
  height: auto;
  /*@include rem(font-size, 15px);
  @include rem(line-height, 23px);*/
  /*background: #fff;maj ul.menu*/
}

.cc [class^=header-] > div {
  /*@include rem(min-height,195px);*/
}

.cc [class^=header-] p,
.cc [class^=header-] ul {
  color: #666;
}

.cc [class^=header-] .uptitle {
  color: #3f8bd2;
}

.cc [class^=header-] h1 {
  color: #262626;
}

.cc [class^=header-] p + p {
  margin-top: 12px;
}

.cc [class^=header-] .subtitle {
  color: #666;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
}

.cc [class^=header-] .intro {
  color: #666;
  line-height: 19px;
  line-height: 1.1875rem;
}

.cc [class^=header-img] [data-back] ~ p {
  padding-left: 7px;
  padding-left: 0.4375rem;
}

/*background par défaut*/
.cc .header-img-aplat,
.cc .header-logo,
.cc .header-img,
.cc .grid-1-2.img-1-2,
.cc .grid-1-3.img-1-3 {
  background: #3f8bd2 url(/partage/fr/CC/CM-I14/styles/img/picto-cm.png) center center no-repeat;
  background-size: 25%;
  background-image: url(/partage/fr/CC/CM-I14/styles/img/picto-cm.svg), none;
  /*background-size: contain;*/
}

/*
header-img-1-2 / header-img-1-3  : Image à droite au format 1/2 ou 1/3
header-img-aplat : Image full, texte sur aplat
========================================================================== */
.cc [class^=header-] .img-1-2,
.cc [class^=header-] .img-1-3,
.cc [class^=header-] .img-1-4 {
  margin-right: 0;
}

.cc .redac .img-1-2,
.cc .redac .img-1-3,
.cc .redac .img-1-4 {
  overflow: hidden;
}

.cc .header-img-1-2 .right-shadow,
.cc .header-img-1-3 .right-shadow,
.cc .header-img-1-4 .right-shadow {
  box-shadow: 10px 0 10px 0 #fff;
}

.cc .grid-1-2.img-1-2 {
  background-size: 40%;
  background-position: 50%;
}

.cc .grid-1-3.img-1-3 {
  background-size: 50%;
  background-position: 50%;
}

.cc .header-img-1-2 .grid-1-2,
.cc .header-img-1-3 .grid-2-3,
.cc .header-img-1-4 .grid-3-4 {
  position: relative;
  background-color: #fff;
  z-index: 3;
}

.cc .grid-1-2.img-1-2,
.cc .grid-1-3.img-1-3,
.cc .grid-1-4.img-1-4 {
  position: relative;
  z-index: 2;
  padding: 0;
}

.cc .redac .grid-1-2.img-1-2,
.cc .redac .grid-1-3.img-1-3,
.cc .redac .grid-1-4.img-1-4 {
  border: 12px solid #fff;
  min-height: 200px;
}

.cc .img-1-2 > img,
.cc .img-1-3 > img,
.cc .img-1-4 > img {
  position: absolute;
  z-index: 1;
  max-width: none;
  height: 100%;
  right: 0;
}

.cc .header-img-aplat {
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

.cc .header-img-aplat .grow {
  background-color: #fff;
  padding: 30px 40px 30px 50px;
  padding: 1.875rem 2.5rem 1.875rem 3.125rem;
  margin-top: 50px;
  margin-top: 3.125rem;
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
  margin-left: 28px;
  margin-left: 1.75rem;
}

.cc .header-img-1-2 .grow,
.cc .header-img-1-3 .grow,
.cc .header-img-1-4 .grow {
  padding: 60px 40px 60px 90px;
  padding: 3.75rem 2.5rem 3.75rem 5.625rem;
  margin-top: -12px;
  margin-top: -0.75rem;
  margin-bottom: -12px;
  margin-bottom: -0.75rem;
  margin-left: -40px;
  margin-left: -2.5rem;
}

/*
header-img-left
========================================================================== */
.cc .header-img-left {
  background: #fff;
}

.cc .header-img-left .grid > div:first-child {
  padding: 0;
  overflow: hidden;
  display: block;
  text-align: center;
}

.cc .header-img-left .grid > div:first-child img {
  position: relative;
  left: 100%;
  margin-left: -200%;
  height: 200px;
  width: auto;
  max-width: none;
}

.cc .header-img-left .grid > div:last-child {
  padding: 28px;
  padding: 1.75rem;
}

.cc .header-img-left h1.light {
  font-weight: 300;
}

.cc .header-img-left .info {
  margin-top: 12px;
  margin-top: 0.75rem;
}

/*
header-logo : fond bleu avec logo CM
========================================================================== */
.cc .header-logo {
  padding-left: 28px;
  padding-left: 1.75rem;
  padding-right: 28px;
  padding-right: 1.75rem;
}

.cc .header-logo h1 {
  font-size: 40px;
  font-size: 2.5rem;
  padding-bottom: 0;
}

.cc .header-logo h1,
.cc .header-logo .intro,
.cc .header-logo .subtitle,
.cc .header-logo .uptitle,
.cc .header-logo a {
  color: #fff;
}

.cc .header-logo a:hover {
  color: #e6e6e6;
}

.cc .header-logo a.h-back::before {
  bottom: 12px;
  bottom: 0.75rem;
}

.cc .header-logo [data-back=true]::after {
  bottom: 4px;
  bottom: 0.25rem;
  font-weight: 300;
}

.cc .header-logo .intro {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 21px;
  line-height: 1.3125rem;
}

.cc .header-logo p {
  /*@include rem(padding, 0 100px);*/
  max-width: 920px;
  margin: 0 auto;
}

.cc .header-logo .grid-1-1 {
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  padding-top: 22px;
  padding-top: 1.375rem;
}

.cc [class^=header-img-] .h-back::before {
  border-color: #262626;
  color: #262626;
}

.cc [class^=header-img-] [data-back=true]::after {
  color: #3f8bd2;
}

.cc .header-logo,
.cc .header-logo .h-back::before {
  border-color: #fff;
  color: #fff;
}

.cc .header-logo [data-back=true]::after {
  color: #fff;
}

/*
header-img : Image en fond sur tout le header, texte sans aplat
========================================================================== */
.cc .header-img > div {
  min-height: 250px;
  min-height: 15.625rem;
}

.cc .header-img {
  text-align: center;
  text-shadow: 0 0 5px rgb(255, 255, 255);
}

.cc .header-img .text-white {
  text-shadow: 0 0 10px rgb(51, 51, 51) !important;
  color: #fff !important;
}

.cc .header-img .grow {
  vertical-align: middle;
  margin: auto;
}

.cc .header-img h1 {
  /*@include rem(padding-top,45px);*/
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 45px;
  line-height: 2.8125rem;
}

.cc .header-img .intro,
.cc .header-img .uptitle {
  color: #000;
}

/*
header-redac : Texte sur toute la largeur, fond blanc, image facultative
========================================================================== */
.cc .header-redac {
  background: #fff;
  padding: 12px 28px;
  padding: 0.75rem 1.75rem;
  margin-bottom: 3px;
  margin-bottom: 0.1875rem;
}

.cc .header-redac > div {
  min-height: 0;
}

.cc .header-redac h1 {
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  color: #3f8bd2;
  font-weight: 300;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 34px;
  line-height: 2.125rem;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  margin: 12px 0;
  margin: 0.75rem 0;
}

.cc .header-redac p,
.cc .header-redac li {
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 22px;
  line-height: 1.375rem;
}

.cc .header-redac .uptitle {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 22px;
  line-height: 1.375rem;
  font-weight: 600;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  /*@include rem(padding-left,25px);*/
  position: relative;
}

.cc .header-redac img:first-child,
.cc .header-redac .uptitle + img {
  width: 100%;
}

.cc .header-redac .uptitle + img {
  margin-top: 12px;
  margin-top: 0.75rem;
}

/*
.cc .header-redac .uptitle::before {
  position: absolute;
  @include rem(left, 0px);
  @include rem(top, 2px);
  @include rem(font-size, 20px);
  content: $glyphe_fleche_droite;
  font-family: $glyphs;
  color: $DustyGray;
  font-weight: 100;
}
Validé avec Gilles pour enlever les flèches des surtitres
*/
/*
Menu d'ancre
========================================================================== */
.cc [class^=header-] > ul {
  position: relative;
  z-index: 3;
  margin: 0;
  /* maj ul.menu ---------------- */
  /*
  background-color: #fff;
  @include rem(margin-left,-$cmrPadding);
  @include rem(margin-right,-$cmrPadding);maj ul.menu*/
  margin-left: -100%;
  margin-right: -100%;
  margin-top: 24px;
  margin-top: 1.5rem;
  width: 300%;
  overflow: hidden;
  background-color: #3f8bd2;
  /* //maj ul.menu ---------------------*/
  padding-left: 28px;
  padding-left: 1.75rem;
  padding-right: 28px;
  padding-right: 1.75rem;
  color: #666;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 16px;
  line-height: 1rem;
  text-align: center;
  font-weight: 600;
  font-weight: 600;
}

/* maj ul.menu ---------------------*/
/*.cc [class^="header-"] > ul > li {
	@include rem(padding,8px 30px);
	border-right: 1px solid $QuillGray;
}*/
/* //maj ul.menu ---------------------*/
.cc .header-redac > ul {
  margin-top: 12px;
  margin-top: 0.75rem;
  margin-bottom: -12px;
  margin-bottom: -0.75rem;
}

/*
.oldie .cc [class^="header-"] > ul > li,.oldie ~ #ei_tpl_fullsite .cc [class^="header-"] > ul > li {
	display: inline-block;
}*/
/* maj ul.menu ---------------------*/
/*
.cc [class^="header-"] > ul > li:first-child {
	border-left: 1px solid $QuillGray;
}*/
/* //maj ul.menu ---------------------*/
.cc [class^=header-] > ul.nNiv > li {
  flex: 1 1 auto;
}

.cc [class^=header-] > ul ul li {
  padding: 0 0;
}

.cc [class^=header-] > ul ul {
  padding: 5px 0;
  padding: 0.3125rem 0;
}

.cc [class^=header-] > ul li a {
  text-decoration: inherit;
  /* maj ul.menu ---------------------*/
  /*color: $DoveGray;*/
  display: inline-block;
  color: #fff;
  padding: 7px 30px;
  padding: 0.4375rem 1.875rem;
  /* //maj ul.menu ---------------------*/
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 16px;
  line-height: 1rem;
  text-align: center;
  transition: none;
}

.cc [class^=header-] > ul ul li a {
  position: relative;
  text-decoration: initial;
  color: #999;
  transition: all 0.3s linear;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 16px;
  line-height: 1rem;
  text-align: center;
}

/* maj ul.menu ---------------------*/
/*
.cc [class^="header-"] > ul li a:hover {
	color: $Havelock;
}
.cc [class^="header-"] > ul li a.nav-active {
	color: $Havelock;
}
*/
.cc [class^=header-] > ul li a::after {
  content: "|";
  position: absolute;
  right: -5px;
}

.cc [class^=header-] > ul > li:last-child a::after {
  content: "";
}

.cc [class^=header-] > ul li {
  padding: 0;
}

.cc [class^=header-] > ul li a:hover {
  background: #e1ebf7;
  color: #3f8bd2;
}

.cc [class^=header-] > ul li a.nav-active {
  background: #fff;
  color: #3f8bd2;
}

.cc [class^=header-] > ul li a:hover::after,
.cc [class^=header-] > ul li a.nav-active::after {
  content: "";
}

/* //maj ul.menu ---------------------*/
.cc [class^=header-] ul.menu li::before {
  display: none !important;
}

.cc [class^=header-] ul.menu li:not(:first-child)::before {
  content: "|";
  color: #c6c6c6;
  padding: 0 2px;
}

.cc [class^=header-] ul.menu.fixed {
  position: fixed;
  z-index: 50;
  margin: 0;
  /* maj ul.menu ---------------------*/
  /*width: 100%;*/
  /*left:0;*/
  width: 300%;
  left: -100%;
  /* //maj ul.menu ---------------------*/
  box-shadow: 0 8px 6px -6px #d2d0cc;
  transition-property: width;
  transition-duration: 0.5s, 0.1s;
  transition-delay: 0;
  transition-timing-function: cubic-bezier(0.22, 0.99, 0.62, 1);
}

.cc [class^=header-] ul.menu-in.redac {
  display: inline-flex;
  margin-top: 30px;
  margin-top: 1.875rem;
  padding: 10px;
  padding: 0.625rem;
  background-color: #fff;
  box-shadow: 0 0 30px 5px #666;
}

.cc [class^=header-] ul.menu-in.redac a.gt {
  padding-left: 15px;
  padding-left: 0.9375rem;
}

.cc [class^=header-] ul.menu-in.redac li:not(:first-child) {
  border-left: solid 1px #d2d0cc;
}

/*
. Theme
========================================================================== */
.cc .theme {
  margin-top: -2px;
  margin-top: -0.125rem;
  /*Ah ces graphistes ...*/
}

.cc .theme .grid-10-12 > .grid > .grid-1-1:first-child {
  position: relative;
  padding-bottom: 0;
}

.cc .theme .grid-10-12 > .grid > .grid-1-1:first-child > .grow {
  min-height: 78px;
  max-width: 800px;
}

.cc .theme .grid-10-12 > .grid > .grid-1-1:first-child::before {
  position: absolute;
  display: block;
  content: "";
  left: -83px;
  top: 12px;
  width: 78px;
  height: 78px;
  background: #3f8bd2 url(/partage/fr/CC/CM-I14/styles/img/picto-cm.png) -40% center no-repeat;
  background-image: url(/partage/fr/CC/CM-I14/styles/img/picto-cm.svg), none;
  background-size: 120px;
}

.cc .theme .grid-10-12 > .grid > .grid-1-1:first-child > .grow {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /*@include rem(padding-right,328px);*/
}

@media (max-width: 1024px) {
  .cc .theme .grid-10-12 > .grid > .grid-1-1:first-child > .grow {
    padding-right: inherit;
  }
}
/*==========================================================================
.  Aplat
========================================================================== */
.cc .aplat {
  padding: 28px;
  padding: 1.75rem;
  background: #dfebfb;
  color: #262626;
}

.cc .aplat h3,
.cc .aplat h2 {
  color: #3f8bd2;
  padding-left: 0;
}

.cc .aplat .grow h3,
.cc .aplat .grow > h3 ~ p,
.cc .aplat .grow ul {
  padding: 0 0 10px 0;
  padding: 0 0 0.625rem 0;
}

.cc .aplat__alert {
  padding: 12px 28px 12px 48px;
  padding: 0.75rem 1.75rem 0.75rem 3rem;
  position: relative;
}

.cc .aplat__alert::before {
  position: absolute;
  content: "\f001c";
  font-family: "fts_picto";
  color: #ee8686;
  font-size: 32px;
  font-size: 2rem;
  left: 10px;
  top: 20px;
}

/*==========================================================================
.  aplat-img
========================================================================== */
.cc .aplat-img {
  align-items: baseline;
}

.cc .aplat-img > .grow {
  background: #f2efed;
}

.cc .aplat-img h2 {
  margin: 28px;
  margin: 1.75rem;
}

/*==========================================================================
.  Zoom
========================================================================== */
.cc .zoom {
  border: 1px solid #d2d0cc;
  padding: 15px 23px;
  padding: 0.9375rem 1.4375rem;
  /*background:url(/partage/fr/CC/CM-I14/styles/img/ampoule.png) center center no-repeat;
  background-image: url(/partage/fr/CC/CM-I14/styles/img/ampoule.svg), none;*/
  /*background-size: contain;*/
  background-size: 40%;
  /*min-height: 200px;*/
}

.cc .zoom h3 {
  color: #ffa200;
  padding-left: 0;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 16px;
  line-height: 1rem;
  text-transform: uppercase;
}

.cc .zoom h4 {
  color: #ffa200;
  padding-bottom: 0;
}

.cc .zoom .grow h3,
.cc .zoom .grow > h3 ~ p,
.cc .zoom .grow ul {
  padding: 0 0 10px 0;
  padding: 0 0 0.625rem 0;
}

/*
.cc .zoom .grow > h3 ~ p{
	color: $Cerulean;
}*/
/*==========================================================================
.  Offer
========================================================================== */
.cc .offer {
  border: 1px solid #ffa200;
  padding: 15px 23px;
  padding: 0.9375rem 1.4375rem;
  background: url(/partage/fr/CC/CM-I14/styles/img/ampoule.png) center center no-repeat;
  background-image: url(/partage/fr/CC/CM-I14/styles/img/ampoule.svg), none;
  /*background-size: contain;*/
  background-size: 40%;
  /*min-height: 200px;*/
}

.cc .offer h3 {
  color: #ffa200;
  padding-left: 0;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 16px;
  line-height: 1rem;
  text-transform: uppercase;
}

.cc .offer h4 {
  color: #666;
  padding-bottom: 0;
}

.cc .offer .grow h3,
.cc .offer .grow > h3 ~ p,
.cc .offer .grow ul {
  padding: 0 0 10px 0;
  padding: 0 0 0.625rem 0;
}

.cc .offer .grow > h3 ~ p {
  color: #03b2f3;
}

/*==========================================================================
.  external-website
========================================================================== */
.cc .external-website {
  border: 1px solid #82c336;
  padding: 15px;
  padding: 0.9375rem;
  /*background:url(/partage/fr/CC/CM-I14/styles/img/ampoule.png) center center no-repeat;
  background-image: url(/partage/fr/CC/CM-I14/styles/img/ampoule.svg), none;*/
  background-size: contain;
  background-size: 40%;
  /*min-height: 200px;*/
}

.cc .external-website h3 {
  color: #82c336;
  padding-left: 0;
}

.cc .external-website .grow h3,
.cc .external-website .grow > h3 ~ p,
.cc .external-website .grow ul {
  padding: 0 0 10px 0;
  padding: 0 0 0.625rem 0;
}

.cc .external-website .grow > h3 ~ p {
  /*color: $Cerulean;*/
}

/*==========================================================================
.  FAQS
========================================================================== */
.cc .faqs {
  background: #fff;
}

.cc .faqs h2 {
  margin-top: -12px;
  margin-top: -0.75rem;
  margin-bottom: -12px;
  margin-bottom: -0.75rem;
}

.cc .question {
  background: url(/partage/fr/CC/CM-I14/styles/img/bulle-question.png) center center no-repeat;
  background-image: url(/partage/fr/CC/CM-I14/styles/img/bulle-question.svg), none;
  min-height: 80px;
  min-height: 5rem;
  background-size: 25%;
  display: flex;
  border: 1px solid #d2d0cc;
}

.cc .information {
  background: url(/partage/fr/CC/CM-I14/styles/img/bulle-info.png) center center no-repeat;
  background-image: url(/partage/fr/CC/CM-I14/styles/img/bulle-info.svg), none;
  min-height: 80px;
  min-height: 5rem;
  background-size: 25%;
  display: flex;
  border: 1px solid #d2d0cc;
}

/*NB: IE si l'on utilise un min-height : le centrage vertical ne se passe pas correctement */
.cc .question > .grow::before,
.cc .information > .grow::before {
  position: absolute;
  content: "\f0098";
  font-family: "fts_picto";
  color: #3f8bd2;
  font-size: 15px;
  font-size: 0.9375rem;
  bottom: 15px;
  bottom: 0.9375rem;
  margin-left: -7px;
  left: 50%;
}

.cc .question > .grow,
.cc .information > .grow {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  vertical-align: middle;
  padding: 0;
  padding: 30px 30px;
  padding: 1.875rem 1.875rem;
}

.cc .question h3,
.cc .information h3 {
  align-items: center;
  text-align: center;
  flex: 1 1 auto;
  line-height: 16px;
  line-height: 1rem;
}

.cc .question h3 a,
.cc .information h3 a {
  color: #666;
  text-decoration: none;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 16px;
  line-height: 1rem;
  font-weight: 600;
  font-weight: 600;
  color: #666;
}

.cc .question a:hover,
.cc .information a:hover {
  color: #3f8bd2;
}

.ipqp > div > strong {
  font-size: 15px;
  font-size: 0.9375rem;
  padding-bottom: 10px;
  display: block;
}

/*==========================================================================
.  Contacts
========================================================================== */
.cc .contacts h2 {
  color: #262626;
  padding-bottom: 0;
  margin-bottom: -4px;
  margin-bottom: -0.25rem;
  padding-top: 20px;
  padding-top: 1.25rem;
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 20px;
  line-height: 1.25rem;
}

@media (max-width: 1024px) {
  .cc div.theme .grid-1-12 .btn__contact {
    display: none;
  }
}
.cc .btn__contact {
  position: relative;
  display: block;
  padding-left: 0;
  z-index: 5;
  text-align: right;
}

.cc .btn__contact::before {
  position: static;
  margin: 0;
  display: block;
  line-height: 23px; /*IE bug l'alignement vertical si on passe cette valkeur en rem*/
  font-size: 25px;
  font-size: 1.5625rem;
  content: "";
  font-family: "fts_picto";
}

.cc .btn__contact > div {
  position: absolute;
  display: block;
  text-align: right;
  right: 0;
  right: -6px\9 ;
  width: 280px;
  /*height: 78px;*/
}

:root .cc .btn__contact > div { /*uniquement pour IE*/ }

:root .cc .btn__contact > div [class*=contact-]::before,
:root .cc .btn__contact > div [class*=contact-]::after { /*correction placement des pictos bloc contact déroulant CMPS*/
  top: 38px;
}

.cc .btn__contact > div ul {
  position: relative;
  display: inline-block;
  margin-top: 0;
}

.cc .btn__contact > div ul li {
  border-bottom: 1px solid rgba(65, 112, 169, 0.7);
}

.cc .btn__contact > div ul li::last-child {
  border-bottom: none;
}

.cc .redac .btn__contact > div ul li p {
  padding-bottom: 0;
}

.cc .btn__contact > div ul li a {
  position: relative;
  display: table-cell;
  min-height: 78px;
  align-items: center;
  vertical-align: middle;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 13px;
  line-height: 0.8125rem;
  padding: 5px 60px 5px 60px;
  padding: 0.3125rem 3.75rem 0.3125rem 3.75rem;
  text-decoration: none;
  color: #fff;
  background-color: #4170a9;
  text-align: center;
  transition: background-color 0.1s linear, color 0.1s linear;
  width: 280px;
  height: 78px;
}

.cc .btn__contact > a {
  position: relative;
  display: table-cell;
  min-height: 78px;
  height: 78px;
  min-width: 78px;
  width: 78px;
  align-items: center;
  vertical-align: middle;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 13px;
  line-height: 0.8125rem;
  padding: 15px 12px 9px 12px;
  padding: 0.9375rem 0.75rem 0.5625rem 0.75rem;
  text-decoration: none;
  color: #fff;
  background-color: #4170a9;
  text-align: center;
  transition: background-color 0.1s linear, color 0.1s linear;
}

.cc .btn__contact > a.expanded::after {
  display: none;
}

.cc .btn__contact > a.expanded::before {
  content: "\f00d5";
  color: #fff;
}

.cc .btn__contact > a.expanded {
  line-height: 0;
  color: #4170a9;
  padding: 29px 12px 22px 12px;
  padding: 1.8125rem 0.75rem 1.375rem 0.75rem;
  font-size: 2px;
}

.cc .btn__contact > a.expanded:hover {
  color: #335884;
}

.cc .btn__contact > a::before {
  position: static;
  margin: 0;
  display: block;
  line-height: 23px; /*IE bug l'alignement vertical si on passe cette valkeur en rem*/
  font-size: 25px;
  font-size: 1.5625rem;
  content: "\f054a";
  font-family: "fts_picto";
  transition: background-color 0.1s linear, color 0.1s linear;
}

.cc .btn__contact > a::after {
  display: block;
  line-height: 11px; /*IE bug l'alignement vertical si on passe cette valkeur en rem*/
  font-size: 11px;
  font-size: 0.6875rem;
  content: "\f0098";
  font-family: "fts_picto";
  padding-top: 3px;
  padding-top: 0.1875rem;
  transition: background-color 0.1s linear, color 0.1s linear;
}

.cc .btn__contact a:hover {
  color: #fff;
  background-color: #335884;
}

.cc .contacts [class*=grid-] > .grow {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #4170a9;
  transition: background-color 0.3s linear;
}

.cc .contacts [class*=grid-] > .grow.light {
  background-color: #fff;
}

.cc .contacts [class*=grid-] > .grow.light .contact-phone,
.cc .contacts [class*=grid-] > .grow.light time,
.cc .contacts [class*=grid-] > .grow.light time {
  color: #262626;
}

.cc .contacts [class*=grid-] > .grow.light:hover {
  background-color: #fff;
}

.cc .contacts [class*=grid-] > .grow > p,
.cc .contacts [class*=grid-] > .grow > div {
  padding: 20px 0;
  padding: 1.25rem 0;
}

.cc .contacts [class*=grid-] > .grow a {
  /*background: none;*/
}

.cc .contacts .grid-1-3 {
  min-height: 80px;
  min-height: 5rem;
}

.cc .contacts [class*=grid-] > .grow:hover {
  background-color: #335884;
}

.cc .contacts .phone-sva,
.cc .contacts .num-cristal {
  margin: 7px 0 0;
  margin: 7px 0 0 70px;
  margin: 0.4375rem 0 0 4.375rem;
}

.cc .contacts .phone-sva time {
  color: #fff;
}

.cc .contacts .num-cristal .phone-rate {
  padding-top: 0;
  padding-bottom: 0;
}

.cc .contacts .num-cristal time {
  line-height: 15px;
  line-height: 0.9375rem;
}

/*
.cc .contacts [class*="grid-"] > .grow > p{
	flex: 1 1 auto;
	vertical-align: middle;
}*/
.cc [class*=contact-] {
  /* position: relative; */
  display: block;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 18px;
  line-height: 1.125rem;
  padding: 0 65px 0 70px;
  padding: 0 4.0625rem 0 4.375rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-weight: 600;
}

.cc [class*=contact-]::after {
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -10px;
  line-height: 24px; /*IE bug l'alignement vertical si on passe cette valkeur en rem*/
  font-size: 24px;
  font-size: 1.5rem;
  content: "\f058e";
  font-family: "fts_picto";
  font-weight: normal;
}

.cc .contact-phone::after {
  display: none;
}

.cc [class*=contact-]::before {
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -16px;
  line-height: 32px; /*IE bug l'alignement vertical si on passe cette valkeur en rem*/
  font-size: 32px;
  font-size: 2rem;
  content: "\f058e";
  font-family: "fts_picto";
  font-weight: normal;
}

.cc [class*=contact-]:hover {
  color: #fff;
}

.cc .contact-msg::before {
  content: "\f010e";
}

.cc .contact-rdv::before {
  content: "\f0078";
}

.cc .contact-souscription::before {
  content: "\f071b";
}

.cc .contact-men::before {
  content: "\f054a";
}

.cc .contact-pin::before {
  content: "\f0541";
}

.cc .contact-phone::before {
  content: "\f05d4";
}

.cc .contact-logo::before {
  content: "\f054c";
}

.cc [class*=contact-] .soft {
  display: block;
  color: #fff;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
}

/*==========================================================================
.  products-teaser
========================================================================== */
.cc .products-teaser h2 {
  color: #262626;
  line-height: 24px;
  line-height: 1.5rem;
}

.cc .product-teaser h3,
.cc .product-teaser .h3 {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 23px;
  line-height: 1.4375rem;
  padding: 0;
  font-weight: 600;
}

.cc .product-teaser h3 a {
  color: #262626;
  text-decoration: none;
  font-weight: 600;
  font-weight: 600;
}

.cc .product-teaser h3::before,
.cc .product-teaser .h3::before {
  display: none;
}

.cc .product-teaser h3::after,
.cc .product-teaser .h3::after {
  position: absolute;
  content: "__";
  bottom: 5px;
  bottom: 0.3125rem;
  padding-left: 7px;
  padding-left: 0.4375rem;
  font-size: 20px;
  font-size: 1.25rem;
  color: #3f8bd2;
}

.cc .product-teaser {
  position: relative;
  border: 1px solid #d2d0cc;
  padding: 8px 75px 12px 28px;
  padding: 0.5rem 4.6875rem 0.75rem 1.75rem;
  background-color: #fff;
  line-height: initial;
}

.cc .product-teaser p {
  padding-bottom: 0 !important;
}

.cc .product-teaser .styled,
.cc .product-teaser .styled ul,
.cc .redac .product-teaser > p + ul.styled,
.cc .redac .product-teaser > p + ol {
  margin: 10px 0 10px;
  margin: 0.625rem 0 0.625rem;
}

.cc .product-teaser .styled li,
.cc .product-teaser .styled li li {
  padding-top: 4px;
  padding-top: 0.25rem;
}

.cc .product-teaser.clickable::after {
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -12px;
  line-height: 24px; /*IE bug l'alignement vertical si on passe cette valkeur en rem*/
  font-size: 24px;
  font-size: 1.5rem;
  content: "\f058e";
  font-family: "fts_picto";
  color: #3f8bd2;
}

.cc .product-teaser::before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  top: 0;
  width: 15px;
  height: 100%;
  background: #3f8bd2 url(/partage/fr/CC/CM-I14/styles/img/picto-cm.png) -50px center no-repeat;
  background-image: url(/partage/fr/CC/CM-I14/styles/img/picto-cm.svg), none;
  background-size: 120px;
}

.cc .product-teaser.clickable:hover::before {
  background-color: #2a71b4;
}

.cc .product-teaser.clickable:hover::after {
  color: #2a71b4;
}

.cc .products-teaser__quote h3::after,
.cc .products-teaser__quote .h3::after {
  display: none;
}

.cc .products-teaser__quote strong {
  color: #262626;
}

/*==========================================================================
.  guide-teaser
========================================================================== */
.cc .guide-teaser {
  background: #fff;
  position: relative;
  border: 1px solid #d2d0cc;
  margin: 0;
}

.cc .grid .guide-teaser {
  flex-wrap: nowrap;
}

.cc .guides-teaser .grid .grid {
  margin: 0;
}

.cc .guide-teaser::after {
  position: absolute;
  right: 12px;
  bottom: 12px;
  margin-top: -12px;
  line-height: 24px; /*IE bug l'alignement vertical si on passe cette valeur en rem*/
  font-size: 24px;
  font-size: 1.5rem;
  content: "\f058e";
  font-family: "fts_picto";
  color: #3f8bd2;
}

.cc .guide-teaser:hover::after {
  color: #03b2f3;
}

.cc .guide-teaser h3 {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.cc .guide-teaser h3,
.cc .guide-teaser h3 a {
  color: #3f8bd2;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 19px;
  line-height: 1.1875rem;
  padding: 0;
  font-weight: 600;
  text-decoration: none;
}

.cc .guide-teaser h3 a:hover {
  color: #03b2f3;
}

.cc .guide-teaser .grid-1-2:first-child {
  display: block;
}

.cc .guide-teaser .grid-1-2:last-child {
  padding-left: 0;
}

.cc .guide-teaser p {
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  line-height: 17px;
  line-height: 1.0625rem;
}

.cc .news-teasers .widget-info.clickable:hover img,
.cc .guide-teaser.clickable:hover img {
  opacity: 0.9;
}

.cc .news-teasers .widget-info.clickable img,
.cc .guide-teaser.clickable img {
  transition: opacity 0.2s ease-in-out;
}

.cc .news-teasers .widget-info.clickable:hover a {
  color: #03b2f3;
}

/*==========================================================================
.  needs-teasers
========================================================================== */
.cc .needs-teasers h2 {
  color: #262626;
  padding-top: 0;
  padding-bottom: 0;
}

.cc .need-teaser {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 12px;
  margin-bottom: 12px;
  border-right: 1px solid #d2d0cc;
}

.cc .need-teaser:last-child {
  border: 0;
}

.cc .need-teaser a {
  color: #4170a9;
  text-decoration: none;
  font-weight: 600;
}

.cc .need-teaser ::after {
  display: inline-block; /*to fix underline bug*/
  margin-top: -3px;
  padding-left: 8px;
  line-height: 8px; /*IE bug l'alignement vertical si on passe cette valkeur en rem*/
  font-size: 8px;
  font-size: 0.5rem;
  content: "\f009a";
  font-family: "fts_picto";
  text-decoration: none;
}

/*==========================================================================
.  Blue line
========================================================================== */
.cc .blue-line-before {
  position: relative;
  padding: 0 0 0 25px;
  padding: 0 0 0 1.5625rem;
}

.cc .blue-line-before p:last-child {
  padding-bottom: 0;
}

.cc .blue-line-before::before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: #3f8bd2 url(/partage/fr/CC/CM-I14/styles/img/picto-cm.png) -50px center no-repeat;
  background-image: url(/partage/fr/CC/CM-I14/styles/img/picto-cm.svg), none;
  background-size: 120px;
}

.cc .blue-line-before {
  position: relative;
  padding: 0 0 0 25px;
  padding: 0 0 0 1.5625rem;
}

.cc .blue-line-before p:last-child {
  padding-bottom: 0;
}

.cc .blue-line-before::before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: #3f8bd2 url(/partage/fr/CC/CM-I14/styles/img/picto-cm.png) -50px center no-repeat;
  background-image: url(/partage/fr/CC/CM-I14/styles/img/picto-cm.svg), none;
  background-size: 120px;
}

/*==========================================================================
	.all
========================================================================== */
/*bien mettre à jour la mediaquery @media (max-width: $BpTiny) si modif de la ligne ci dessous sinon bug de scroll non désiré */
.cc .act-video,
.cc .act-offer,
.cc .link-action,
.cc .redac,
.cc .products-teaser,
.cc .faqs,
.cc .guides-teaser,
.cc .needs-teasers,
.cc .news-teasers,
.cc .univers-teasers,
.cc .body.ctxt-faq {
  margin-left: -28px;
  margin-left: -1.75rem;
  margin-right: -28px;
  margin-right: -1.75rem;
  padding: 28px;
  padding: 1.75rem;
  background: #fff;
}

.cc .act-quiz {
  margin-left: -28px;
  margin-left: -1.75rem;
  margin-right: -28px;
  margin-right: -1.75rem;
  /* @include rem(padding,$cmrPadding); */
  background: #fff;
}

/*==========================================================================
	.act-offer
========================================================================== */
.cc .act-offer {
  padding: 0;
  display: flex;
  position: relative;
}

.cc .act-offer > div:first-child {
  position: relative;
  width: 300px;
  /*background: $ChestnutRose;*/
}

.cc .act-offer > div:last-child {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 30px;
  padding-top: 1.875rem;
}

.cc .act-offer > div:first-child::before,
.cc .act-offer > div:first-child::after {
  content: "";
  position: absolute;
  right: 0;
  height: 50%;
}

.cc .act-offer > div:first-child::before {
  bottom: 50%;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #fff;
}

.cc .act-offer > div:first-child::after {
  top: 50%;
  border-top: 10px solid transparent;
  border-right: 10px solid #fff;
}

/*cas du bloc promo sans visuels*/
.cc .act-offer > div:first-child:last-child {
  display: block;
  padding-top: 0;
}
.cc .act-offer > div:first-child:last-child h2 {
  position: static;
  width: 100%;
}
.cc .act-offer > div:first-child:last-child::before, .cc .act-offer > div:first-child:last-child::after {
  display: none;
}
.cc .act-offer > div:first-child:last-child .btn {
  float: none;
  margin: 0 25px 10px 25px;
  margin: 0 1.5625rem 0.625rem 1.5625rem;
}

.cc .act-offer h2 {
  position: absolute;
  top: 0;
  left: -10px;
  width: calc(100% + 10px);
  padding: 5px 28px 5px 28px;
  padding: 0.3125rem 1.75rem 0.3125rem 1.75rem;
  color: #fff;
  background: #d3545a;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 18px;
  line-height: 1.125rem;
  font-weight: 600;
}

.cc .act-offer p {
  padding: 10px 28px;
  padding: 0.625rem 1.75rem;
  line-height: 16px;
  line-height: 1rem;
}

.cc .act-offer .teaser {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 30px;
  line-height: 1.875rem;
  font-weight: 300;
}

.cc .act-offer h2 + p,
.cc .act-offer h2 + ul {
  /*@include rem(padding-top,40px);*/
}

.cc .act-offer ul {
  padding: 10px 28px;
  padding: 0.625rem 1.75rem;
  margin: 0;
}

.cc .act-offer p + ul {
  padding-top: 0;
}

.cc .act-offer .btn {
  background: #d3545a;
  float: right;
  margin: 20px;
  margin: 1.25rem;
}

.cc .act-offer .teaser .btn {
  float: none;
  margin-left: 0;
  max-width: none;
}

.cc .act-offer__cm-auto h2 {
  text-transform: uppercase;
  font-size: 13px;
  font-size: 0.8125rem;
  padding: 5px 28px 5px 56px;
  padding: 0.3125rem 1.75rem 0.3125rem 3.5rem;
}

.cc .act-offer__cm-auto h2::before {
  position: absolute;
  left: 28px;
  top: 5px;
  top: 0.3125rem;
  font-size: 22px;
  font-size: 1.375rem;
  content: "\f051e";
  font-family: "fts_picto";
  line-height: 20px;
}

.cc .act-offer__cm-auto .h2 {
  display: block;
}

.cc .act-offer__cm-auto .h2 {
  padding: 10px 0;
  padding: 0.625rem 0;
  line-height: 16px;
  line-height: 1rem;
}

.cc .act-offer__cm-auto .h2 span:first-child,
.cc .act-offer__cm-auto .h2 span:nth-child(3) {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 18px;
  line-height: 1.125rem;
}

.cc .act-offer__cm-auto .h2 span:nth-child(3) {
  display: inline-block;
}

.cc .act-offer__cm-auto .h2 span:first-child {
  display: block;
  line-height: 16px;
  line-height: 1rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
}

.cc .act-offer__cm-auto .discount {
  margin-top: -5px;
  margin-top: -0.3125rem;
}

.cc .act-offer__cm-auto .legal {
  display: block;
  margin: 5px 0 0 0;
  margin: 0.3125rem 0 0 0;
  font-size: 11px;
  font-size: 0.6875rem;
  color: #999;
}

/*==========================================================================
	.Page connexion
========================================================================== */
[class^=ei_ident_marketing] .cc {
  margin-top: 10px;
  padding: 0;
}

/*==========================================================================
	.Landings / pages actus
========================================================================== */
.cc .content-over-img {
  position: relative;
}

.cc .content-over-img > .content {
  position: absolute;
  bottom: 0;
  padding: 24px;
  padding: 1.5rem;
}

.cc .content-over-img > .content h2,
.cc .content-over-img > .content a,
.cc .content-over-img > .content p {
  color: #fff;
  font-weight: 300;
}

.cc .content-over-img > .content a {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
}

/*==========================================================================
	Cacher le lien Highcharts.com en bas des graphiques (en attendant retour Danny)
========================================================================== */
.cc .highcharts-container [text-anchor=end] {
  display: none;
}

/*==========================================================================
	Correction lightbox page caisse
========================================================================== */
.blockUI.blockOverlay {
  z-index: 1014 !important;
}

.blockUI.blockMsg.blockPage {
  z-index: 1015 !important;
}

/*==========================================================================
	Outils EI: afficher correctement la Sinbar
========================================================================== */
#sfWebDebugBar {
  position: absolute !important;
  right: 0;
  top: 20px !important;
  z-index: 10000;
  background: rgba(0, 0, 0, 0) linear-gradient(to top, #e4e4e4, #fff) repeat scroll 0 0;
  border-bottom: 1px solid #bbb;
  border-left: 1px solid #bbb;
  color: #2f2f2f;
  font: 11px Verdana, Arial, sans-serif;
  margin: 0 !important;
  padding: 0 !important;
  height: 20px;
  transition: height 0.5s ease;
  overflow: hidden;
}
#sfWebDebugBar #sfWebDebugDetails {
  margin-right: 0 !important;
}
#sfWebDebugBar .menu {
  display: flex !important;
  flex-direction: column;
}
#sfWebDebugBar .menu li {
  padding: 5px 15px !important;
  border: none !important;
}
#sfWebDebugBar:hover {
  height: 240px;
  opacity: 1;
}
#sfWebDebugBar::before {
  display: block;
  content: "Sinbar";
  background: #ffa200;
  color: #f2efed;
  font-weight: bold;
  text-align: right;
  padding: 2px 4px 4px;
  border-radius: 0 0 0 10px;
}

#sfWebDebug .sfWebDebugTop {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 10px;
  z-index: 9999;
  border-bottom: 1px solid #aaa;
  background: rgba(0, 0, 0, 0) linear-gradient(to top, #e4e4e4, #fff) repeat scroll 0 0;
}
#sfWebDebug ol {
  margin-left: 20px;
}

/*==========================================================================
	Outils EI: afficher les identifiants de liens erronés dans la sinbar ;
========================================================================== */
.sf-toolbar-icon {
  height: 38px;
}

#errctxjs,
.ei_tpl_conseil > table[cellspacing="0"],
.ei_tpl_transac > table[cellspacing="0"],
.ei_tpl_conseil #lightbox_page > table[cellspacing="0"] {
  position: fixed;
  z-index: 7000000;
  width: auto;
  bottom: 0;
  top: auto;
  right: 0;
  border-bottom: 1px solid #e4e4e4;
  border-left: 1px solid #e4e4e4;
  cursor: default;
  font-size: 11px;
}
#errctxjs td,
.ei_tpl_conseil > table[cellspacing="0"] td,
.ei_tpl_transac > table[cellspacing="0"] td,
.ei_tpl_conseil #lightbox_page > table[cellspacing="0"] td {
  background: transparent !important;
  padding: 5px 8px;
  height: 38px;
}
#errctxjs td > b,
.ei_tpl_conseil > table[cellspacing="0"] td > b,
.ei_tpl_transac > table[cellspacing="0"] td > b,
.ei_tpl_conseil #lightbox_page > table[cellspacing="0"] td > b {
  display: inline-block;
  border-radius: 12px 12px 12px 0;
  background-color: #a33;
  margin: 0 5px;
  color: #fff;
  min-height: 13px;
  padding: 3px 6px;
  cursor: pointer;
}
#errctxjs td ul,
.ei_tpl_conseil > table[cellspacing="0"] td ul,
.ei_tpl_transac > table[cellspacing="0"] td ul,
.ei_tpl_conseil #lightbox_page > table[cellspacing="0"] td ul {
  display: none;
  position: absolute;
  right: 0;
  bottom: 28px;
  background-color: #fff;
  border: 1px solid #bbb;
  border-radius: 4px 4px 0 0;
  padding: 9px;
  white-space: nowrap;
  text-align: right;
}
#errctxjs td ul b,
.ei_tpl_conseil > table[cellspacing="0"] td ul b,
.ei_tpl_transac > table[cellspacing="0"] td ul b,
.ei_tpl_conseil #lightbox_page > table[cellspacing="0"] td ul b {
  background-color: #a33;
  color: #fff;
  border-radius: 5px;
  padding: 0 5px;
  vertical-align: top;
}
#errctxjs td:hover,
.ei_tpl_conseil > table[cellspacing="0"] td:hover,
.ei_tpl_transac > table[cellspacing="0"] td:hover,
.ei_tpl_conseil #lightbox_page > table[cellspacing="0"] td:hover {
  border-right: medium none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
  margin-right: 1px;
  background-color: #fff !important;
  border-top: 1px dotted #ddd;
  margin-top: -1px;
}
#errctxjs td:hover ul,
.ei_tpl_conseil > table[cellspacing="0"] td:hover ul,
.ei_tpl_transac > table[cellspacing="0"] td:hover ul,
.ei_tpl_conseil #lightbox_page > table[cellspacing="0"] td:hover ul {
  display: block;
}

/*==========================================================================
	.Hacks temporaires
========================================================================== */
/* Lien retour à l'ancien site*/
#ei_tpl_menuPrincipal > nav > ul > #old-website {
  text-align: right;
}

.ei_tpl_conseil #ei_tpl_mMobPrincipal nav > ul > #old-website {
  border: none;
  padding-left: 18px;
  vertical-align: middle;
}

#ei_tpl_menuPrincipal > nav > ul > #old-website > a,
.ei_tpl_conseil #ei_tpl_mMobPrincipal nav > ul > #old-website > a {
  display: inline-block;
  position: relative;
  background: #999;
  color: #fff;
  height: auto;
  line-height: inherit;
  text-transform: none;
  text-align: center;
  vertical-align: middle;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 15px;
  line-height: 0.9375rem;
  padding: 2px 10px 2px 25px;
  padding: 0.125rem 0.625rem 0.125rem 1.5625rem;
  margin: 0;
  min-height: 22px;
  min-height: 1.375rem;
}

#ei_tpl_menuPrincipal > nav > ul > #old-website > a::before,
.ei_tpl_conseil #ei_tpl_mMobPrincipal nav > ul > #old-website > a::before {
  position: absolute;
  left: 5px;
  top: 50%;
  margin-top: -7px;
  line-height: 14px; /*IE bug l'alignement vertical si on passe cette valkeur en rem*/
  font-size: 14px;
  font-size: 0.875rem;
  content: "\f06e7";
  font-family: "fts_picto";
}

#ei_tpl_menuPrincipal > nav > ul > #old-website > a:hover,
.ei_tpl_conseil #ei_tpl_mMobPrincipal nav > ul > #old-website > a:hover {
  background: gray;
}

.ei_tpl_conseil #ei_tpl_mMobPrincipal nav > ul > #old-website > a::after {
  display: none;
}

.ei_tpl_conseil #ei_tpl_mMobPrincipal nav > ul > #old-website {
  position: absolute;
  bottom: 0;
}

.ei_tpl_conseil #ei_tpl_mMobPrincipal #CMSD_MENU {
  position: relative;
  padding-bottom: 50px;
}

/* Corrections Fil d'ariane*/
#ei_tpl_ariane {
  padding: 5px 0;
}

#ei_tpl_ariane > span,
#ei_tpl_ariane > a {
  vertical-align: top;
  color: #999;
}

#ei_tpl_ariane span.e_ariane_img::before {
  top: 4px;
}

/* Soucis du menu par exemple das groupe ou il n'y a que le "Nos conseil pour" du coup pas de marge à droite il faut donc placer la marge au niveau du li pas du bloc menuCol2*/
#ei_tpl_menuPrincipal nav ul .e_menudepliant .e_smenu_content .e_menuCol2 {
  padding-right: 0;
}

#ei_tpl_menuPrincipal li.e_menudepliant .e_smenu li {
  padding-right: 20px;
}

/* sinon soucis de placement du menu */
#ei_tpl_menuPrincipal li.e_menudepliant .e_smenu {
  min-width: 200px;
}

/*Callage bouton dossiers conseils*/
#ei_tpl_menuPrincipal li.e_menudepliant .e_menuCol3 .ei_menublock_border {
  font-size: 13px;
  margin-left: 15px;
  margin-top: 26px;
  padding-right: 20px;
  display: inline-block;
  width: auto;
}

#ei_tpl_menuPrincipal li.e_menudepliant .e_menuCol3 .ei_menublock_border > a::after {
  vertical-align: middle;
  margin-left: 5px;
}

/* pour empecher les blocs relatifs à plus de 100% de "pousser" le site*/
#ei_tpl_fullsite {
  overflow: hidden;
}

/* correction car dans ei_base.css appel d'un glyph qui n'existe pas... */
/*
.cc .note::before,.cc  .notejuridique::before{
	content: $glyphe_info_vide;
}*/
/* pour corriger le problème des url à ralonge dans la recherche */
.i_blocrecherche .url {
  text-overflow: ellipsis;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/*==========================================================================
.  Test sur le menu
========================================================================== */
.ei_tpl_conseil #ei_tpl_menuPrincipal nav > ul #menu_espace_particulier .e_menudepliant.cc_test_evol_menu > .e_smenu {
  padding-top: 15px;
}

.ei_tpl_conseil #ei_tpl_menuPrincipal nav > ul #ei_m_accueil ~ #menu_espace_particulier .e_menudepliant.cc_test_evol_menu > .e_smenu {
  padding-bottom: 55px;
}

.ei_tpl_conseil #ei_tpl_menuPrincipal nav > ul .cc_test_evol_menu li.ei_menublock_border {
  padding-bottom: 9px;
  margin-top: 20px;
}

/* taquet sur le footer */
/*#ei_tpl_footer{
	min-width: 320px;
}
*/
/*Callage hauteur de ligne des liens du footer*/
/*#ei_tpl_footer #ei_tpl_footer2 > ul li{
	line-height: 1.1em;
	padding: 3px 0;
}
*/
/* augmentation de la hauteur des ligne pour affichage correct lors du passage sur plusieurs lignes*/
/*#ei_tpl_footer #ei_tpl_footer2 > ul li a{
	line-height: 1.4em;
}
*/
/* pictos sourds et malentendants */
/*#ei_tpl_footer #ei_tpl_footer2 > ul > li:last-child > ul > li:last-child a::after{
	font-family: $glyphs;
	content: $glyphe_sourd"\00a0"$glyphe_malentendant;
	display: inline;
	font-size: 1.6em;
	vertical-align: middle;
}
*/
/*MAJ 07/01/2016*/
/*#ei_tpl_footer #ei_tpl_footer1 li.ei_tarif a::before{
	content:$glyphe_tarif;
}

#ei_tpl_footer #ei_tpl_footer1 li.ei_assistance a::before{
	content:$glyphe_edit;
}
#ei_tpl_footer #ei_tpl_footer1 li.ei_contact a::before{
	content:$glyphe_contact;
}


#ei_tpl_footer #ei_tpl_footer2 > ul{
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	float: none;
	padding: 0;
	width: auto;
}

.oldie #ei_tpl_footer #ei_tpl_footer2 > ul > li{
	float: left;
	width: 20%;
}

#ei_tpl_footer #ei_tpl_footer2 #ei_tpl_footer_search{
	float: none;
	display: initial;
	width: auto;
	clear: both;
}
#ei_tpl_footer #ei_tpl_footer2 #ei_tpl_footer_search > form{
	margin: 0 auto;
	max-width: 400px
}*/
/*==========================================================================
	Ajouts Michel
========================================================================== */
/* Pour insérer les pictos */
.cc .icon,
.icon {
  font-family: "fts_picto";
}

/* Pour les textes sous les icônes */
.cc .icon + p {
  line-height: 17px;
}

/*
Utilise une seule classe, glyphs_cm2015_2 contient de toute façon tous les picto
glyphs_cm2015_2 est destiné à être supprimé, il suffira de la remplacer dans la css, utiliser une autre classe oblige à revenir sur tous les contenu!
.cc .icon-2 {
  font-family: $glyphs;
}*/
/* formatage de la taille des pictos (page parrainage, recrutement, ...) */
/* utilise la fonction rem dès que tu utilise des px*/
/* originalement tu avait .cc span.icon, je l'ai modifié pour .cc .icon : le span aporte de la lourdeur dans le sélecteur et permet moins de modularité */
/* Michel : passage de .icon à .big-icon, car il y a des cas où il faut simplement ajouter un picto dans le texte sans qu'il passe en block (auquel cas on utilise .icon) */
.cc .big-icon {
  display: block;
  font-size: 60px;
  font-size: 3.75rem;
  height: 60px;
  height: 3.75rem;
  padding-top: 20px;
  padding-top: 1.25rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}

/* Nouveau besoin : créer des classes pour chaque couleur */
.cc .GuardsmanRed {
  color: #c50307;
}

.cc .SanMarino {
  color: #4170a9;
}

.cc .Cerulean {
  color: #03b2f3;
}

.cc .Pelorous {
  color: #44a1c4;
}

.cc .ChestnutRose {
  color: #d3545a;
}

.cc .bleuCM {
  color: #0058a8;
}

.cc .OliveDrab {
  color: #5a992b;
}

.cc .Red {
  color: #e70b0b;
}

.cc .OrangePeel {
  color: #ffa200;
}

.cc .Atlantis {
  color: #82c336;
}

.cc .Apricot {
  color: #ee8686;
}

.cc .Pampas {
  color: #f2efed;
}

.cc .MineShaft {
  color: #262626;
}

.cc .bg-GuardsmanRed {
  background-color: #c50307;
}

.cc .bg-SanMarino {
  background-color: #4170a9;
}

.cc .bg-Cerulean {
  background-color: #03b2f3;
}

.cc .bg-Pelorous {
  background-color: #44a1c4;
}

.cc .bg-ChestnutRose {
  background-color: #d3545a;
}

.cc .bg-bleuCM {
  background-color: #0058a8;
}

.cc .bg-OliveDrab {
  background-color: #5a992b;
}

.cc .bg-Red {
  background-color: #e70b0b;
}

.cc .bg-OrangePeel {
  background-color: #ffa200;
}

.cc .bg-Atlantis {
  background-color: #82c336;
}

.cc .bg-Apricot {
  background-color: #ee8686;
}

.cc .bg-Pampas {
  background-color: #f2efed;
}

/*==========================================================================
	SECTION .widget-grid
========================================================================== */
.cc .widget-grid {
  margin-left: -40px;
  margin-left: -2.5rem;
  margin-right: -40px;
  margin-right: -2.5rem;
  margin-top: 12px;
  margin-top: 0.75rem;
  margin-bottom: -12px;
  margin-bottom: -0.75rem;
}

.cc .widget-grid .grow {
  background: #fff;
}

.cc .widget-grid .grow .grow.center {
  padding: 0 24px 12px;
}

.cc .widget-grid h2.picto-puce + div {
  padding: 0 12px 12px 68px;
}

.cc .widget-grid h3,
.cc .widget-grid .h3 {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 19px;
  line-height: 1.1875rem;
  padding: 0;
}

.cc .widget-grid li {
  padding: 12px 0 0 0;
  padding: 0.75rem 0 0 0;
}

.cc .widget-grid h2,
.cc .widget-grid .h2 {
  color: #3f8bd2;
  font-weight: 300;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 26px;
  line-height: 1.625rem;
  padding: 12px;
  padding: 0.75rem;
}

.cc .widget-grid p {
  /* @include rem(font-size, 13px); */
  line-height: 17px;
  line-height: 1.0625rem;
}

.cc .widget-grid time {
  display: block;
}

.cc .widget-grid h2.picto-puce.urgence,
.cc .widget-grid h2.picto-puce.assistance {
  color: #ffa200;
}

.cc .widget-grid h2.picto-puce {
  padding: 28px 28px 12px 28px;
  padding: 1.75rem 1.75rem 0.75rem 1.75rem;
}

.cc .widget-grid h2.picto-puce::before {
  transition: color 0.2s linear;
  font-family: "fts_picto";
  font-size: 30px;
  font-size: 1.875rem;
  margin-right: 8px;
  margin-right: 0.5rem;
  top: 2px;
  top: 0.125rem;
  position: relative;
  vertical-align: bottom;
}

.cc .widget-grid h2.picto-puce.urgence::before {
  content: "\f001c";
}

.cc .widget-grid h2.picto-puce.assistance::before {
  content: "\f072f";
}

.cc .widget-grid span.picto-deaf {
  transition: color 0.2s linear;
  font-family: "fts_picto";
  font-size: 30px;
  font-size: 1.875rem;
  margin-left: 8px;
  margin-left: 0.5rem;
  position: absolute;
  vertical-align: bottom;
  content: "\f0711" " " "\f055b";
  top: 12px;
  top: 0.75rem;
  right: 0;
}

.cc .widget-grid .grow {
  position: relative;
}

.cc .widget-grid a.tousnos {
  position: absolute;
  top: 0;
  right: 0;
  padding-top: 28px;
  padding-top: 1.75rem;
  padding-right: 28px;
  padding-right: 1.75rem;
  color: #ffa200;
}

.cc .widget-grid .gt {
  padding: 0;
}

.cc .widget-grid .contact-men,
.cc .widget-grid .deafi {
  color: #fff;
  position: relative;
  text-align: center;
  padding: 12px;
  padding: 0.75rem;
}

.cc .widget-grid .contact-men h2,
.cc .widget-grid .deafi h2 {
  padding: 0;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}

.cc .widget-grid .contact-men .small {
  font-size: 11px;
  font-size: 0.6875rem;
}

.cc .widget-grid .contact-men .small .picto-cadenas::before {
  font-family: "fts_picto";
  content: "\f0545" " ";
  display: inline;
  vertical-align: middle;
}

.cc .widget-grid form {
  position: relative;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.cc .widget-grid input {
  width: 100%;
  height: 38px;
  height: 2.375rem;
  padding: 5px 16px 4px 16px;
  padding: 0.3125rem 1rem 0.25rem 1rem;
  border: 1px solid #d2d0cc;
  box-sizing: border-box;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 21px;
  line-height: 1.3125rem;
  color: #999;
  transition: all 0.3s linear;
}

.cc .widget-grid input[type=submit] {
  display: inline-block;
  position: absolute;
  border: 0 solid transparent;
  border-left: 1px solid #f2efed;
  background-color: #fff;
  top: 0;
  right: 0;
  height: 36px;
  height: 2.25rem;
  margin: 1px;
  margin: 0.0625rem;
  width: 50px;
  width: 3.125rem;
}

.cc .btn__contact > div ul li div a {
  padding: 0.3125rem 4rem;
}

/*********************************************************************************************

Project : Styles vitrine I14 : Mobile offer
Version: 1.0
Author: FX Lair - Bordenave Danny

**********************************************************************************************

Lasts Modifs :

**********************************************************************************************

Summary
1.  Phone offer

All styles must be prefix with the ".cc" class
**********************************************************************************************/
/*==========================================================================
1.  Phone offer
========================================================================== */
.cc article.act-offer > div.act-offer-mobile {
  width: auto;
  background: none;
  display: block;
  padding-top: 0;
  height: auto;
  overflow: visible;
}

.cc .act-offer-mobile h3 {
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
  padding-left: 28px;
  padding-left: 1.75rem;
}

.cc .act-offer-mobile h4 {
  color: #262626;
  padding: 0;
}

.cc .act-offer-mobile [itemprop=price] {
  color: #e70b0b;
}

.cc .act-offer-mobile ul {
  padding-left: 0px;
}

.cc .act-offer-mobile ul.niv1 li::before {
  position: absolute;
  left: -5px;
  left: -0.3125rem;
  top: 2px;
  top: 0.125rem;
  font-size: 14px;
  font-size: 0.875rem;
  content: "\f00f3";
  font-family: "fts_picto";
  line-height: inherit;
  color: #666;
}

.cc .act-offer-mobile ul.niv1 li {
  padding: 0 0 0 10px;
  padding: 0 0 0 0.625rem;
}

.cc .act-offer-mobile > .grid:last-child {
  margin: 0;
}

.cc .act-offer-mobile > .grid:first-child {
  align-items: flex-end;
}

.cc .act-offer-mobile > .grid:last-child .grid-1-3, .cc .act-offer-mobile > .grid:last-child .grid-1-2 {
  position: relative;
  flex-grow: 1;
  border-left: 1px solid #d2d0cc;
  margin-top: 12px;
  margin-top: 0.75rem;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  padding-left: 24px;
  padding-left: 1.5rem;
  padding-right: 24px;
  padding-right: 1.5rem;
  padding-top: 0;
  padding-bottom: 0;
}

.cc .act-offer-mobile > .grid:last-child .grid-1-3:nth-child(3n+1), .cc .act-offer-mobile > .grid:last-child .grid-1-2:nth-child(odd) {
  border-left: 0;
}

.cc .act-offer-mobile > .grid:last-child .grid-1-2:nth-child(n+3)::before {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  font-size: 1px;
  line-height: 1px;
  background-color: #d2d0cc;
  top: -12px;
  right: 12px;
  left: 12px;
}

.cc .act-offer-mobile .table-cell:last-child {
  padding-left: 12px;
  padding-left: 0.75rem;
  padding-top: 12px;
  padding-top: 0.75rem;
}

.cc .act-offer-mobile__general .period {
  text-transform: uppercase;
  font-weight: 600;
  color: #262626;
}

.cc .act-offer-mobile__general .desc {
  font-size: 16px;
  font-size: 1rem;
  margin: 5px 0 0 0;
  margin: 0.3125rem 0 0 0;
  color: #e70b0b;
}

.cc .act-offer-mobile__general .desc strong {
  font-weight: 600;
  font-weight: normal;
}

.cc .act-offer-mobile__general .coupon {
  margin: 5px 0;
  margin: 0.3125rem 0;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .cc .act-offer-mobile > .grid:last-child .grid-1-3:nth-child(odd) {
    border-left: 0;
  }
  .cc .act-offer-mobile > .grid:last-child .grid-1-3:nth-child(n+3)::before {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    font-size: 1px;
    line-height: 1px;
    background-color: #d2d0cc;
    top: -12px;
    right: 12px;
    left: 12px;
  }
}
@media (max-width: 768px) {
  .cc .act-offer-mobile .grid-1-2.right {
    padding-top: 0;
    margin-top: -12px;
  }
  .cc .act-offer-mobile > .grid:last-child .grid-1-2 {
    border-left: 0;
  }
  .cc .act-offer-mobile > .grid:last-child .grid-1-2:nth-child(n+2)::before {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    font-size: 1px;
    line-height: 1px;
    background-color: #d2d0cc;
    top: -12px;
    right: 12px;
    left: 12px;
  }
}
@media (max-width: 650px) {
  .cc .act-offer-mobile > .grid:last-child .grid-1-3:nth-child(n+2)::before, .cc .act-offer-mobile > .grid:last-child .grid-1-2:nth-child(n+2)::before {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    font-size: 1px;
    line-height: 1px;
    background-color: #d2d0cc;
    top: -12px;
    right: 12px;
    left: 12px;
  }
}
/*********************************************************************************************

Project : Styles vitrine I14 : Vidéos
Version: 1.0
Author: SCHEFFLER Michel

**********************************************************************************************

Notes:

Lasts Modifs :

**********************************************************************************************

Summary


All styles must be prefix with the ".cc" class
**********************************************************************************************/
.cc .video-full, .cc .video-col {
  width: 100%;
  max-width: 600px;
  margin: auto;
  display: block;
}
.cc .video-full iframe, .cc .video-full video, .cc .video-col iframe, .cc .video-col video {
  width: 100%;
}
.cc .video-full iframe + a, .cc .video-full video + a, .cc .video-col iframe + a, .cc .video-col video + a {
  display: block;
  text-align: center;
}

.cc span.ancre-video {
  position: absolute;
  margin-top: -80px;
}

/*********************************************************************************************

Project : Styles vitrine I14 : Contenus intégrés dans le transactionnel
Version: 1.0
Author: Dany Bordenave


**********************************************************************************************

Lasts Modifs : 16/02/2016 FX Lair inclusion dans un fichier scss

**********************************************************************************************

*/
/* ######## config message personnalisé redac ############################################################################ */
@media (min-width: 860px) {
  .cc .gameconfigurablemessages {
    margin-bottom: 10px;
  }
  .cc .gameconfigurablemessages .gamemessagesbank {
    width: 25%;
    display: block;
    float: left;
  }
  .cc .gameconfigurablemessages .messageContainer {
    width: 73%;
    display: block;
    float: right;
    text-align: left;
    margin-top: 0px;
    margin-bottom: 10px;
    padding: 10px 35px 10px 20px;
    padding: 0.625rem 2.1875rem 0.625rem 1.25rem;
  }
  .cc .gameconfigurablemessages .messageContainer .messageContent {
    padding: 0px;
  }
  .cc .gameconfigurablemessages .messageContainer .messageContent h2, .cc .gameconfigurablemessages .messageContainer .messageContent h3 {
    font-size: 1.2em;
    line-height: 1.3em;
    text-align: left;
  }
  .cc .gameconfigurablemessages .messageContainer .messageActionUrl {
    display: inline-block;
  }
  .cc .gameconfigurablemessages .messageContainer .messageActionUrl a {
    padding-left: 0px;
  }
  .cc .gameconfigurablemessages .messageContainer .messageActionButton {
    display: inline-block;
    float: right;
    margin-right: -25px;
    margin-left: 30px;
    margin-top: 10px;
  }
  .cc .gamemessagesbankcontainer .messageContainer::before {
    width: 0;
    height: 0;
    border: 10px solid #FFF;
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-top-color: transparent;
    content: "";
    position: absolute;
    top: 5px;
    left: -20px;
  }
}
/* ######## config message personnalisé compte ############################################################################ */
.gameconfigurablemessages {
  background-color: transparent;
  position: relative;
}

.gameconfigurablemessages .gamemessagesagency, .gameconfigurablemessages .gamemessagesbank {
  font-weight: 400;
  background: #4170a9;
  color: #fff;
  font-size: 1.2em;
  text-transform: uppercase;
  text-align: left;
  padding: 5px 15px;
  position: relative;
}

.gameconfigurablemessages .gamemessagesagency p::after {
  width: 0;
  height: 0;
  border: 10px solid #4170a9;
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  content: "";
  position: absolute;
  bottom: -20px;
  left: 30px;
  z-index: 2;
}

.gamemessagesagencycontainer .messageContainer::before {
  width: 0;
  height: 0;
  border: 10px solid #FFF;
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  content: "";
  position: absolute;
  top: -10px;
  left: 30px;
}

.gamemessagesbankcontainer .messageContainer::before {
  width: 0;
  height: 0;
  border: 10px solid #FFF;
  border-left-color: transparent;
  border-right-color: transparent;
  border-top-color: transparent;
  content: "";
  position: absolute;
  top: -20px;
  left: 30px;
}

/* .gameconfigurablemessages .gamemessagesagency + .blocmsg + .messageContainer::before {
	width: 0;
	height: 0;
	border: 10px solid #FFF;
	border-left-color: transparent;
	border-right-color: transparent;
	border-top-color: transparent;
	content : "";
	position: absolute;
	top: -20px;
	left: 30px;
	cursor: pointer;
} */
.gameconfigurablemessages .messageContainer {
  font-weight: 400;
  line-height: 1.3em;
  position: relative;
  display: block;
  text-align: center;
  background: #FFF;
  margin: 0px;
  margin-top: 10px;
  padding: 18px;
  box-shadow: 0px 3px 10px -3px rgba(0, 0, 0, 0.2);
}

.gameconfigurablemessages .messageContainer b {
  font-weight: 600;
}

.gameconfigurablemessages .messageContainer:last-child {
  margin-bottom: 10px;
}

.gamemessagescontainer .messageImage {
  max-width: 100%;
}

.gamemessagesfipcontainer .gameconfigurablemessages .messageContainer .messageContent {
  padding: 0px 15px 10px;
}

.gameconfigurablemessages .messageContainer .messageContent h3, .gameconfigurablemessages .messageContainer .messageContent h2 {
  vertical-align: bottom;
  margin-left: auto;
  margin-right: auto;
  display: block;
  font-size: 1em;
  color: #4170a9;
  font-weight: 600;
  text-align: center;
  margin: 0;
  line-height: 1.3em;
  padding-bottom: 0.3em;
}

.gameconfigurablemessages .messageContainer .messageActionUrl {
  vertical-align: bottom;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.gameconfigurablemessages .messageContainer .messageActionUrl a {
  display: inline-block;
  white-space: nowrap;
  padding: 0.3em;
  color: #4170a9;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s linear;
}

.gameconfigurablemessages .messageContainer .messageActionUrl a::after {
  font-family: "fts_picto";
  content: "\f05cd";
  top: 2px;
  position: relative;
}

.gameconfigurablemessages .messageContainer .messageActionUrl a:hover {
  text-decoration: none;
  color: #03b2f3;
}

.gameconfigurablemessages .messageContainer .messageActionButton {
  vertical-align: bottom;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1px;
  margin-top: 10px;
  display: block;
}

.gameconfigurablemessages .messageContainer .messageActionButton a {
  display: inline-block;
  white-space: nowrap;
  padding: 5px 12px 6px;
  background: #4170a9;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s linear;
}

.gameconfigurablemessages .messageContainer .messageActionButton a:hover {
  background: #335884;
}

.gameconfigurablemessages .messageContainer a.messageDeleteButton {
  color: #d2d0cc;
}

.gameconfigurablemessages .messageContainer a:hover.messageDeleteButton {
  color: #999;
}

.gameconfigurablemessages .messageContainer a.messageDeleteButton::after {
  font-size: 1em;
  content: "\f00d5";
  font-family: "fts_picto";
  position: absolute;
  top: 0.7em;
  right: 0.7em;
  height: 1.2em;
  width: 1.2em;
}

/* Demander par EI5110 */
div[class*=gamemessagedeletionerror] {
  position: absolute;
  z-index: 2;
  left: 5px;
  right: 5px;
  padding: 10px 0px 10px 40px;
  box-shadow: 0px 3px 10px -1px rgba(0, 0, 0, 0.4);
}

/*==========================================================================
.  Fonts
========================================================================== */
faq-category,
faq-subcategory {
  contain: content;
}

.cc .ctxt-faq {
  background: #fff;
  font-family: "OpenSans", Arial, Helvetica, sans-serif;
  padding: 0 !important;
  position: relative;
  z-index: 2;
  margin: 30px 0;
  margin: 1.875rem 0;
  min-height: 80px;
  min-height: 5rem;
}
.cc .ctxt-faq > div {
  background: #edf2f7;
  display: flex;
}
.cc .ctxt-faq > div h2 {
  align-items: flex-start;
  background-image: url(/partage/fr/CC/CM-I14/styles/img/bulle-question.png), none;
  background-image: url(/partage/fr/CC/CM-I14/styles/img/bulle-question.svg), none;
  background-position-x: 20px;
  background-repeat: no-repeat;
  background-size: auto 220px;
  color: #3f8bd2;
  flex: 0;
  font-weight: normal;
  text-align: left;
  padding: 25px 20px;
  padding: 1.5625rem 1.25rem;
  min-width: 260px;
  min-width: 16.25rem;
  font-size: 20px;
  font-size: 1.25rem;
}
.cc .ctxt-faq > div h2 > strong {
  display: block;
  font-weight: 300;
  font-size: 28px;
  font-size: 1.75rem;
}
.cc .ctxt-faq > div h2::after {
  display: none;
}
.cc .ctxt-faq > div > div {
  background: #fff;
  flex: 1;
  text-align: right;
}
.cc .ctxt-faq > div > div a.faq {
  background-color: #3f8bd2;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 20px;
  padding: 0.5rem 1.25rem;
  margin: 0 30px 15px 0;
  margin: 0 1.875rem 0.9375rem 0;
}
.cc .ctxt-faq > div > div a.faq:hover {
  background-color: #2a71b4;
  color: #fff;
}
.cc .ctxt-faq > div > div a.faq:focus {
  outline: 1px dashed #2a71b4;
}
.cc dl[data-collapse][role=tabpanel],
.cc dl.faq[data-collapse][role=tablist] {
  padding: 20px 30px;
  padding: 1.25rem 1.875rem;
  text-align: left;
}
.cc dl[data-collapse][role=tabpanel] [role=tabpanel],
.cc dl.faq[data-collapse][role=tablist] [role=tabpanel] {
  color: #666;
  display: none;
  padding: 0 0 15px 0;
  padding: 0 0 0.9375rem 0;
}
.cc dl[data-collapse][role=tabpanel] [role=tab],
.cc dl.faq[data-collapse][role=tablist] [role=tab] {
  padding: 8px 30px 8px 0;
  padding: 0.5rem 1.875rem 0.5rem 0;
  font-size: 14px;
  font-size: 0.875rem;
}
.cc dl[data-collapse][role=tabpanel] [role=tab]::after,
.cc dl.faq[data-collapse][role=tablist] [role=tab]::after {
  color: #3f8bd2;
}
.cc dl[data-collapse][role=tabpanel] [role=tab]:first-child,
.cc dl.faq[data-collapse][role=tablist] [role=tab]:first-child {
  border-top: 0;
}
.cc dl[data-collapse][role=tabpanel] .loader,
.cc dl.faq[data-collapse][role=tablist] .loader {
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
}
.cc ul.faq[data-collapse][role=tablist] ul.styled li {
  background: none;
}
.cc ul.faq[data-collapse][role=tablist] li {
  background: #f8f8f8;
  padding: 0 60px;
  padding: 0 3.75rem;
}
.cc ul.faq[data-collapse][role=tablist] li dl {
  background: #fff;
  margin: 0 -60px;
  margin: 0 -3.75rem;
  padding: 0 60px;
  padding: 0 3.75rem;
}
.cc ul.faq[data-collapse][role=tablist] li dl dt:first-child {
  border-top: 0;
}
.cc ul.faq[data-collapse][role=tablist] li dl dt:last-child {
  border-bottom: 0;
}
.cc ul.faq[data-collapse][role=tablist] li h3 {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 10px 30px 10px 0;
  padding: 0.625rem 1.875rem 0.625rem 0;
}
.cc ul.faq[data-collapse][role=tablist] li h3[data-collapsed=no],
.cc ul.faq[data-collapse][role=tablist] li h3[data-collapsed=false] {
  border-bottom: none;
}
.cc ul.faq[data-collapse][role=tablist] li + li h3 {
  border-top: 0;
}
.cc faq-questions,
.cc faq-category-group {
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
}

@media only screen and (max-width: 768px) {
  .cc .ctxt-faq > div {
    display: block;
  }
  .cc .ctxt-faq > div h2 > strong {
    display: inline-block;
  }
  .cc .ctxt-faq > div dl {
    padding-left: 40px;
    padding-left: 2.5rem;
  }
}
/*==========================================================================
19. collapsed
========================================================================== */
.cc [data-collapse][data-collapsed] {
  cursor: pointer;
}
.cc [data-collapse] [aria-hidden=false] {
  display: block;
}
.cc [data-collapse] [aria-hidden=true] {
  display: none;
}

.cc table[data-collapse] tr[aria-hidden=false] {
  display: table-row;
}

.cc [data-collapse][role=tablist] {
  margin-top: 5px;
  margin-top: 0.3125rem;
}
.cc [data-collapse][role=tablist] [role=tab] {
  padding: 5px 30px 5px 0;
  padding: 0.3125rem 1.875rem 0.3125rem 0;
  border-top: 1px solid #f2efed;
  clear: left;
  cursor: pointer;
  margin-top: -1px;
  position: relative;
}
.cc [data-collapse][role=tablist] [role=tab]:focus {
  color: #03b2f3;
  outline: 0;
}
.cc [data-collapse][role=tablist] [role=tab] h2::before {
  display: none;
}
.cc [data-collapse][role=tablist] [role=tab] h3 {
  padding-bottom: 0;
  padding-top: 0;
}
.cc [data-collapse][role=tablist] [role=tab] a {
  display: block;
  font-weight: normal;
  text-decoration: none;
}
.cc [data-collapse][role=tablist] [role=tab] a:hover {
  color: #03b2f3;
}
.cc [data-collapse][role=tablist] [role=tab]::after {
  font-family: "fts_picto";
  font-weight: normal;
  position: absolute;
  top: 6px;
  top: 0.375rem;
  right: 0;
  font-size: 14px;
  font-size: 0.875rem;
}
.cc [data-collapse][role=tablist] [role=tab]:hover {
  color: #03b2f3;
}
.cc [data-collapse][role=tablist] [role=tab]:hover h3,
.cc [data-collapse][role=tablist] [role=tab]:hover a {
  color: #03b2f3;
}
.cc [data-collapse][role=tablist] [role=tab][data-collapsed=true] {
  border-bottom: 1px solid #f2efed;
}
.cc [data-collapse][role=tablist] [role=tab][data-collapsed=true]::after {
  content: "\f0098";
}
.cc [data-collapse][role=tablist] [role=tab][data-collapsed=true] + [role=tabpanel] {
  display: none;
}
.cc [data-collapse][role=tablist] [role=tab][data-collapsed=no]::after, .cc [data-collapse][role=tablist] [role=tab][data-collapsed=false]::after {
  content: "\f009d";
}
.cc [data-collapse][role=tablist] [role=tab][data-collapsed=no] + [role=tabpanel], .cc [data-collapse][role=tablist] [role=tab][data-collapsed=false] + [role=tabpanel] {
  display: block;
}
.cc [data-collapse][role=tablist] [role=tab] h2 {
  margin: 0;
  font-size: 20px;
  font-size: 1.25rem;
}
.cc [data-collapse][role=tablist] [role=tab] h3 {
  margin-top: 0;
  font-size: 16px;
  font-size: 1rem;
}
.cc [data-collapse][role=tablist] [role=tabpanel] {
  padding: 0 8px 8px 22px;
  padding: 0 0.5rem 0.5rem 1.375rem;
  border-bottom: 1px solid #f2efed;
}
.cc [data-collapse][role=tablist] [role=tabpanel]::after {
  clear: left;
  content: "";
  display: block;
}
.cc [data-collapse][role=tablist] [role=tabpanel] > ul,
.cc [data-collapse][role=tablist] [role=tabpanel] > ul > li {
  margin-top: 0;
}

.cc div[data-collapse] h3[data-collapsed=no],
.cc div[data-collapse] h3[data-collapsed=false] {
  padding: 5px 30px 5px 0;
  padding: 0.3125rem 1.875rem 0.3125rem 0;
  border-top: 1px solid #f2efed;
  clear: left;
  display: block;
  font-weight: normal;
  margin-top: -1px;
  position: relative;
  text-decoration: none;
}
.cc div[data-collapse] h3[data-collapsed=no]::after,
.cc div[data-collapse] h3[data-collapsed=false]::after {
  content: "\f009d";
  font-family: "fts_picto";
  font-weight: normal;
  position: absolute;
  top: 6px;
  top: 0.375rem;
  right: 0;
  font-size: 14px;
  font-size: 0.875rem;
}
.cc div[data-collapse] a[role=tab] {
  padding: 5px 30px 5px 0;
  padding: 0.3125rem 1.875rem 0.3125rem 0;
  border-top: 1px solid #f2efed;
  clear: left;
  display: block;
  font-weight: normal;
  margin-top: -1px;
  text-decoration: none;
}
.cc div[data-collapse] a[role=tab]:hover h3 {
  color: #03b2f3;
}
.cc div[data-collapse] a[role=tab] h3 {
  font-weight: normal;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-size: 1rem;
}
.cc div[data-collapse] a[role=tab][data-collapsed] {
  cursor: pointer;
  position: relative;
}
.cc div[data-collapse] a[role=tab][data-collapsed]::after {
  font-family: "fts_picto";
  font-weight: normal;
  position: absolute;
  top: 6px;
  top: 0.375rem;
  right: 0;
  font-size: 14px;
  font-size: 0.875rem;
}
.cc div[data-collapse] a[role=tab][data-collapsed]:focus, .cc div[data-collapse] a[role=tab][data-collapsed]:hover {
  color: #03b2f3;
}
.cc div[data-collapse] a[role=tab][data-collapsed=true], .cc div[data-collapse] a[role=tab][data-collapsed=true] {
  border-bottom: 1px solid #f2efed;
}
.cc div[data-collapse] a[role=tab][data-collapsed=true]::after, .cc div[data-collapse] a[role=tab][data-collapsed=true]::after {
  content: "\f0098";
}
.cc div[data-collapse] a[role=tab][data-collapsed=true] + div, .cc div[data-collapse] a[role=tab][data-collapsed=true] + div {
  display: none;
}
.cc div[data-collapse] a[role=tab][data-collapsed=no]::after, .cc div[data-collapse] a[role=tab][data-collapsed=false]::after {
  content: "\f009d";
}
.cc div[data-collapse] a[role=tab][data-collapsed=no] + div, .cc div[data-collapse] a[role=tab][data-collapsed=false] + div {
  display: block;
}
.cc div[data-collapse] > div {
  padding: 0 8px 8px 22px;
  padding: 0 0.5rem 0.5rem 1.375rem;
  border-bottom: 1px solid #f2efed;
}
.cc div[data-collapse] > div::after {
  clear: left;
  content: "";
  display: block;
}
.cc div[data-collapse] > div > ul,
.cc div[data-collapse] > div > ul > li {
  margin-top: 0;
}
.cc div[data-collapse] > div > div.grid {
  margin: 8px 0;
  margin: 0.5rem 0;
}

/*********************************************************************************************

4.  Forms

*********************************************************************************************/
/*******************************************************************************************

Project : Styles vitrine I14 : Formulaires
Version: 1.0
Author: Scheffler Michel - FX Lair

**********************************************************************************************

Lasts Modifs : 09/12/2015 FX Correction clearfix sur class .large

**********************************************************************************************

Summary
1.  Olds Form
	1.1 Layout
	1.1.2 Layout CIC
	1.2 Errors
	1.3 Confirmation

2.  Modern Form
	2.1 Layout
	2.2 Errors
	2.3 Confirmation

3.  Test maquette Fred
	3.1 Layout
	3.2 Errors
	3.3 Confirmation

All styles must be prefix with the ".cc" class
**********************************************************************************************/
/*********************************************************************************************

1.  Olds Form

*********************************************************************************************/
/*
1.1 Layout
========================================================================== */
.old-forms {
  width: 100%;
  /* Pour mozilla */
  /* table{
  	margin-top: 10px;
  	width: 100%;
  	min-width: 300px;
  }
  td:first-child{
  	width: 27%;
  	min-width: 81px;
  }
  td:last-child{
  	padding-left: 25px;
  	min-width: 219px;
  }
  td{
  	padding: 0;
  } */
  /* pour la ligne "* champs obligatoires" */
}
.old-forms em.required {
  color: red;
}
.old-forms fieldset {
  margin-top: 60px;
  margin-bottom: 40px;
  padding: 30px;
  border: 1px solid #ddd;
  background-color: #fff;
}
.old-forms fieldset:last-of-type {
  margin-bottom: 25px;
}
.old-forms fieldset legend {
  position: absolute;
  top: -30px;
  text-transform: lowercase;
}
.old-forms fieldset legend::first-letter {
  text-transform: uppercase;
}
.old-forms fieldset tr > td {
  padding: 3px;
}
.old-forms legend {
  margin-top: 40px;
  margin-bottom: 10px;
  color: #262626;
  font-size: 25px;
  cursor: default;
  /* after sinon le first-letter ne fonctionne pas */
}
.old-forms legend::after {
  content: "\f0154";
  float: left;
  color: #3f8bd2;
  font-weight: 100;
  font-size: 1.5em;
  font-family: "fts_picto";
}
.old-forms .a_blocfctltitre {
  min-height: 20px;
}
.old-forms .list-col {
  list-style-type: none;
}
.old-forms .list-col input {
  float: left;
  margin-top: 4px;
}
.old-forms .label {
  float: left;
}
.old-forms .label + .group {
  float: left;
  margin-left: 10px;
}
.old-forms .label + .group input {
  margin: 0;
  margin-left: 10px;
}
.old-forms input[type=email], .old-forms input[type=tel] {
  padding: 5px 10px;
  border: 1px solid lightgrey;
}
.old-forms table tr td + td {
  border-left: none;
}
.old-forms .obligatoire {
  margin-top: 30px;
}
.old-forms .button {
  display: block;
  margin: auto;
  padding: 10px 30px;
  border: none;
  background-color: #61A9DF;
  color: white;
  font-size: 15px;
}
.old-forms .button::after {
  content: "\f05cd";
  float: right;
  margin-top: 6px;
  margin-left: 6px;
  font-size: 12px;
  font-family: "fts_picto";
}
.old-forms #generiqueVosCoordonnees > div.g > table {
  margin: auto;
}
.old-forms #generiqueVosCoordonnees > div.g > table tr > td {
  padding: 3px;
}
.old-forms #generiqueRepondre > div.g > table {
  margin: auto;
}
.old-forms .large::before,
.old-forms .large::after {
  content: "";
  display: table;
}
.old-forms .large::after {
  clear: both;
}
.old-forms .large {
  zoom: 1;
}
.old-forms .large + label.large {
  padding-top: 0;
}
.old-forms .block {
  display: block;
}
.old-forms .small {
  width: 10%;
  min-width: 80px;
}
.old-forms .medium {
  width: 25%;
  min-width: 200px;
  margin-bottom: 20px;
}
.old-forms .large {
  width: 100%;
  margin-bottom: 20px;
}
.old-forms label.large, .old-forms p.large {
  clear: both;
  margin-bottom: 0;
  padding-top: 20px;
}
.old-forms #btn-valider {
  margin-top: 10px;
  padding: 10px 40px;
  border: 0 none white;
  background-color: #0066B1;
  color: #FFF;
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer;
}
.old-forms .maxi {
  font-size: 20px;
}
.old-forms #SimpleLabelJuridique {
  display: block;
  margin-top: 40px;
}

.old-forms.form-jeu {
  /* ------------------------ RESPONSIVE ------------------------ */
}
.old-forms.form-jeu form {
  margin: -28px;
}
.old-forms.form-jeu .a_blocappli input[type=checkbox] {
  margin-right: 10px;
}
@media (max-width: 980px) {
  .old-forms.form-jeu form {
    margin: 0;
  }
}

/*
1.1.2 Layout CIC
========================================================================== */
#formulaire-ok + p > #MentionLegaleFormulaires {
  display: none;
}

.i_blocgenform .blocmsg {
  margin-top: 0;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}

.i_blocgenform fieldset {
  position: relative;
  padding: 28px;
  border: 1px solid #d2d0cc;
  background-color: #fff;
  margin-top: 12px;
  margin-top: 0.75rem;
  margin-bottom: 56px;
  margin-bottom: 3.5rem;
}

.i_blocgenform legend {
  position: absolute;
  color: #262626;
  font-weight: normal;
  text-transform: lowercase;
  cursor: default;
  top: -30px;
  top: -1.875rem;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 20px;
  line-height: 1.25rem;
  /* after sinon le first-letter ne fonctionne pas */
}
.i_blocgenform legend::after {
  content: "\f0154";
  float: left;
  color: #3f8bd2;
  font-family: "fts_picto";
  font-size: 30px;
  font-size: 1.875rem;
}
.i_blocgenform legend::first-letter {
  text-transform: uppercase;
}

.i_blocgenform .button {
  display: block;
  margin: auto;
  border: none;
  background-color: #3f8bd2;
  color: white;
  margin-top: 15px;
  margin-top: 0.9375rem;
  margin-bottom: 28px;
  margin-bottom: 1.75rem;
  padding: 10px 30px;
  padding: 0.625rem 1.875rem;
  font-size: 15px;
  font-size: 0.9375rem;
}
.i_blocgenform .button::after {
  content: "\f05cd";
  float: right;
  font-family: "fts_picto";
  margin: 2px 0 0 6px;
  margin: 0.125rem 0 0 0.375rem;
  font-size: 12px;
  font-size: 0.75rem;
}
.i_blocgenform .button:hover {
  background-color: #2a71b4;
}

.i_blocgenform input, .i_blocgenform textarea, .i_blocgenform select {
  border: 1px solid #d2d0cc;
  box-shadow: none;
  padding: 3px 20px 3px 3px;
  padding: 0.1875rem 1.25rem 0.1875rem 0.1875rem;
}

.i_blocgenform input:focus, .i_blocgenform select:focus, .i_blocgenform textarea:focus {
  box-shadow: 1px 1px 2px 0 #908f8c;
}

.i_blocgenform input[type=radio] {
  box-shadow: 0;
}

/* fgen rajoute ces blocs quand l'on fait de la perso authentifé / anonyme */
.i_blocgenform .authenticated {
  /* display: inline-block; */
}

.i_blocgenform select, .i_blocgenform input {
  /* @include rem(margin-top,5px); */
  /* vertical-align: top; */
}

.i_blocgenform input[type=radio] {
  /* @include rem(margin-top,5px); */
  vertical-align: middle;
}

.inp-s {
  width: 150px;
  width: 9.375rem;
}

.inp-m {
  width: 220px;
  width: 13.75rem;
}

.inp-l {
  width: 380px;
  width: 23.75rem;
}

.inp-xl {
  width: 500px;
  width: 31.25rem;
}

.inp-s, .inp-m, .inp-l, .inp-xl {
  max-width: 100%;
}

.i_blocgenform .soft + fieldset, .i_blocgenform .msg + fieldset, .i_blocgenform .authenticated + fieldset, .i_blocgenform .non_authenticated + fieldset {
  margin-top: 56px;
  margin-top: 3.5rem;
}

.i_blocgenform .soft + .authenticated div {
  margin-top: 12px;
  margin-top: 0.75rem;
}

.cc .redac .info {
  padding: 12px;
  padding: 0.75rem;
}

.form-group > .form-control .err-msg {
  display: block;
  color: #e70b0b;
}

.oldie .i_blocgenform .form-group > label, .oldie .i_blocgenform .form-label {
  float: left;
}

.i_blocgenform .soft .mandatory, .form-group .mandatory {
  color: #e70b0b;
  padding-left: 2px;
  padding-left: 0.125rem;
}

.invalid input, .invalid select, .invalid textarea {
  border-bottom-color: #e70b0b;
}

.invalid input[type=radio] {
  box-shadow: 1px 1px 1px 0 #e70b0b;
}

/*
.valid{
		position: relative;
	}
.valid::after{
		position: absolute;
		@include rem(right, 0);
		@include rem(top, 0);
		font-family: $glyphs;
		color: $Atlantis;
		@include rem(font-size, 25px);
	} */
.valid input {
  background: #fff url("/partage/fr/CC/CM-I14/styles/img/picto-gly-check.png") right 5px center no-repeat;
  background-size: 10px;
}

/*
.invalid input{
		background:#fff url("/partage/fr/CC/CM-I14/styles/img/picto-gly-error.png") right center no-repeat;
		background-size: 7%;
	}
*/
.form-group > .form-control {
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
}

.form-group > .form-control.row {
  /* display:flex;
  flex-wrap:wrap;
  align-items:flex-start; */
  padding-bottom: 0;
}

.form-group > .form-control.row > div {
  display: inline-block;
  white-space: nowrap;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  margin-right: 5px;
  margin-right: 0.3125rem;
}

.ctxt-form .form-text1, .ctxt-form .form-text2 {
  display: inline-block;
}

.ctxt-form .form-text2 {
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
}

@media (max-width: 420px) {
  .inp-s, .inp-m, .inp-l, .inp-xl {
    max-width: 250px;
  }
}
/* ==========================================================================
.  Formulaire horizontal
========================================================================== */
.ctxt-form-horizontal .form-group {
  display: flex;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}
.ctxt-form-horizontal .form-group > label, .ctxt-form-horizontal .form-group > .form-label, .ctxt-form-horizontal .form-group > .form-control {
  width: 50%;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
}
.ctxt-form-horizontal .form-group > label.w100, .ctxt-form-horizontal .form-group > .form-label.w100, .ctxt-form-horizontal .form-group > .form-control.w100 {
  width: 100%;
}
.ctxt-form-horizontal .form-group > label, .ctxt-form-horizontal .form-group > .form-label {
  text-align: right;
  padding-right: 12px;
  padding-right: 0.75rem;
}

@media (max-width: 768px) {
  .ctxt-form-horizontal .form-group {
    flex-direction: column;
    padding-right: 0;
  }
  .ctxt-form-horizontal .form-group > label, .ctxt-form-horizontal .form-group > .form-label, .ctxt-form-horizontal .form-group > .form-control {
    width: 100%;
    text-align: left;
  }
  .ctxt-form-horizontal .form-group > label, .ctxt-form-horizontal .form-label {
    padding-right: 0;
    padding-bottom: 0;
  }
  .ctxt-form-horizontal .form-label:empty {
    padding: 0;
  }
  .cc input[type=radio], .cc input[type=checkbox] {
    margin-left: 5px;
    margin-left: 0.3125rem;
  }
  /*
  	textarea,.inp-s,.inp-m,.inp-l,.inp-xl{
  			width: 100%;
  		} */
}
/*
1.2 Errors
========================================================================== */
/*
1.3 Confirmation
========================================================================== */
.old-forms .form-success {
  margin: auto;
  border: 2px solid #82c336;
  background-color: #FFF;
  text-align: center;
  padding: 20px;
  padding: 1.25rem;
}
.old-forms .form-success p.titre2, .old-forms .form-success p.intro {
  color: #82c336;
}
.old-forms .form-success p.titre2::before {
  content: "✓";
  margin-right: 15px;
}

/*********************************************************************************************

2.  Modern Form

*********************************************************************************************/
/*
2.1 Layout
========================================================================== */
.forms-v5 {
  padding-bottom: 20px;
  background-color: white;
  /* .content{
  	width: 75%;
  	min-width: 300px;
  	margin: auto;
  } */
  /* Correction place du picto d'information (Renvoi vers modalités) */
}
.forms-v5 .required {
  color: red;
}
.forms-v5 fieldset {
  width: 600px;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 60px;
  padding: 30px;
  padding-top: 0;
  padding-bottom: 20px;
  border: 1px solid #ddd;
  background-color: #fff;
}
.forms-v5 fieldset tr > td {
  padding: 3px;
}
.forms-v5 fieldset.intro {
  margin-top: 15px;
  padding-top: 15px;
}
.forms-v5 legend {
  position: relative;
  top: -23px;
  margin-bottom: 10px;
  font-size: 20px;
  text-transform: lowercase;
  cursor: default;
  /* flèche */
}
.forms-v5 legend::first-letter {
  text-transform: uppercase;
}
.forms-v5 legend::before {
  content: "\f0154";
  position: absolute;
  left: -30px;
  float: left;
  color: #262626;
  font-weight: 100;
  font-size: 1.2em;
  font-family: "fts_picto";
}
.forms-v5 .ligne {
  margin-top: 5px;
  margin-bottom: 5px;
}
.forms-v5 input[type=email], .forms-v5 input[type=tel], .forms-v5 input[type=text] {
  display: block;
  margin-bottom: 8px;
  padding: 5px 10px;
  border: 1px solid lightgrey;
}
.forms-v5 input[type=radio] {
  margin-left: 30px;
}
.forms-v5 .obligatoire {
  margin-top: 30px;
}
.forms-v5 .button {
  display: block;
  margin: auto;
  margin-top: 15px;
  padding: 10px 30px;
  border: none;
  background-color: #61A9DF;
  color: white;
  font-size: 15px;
}
.forms-v5 .button::after {
  content: "\f05cd";
  float: right;
  margin-top: 2px;
  margin-left: 6px;
  font-size: 12px;
  font-family: "fts_picto";
}
.forms-v5 .block {
  display: block;
}
.forms-v5 .w30 {
  width: 30%;
}
.forms-v5 .w50 {
  width: 50%;
}
.forms-v5 .w100 {
  width: 100%;
}
.forms-v5 .no-border {
  border: 0;
}
.forms-v5 label.large, .forms-v5 p.large {
  clear: both;
  margin-bottom: 0;
  padding-top: 20px;
}
.forms-v5 .notejuridique::before {
  top: 4px;
  left: 0;
}

/*
2.2 Errors
========================================================================== */
/*
2.3 Confirmation
========================================================================== */
.forms-v5 .form-success {
  margin: auto;
  border: 2px solid #82c336;
  background-color: #FFF;
  text-align: center;
  padding: 20px;
  padding: 1.25rem;
}
.forms-v5 .form-success p.titre2, .forms-v5 .form-success p.intro {
  color: #82c336;
}
.forms-v5 .form-success p.titre2::before {
  content: "✓";
  margin-right: 15px;
}

/*********************************************************************************************

3.  Test maquette Fred

*********************************************************************************************/
/*
3.1 Layout
========================================================================== */
.cc .test-new-form {
  width: 100%;
  max-width: 700px;
  margin: auto;
  padding-bottom: 20px;
  border: 1px solid #d2d0cc;
}
.cc .test-new-form h4 {
  background-color: #3f8bd2;
  color: white;
  padding: 20px 90px;
  padding: 1.25rem 5.625rem;
}
.cc .test-new-form h4::before {
  content: "\f010e";
  position: absolute;
  top: 25px;
  left: 40px;
  font-family: "fts_picto";
  font-size: 30px;
  font-size: 1.875rem;
}
.cc .test-new-form fieldset {
  border: 0;
  padding: 20px 40px;
  padding: 1.25rem 2.5rem;
}
.cc .test-new-form fieldset > label {
  display: block;
  clear: both;
  font-weight: 600;
}
.cc .test-new-form fieldset input[type=radio] {
  margin-bottom: 20px;
  border: 3px solid #908f8c;
  margin-left: 20px;
  margin-left: 1.25rem;
  margin-right: 5px;
  margin-right: 0.3125rem;
}
.cc .test-new-form fieldset input[type=radio] + label {
  vertical-align: top;
}
.cc .test-new-form fieldset div[role=radiogroup] {
  height: 20px;
}
.cc .test-new-form fieldset input[type=text], .cc .test-new-form fieldset input[type=tel], .cc .test-new-form fieldset input[type=email], .cc .test-new-form fieldset input[type=date], .cc .test-new-form fieldset select {
  display: block;
  clear: both;
  width: 100%;
  height: 30px;
  margin-bottom: 10px;
  padding-left: 10px;
  border: 1px solid #d2d0cc;
}
.cc .test-new-form fieldset .small-input {
  max-width: 170px;
}
.cc .test-new-form input[type=submit] {
  display: block;
  margin: auto;
  padding: 13px 35px;
  border: 0;
}
.cc .test-new-form .required {
  color: #e70b0b;
}
.cc .test-new-form .inline-1-2 {
  display: inline-block;
  width: 49%;
}
.cc .test-new-form .inline-1-3 {
  display: inline-block;
  width: 33%;
}
.cc .test-new-form .inline-2-3 {
  display: inline-block;
  width: 66%;
}

/*
3.2 Errors
========================================================================== */
/*
3.3 Confirmation
========================================================================== */
/*********************************************************************************************

/*********************************************************************************************

5. Popin

*********************************************************************************************/
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #CCC;
}
.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}
.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}
.mfp-arrow:before, .mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}
.mfp-arrow:after,
.mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}
.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}
.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}
.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}
.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
   * Remove all paddings around the image on small screen
   */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    transform-origin: 0;
  }
  .mfp-arrow-right {
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.mfp-ie7 .mfp-img {
  padding: 0;
}
.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}
.mfp-ie7 .mfp-container {
  padding: 0;
}
.mfp-ie7 .mfp-content {
  padding-top: 44px;
}
.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}

.popin {
  position: relative;
  background: #FFF;
  width: auto;
  max-width: 800px;
  margin: 20px auto;
}

.cc.popin {
  padding: 30px 40px;
}

.popin p + p {
  padding-top: 10px;
}

div#overlay {
  display: none;
  background: #000;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 850;
}

dialog#lightbox {
  background: #ffffff;
  box-shadow: 0 1px 2px 0 #737373;
  padding: 12px;
  padding: 0.75rem;
  position: fixed;
  top: -50%;
  left: 25%;
  width: 50%;
  z-index: 880;
  max-height: calc(100% - 130px) !important;
  display: flex;
}
dialog#lightbox > div {
  flex: 1;
}
dialog#lightbox button.close {
  float: right;
  background: transparent;
  border: none;
  transition: all 1s ease 0s;
}
dialog#lightbox button.close:before {
  display: inline-block;
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 30px;
  line-height: 1.875rem;
  font-family: "fts_picto";
  content: "\f00d5";
}
dialog#lightbox button.close:hover, dialog#lightbox button.close:focus {
  color: #03b2f3;
}
dialog#lightbox a.fullscreen {
  float: right;
  background: transparent;
  border: none;
  transition: all 1s ease 0s;
  color: #000;
}
dialog#lightbox a.fullscreen:before {
  display: inline-block;
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-family: "fts_picto";
  content: "\f0506";
  margin: 0px;
}
dialog#lightbox a.fullscreen:hover, dialog#lightbox a.fullscreen:focus {
  color: #03b2f3;
}
dialog#lightbox h1 {
  text-transform: capitalize;
  margin: 0;
  color: #03b2f3;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
}
dialog#lightbox iframe {
  border: none;
  width: 100%;
  height: 100%;
  height: calc(100% - 32px);
}
dialog#lightbox.pdf, dialog#lightbox.nowidth {
  left: 15%;
  width: 70%;
}
dialog#lightbox.pdf, dialog#lightbox.noheight {
  height: calc(100% - 200px) !important;
}

.ctxt-lightbox {
  background: #ffffff;
}
.ctxt-lightbox .cc dl[data-collapse] dd {
  border: none;
}
.ctxt-lightbox .hideIfLightbox {
  display: none;
}

@media (max-width: 980px) {
  dialog#lightbox {
    left: 15%;
    width: 70%;
    height: calc(100% - 130px) !important;
  }
}
@media (max-width: 768px) {
  dialog#lightbox, dialog#lightbox.pdf {
    left: 3%;
    width: 90%;
  }
}
.cc iframe.noborder {
  border: none;
}

/*CIC Lightbox*/
/*********************************************************************************************

6.  MediaQuery

*********************************************************************************************/
/*********************************************************************************************

Project : Styles vitrine I14 : Media Queries
Version: 1.0
Author: FX Lair - Bordenave Danny

**********************************************************************************************

Lasts Modifs :
2015/10/08 Ajout du mixin de gestion de rupture

**********************************************************************************************

Summary

1.  General layout medias-queries


$BpTiny:420px;
$BpMini:650px;
$BpSmall:768px;
$BpMedium:980px;
$BpLarge:1024px;
$BpHuge:1280px;
$BpGiant:2560px;

**********************************************************************************************/
/*==========================================================================
1.  General layout medias-queries
========================================================================== */
.cc .mq_order1 {
  order: 1;
}

.cc .mq_order2 {
  order: 2;
}

.cc .mq_order3 {
  order: 3;
}

.cc .mq_order4 {
  order: 4;
}

.cc .mq_order5 {
  order: 5;
}

.cc .mq_order6 {
  order: 6;
}

/*
@media (max-width: 1100px) {
	.cc .header-img-1-2 .grid-1-2{
		width:60%;
	}
	.cc .header-img-1-2 .grid-1-2.img-1-2{
		width:40%;
	}

	.cc .header-img-aplat .grid-1-2{
		width:60%;
	}
}
*/
/**********************************************************************************************/
@media (max-width: 1280px) {
  /*
  Ariane
  ========================================================================== */
  #ei_tpl_ariane {
    padding: 5px 0px 5px 10px;
    padding: 0.3125rem 0px 0.3125rem 0.625rem;
  }
  /*
  Surcharges gabarits
  ========================== */
  /*
  	#ei_tpl_fullsite #ei_tpl_footer #ei_tpl_footer2.footer_cc > ul > li{
  		padding: 0 20px;
  	}*/
  .cc [class^=header-] > ul.menu.fixed {
    width: 100%;
    left: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 5px;
    padding-left: 0.3125rem;
    padding-right: 5px;
    padding-right: 0.3125rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    white-space: nowrap;
  }
  .cc [class^=header-] > ul {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}
@media (max-width: 1024px) {
  /*
  Grid
  ========================== */
  .oldie ~ #ei_tpl_fullsite .cc .grid-1-5, .oldie .cc .grid-1-5, .oldie ~ #ei_tpl_fullsite .cc .grid-1-6, .oldie .cc .grid-1-6, .oldie ~ #ei_tpl_fullsite .cc .grid-1-10, .oldie .cc .grid-1-10, .oldie ~ #ei_tpl_fullsite .cc .grid-2-10, .oldie .cc .grid-2-10, .oldie ~ #ei_tpl_fullsite .cc .grid-1-12, .oldie .cc .grid-1-12, .oldie ~ #ei_tpl_fullsite .cc .grid-2-12, .oldie .cc .grid-2-12, .cc .grid-1-5, .cc .grid-1-6, .cc .grid-1-10, .cc .grid-2-10, .cc .grid-1-12, .cc .grid-2-12 {
    flex-basis: 25%;
    width: 25%;
    /*flex:1 1 25%;*/
  }
  .oldie ~ #ei_tpl_fullsite .cc .grid-1-3, .oldie .cc .grid-1-3, .oldie ~ #ei_tpl_fullsite .cc .grid-1-4, .oldie .cc .grid-1-4, .oldie ~ #ei_tpl_fullsite .cc .grid-2-5, .oldie .cc .grid-2-5, .oldie ~ #ei_tpl_fullsite .cc .grid-2-6, .oldie .cc .grid-2-6, .oldie ~ #ei_tpl_fullsite .cc .grid-3-10, .oldie .cc .grid-3-10, .oldie ~ #ei_tpl_fullsite .cc .grid-4-10, .oldie .cc .grid-4-10, .oldie ~ #ei_tpl_fullsite .cc .grid-3-12, .oldie .cc .grid-3-12, .oldie ~ #ei_tpl_fullsite .cc .grid-4-12, .oldie .cc .grid-4-12, .oldie ~ #ei_tpl_fullsite .cc .grid-5-12, .oldie .cc .grid-5-12, .cc .grid-1-3, .cc .grid-1-4, .cc .grid-2-5, .cc .grid-2-6, .cc .grid-3-10, .cc .grid-4-10, .cc .grid-3-12, .cc .grid-4-12, .cc .grid-5-12 {
    /*flex-basis:50%;*/
    width: 50%;
    /*flex:2 1 50%;*/
  }
  .oldie ~ #ei_tpl_fullsite .cc .grid-5-6, .oldie .cc .grid-5-6, .oldie ~ #ei_tpl_fullsite .cc .grid-9-10, .oldie .cc .grid-9-10, .oldie ~ #ei_tpl_fullsite .cc .grid-10-12, .oldie .cc .grid-10-12, .oldie ~ #ei_tpl_fullsite .cc .grid-11-12, .oldie .cc .grid-11-12, .cc .grid-5-6, .cc .grid-9-10, .cc .grid-10-12, .cc .grid-11-12 {
    width: 100%;
  }
  .cc .grid-1-3[class*=mq_order], .cc .grid-2-3[class*=mq_order] {
    order: 0;
  }
  /*
  .cc .grid-1-3.separator-right + .grid-1-3.separator-right {
  	border-right: 0;
  }
  .cc .grid-1-3.separator-left + .grid-1-3.separator-left {
  	border-left: 0;
  }

  .cc .grid-1-4.separator-right + .grid-1-4.separator-right {
  	border-right: 0;
  }*/
  .cc .separator .grid-1-3:nth-child(even) {
    border-right: 0;
  }
  .cc .separator .grid-1-4:nth-child(even) {
    border-right: 0;
  }
  .cc .separator .grid-1-5:nth-last-child(2) {
    border-right: 0;
  }
  /*
  .cc .redac{
  	padding-bottom: 0px;
  }*/
  /*========================== */
  .cc .mq-hide {
    display: none;
  }
  .theme .grid-1-12:first-child {
    display: none;
  }
  /*
  .theme .grid-10-12 > .grid > .grid-1-1::before{
  	position: absolute;
  	display: block;
  	content: "";
  	left:-($ThemeWidth + $GridMargin);
  	top: $GridMargin;
  	width: $ThemeWidth;
  	height: $ThemeHeight;
  	background:$Havelock url(/partage/fr/CC/CM-I14/styles/img/picto-cm.png) 25px center no-repeat;
  	background-image: url(/partage/fr/CC/CM-I14/styles/img/picto-cm.svg), none;
  	background-size: $ThemeHeight;
  }*/
  .cc .theme .grid-10-12 > .grid > .grid-1-1:first-child {
    /*@include rem(padding-left,($ThemeWidth + $GridMargin*3));*/
    padding-top: 0px;
  }
  .cc .theme .grid-10-12 > .grid > .grid-1-1:first-child::before {
    display: none;
  }
  .cc .theme .grid-10-12 > .grid > .grid-1-1:first-child > .grow {
    max-width: 100%;
  }
  /*
  Bloc en 2/3-1/3 de 1er niveau (dossiers, de...) et header-img-left
  ========================== */
  .oldie .cc .redac > .grid > .grid-2-3, .cc .redac > .grid > .grid-2-3, .oldie .cc .header-img-left > .grid > .grid-2-3, .cc .header-img-left > .grid > .grid-2-3 {
    width: 66.66667%;
  }
  .oldie .cc .redac > .grid > .grid-1-3, .cc .redac > .grid > .grid-1-3, .oldie .cc .header-img-left > .grid > .grid-1-3, .cc .header-img-left > .grid > .grid-1-3 {
    width: 33.33333%;
  }
  /*
  Header
  ========================== */
  .cc .header-img-header-img-aplat .grid-1-2 {
    width: 70%;
  }
  .cc .header-img-1-3 .grid-2-3 {
    width: 67%;
  }
  .cc .header-img-1-3 .grid-1-3.img-1-3 {
    width: 33%;
  }
  .cc .header-img-1-4 .grid-1-4.img-1-4 {
    width: 25%;
  }
  /*
  Contacts
  ========================== */
  .cc .contacts .grid-1-3 {
    width: 33.33333%;
    flex-basis: 33.33333%;
  }
  .cc .contacts [class*=grid-] > .grow > p, .cc .contacts [class*=grid-] > .grow > div {
    flex: 1 1 100%;
  }
  .cc [class*=contact-]::after {
    display: none;
  }
  .cc [class*=contact-]::before {
    position: relative;
    width: 100%;
    display: block;
    left: auto;
    top: auto;
    margin: 0 auto;
  }
  .cc [class*=contact-] {
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
  }
  .cc .contacts .phone-sva {
    margin-left: 0;
    text-align: center;
  }
  /*========================== */
  .top-btn {
    height: 40px;
    width: 40px;
    right: 10px;
    bottom: 10px;
  }
  .top-btn::after {
    bottom: -20px;
  }
  .top-btn:hover {
    bottom: 20px;
  }
  /*
  Surcharges gabarits
  ========================== */
  /*
  #ei_tpl_fullsite #ei_tpl_footer #ei_tpl_footer1.footer_cc {
      border-bottom: 1px solid #8B8988;
      padding-bottom: 10px;
      margin-bottom: 20px;
  }
  #ei_tpl_fullsite #ei_tpl_footer #ei_tpl_footer1.footer_cc ul{
  	display: flex;
  	flex-wrap: nowrap;
  	justify-content:space-between;
  }
  #ei_tpl_fullsite #ei_tpl_footer #ei_tpl_footer1.footer_cc ul li{
  	width: auto;
  	min-width: auto;
  	margin-bottom: 10px;
  }
  #ei_tpl_fullsite #ei_tpl_footer #ei_tpl_footer1.footer_cc li:not(:first-child) a{
  	border-left: 0;
  }
  #ei_tpl_fullsite #ei_tpl_footer #ei_tpl_footer1.footer_cc ul li{
  	display: inline-block;
  	float: none;
  }
  #ei_tpl_fullsite #ei_tpl_footer #ei_tpl_footer1.footer_cc li a::before{
  	display: block;
  	margin: 0;
  }
  #ei_tpl_fullsite #ei_tpl_footer #ei_tpl_footer1.footer_cc li a
  {
  	text-align: center;
  }
  */
}
/**********************************************************************************************/
@media (max-width: 980px) {
  .cc .blocnotes {
    padding-left: 12px;
    padding-right: 12px;
  }
  /*
  Header
  ========================== */
  .cc .header-img-aplat {
    background-position: 0 0 !important;
    background-repeat: no-repeat;
    background-size: 100% !important;
    padding: 0px 0 0 0;
  }
  .cc .header-img-aplat > div {
    padding: 200px 0 0 0;
  }
  .cc .header-img-aplat .grow {
    margin: 0;
  }
  .cc .header-img-aplat .grid-1-2 {
    width: 100%;
  }
  .cc .header-img-1-2 .grid-1-2, .cc .header-img-1-3 .grid-2-3, .cc .header-img-1-4 .grid-3-4 {
    order: 2;
    width: 100%;
    padding: 0;
  }
  .cc .header-img-1-2 .grid-1-2.img-1-2, .cc .header-img-1-3 .grid-1-3.img-1-3, .cc .header-img-1-4 .grid-1-4.img-1-4 {
    order: 1;
    width: 100%;
    min-height: 180px;
  }
  .cc .header-img-1-2 .grow, .cc .header-img-1-3 .grow, .cc .header-img-1-4 .grow {
    margin-left: 0px;
    padding: 20px 40px 35px 40px;
    padding: 1.25rem 2.5rem 2.1875rem 2.5rem;
  }
  .cc .img-1-2 > img, .cc .img-1-3 > img {
    width: 110%;
    height: auto;
  }
  /*
  header-img-left
  ========================== */
  .oldie .cc .header-img-left > .grid > .grid-2-3, .cc .header-img-left > .grid > .grid-2-3 {
    width: 66.66667%;
    flex: initial;
  }
  .oldie .cc .header-img-left > .grid > .grid-1-3, .cc .header-img-left > .grid > .grid-1-3 {
    width: 33.33333%;
    flex: initial;
  }
  /*========================== */
  /*
  Act-offer
  ========================== */
  .cc .act-offer {
    margin-left: 0;
    margin-right: 0;
  }
  .cc .act-offer h2 {
    left: -300px;
    width: calc(100% + 300px);
  }
  .cc .act-offer > div:first-child {
    margin-top: 25px;
  }
  /*cas du bloc promo sans visuels*/
  .cc .act-offer > div:first-child:last-child {
    margin-top: 0px;
  }
  /*
  Surcharges gabarits
  ========================== */
  /*
  	#ei_tpl_fullsite #ei_tpl_footer #ei_tpl_footer2.footer_cc > ul{
  		flex-wrap:wrap;
  		padding: 0 20px;
  		justify-content:flex-start;
  	}
  	#ei_tpl_fullsite #ei_tpl_footer #ei_tpl_footer2.footer_cc > ul > li{
  		width: 33%;
  		padding: 20px 0 0 0;
  	}
  	#ei_tpl_fullsite #ei_tpl_footer #ei_tpl_footer2.footer_cc > ul > li > ul > li{
  		padding-left:20px;
  		padding-right:20px;
  	}*/
}
/**********************************************************************************************/
@media (max-width: 768px) {
  /*
  Grid
  ========================== */
  .oldie ~ #ei_tpl_fullsite .cc .grid-1-5, .oldie .cc .grid-1-5, .oldie ~ #ei_tpl_fullsite .cc .grid-1-6, .oldie .cc .grid-1-6, .oldie ~ #ei_tpl_fullsite .cc .grid-1-10, .oldie .cc .grid-1-10, .oldie ~ #ei_tpl_fullsite .cc .grid-2-10, .oldie .cc .grid-2-10, .oldie ~ #ei_tpl_fullsite .cc .grid-1-12, .oldie .cc .grid-1-12, .oldie ~ #ei_tpl_fullsite .cc .grid-2-12, .oldie .cc .grid-2-12, .cc .grid-1-5, .cc .grid-1-6, .cc .grid-1-10, .cc .grid-2-10, .cc .grid-1-12, .cc .grid-2-12 {
    /*flex-basis:25%;*/
    width: 25%;
    /*flex:1 1 25%;*/
  }
  .oldie ~ #ei_tpl_fullsite .cc .grid-1-3, .oldie .cc .grid-1-3, .oldie ~ #ei_tpl_fullsite .cc .grid-1-4, .oldie .cc .grid-1-4, .oldie ~ #ei_tpl_fullsite .cc .grid-2-5, .oldie .cc .grid-2-5, .oldie ~ #ei_tpl_fullsite .cc .grid-2-6, .oldie .cc .grid-2-6, .oldie ~ #ei_tpl_fullsite .cc .grid-3-10, .oldie .cc .grid-3-10, .oldie ~ #ei_tpl_fullsite .cc .grid-4-10, .oldie .cc .grid-4-10, .oldie ~ #ei_tpl_fullsite .cc .grid-3-12, .oldie .cc .grid-3-12, .oldie ~ #ei_tpl_fullsite .cc .grid-4-12, .oldie .cc .grid-4-12, .oldie ~ #ei_tpl_fullsite .cc .grid-5-12, .oldie .cc .grid-5-12, .cc .grid-1-3, .cc .grid-1-4, .cc .grid-2-5, .cc .grid-2-6, .cc .grid-3-10, .cc .grid-4-10, .cc .grid-3-12, .cc .grid-4-12, .cc .grid-5-12 {
    /*flex-basis:50%;*/
    width: 50%;
    /*flex:2 1 50%;*/
  }
  .oldie ~ #ei_tpl_fullsite .cc .grid-1-2, .oldie .cc .grid-1-2, .oldie ~ #ei_tpl_fullsite .cc .grid-2-3, .oldie .cc .grid-2-3, .oldie ~ #ei_tpl_fullsite .cc .grid-2-4, .oldie .cc .grid-2-4, .oldie ~ #ei_tpl_fullsite .cc .grid-3-4, .oldie .cc .grid-3-4, .oldie ~ #ei_tpl_fullsite .cc .grid-3-5, .oldie .cc .grid-3-5, .oldie ~ #ei_tpl_fullsite .cc .grid-4-5, .oldie .cc .grid-4-5, .oldie ~ #ei_tpl_fullsite .cc .grid-3-6, .oldie .cc .grid-3-6, .oldie ~ #ei_tpl_fullsite .cc .grid-4-6, .oldie .cc .grid-4-6, .oldie ~ #ei_tpl_fullsite .cc .grid-5-10, .oldie .cc .grid-5-10, .oldie ~ #ei_tpl_fullsite .cc .grid-6-10, .oldie .cc .grid-6-10, .oldie ~ #ei_tpl_fullsite .cc .grid-7-10, .oldie .cc .grid-7-10, .oldie ~ #ei_tpl_fullsite .cc .grid-8-10, .oldie .cc .grid-8-10, .oldie ~ #ei_tpl_fullsite .cc .grid-6-12, .oldie .cc .grid-6-12, .oldie ~ #ei_tpl_fullsite .cc .grid-7-12, .oldie .cc .grid-7-12, .oldie ~ #ei_tpl_fullsite .cc .grid-8-12, .oldie .cc .grid-8-12, .oldie ~ #ei_tpl_fullsite .cc .grid-9-12, .oldie .cc .grid-9-12, .cc .grid-1-2, .cc .grid-2-3, .cc .grid-2-4, .cc .grid-3-4, .cc .grid-3-5, .cc .grid-4-5, .cc .grid-3-6, .cc .grid-4-6, .cc .grid-5-10, .cc .grid-6-10, .cc .grid-7-10, .cc .grid-8-10, .cc .grid-6-12, .cc .grid-7-12, .cc .grid-8-12, .cc .grid-9-12 {
    /*flex-basis:100%;*/
    width: 100%;
    flex: 3 1 100%;
  }
  .cc .mq_order1, .cc .mq_order2, .cc .mq_order3, .cc .mq_order4, .cc .mq_order5, .cc .mq_order6 {
    order: 0;
  }
  /*
  Float
  ========================== */
  .cc .float-left-1-2,
.cc .float-left-1-3,
.cc .float-left-1-4,
.cc .float-right-1-2,
.cc .float-right-1-3,
.cc .float-right-1-4 {
    width: 50%;
  }
  .cc .float-left-2-3,
.cc .float-right-2-3,
.cc .float-left-3-4,
.cc .float-right-3-4 {
    float: none;
    width: 100%;
  }
  /*========================== */
  /*
  Menu
  ========================================================================== */
  .cc [class^=header-] > ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 5px 0;
    padding: 0.3125rem 0;
  }
  .cc [class^=header-] > ul > li > a {
    padding: 5px 28px;
    padding: 0.3125rem 1.75rem;
  }
  /*
  .cc [class^="header-"] > ul > li{
  		width: 33%;
  		text-align: left;
  		border:0;
  		@include rem(padding,5px 10px 0px 20px);
  	}

  .cc [class^="header-"] > ul > li:first-child{
  	border: 0;
  }*/
  .cc .separator .grid-1-2 {
    border-right: 0;
  }
  /*
  Header
  ========================== */
  .cc .header-img-1-2 .grid-1-2.img-1-2, .cc .header-img-1-3 .grid-1-3.img-1-3, .cc .header-img-1-4 .grid-1-4.img-1-4 {
    order: 1;
    width: 100%;
    min-height: 130px;
  }
  .cc .header-img-aplat > div {
    padding: 150px 0 0 0;
  }
  /*========================== */
  /*
  Bloc en 2/3-1/3 de 1er niveau (dossiers, de...)
  ========================== */
  .oldie .cc .redac > .grid > .grid-1-3, .cc .redac > .grid > .grid-1-3 {
    width: 100%;
  }
  /*
  Contacts
  ========================== */
  .cc .contacts .grid-1-3 {
    width: 100%;
    flex-basis: 100%;
  }
  .cc [class*=contact-]::after {
    display: block;
    text-align: left;
  }
  .cc [class*=contact-]::before {
    position: absolute;
    width: auto;
    left: 20px;
    top: 50%;
    margin-top: -16px;
  }
  .cc [class*=contact-] {
    padding: 0 65px 0 70px;
    padding: 0 4.0625rem 0 4.375rem;
    text-align: left;
  }
  .cc .contacts .phone-sva {
    margin: 7px 0 0 70px;
    margin: 0.4375rem 0 0 4.375rem;
    text-align: left;
  }
  /*========================== */
  .cc .essential .grow.valign-bloc-m {
    justify-content: flex-end;
  }
  .cc .img-1-2 > img, .cc .img-1-3 > img, .cc .img-1-4 > img {
    width: 115%;
    height: auto;
  }
  .cc .btn {
    display: block;
    margin-bottom: 28px;
    margin-bottom: 1.75rem;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
  .cc .btn + .btn {
    margin-left: auto;
  }
  /*
  Act-offer
  ========================== */
  .cc .act-offer .btn {
    max-width: 140px;
  }
  /*
  Surcharges gabarits
  ========================== */
  /*
  #ei_tpl_fullsite  #ei_tpl_footer #ei_tpl_footer1.footer_cc ul{
  	flex-wrap:wrap;
  	justify-content:space-around;
  }
  #ei_tpl_fullsite  #ei_tpl_footer #ei_tpl_footer1.footer_cc ul li{
  	min-width: 200px;
  }

  #ei_tpl_fullsite #ei_tpl_footer #ei_tpl_footer1.footer_cc,#ei_tpl_fullsite #ei_tpl_footer #ei_tpl_footer2.footer_cc{
  	margin: 0;
  	width: 100%;
  }
  */
}
/**********************************************************************************************/
@media (max-width: 650px) {
  /* fix home creditmutuel.de */
  .cc article section.guides-teaser.break div.grid article.grid-1-3 {
    width: 100% !important;
  }
  /*
  Grid
  ========================== */
  .cc [class^=grid-] {
    width: 100%;
    max-width: 100%;
    flex: 1 1 100%;
  }
  .cc .separator [class^=grid-] {
    border-right: 0;
  }
  /*========================== */
  /*
  Float
  ========================== */
  .cc .float-left-1-2,
.cc .float-left-1-3,
.cc .float-left-2-3,
.cc .float-left-1-4,
.cc .float-left-3-4,
.cc .float-right-1-2,
.cc .float-right-1-3,
.cc .float-right-2-3,
.cc .float-right-1-4,
.cc .float-right-3-4 {
    float: none;
    width: 100%;
  }
  /*======= Header ==========*/
  .cc .header-img-1-2 .grid-1-2.img-1-2, .cc .header-img-1-3 .grid-1-3.img-1-3, .cc .header-img-1-4 .grid-1-4.img-1-4 {
    order: 1;
    width: 100%;
    min-height: 100px;
  }
  .cc .header-img-aplat > div {
    padding: 120px 0 0 0;
  }
  /*.oldie .cc .header-img-left > .grid > .grid-1-3,.cc .header-img-left > .grid > .grid-1-3{
  	width: 33.33333%;
  	flex:initial;
  }
  */
  /*========================== */
  /*.cc [class^="header-"] > ul > li{
  		width: 50%;
  	}
  */
  /*========================== */
  /*
  Contacts
  ========================== */
  .cc .contact-phone::after {
    display: none;
  }
  /*======= Title ==========*/
  /*
  	Def police
  */
  .cc h1, .cc .h1, .cc [class^=header-] h1 {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 28px;
    line-height: 1.75rem;
  }
  .cc h2, .cc .h2 {
    font-size: 25px;
    font-size: 1.5625rem;
    line-height: 31px;
    line-height: 1.9375rem;
  }
  .cc h3, .cc .h3 {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 22px;
    line-height: 1.375rem;
  }
  .cc h4, .cc .h4 {
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 23px;
    line-height: 1.4375rem;
  }
  /*
  Act-offer
  ========================== */
  .cc .act-offer {
    display: block;
    position: relative;
  }
  .cc .act-offer > div:first-child {
    width: 100%;
    text-align: center;
    background: none;
    height: 200px;
    overflow: hidden;
    margin-top: 0;
  }
  .cc .act-offer > div:first-child img {
    max-width: 400px;
  }
  .cc .act-offer > div:last-child {
    position: static;
    padding-top: 0px;
  }
  .cc .act-offer > div:first-child:before,
.cc .act-offer > div:first-child:after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 50%;
  }
  .cc .act-offer > div:first-child:before {
    right: 50%;
    border-bottom: 10px solid #fff;
    border-right: 10px solid transparent;
  }
  .cc .act-offer > div:first-child:after {
    left: 50%;
    border-bottom: 10px solid #fff;
    border-left: 10px solid transparent;
    border-right: 0;
  }
  .cc .act-offer h2 {
    left: 0;
    top: 0;
    width: 100%;
  }
  .cc .act-offer h2 + p {
    padding-top: 10px;
    padding-top: 0.625rem;
  }
  .cc .act-offer p:last-child {
    padding-left: 28px;
    padding-right: 28px;
  }
  .cc .act-offer p:last-child {
    padding-bottom: 28px;
  }
  .cc .act-offer .btn {
    float: none;
    max-width: none;
    display: inline-block;
  }
  /*cas du bloc promo sans visuels*/
  .cc .act-offer > div:first-child:last-child {
    text-align: left;
    height: auto;
  }
  /*
  Surcharges gabarits
  ========================== */
  /*
  	#ei_tpl_fullsite #ei_tpl_footer #ei_tpl_footer2.footer_cc > ul > li{
  		width: 50%;
  	}

  	#ei_tpl_fullsite #ei_tpl_footer #ei_tpl_footer2.footer_cc > ul > li > ul > li{
  		padding-left:10px;
  		padding-right:10px;
  	}*/
}
@media (max-width: 420px) {
  .cc {
    padding-left: 0;
    padding-right: 0;
  }
  .cc .act-video, .cc .act-offer, .cc .link-action, .cc .redac, .cc .products-teaser, .cc .faqs, .cc .guides-teaser, .cc .needs-teasers, .cc .news-teasers, .cc .univers-teasers, .cc .body.ctxt-faq {
    margin-left: 0;
    margin-right: 0;
    /*@include rem(padding,$cmrPadding 0);*/
  }
  .cc [class^=header-] {
    margin-left: 0;
    margin-right: 0;
  }
  /*======= Header ==========*/
  .cc .header-img-aplat > div {
    padding: 100px 0 0 0;
  }
  .cc [class^=header-] > ul {
    flex-direction: column;
    align-items: stretch;
  }
  .cc [class^=header-] > ul li a:after {
    content: "";
  }
  .cc [class^=header-] > ul li a {
    text-align: left;
    display: block;
  }
  .cc .redac {
    padding-left: 12px;
    padding-left: 0.75rem;
    padding-right: 12px;
    padding-right: 0.75rem;
  }
  /*========================== */
  /*
  header-img-left
  ========================== */
  .oldie .cc .header-img-left > .grid > .grid-2-3, .cc .header-img-left > .grid > .grid-2-3, .oldie .cc .header-img-left > .grid > .grid-1-3, .cc .header-img-left > .grid > .grid-1-3 {
    width: 100%;
    flex: 1 1 100%;
  }
  .cc .header-img-left .grid > div:first-child {
    height: 150px;
  }
  .cc .header-img-left .grid > div:first-child img {
    left: 0;
    margin-left: 0;
    top: -25px;
  }
  /*
  Surcharges gabarits
  ========================== */
  /*
  	#ei_tpl_fullsite #ei_tpl_footer #ei_tpl_footer1.footer_cc {
  	    border-bottom: 1px solid #8B8988;
  	    padding-bottom: 10px;
  	    margin-bottom: 20px;
  	}
  	#ei_tpl_fullsite #ei_tpl_footer #ei_tpl_footer1.footer_cc ul{
  		display: block;
  	}
  	#ei_tpl_fullsite #ei_tpl_footer #ei_tpl_footer1.footer_cc ul li{
  		width: auto;
  		min-width: 150px;
  		margin-bottom: 10px;
  		height: auto;
  		margin-left: 30px;
  	}

  	#ei_tpl_fullsite #ei_tpl_footer #ei_tpl_footer1.footer_cc ul li{
  		display: block;
  		float: none;

  	}
  	#ei_tpl_fullsite #ei_tpl_footer #ei_tpl_footer1.footer_cc li a::before{
  		display: inline;
  		margin-right: 8px;
  	}
  	#ei_tpl_fullsite #ei_tpl_footer #ei_tpl_footer1.footer_cc li a
  	{
  		text-align: left;
  		padding-left: 0;
  		width: 200px;
  		margin: 0;
  	}
  	#ei_tpl_footer #ei_tpl_footer2.footer_cc #ei_tpl_footer_search > form{
  	max-width: 300px
  	}

  	#ei_tpl_fullsite #ei_tpl_footer #ei_tpl_footer2.footer_cc > ul > li{
  		width: 100%;
  	}*/
  /*
  Ariane
  ========================================================================== */
  #ei_tpl_ariane {
    display: none;
  }
}
/**********************************************************************************************/
/*
.hide,
.hidden {
	display: none !important;
}
.show {
	display: block !important;
}
.invisible {
	visibility: hidden;
}
.text-hide {
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
}
*/
/* ******************** Visible & Hidden ******************** */
/*
SmartPhone :	max. 650px-1
NotSmartPhone :	min: 650px
Tiny :			max. 420px-1
Mini :			entre	min: 420px	&	max: 650px-1
Small :			entre	min: 650px	&	max: 768px-1
Medium :		entre	min: 768px	&	max: 980px-1
Large :			entre	min: 980px	&	max: 1024px-1
Huge :			entre	min: 1024px	&	max: 1280px-1
Giant :			min: 1280px

visible-tiny visible-mini visible-small visible-medium visible-large visible-huge visible-giant
*/
/* FX- > Danny
	A discuter ensemble, utilser le terme Smartphone ne me semble pas une bonne habitude, il faut dès maintenant réfléchir en taille et uniquement en taille...
	là on se retrouve avec 2 notions
	Proposition de remplacement :
		VScreen
		HScreen

*/
.visible-SmartPhone, .visible-SmartPhone-block, .visible-SmartPhone-inline, .visible-SmartPhone-inline-block,
.visible-NotSmartPhone, .visible-NotSmartPhone-block, .visible-NotSmartPhone-inline, .visible-NotSmartPhone-inline-block,
.visible-tiny, .visible-tiny-block, .visible-tiny-inline, .visible-tiny-inline-block,
.visible-mini, .visible-mini-block, .visible-mini-inline, .visible-mini-inline-block,
.visible-small, .visible-small-block, .visible-small-inline, .visible-small-inline-block,
.visible-medium, .visible-medium-block, .visible-medium-inline, .visible-medium-inline-block,
.visible-large, .visible-large-block, .visible-large-inline, .visible-large-inline-block,
.visible-huge, .visible-huge-block, .visible-huge-inline, .visible-huge-inline-block,
.visible-giant, .visible-giant-block, .visible-giant-inline, .visible-giant-inline-block {
  display: none !important;
}

@media (max-width: 649px) {
  .hidden-SmartPhone {
    display: none !important;
  }
  .visible-SmartPhone, .visible-SmartPhone-block {
    display: block !important;
  }
  .visible-SmartPhone-inline {
    display: inline !important;
  }
  .visible-SmartPhone-inline-block {
    display: inline-block !important;
  }
  table.visible-SmartPhone {
    display: table !important;
  }
  tr.visible-SmartPhone {
    display: table-row !important;
  }
  th.visible-SmartPhone, td.visible-SmartPhone {
    display: table-cell !important;
  }
}
@media (min-width: 650px) {
  .hidden-NotSmartPhone {
    display: none !important;
  }
  .visible-NotSmartPhone, .visible-NotSmartPhone-block {
    display: block !important;
  }
  .visible-NotSmartPhone-inline {
    display: inline !important;
  }
  .visible-NotSmartPhone-inline-block {
    display: inline-block !important;
  }
  table.visible-NotSmartPhone {
    display: table !important;
  }
  tr.visible-NotSmartPhone {
    display: table-row !important;
  }
  th.visible-NotSmartPhone, td.visible-NotSmartPhone {
    display: table-cell !important;
  }
}
@media (max-width: 419px) {
  .hidden-tiny {
    display: none !important;
  }
  .visible-tiny, .visible-tiny-block {
    display: block !important;
  }
  .visible-tiny-inline {
    display: inline !important;
  }
  .visible-tiny-inline-block {
    display: inline-block !important;
  }
  table.visible-tiny {
    display: table !important;
  }
  tr.visible-tiny {
    display: table-row !important;
  }
  th.visible-tiny, td.visible-tiny {
    display: table-cell !important;
  }
}
@media (min-width: 420px) and (max-width: 649px) {
  .hidden-mini {
    display: none !important;
  }
  .visible-mini, .visible-mini-block {
    display: block !important;
  }
  .visible-mini-inline {
    display: inline !important;
  }
  .visible-mini-inline-block {
    display: inline-block !important;
  }
  table.visible-mini {
    display: table !important;
  }
  tr.visible-mini {
    display: table-row !important;
  }
  th.visible-mini, td.visible-mini {
    display: table-cell !important;
  }
}
@media (min-width: 650px) and (max-width: 767px) {
  .hidden-small {
    display: none !important;
  }
  .visible-small, .visible-small-block {
    display: block !important;
  }
  .visible-small-inline {
    display: inline !important;
  }
  .visible-small-inline-block {
    display: inline-block !important;
  }
  table.visible-small {
    display: table !important;
  }
  tr.visible-small {
    display: table-row !important;
  }
  th.visible-small, td.visible-small {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .hidden-medium {
    display: none !important;
  }
  .visible-medium, .visible-medium-block {
    display: block !important;
  }
  .visible-medium-inline {
    display: inline !important;
  }
  .visible-medium-inline-block {
    display: inline-block !important;
  }
  table.visible-medium {
    display: table !important;
  }
  tr.visible-medium {
    display: table-row !important;
  }
  th.visible-medium, td.visible-medium {
    display: table-cell !important;
  }
}
@media (min-width: 980px) and (max-width: 1023px) {
  .hidden-large {
    display: none !important;
  }
  .visible-large, .visible-large-block {
    display: block !important;
  }
  .visible-large-inline {
    display: inline !important;
  }
  .visible-large-inline-block {
    display: inline-block !important;
  }
  table.visible-large {
    display: table !important;
  }
  tr.visible-large {
    display: table-row !important;
  }
  th.visible-large, td.visible-large {
    display: table-cell !important;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .hidden-huge {
    display: none !important;
  }
  .visible-huge, .visible-huge-block {
    display: block !important;
  }
  .visible-huge-inline {
    display: inline !important;
  }
  .visible-huge-inline-block {
    display: inline-block !important;
  }
  table.visible-huge {
    display: table !important;
  }
  tr.visible-huge {
    display: table-row !important;
  }
  th.visible-huge, td.visible-huge {
    display: table-cell !important;
  }
}
@media (min-width: 1280px) {
  .hidden-giant {
    display: none !important;
  }
  .visible-giant, .visible-giant-block {
    display: block !important;
  }
  .visible-giant-inline {
    display: inline !important;
  }
  .visible-giant-inline-block {
    display: inline-block !important;
  }
  table.visible-giant {
    display: table !important;
  }
  tr.visible-giant {
    display: table-row !important;
  }
  th.visible-giant, td.visible-giant {
    display: table-cell !important;
  }
}
/* ******************** PRINT ******************** */
.visible-print, .visible-print-block, .visible-print-inline, .visible-print-inline-block {
  display: none !important;
}

@media print {
  .hidden-print {
    display: none !important;
  }
  .visible-print, .visible-print-block {
    display: block !important;
  }
  .visible-print-inline {
    display: inline !important;
  }
  .visible-print-inline-block {
    display: inline-block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print, td.visible-print {
    display: table-cell !important;
  }
}
/*********************************************************************************************

/*********************************************************************************************

9.  slider

*********************************************************************************************/
/*********************************************************************************************

9.  slider

*********************************************************************************************/
.cc .sliderH, .cc .sliderV {
  display: none !important;
}

@media (max-width: 767px) {
  .cc .sliderV {
    display: block !important;
  }
}
@media (min-width: 768px) {
  .cc .sliderH {
    display: block !important;
  }
}
.cc .slider,
.cc .sliderH,
.cc .sliderV,
.cc .slider .slides,
.cc .sliderH .slides,
.cc .sliderV .slides {
  position: relative;
  top: 0px;
  left: 0px;
  width: 1200px;
  height: 300px;
  max-width: 1200px;
  max-height: 300px;
  overflow: hidden;
}

.cc .sliderH, .cc .sliderH .slides {
  width: 1200px;
  height: 300px;
  max-width: 1200px;
  max-height: 300px;
}

.cc .sliderV, .cc .sliderV .slides {
  width: 768px;
  height: 500px;
  max-width: 768px;
  max-height: 500px;
}

.cc .slider .slides,
.cc .sliderH .slides,
.cc .sliderV .slides {
  /*cursor: move;*/
}

.cc .slider .loading,
.cc .sliderH .loading,
.cc .sliderV .loading {
  position: absolute;
  top: 0px;
  left: 0px;
}

.cc .slider .loading .mask,
.cc .sliderH .loading .mask,
.cc .sliderV .loading .mask {
  /* filter: alpha(opacity=70); */
  opacity: 0.7;
  position: absolute;
  display: block;
  background-color: #000000;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.cc .slider .loading .anim,
.cc .sliderH .loading .anim,
.cc .sliderV .loading .anim {
  position: absolute;
  display: block;
  background: url(/fr/vitrine/visuels/accueil/homepage/loading.gif) no-repeat center center;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.cc .slider .slider-bullet,
.cc .sliderH .slider-bullet,
.cc .sliderV .slider-bullet {
  position: absolute;
  bottom: 16px;
}

.slider-bullet div, .slider-bullet div:hover, .slider-bullet .av {
  position: absolute;
  /* size of bullet elment */
  width: 17px;
  height: 17px;
  background: url(/fr/vitrine/visuels/accueil/homepage/b21.png) no-repeat;
  overflow: hidden;
  cursor: pointer;
}

.slider-bullet div {
  background-position: -7px -7px;
}

.slider-bullet div:hover, .slider-bullet .av:hover {
  background-position: -37px -7px;
}

.slider-bullet .av {
  background-position: -67px -7px;
}

.slider-bullet .dn, .slider-bullet .dn:hover {
  background-position: -97px -7px;
}

.slider-arrow-l, .slider-arrow-r {
  display: block;
  position: absolute;
  /* size of arrow element */
  width: 32px;
  height: 50px;
  cursor: pointer;
  background: url(/fr/vitrine/visuels/accueil/homepage/a21.png) no-repeat;
  overflow: hidden;
}

.slider-arrow-l {
  background-position: -11px -35px;
  left: 1.1em;
}

.slider-arrow-r {
  background-position: -78px -35px;
  right: 1.1em;
}

.slider-arrow-l:hover {
  background-position: -131px -35px;
}

.slider-arrow-r:hover {
  background-position: -198px -35px;
}

.slider-arrow-l.slider-arrow-ldn {
  background-position: -250px -35px;
}

.slider-arrow-r.slider-arrow-rdn {
  background-position: -317px -35px;
}

/*********************************************************************************************

10.  Pages

*********************************************************************************************/
/*********************************************************************************************

Project : Styles vitrine I14 : Page caisse : Rogi
Version: 1.0
Author: FX Lair

**********************************************************************************************

Notes:

Lasts Modifs :

**********************************************************************************************

Summary

All styles must be prefix with the ".cc" class
**********************************************************************************************/
.rogi {
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-bottom: 0;
  margin-left: -28px;
  margin-left: -1.75rem;
  margin-right: -28px;
  margin-right: -1.75rem;
  padding-left: 28px;
  padding-left: 1.75rem;
  padding-right: 28px;
  padding-right: 1.75rem;
}

.rogi > .a_blocappli {
  margin: 0;
}

.rogi .a_blocfctl h2 {
  margin-left: 20px;
  position: relative;
}

.rogi .a_blocfctl h2::after {
  position: absolute;
  content: "__";
  bottom: 3px;
  bottom: 0.1875rem;
  padding-left: 10px;
  padding-left: 0.625rem;
  color: #fff;
}

.rogi .a_blocappli .titre3 {
  font-size: 1.2em;
}

.rogi .a_blocfctl ul {
  margin-left: 30px;
}

/*********************************************************************************************

Project : Styles vitrine I14 : Page Accueil
Version: 1.0
Author: BORDENAVE Danny

**********************************************************************************************

Notes:

Lasts Modifs :

**********************************************************************************************

Summary

All styles must be prefix with the ".cc" class
**********************************************************************************************/
/*==========================================================================
.  news-teasers
========================================================================== */
.cc .news-teasers h2 {
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 28px;
  line-height: 1.75rem;
}

/*
.cc .news-teasers .widget-info .content {
	@include rem(padding-top, 5px);
}
.cc .news-teasers .widget-info .content h3 {
	@include rem(padding-top, 5px);
	@include rem(padding-bottom, 0px);
	color: $MineShaft;
	font-weight: 300;
	@include rem(line-height, 21px);
}
.cc .news-teasers .widget-info .content p {
	@include rem(padding-bottom, 5px);
	@include rem(line-height, 18px);
}
.cc .news-teasers .widget-info .img img {
	width: 100%;
}
*/
.cc .news-teasers.redac .mixed-font-weight,
.cc .univers-teasers.redac .mixed-font-weight {
  margin-top: -7px;
  margin-top: -0.4375rem;
  margin-bottom: -7px;
  margin-bottom: -0.4375rem;
}

/*==========================================================================
.  newsletter-inscription, parrainage
========================================================================== */
.cc .newsletter-inscription,
.cc .parrainage {
  background-color: #fff;
  border: 1px solid #d2d0cc;
  line-height: initial;
  position: relative;
  padding: 10px 20px 14px 35px;
  padding: 0.625rem 1.25rem 0.875rem 2.1875rem;
}

.cc .newsletter-inscription::before,
.cc .parrainage::before {
  background: #3f8bd2 url(/partage/fr/CC/CM-I14/styles/img/picto-cm.png) -50px center no-repeat;
  background-image: url(/partage/fr/CC/CM-I14/styles/img/picto-cm.svg), none;
  background-size: 120px;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 15px;
}

/*,.cc .newsletter-inscription*/
.cc .parrainage {
  padding: 5px 20px 5px 35px;
  padding: 0.3125rem 1.25rem 0.3125rem 2.1875rem;
}

/*,.cc .newsletter-inscription a*/
.cc .parrainage a {
  color: #262626;
  display: block;
  font-weight: 600;
  position: relative;
  text-decoration: none;
}

/*,.cc .newsletter-inscription a:hover*/
.cc .parrainage a:hover {
  color: #03b2f3;
}

/*,.cc .newsletter-inscription a::after*/
.cc .parrainage a::after {
  content: " \f009a";
  /* position: absolute;
  right: 20px;
  top: 50%; */
  display: inline;
  font-family: "fts_picto";
  line-height: 8px;
  margin-top: -1px;
  vertical-align: middle;
  /*IE bug l'alignement vertical si on passe cette valkeur en rem*/
  font-size: 8px;
  font-size: 0.5rem;
}

.cc .newsletter-inscription h3 {
  padding: 0;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 18px;
  line-height: 1.125rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  color: #262626;
  display: block;
  font-weight: 600;
}

.cc .newsletter-inscription h3 + div {
  position: relative;
}

.cc .newsletter-inscription input {
  border: 1px solid #d2d0cc;
  box-sizing: border-box;
  color: #999;
  font-weight: 300;
  transition: all 0.3s linear;
  width: 100%;
  height: 38px;
  height: 2.375rem;
  padding: 5px 16px 4px 16px;
  padding: 0.3125rem 1rem 0.25rem 1rem;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 21px;
  line-height: 1.3125rem;
}

.cc .newsletter-inscription input[type=submit] {
  background-color: #fff;
  border: 0 solid transparent;
  border-left: 1px solid #f2efed;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  height: 36px;
  height: 2.25rem;
  margin: 1px;
  margin: 0.0625rem;
  width: 50px;
  width: 3.125rem;
}

/*==========================================================================
.  univers-teasers
========================================================================== */
.cc .projets h2 {
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 28px;
  line-height: 1.75rem;
}

.cc .grid .univers-teasers {
  align-items: top;
  background-color: #fff;
  border: 1px solid #d2d0cc;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  line-height: initial;
  margin: 0;
  position: relative;
  width: 100%;
  padding: 16px;
  padding: 1rem;
}

.cc .univers-teasers li {
  display: block;
  list-style: none;
  text-align: center;
}

.cc .univers-teasers li::before {
  color: #999;
  content: "\f054c";
  display: block;
  font-family: "fts_picto";
  line-height: 60px;
  width: 100%;
  font-size: 50px;
  font-size: 3.125rem;
  /*en rem ie bug*/
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  /* transition: font-size .2s linear; */
}

.cc .univers-teasers li a {
  color: #3f8bd2;
  display: block;
  font-weight: 600;
  margin: auto;
  text-decoration: none;
  transition: color 0.2s linear;
  width: 100%;
  font-size: 15px;
  font-size: 0.9375rem;
  /*white-space: nowrap;*/
}

.cc .univers-teasers li a::after {
  content: " \f009a";
  font-family: "fts_picto";
  font-size: 11px;
  font-size: 0.6875rem;
  padding-left: 5px;
  padding-left: 0.3125rem;
}

.cc .univers-teasers li:hover::before {
  font-size: 55px;
  font-size: 3.4375rem;
}

.cc .univers-teasers li:hover a {
  color: #03b2f3;
}

.cc .univers-teasers li:not(:first-child) {
  border-left: 1px solid #d2d0cc;
}

@media (max-width: 1024px) {
  .cc .univers-teasers li:not(:first-child) {
    border-left: 0 solid #d2d0cc;
  }
}
.cc .univers-teasers li.ut_Auto::before {
  content: "\f0757";
}

.cc .univers-teasers li.ut_Maison::before {
  content: "\f0548";
}

.cc .univers-teasers li.ut_Famille::before {
  content: "\f013c";
}

.cc .univers-teasers li.ut_Retraite::before {
  content: "\f057f";
}

.cc .univers-teasers li.ut_Etudes::before {
  content: "\f053d";
}

.cc .univers-teasers li.ut_Musique::before {
  content: "\f057e";
}

.cc .univers-teasers li.ut_VieActive::before {
  content: "\f074f";
}

.cc .univers-teasers li.ut_AgriInstallation::before {
  content: "\f000f";
}

.cc .univers-teasers li.ut_AgriInternationnal::before {
  content: "\f0010";
}

.cc .univers-teasers li.ut_AgriMateriel::before {
  content: "\f0011";
}

.cc .univers-teasers li.ut_AgriRisque::before {
  content: "\f0012";
}

.cc .univers-teasers li.ut_ProEntreprendre::before {
  content: "\f06c2";
}

.cc .univers-teasers li.ut_ProEquipement::before {
  content: "\f06c3";
}

.cc .univers-teasers li.ut_ProTresorerie::before {
  content: "\f06c4";
}

.cc .univers-teasers li.ut_ProInternational::before {
  content: "\f076e";
}

.cc .projets .guide-teaser {
  margin: 0;
}

.cc .projets .bloc_menu {
  background-color: #fff;
  border: 1px solid #d2d0cc;
  margin: 0;
  position: relative;
}

/* .cc .projets .guide-teaser img, .cc .projets .bloc_menu img {
	width: 100%;
	height: auto;
} */
.cc .projets .bloc_menu h3 {
  color: #3f8bd2;
}

.cc .projets .bloc_menu ul {
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}

.cc .projets .bloc_menu ul a.gt {
  color: #666;
  transition: color 0.2s linear;
}

.cc .projets .bloc_menu ul a.gt:hover {
  color: #03b2f3;
}

.cc .projets .bloc_menu a[class*=bt-G]::before {
  content: "\f054c";
  font-family: "fts_picto";
  transition: color 0.2s linear;
  vertical-align: middle;
  padding-right: 7px;
  padding-right: 0.4375rem;
}

.cc .projets .bloc_menu a.bt-GDevis::before {
  content: "\f00f7";
}

.cc .projets .bloc_menu a.bt-GSimul::before {
  content: "\f0074";
}

/*==========================================================================
	Accueil
========================================================================== */
.cc .accueil .header-img > .grid {
  background: url(/fr/vitrine/visuels/accueil/homepage/header-accueil-anonyme.jpg) center top;
  background-size: cover !important;
}

.cc .accueil .header-img > .grid .grid-1-1 {
  background: rgba(0, 0, 0, 0);
  background: linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 60%, rgb(0, 0, 0) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(60%, rgba(0, 0, 0, 0)), color-stop(100%, rgb(0, 0, 0)));
  background: linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 60%, rgb(0, 0, 0) 100%);
  background: linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 60%, rgb(0, 0, 0) 100%);
  background: linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 60%, rgb(0, 0, 0) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 60%, rgb(0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
  min-height: 340px;
  /* Old Browsers */
  /* FF3.6+ */
  /* Chrome, Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE 10+ */
  /* W3C */
  /* IE6-9 */
}

.cc .accueil .header-img > .grid .grid-1-1 h1 {
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}

@media (max-width: 768px) {
  .cc .accueil .header-img > .grid {
    min-height: 300px;
  }
}
@media (max-width: 420px) {
  .cc .accueil .header-img > .grid {
    min-height: 200px;
  }
}
/*==========================================================================
	Accueil Aiguillage
========================================================================== */
.cc .aiguillage .header-img > .grid {
  background: #fff url(/fr/vitrine/visuels/accueil/homepage/picto-cm.png) -210px center no-repeat;
  background-color: #fff;
  background-image: url(/fr/vitrine/visuels/accueil/homepage/picto-cm.svg), none;
  background-size: 36%;
}

.cc .aiguillage .header-img h1 {
  font-size: 32px;
  font-size: 2rem;
  line-height: 32px;
  line-height: 2rem;
  text-align: left;
}

.cc .aiguillage .header-img a {
  position: relative;
}

.cc .aiguillage .header-img a span {
  color: #262626;
  display: block;
  font-weight: 600;
  position: absolute;
  width: 100%;
  z-index: 1;
  top: 10px;
  top: 0.625rem;
  font-size: 15px;
  font-size: 0.9375rem;
}

.cc .aiguillage .header-img a:hover span {
  color: #262626;
}

.cc .aiguillage .redac.espaces h2 {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 32px;
  line-height: 2rem;
  text-align: right;
  margin-top: -9px;
  margin-top: -0.5625rem;
}

.cc .aiguillage .redac.espaces h2 strong {
  display: inline-block;
}

.cc .aiguillage .redac.espaces h3 {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 18px;
  line-height: 1.125rem;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
}

.cc .aiguillage .redac.espaces p {
  /* @include rem(font-size, 12px); */
  line-height: 15px;
  line-height: 0.9375rem;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
}

.cc .aiguillage .redac.info {
  background-color: #d8edff;
}

.cc .aiguillage .redac.info .grow {
  align-items: center;
  justify-content: center;
  padding: 0 15%;
  text-align: center;
}

.cc .aiguillage .redac.info [class^=grid] {
  padding: 0;
}

/*==========================================================================
	Accueil Aiguillage rollover zoom
========================================================================== */
.cc .aiguillage .header-img .grid-1-5 .grow {
  overflow: hidden;
}

.cc .aiguillage .header-img .grid-1-5 .grow a {
  display: block;
}

.cc .aiguillage .header-img .grid-1-5 .grow a img {
  transform: scale(1.075);
  transition: transform 0.35s linear;
}

.cc .aiguillage .header-img .grid-1-5 .grow a:hover img {
  opacity: 1;
  transform: scale(1);
}

/*==========================================================================
Podium (accueil PART anonyme)
========================================================================== */
.cc .podium img {
  margin-top: 15px;
}

.cc .podium h3 {
  color: #666;
  font-size: 18px;
  font-weight: 800;
  margin-top: 10px;
  text-transform: uppercase;
}

.cc .podium h3 strong {
  color: #000;
  font-weight: 800;
}

.cc .podium h3 + p {
  color: #8f2482;
  font-size: 14px;
  text-align: center;
}

.cc .podium p + p {
  margin-bottom: 10px;
}

/*==========================================================================
	Accueil Aiguillage rollover zoom
========================================================================== */
/* rajout d'une ombre et suppression du margin-top au dessus du header */
/* #ei_tpl_head {
	box-shadow: 0 8px 6px -6px $QuillGray;
}
#ei_tpl_menuPrincipal {
	display: none;
}
#ei_tpl_contener {
	margin: 0px auto 0;
} */
/*
$BpTiny:420px;
$BpMini:650px;
$BpSmall:768px;
$BpMedium:980px;
$BpLarge:1024px;
$BpHuge:1280px;
$BpGiant:2560px;
*/
@media (max-width: 1024px) {
  /*==========================================================================
  Accueil
  ========================================================================== */
  .cc .accueil .projets .grid-2-3,
.cc .accueil .projets .grid-1-3 {
    flex-basis: 50%;
    width: 50%;
  }
  /*	.cc .accueil .guide-teaser .grid-1-2:first-child{
  	max-width: 150px;
  }*/
  .cc .accueil .projets .grid-1-3,
.cc .accueil .projets .grid-1-3 .grid-1-2 {
    align-items: baseline;
  }
  /*==========================================================================
  Univers-teaser
  ========================================================================== */
  .cc .grid .univers-teasers > li {
    flex-basis: 33.3333%;
    width: 33.3333%;
  }
  /*==========================================================================
  Aiguillage
  ========================================================================== */
  .cc .aiguillage .header-img .grid-1-6 {
    flex-basis: 10%;
    width: 10%;
  }
  .cc .aiguillage .header-img .grid-5-6 {
    flex-basis: 90%;
    width: 90%;
  }
  .cc .aiguillage .header-img .grid-1-5 {
    flex-basis: 20%;
    width: 20%;
  }
  .cc .aiguillage .redac.espaces h2 {
    text-align: left;
  }
  .cc .aiguillage .espaces > .grid > .grid-1-2 {
    flex-basis: 50%;
    width: 50%;
  }
  .cc .aiguillage .espaces .grid-1-3,
.cc .aiguillage .espaces .grid-2-3 {
    flex-basis: 100%;
    width: 100%;
  }
  .cc .aiguillage .espaces article .grid-1-2:first-child {
    flex: 1 1 auto;
    width: 33.33333%;
  }
  .cc .aiguillage .espaces article .grid-1-2:last-child {
    flex: 1 1 auto;
    width: 66.66667%;
  }
  .cc .aiguillage .info .grid-1-3 {
    flex: 1 1 auto;
    width: 33.33333%;
  }
}
@media (max-width: 980px) {
  /*==========================================================================
  Accueil
  ========================================================================== */
  /*	.cc .accueil .guide-teaser .grid-1-2{
  	width: 50%;
  	flex-basis:50%;
  }*/
  /*==========================================================================
  Univers-teaser
  ========================================================================== */
  /*==========================================================================
  Aiguillage
  ========================================================================== */
  .cc .aiguillage .header-img .grid-1-6 {
    display: none;
  }
  .cc .aiguillage .header-img .grid-5-6 {
    flex-basis: 100%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  /*==========================================================================
  Accueil
  ========================================================================== */
  .cc .accueil .projets .grid-2-3,
.cc .accueil .projets .grid-1-3 {
    flex-basis: 100%;
    width: 100%;
  }
  /*==========================================================================
  Aiguillage
  ========================================================================== */
  .cc .aiguillage .header-img .grid-1-5 {
    flex-basis: 50%;
    width: 50%;
  }
  .cc .aiguillage .header-img a {
    background: #f2efed;
    display: block;
    height: 120px;
    overflow: hidden;
    /*	background: url(/fr/vitrine/visuels/accueil/homepage/header-accueil-anonyme-Particulier.jpg) 0 0 no-repeat;
    background-size: auto 100%;*/
    text-decoration: none;
    z-index: 2;
  }
  .cc .aiguillage .header-img a span {
    padding-left: 140px;
    padding-top: 40px;
    position: relative;
    text-align: left;
  }
  .cc .aiguillage .header-img img.w100 {
    left: 0;
    /*display: none;*/
    position: absolute;
    top: -50px;
    width: 120px;
    z-index: 1;
  }
  .cc .aiguillage .espaces > .grid > .grid-1-2 {
    flex-basis: 100%;
    width: 100%;
  }
  .cc .aiguillage .espaces > .grid > .grid-1-2:last-child {
    padding-top: 28px;
  }
  .cc .aiguillage .espaces article .grid-1-2:first-child {
    flex: 1 1 auto;
    width: 20%;
  }
  /*.cc .aiguillage .espaces article .grid-1-2:first-child img{
  	display: none;
  }*/
  .cc .aiguillage .espaces article .grid-1-2:last-child {
    flex: 1 1 auto;
    width: 80%;
  }
  .cc .grid .univers-teasers {
    flex-wrap: nowrap;
  }
}
@media (max-width: 650px) {
  /*==========================================================================
  Accueil
  ========================================================================== */
  .cc .univers-teasers li a {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
    width: 120px;
  }
  .cc .univers-teasers li::before {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    width: 80px;
    width: 5rem;
  }
  /*==========================================================================
  Univers-teaser
  ========================================================================== */
  .cc .grid .univers-teasers {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .cc .grid .univers-teasers > li {
    flex: 1 1 50%;
    max-width: 50%;
    min-width: 205px;
    padding: 0;
  }
  /*==========================================================================
  Aiguillage
  ========================================================================== */
  .cc .aiguillage .header-img .grid-1-5 {
    flex-basis: 100%;
    width: 100%;
  }
  .cc .aiguillage .header-img a span {
    font-size: 20px;
    font-size: 1.25rem;
    padding-left: 150px;
    padding-top: 40px;
    text-align: left;
  }
  .cc .aiguillage .info .grid-1-3 {
    flex: 1 1 auto;
    width: 100%;
  }
  .cc .aiguillage .info .grid-1-3 img {
    height: 120px;
    width: auto;
  }
}
@media (max-width: 550px) {
  .cc .accueil .projets .grid-2-3,
.cc .accueil .projets .grid-1-3 {
    flex-basis: 100%;
    width: 100%;
  }
}
@media (max-width: 420px) {
  /*==========================================================================
  Accueil
  ========================================================================== */
  /*==========================================================================
  Aiguillage
  ========================================================================== */
  .cc .aiguillage .header-img a {
    height: 90px;
  }
  .cc .aiguillage .header-img img.w100 {
    width: 100px;
  }
  .cc .aiguillage .header-img a span {
    padding-left: 150px;
    padding-top: 25px;
  }
  .cc .aiguillage .espaces article .grid-1-2:first-child {
    padding-right: 0;
  }
  .cc .grid .univers-teasers > li {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 0;
    width: 100%;
  }
}
/*********************************************************************************************

Project : Styles vitrine I14 : CM auto
Version: 1.0
Author: FX Lair

**********************************************************************************************

Lasts Modifs :

**********************************************************************************************

Summary
0.  Liste


All styles must be prefix with the ".cc" class
**********************************************************************************************/
/*==========================================================================
0.  Liste
========================================================================== */
.cc .header-img-1-2 > .grid > .grid-1-1 {
  background-color: #fff;
}

.cc .cm-autos-list > div:last-child {
  border-bottom: 1px solid #d2d0cc;
  margin-left: 12px;
  margin-left: 0.75rem;
  margin-right: 12px;
  margin-right: 0.75rem;
  padding-left: 12px;
  padding-left: 0.75rem;
  padding-right: 12px;
  padding-right: 0.75rem;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
}

.cc .cm-autos-list:last-child > div:last-child {
  border-bottom: 0;
}

.cc h2 + .cm-autos-list {
  padding-top: 0;
}

.cc .cm-autos-list h3 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 300;
}

.cc .cm-autos-list h3 span {
  font-size: 18px;
  font-size: 1.125rem;
  padding-left: 12px;
  padding-left: 0.75rem;
  color: #666;
}

.cc .cm-autos-list .btn {
  margin-top: 12px;
  margin-top: 0.75rem;
}

.cc .cm-autos-list .grid-2-5 {
  flex-wrap: wrap;
}

.cc .cm-autos-list .grid-2-5 img {
  margin-right: 24px;
}

/*.cc .cm-autos-list .grid-2-5 strong,.cc .cm-autos-list .grid-2-5 span,.cc .cm-autos-list .grid-2-5 s{
	display: block;
}*/
.cc .cm-autos-list .grid-2-5 span {
  display: block;
}

.cc .cm-autos-list .grid-2-5 span {
  /*@include rem(font-size, 15px);*/
  color: #262626;
}

.cc .cm-autos-list .grid-2-5 strong,
.cc .cm-autos-list .grid-3-10 strong {
  font-size: 18px;
  font-size: 1.125rem;
  color: #4170a9;
}

.cc .cm-autos-list .grid-2-5 span + span strong {
  font-size: 15px;
  font-size: 0.9375rem;
}

.cc .cm-autos-list .grid-2-5 strong {
  padding-top: 5px;
  padding-top: 0.3125rem;
}

.cc .cm-autos-list .no-padding-top {
  margin-bottom: 12px;
  padding-bottom: 0;
}

.cc .cm-autos-list .grid-3-10 {
  border-left: 1px solid #d2d0cc;
}

.cc .cm-autos-list .grid-3-10 span {
  display: block;
}

.cc .cm-autos-list .grid-3-10 a,
.cc .cm-autos-list .grid-3-10 i {
  font-weight: bold;
}

.cc .cm-autos-list .grid-3-10 ul li {
  font-size: 11px;
  font-size: 0.6875rem;
  color: #262626;
}

.cc .cm-autos-list > div:last-child {
  text-align: right;
}

.cc .cm-autos-list > div:last-child p {
  text-align: left;
}

.cc .cm-autos-list > div:last-child a {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #999;
  text-decoration: none;
}

.cc .cm-autos-list > div:last-child a::after {
  content: "$glyphe_petit_chevron_bas";
  display: inline-block;
  font-family: "fts_picto";
  padding-left: 4px;
}

.cc .cm-autos-list > div:last-child a.expanded::after {
  content: "$glyphe_petit_chevron_haut";
}

/*
$BpTiny:420px;
$BpMini:650px;
$BpSmall:768px;
$BpMedium:980px;
$BpLarge:1024px;
$BpHuge:1280px;
$BpGiant:2560px;
*/
@media (max-width: 1024px) {
  .cc .cm-autos-list > div.grid-3-10 + .grid-3-10 {
    border-left: none;
  }
}
@media (max-width: 650px) {
  .cc .cm-autos-list > div {
    border-left: none;
  }
}
td {
  vertical-align: middle;
}

/*div.a_blocappli p.a_titre1._c1{
	font-size: 2em;
}

div.i_blocrecherche._c1 .a_blocfctltitre{
	display: none;
}

div.i_blocrecherche._c1 ._c1.lister{
	max-width: 860px;
	margin: auto !important;
}

div.i_blocrecherche._c1 fieldset{
	background-color: #fff;
	max-width: 860px;
	margin: auto;
	padding-top: 0;
	padding-left: 0;
}

div.i_blocrecherche._c1 fieldset table{
	width: 100%;
}

div.i_blocrecherche._c1 fieldset table td{
	padding: 0;
}

div.i_blocrecherche._c1 fieldset table td+td{
	width: 35%;
	text-align: left;
	padding-left: 30px;
}

div.i_blocrecherche._c1 fieldset table .dw_ac{
	width: 100%;
}

div.i_blocrecherche._c1 fieldset table .dw_ac input{
	padding: 6px;
}

div.blocpaginb #C:P:B1{
	content: $glyphe_next_border;
}

div.bloccom{
	padding-left: 25px;
}

span.titre_srch{
	display: block;
	max-width: 860px;
	margin: auto;
}

div.rec p:first-child{
	margin-top: 20px;
}

div.a_blocappli div.rec a.suite{
	padding-left: 0;
	font-size: 1.3em;
}

div.rec > p > a.suite::before{
	content: "";
}
*/
/*********************************************************************************************

11.  Cartes

*********************************************************************************************/
.cc .carte {
  display: block;
  /*position: relative; */
  margin: 0 auto;
  max-width: 700px;
  max-height: 700px;
}
.cc .carte [text-anchor=end] {
  display: none;
}

.cc .carte path {
  z-index: 5000;
}

.cc [id^=-CM-I15-MAP-] {
  position: relative;
}

.cc .highcharts-tooltip text {
  padding: "5px 10px" !important;
}

.cc .encart {
  position: absolute;
  bottom: 0;
  max-width: 300px;
  padding: 15px;
  opacity: 0;
  color: white;
  z-index: -1;
}

.cc .encart.show {
  transition: background 0.5s ease, opacity 0.5s ease-in;
  background: rgb(211, 84, 90);
  opacity: 1;
  z-index: 50;
}

.cc .encart.hide {
  transition: background 4s ease-in, opacity 4s ease-in, z-index 4s ease-in;
  background: rgba(211, 84, 90, 0);
  opacity: 0;
  z-index: -1;
}

.cc p.encart a {
  color: white;
}

/*********************************************************************************************

.  Specifics

********************************************************************************************/
/******************************************************************************************

Project : Styles vitrine I14
Version: 1.0
Author: GH

css pour tuile CM Auto pro

$BpTiny:420px;
$BpMini:650px;
$BpSmall:768px;
$BpMedium:980px;
$BpLarge:1024px;
$BpHuge:1280px;
$BpGiant:2560px;

**********************************************************************************************

Lasts Modifs :

**********************************************************************************************
*/
div.ctxt-news {
  /*margin-left: -28px;
  margin-right: -28px;*/
}
@media (min-width: 1200px) {
  div.ctxt-news {
    margin-left: -28px;
    margin-right: -28px;
  }
}
@media (max-width: 420px) {
  div.ctxt-news {
    margin-left: 28px;
    margin-right: 28px;
  }
}

/*==========================================================================
	Wrap tuile auto
	========================================================================== */
.cc {
  /*
    .badge-eco, .ribbon{
      position: absolute;
      bottom: 5px;
      width: 100%;
    }
    */
}
.cc #offresMoisContainerPro {
  padding-top: 28px;
}
.cc #offresMoisContainerPro h2 {
  font-size: 21px;
  color: #262626;
  font-weight: 700;
}
.cc #tilesContainerPro {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  min-height: 200px;
}
@media (max-width: 1024px) {
  .cc #tilesContainerPro {
    display: block;
  }
}
.cc #tilesContainerPro article {
  flex: 0 1 49%;
  position: relative;
}
@media (max-width: 1024px) {
  .cc #tilesContainerPro article {
    margin-bottom: 28px;
    margin-bottom: 1.75rem;
  }
}
.cc #tilesContainerPro article > div {
  display: flex;
}
@media (max-width: 1024px) {
  .cc #tilesContainerPro article > div {
    padding: 0;
  }
}
@media (max-width: 460px) {
  .cc #tilesContainerPro article > div {
    display: block;
  }
}
.cc #tilesContainerPro .tile_header {
  padding: 25px 7px 25px 25px;
  flex: 0 0 45%;
  max-width: 400px;
}
@media (max-width: 1024px) {
  .cc #tilesContainerPro .tile_header {
    padding: 0;
  }
}
@media (max-width: 460px) {
  .cc #tilesContainerPro .tile_header {
    margin: 0 auto;
  }
}
.cc #tilesContainerPro .tile_footer {
  padding: 20px 15px 25px;
  flex-basis: 65%;
}
.cc #tilesContainerPro .tile_footer h3 {
  padding: 0;
  margin: 3px 0 15px;
  color: #262626;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 16px;
  line-height: 1rem;
}
.cc #tilesContainerPro .tile_footer h3 strong {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 18px;
  line-height: 1.125rem;
  font-weight: 400;
}
.cc #tilesContainerPro .tile_footer h3 br {
  content: "";
  display: block;
  margin-top: 3px;
}
@media (max-width: 460px) {
  .cc #tilesContainerPro .tile_footer {
    padding-top: 0;
  }
}
.cc #tilesContainerPro .tile_footer__action {
  padding-left: 0;
  position: absolute;
  bottom: 0;
  padding-top: 14px;
  padding-top: 0.875rem;
  padding-bottom: 18px;
  padding-bottom: 1.125rem;
}
.cc #tilesContainerPro .tile_footer__action a {
  text-decoration: none;
}
.cc #tilesContainerPro .tile_footer__action a:hover, .cc #tilesContainerPro .tile_footer__action a:focus {
  text-decoration: underline;
}
.cc #tilesContainerPro .tile_footer__action__item {
  padding: 0px 0px 6px;
  padding: 0px 0px 0.375rem;
  line-height: normal;
  font-size: 15px;
  font-size: 0.9375rem;
}
.cc #tilesContainerPro .tile_footer__action__item a::after {
  content: " \f009a";
  position: relative;
  top: 1px;
  display: inline-block;
  padding-left: 10px;
  color: inherit;
  font-size: 10px;
  font-size: 0.625rem;
  font-family: "fts_picto";
}
.cc #tilesContainerPro figure {
  height: 100%;
  margin: 0;
  max-height: none;
  position: relative;
}
.cc #tilesContainerPro figure img {
  width: 100%;
  height: auto;
  border: 1px solid #c5c5c5;
}
.cc #tilesContainerPro p {
  margin: 0;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 17px;
  line-height: 1.0625rem;
  font-weight: 600;
}
.cc #tilesContainerPro p.price {
  color: #666;
  font-weight: 400;
  padding: 0;
}
.cc #tilesContainerPro p.price strong {
  display: block;
  font-weight: 300;
  font-size: 35px;
  font-size: 2.1875rem;
  line-height: 40px;
  line-height: 2.5rem;
}
.cc #tilesContainerPro p.price strong span {
  font-size: 18px;
  font-size: 1.125rem;
}
.cc #tilesContainerPro p.price .soft {
  color: #000;
  display: block;
  padding: 0;
}
@media (max-width: 980px) {
  .cc #tilesContainerPro p.price {
    font-size: 16px;
    font-size: 1rem;
    line-height: 22px;
    line-height: 1.375rem;
  }
}
.cc #tilesContainerPro p.legal {
  font-size: 11px;
  font-size: 0.6875rem;
  border: 0;
  font-weight: 400;
  margin-bottom: 0;
  text-align: left;
  padding: 5px 0 0;
}
.cc #tilesContainerPro.fullwidth {
  display: block;
}
.cc #tilesContainerPro.fullwidth .tile_footer {
  padding: 25px 15px;
}
.cc #tilesContainerPro.fullwidth .tile_footer h3 {
  text-align: left;
}
.cc #tilesContainerPro.fullwidth .tile_footer p.price {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 30px;
  line-height: 1.875rem;
}
.cc #tilesContainerPro.fullwidth .tile_footer p.price span {
  font-size: 30px;
  font-size: 1.875rem;
}
@media (max-width: 980px) {
  .cc #tilesContainerPro.fullwidth .tile_footer p.price {
    font-size: 16px;
    font-size: 1rem;
    line-height: 22px;
    line-height: 1.375rem;
  }
  .cc #tilesContainerPro.fullwidth .tile_footer p.price span {
    font-size: 16px;
    font-size: 1rem;
  }
}
.cc #tilesContainerPro.fullwidth .tile_footer__action__item {
  font-size: 18px;
  font-size: 1.125rem;
}
.cc #tilesContainerPro .clickable:hover a, .cc #tilesContainerPro .clickable:focus a {
  text-decoration: underline;
  color: #03b2f3;
}
.cc .tile {
  background-color: #fff;
}
.cc .act-offer {
  margin-left: 0;
  margin-right: 0;
}
.cc .act-offer #offresMoisContainerPro {
  display: block;
  background-color: #e9e4e1;
  padding-top: 10px;
  margin-left: -28px;
  margin-left: -1.75rem;
  margin-right: -28px;
  margin-right: -1.75rem;
}
@media (max-width: 1024px) {
  .cc .act-offer #offresMoisContainerPro {
    margin-left: 0;
    margin-right: 0;
  }
}
.cc .act-offer #offresMoisContainerPro h2 {
  position: static;
  width: 100%;
  background-color: transparent;
  line-height: 24px;
  line-height: 1.5rem;
  padding-left: 0;
}
@media (max-width: 420px) {
  .cc .act-offer #offresMoisContainerPro h2 {
    padding-left: 28px;
  }
}
.cc .badge-eco--ribbon {
  background-color: transparent;
  border: none;
  overflow: hidden;
  position: absolute;
  z-index: 1;
  text-align: right;
  width: 90px;
  height: 90px;
  right: -1px;
  top: -1px;
}
.cc .badge-eco--ribbon span {
  background: #79a70a;
  background: linear-gradient(#9bc90d 0%, #79a70a 100%);
  box-shadow: 0 3px 10px -5px rgb(0, 0, 0);
  color: #fff;
  display: block;
  font-weight: 700;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(45deg);
  transform: rotate(45deg);
  width: 116px;
  font-size: 11px;
  line-height: 23px;
  top: 22px;
  right: -24px;
}
.cc .badge-eco {
  background-color: transparent;
  border: none;
  /*height: 90px !important;*/
  position: absolute;
  right: -1px;
  text-align: right;
  top: -1px;
  width: auto !important;
  z-index: 1;
}
.cc .badge-eco span {
  display: block;
  width: 110px;
  position: absolute;
  top: 10px;
  right: 10px;
  border: 1px solid white;
  border-radius: 13px;
  background: #79a70a;
  color: #fff;
  font-size: 10px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  padding-right: 18px;
  padding-right: 1.125rem;
}
.cc .badge-eco span::after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  margin-left: 0.375rem;
  margin-right: 6px;
  margin-right: 0.375rem;
  position: absolute;
  top: 2px;
  width: 1rem;
  height: 1rem;
  background: url("../../../../../../../../../../../../partage/fr/CC/CM/styles2020/images/icones/feuille--white.svg") no-repeat center;
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 40px;
  left: 12px;
}

.lds-ellipsis div {
  position: absolute;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3f8bd2;
  -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
          animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 2px;
  -webkit-animation: lds-ellipsis1 0.6s infinite;
          animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 2px;
  -webkit-animation: lds-ellipsis2 0.6s infinite;
          animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 20px;
  -webkit-animation: lds-ellipsis2 0.6s infinite;
          animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 34px;
  -webkit-animation: lds-ellipsis3 0.6s infinite;
          animation: lds-ellipsis3 0.6s infinite;
}

@-webkit-keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@-webkit-keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(16px, 0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(16px, 0);
  }
}

@media (max-width: 490px){
  .sponsor__type {
    select {
      width: 85%;
    }
  }

  .sponsor__wrapper {
    input {
      max-width: 100%!important;
      width: 100%!important;
    }
  }

  .a_blocappli fieldset select {
    width: 85% !important;
  }

  .cc-ei .___Form .a_blocappli .sponsor__wrapper input[type='text'] {
    max-width: 100%!important;
    width: 100%!important;
  }
}

/*********************************************************************************************//*# sourceMappingURL=redac.css.map */
