.help-bar {
    position: fixed;
    width: 1140px;
    height: 5px;
    background: url('../img/help-rwd.png') center center no-repeat;
    width: 100%;
    z-index: 100;
}

/*

    GLOBALS

*/

body {
    color: #000;
    font-family: 'Locator', 'Arial', Sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
}
@media (max-width: 1024px) {
	body {
		font-size: 1.6rem;
	}
}
select {
    background: white url(../img/ico-select.svg);
    background-position: right 0 center;
    background-origin: content-box;
    background-repeat: no-repeat;
}

/*
.button-alt {
    background-color: #e61e2a;
    line-height: 1.5rem;
    padding: 1.1rem 5rem;
}
*/

/* HEADERS height */
.hw-300 {
    font-weight: 300;
    display: block;
}
.hw-400 {
    font-weight: 400;
    display: block;
}
.hw-500 {
    font-weight: 500;
    display: block;
}
.hw-600 {
    font-weight: 600;
    display: block;
}
.hw-700 {
    font-weight: 700;
    display: block;
}

/* HEADERS Classic content */
h1, .h1-like {
    font-size: 3rem;
    line-height: 3.6rem;
    font-family: 'Locator', Arial, sans-serif;
    font-weight: 300;
    text-transform: uppercase;
}
h1.h1 {
    font-size: 3rem;
    line-height: 3.6rem;
    font-family: 'Locator', Arial, sans-serif;
    font-weight: 400;
    margin-bottom: 2rem;
    text-transform: none;
}
h2, .h2-like {
    font-size: 2.8rem;
    line-height: 3rem;
    font-family: 'Locator', Arial, sans-serif;
    font-weight: 400;
    margin-bottom: 2rem;
}
h2 b, .h2-like b, h2 strong, .h2-like strong {
    font-weight: 500;
}
h3, .h3-like {
    font-size: 1.8rem;
    line-height: 2rem;
    font-family: 'Locator', Arial, sans-serif;
    font-weight: 300;
    margin-bottom: 2rem;
}
h4, .h4-like {
    font-size: 1.4rem;
    line-height: 1.8rem;
    font-family: 'Locator', Arial, sans-serif;
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

h1.center,.h1-like.center,
h2.center,.h2-like.center,
h3.center,.h3-like.center,
h4.center,.h4-like.center {
    text-align: center;
}
a.link {
    position: relative;
}
a.link::before {
    content:'';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background: #000;
    transform: scaleX(0);
    transition: transform 0.5s;
}
a.link:hover::before {
    transform: scaleX(1);
    transition: transform 0.2s;
}

/* HEADERS UNDERLINE */
.hline::after {
    content:'';
    display: block;
    margin-top: 13px;
    width: 25px;
    border-top: 2px solid #e61e2a;
}
.hline.center:after {
    margin-left: auto;
    margin-right: auto;
    width: 50px;
}
.bg-white-border-image-full .block-news--subtitle.hline::after {
    display:none;
}
.bg-white-border-image-full .block-news--subtitle.hline {
    margin-bottom: 1rem;
}

@media (max-width: 400px) {
    .hline::after {
		/*
        margin-left: auto;
        margin-right: auto;
        width: 50px;
		*/
    }
    .mcenter {
        display: block;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}

/* HEADERS CENTER */
h1.hcenter, h1-like,
h2.hcenter, h2-like,
h3.hcenter, h3-like,
h4.hcenter, h4-like,
h5.hcenter, h5-like,
h6.hcenter, h6-like {
    text-align: center;
}
h1.hcenter::after, h1-like.hcenter::after,
h2.hcenter::after, h2-like.hcenter::after,
h3.hcenter::after, h3-like.hcenter::after,
h4.hcenter::after, h4-like.hcenter::after,
h5.hcenter::after, h5-like.hcenter::after, 
h6.hcenter::after, h6-like.hcenter::after {
    margin-left: auto;
    margin-right: auto;
}

/* Reset a */
a {
    text-decoration: none;
    color: inherit;
}
a:hover {
    text-decoration: none;
    color: inherit;
}

.opacity50 {
    opacity: .5;
}

/* Block grey */
.bg-grey {
    background-color: #f6f6f6;
}
.bg-white {
    background-color: #fff;
    padding: 3rem;
    border: 1px solid #eaeaea;
}
.bg-white-no-border {
    background-color: #fff;
    padding: 3rem;
    border: none;
}
.bg-white-border-image-full {
    background-color: #fff;
    padding: 0;
    border: none;
    border: 1px solid #eaeaea;
}
.with-border {
    border: 1px solid #eaeaea;
}
.full-fill-col {
    align-self: stretch;
}
.full-fill-col .button.fr {
    margin-left: auto;
    justify-content: flex-end;
    margin-top: 2rem;
}
.full-fill-col .button.fl {
    margin-right: auto;
    justify-content: flex-end;
    margin-top: 2rem;
}
.full-fill-col .button.fc {
    margin-right: auto;
    margin-left: auto;
    justify-content: center;
    margin-top: 2rem;
}
.full-fill-col  div  p:last-of-type{
    margin-bottom: 2rem;
}
.full-fill-col > section,
.full-fill-col > div {
    height: 100%;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
}
@media (max-width: 768px){
    .full-fill-col > section,
    .full-fill-col > div {
        height: auto;
        display: block;
    }
}
.jump {
    margin-top: 6rem;
}

/*

    SECTIONS / BLOCK

*/

.row-white {
    background-color: white;
    margin: 0;
    padding: 4rem 0;
}
.row-grey {
    background-color: #f6f6f6;
    margin: 0;
    padding: 4rem 0;
}
.row-white.pa0,
.row-grey.pa0,
.row-white.row-padding-bottom-aucun,
.row-grey.row-padding-bottom-aucun {
    padding-bottom: 0;
}
.row-white.row-padding-bottom-petit,
.row-grey.row-padding-bottom-petit {
    padding-bottom: 1.3rem;
}
.row-white.row-padding-bottom-moyen,
.row-grey.row-padding-bottom-moyen {
    padding-bottom: 2.6rem;
}

.row-white.row-padding-top-aucun,
.row-grey.row-padding-top-aucun {
    padding-top: 1px;
}
.row-white.row-padding-top-petit,
.row-grey.row-padding-top-petit {
    padding-top: 1.3rem;
}
.row-white.row-padding-top-moyen,
.row-grey.row-padding-top-moyen {
    padding-top: 2.6rem;
}

.row-full {
    width: 100%;
}
.row-regular {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}
.row-regular-992 {
    max-width: 992px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}
.row-half {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

/*

    TOP-BAR

*/

header {
    position: fixed;
    display: block;
    width: 100%;
    box-shadow: 0 0 10px rgba(0,0,0,0.25);
    background-color: rgba(255,255,255,0.95);
    z-index: 9998;
	top: 0;
}
@media (max-width:960px) {
	header.megamenu-opened {
		max-height: 100%;
		overflow: auto;
	}
}
.bgw-cr {
    height: 49px;
    background-color: white;
    color: #e61e2a;
}
.bgw-cr svg{
    fill: none;
    stroke: #e61e2a;
    margin-right: 1.2rem;
    width: 20px;
}
.sticky-links {
    color: #fff;
    display: block;
    position: fixed;
    right: 0;
    top: 61rem;
    z-index: 1001;
}
.sticky-links__wrapper--initial {
    display: block;
}
.sticky-links__wrapper--initial .sticky-links__title {
    animation: openAtStart 5000ms;
}
.sticky-links__title {
    opacity: 0;
    max-width: 0;
}
.sticky-links__title {
    transition: all ease-out 300ms;
    white-space: nowrap;
    z-index: 1;
    height: 50px;
}
.sticky-links a {
    color: #fff;
}
.sticky-links__element:first-child .sticky-links__title, .sticky-links__element:first-child .sticky-links__icon  {
    border-top: 0;
}
.sticky-links__element {
    height: 50px;
}
.sticky-links__wrapper--initial+.sticky-links__button:before {
    animation:backgroundButtonMobileAtStart 5000ms
}
.sticky-links__wrapper--initial+.sticky-links__button i[class*="icon--"] {
    animation:rotateButtonMobileAtStart 5000ms
}
.sticky-links__element {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    align-content: center;
    cursor: pointer;
    justify-content: flex-end;
    overflow: hidden;
    max-height: 50px;
    border-collapse: collapse;
}
.sticky-links__element {
    cursor: pointer;
    border-collapse: collapse;
}
.sticky-links__title {
    margin-bottom: 4px;
}
.sticky-links__title p {
    margin: 0 0.75rem;
    line-height: 50px;
}
.sticky-links__element.active .sticky-links__title {
    opacity: 1;
    max-width: 150px;
    background-color: #e61e2a;
}
.sticky-links__icon {
    flex-basis: 50px;
    height: 50px;
    width: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-collapse: collapse;
    z-index: 2;
    background-color: #e61e2a;
    margin-bottom: 4px;
}

.sticky-links__element.active .sticky-links__title {
    display: inline-block;
}
.sticky-links__icon svg {
    fill: #fff;
}
.sticky-links__icon#sticky-projet svg {
    width: 68%;
}
.sticky-links__icon#sticky-installateur svg {
    width: 76%;
}
.sticky-links__icon#sticky-documentation svg {
    width: 70%;
}
.icon--search-system::before, .icon--search-system::after {
    content: "\e90f";
}
.icon--crosshair::before, .icon--crosshair::after {
    content: "\271a";
}
.top-bar {
	display: block;
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
}

/* Top Bar Mobile */
.top-bar-mobile {
    display: none;
}
@media (max-width:700px) {
    .top-bar-mobile {
        display: flex;
        align-items: stretch;
        justify-content: center;
        flex-wrap: nowrap;
        height: 40px;
    }
    .top-bar-mobile--connect,
    .top-bar-mobile--espace-pro {
        width: 50%;
        text-align: center;
        background-color: #e61e2a;
        line-height: 40px;
        color: white;
        border-right: 1px solid white;
        border-left: 1px solid white;
        transition: color 1s, background-color 1s;
    }
    .top-bar-mobile--connect:hover,
    .top-bar-mobile--espace-pro:hover {
        background-color: #ffffff;
        color: #e61e2a;
        transition: color 0.5s, background-color 0.5s;
    }
    .sticky-links__wrapper--initial {
        display: none;
    }
}

/* Top bar Desk */   
.top-bar-desk {
    position: relative;
    height: 60px;
}

/* top-bar-left */
.top-bar-left {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 3rem;
    font-size: 1.6rem;
}

.menu-icon {
    padding: 0;
    margin: 0 1rem;
    background-color: transparent;
    border: none;
    line-height: 2.5rem;
}
.menu-icon:hover {
    cursor: pointer;
}
.menu-icon svg {
    width: 2.5rem;
	height: 2.5rem;
    margin-right: 1rem;
    vertical-align: -25%;
}
.menu-icon svg g {
    transition: fill 0.5s;
}
.menu-icon:hover svg g {
    fill: red;
    transition: fill 0.2s;
}

.ico.ico-account svg, .ico.ico-chaudiere svg {
    width: 2.5rem;
	height: 2.5rem;
    margin-right: 0.5rem;
    vertical-align: -25%;
}
.ico.ico-account svg g, .ico.ico-chaudiere svg g {
    transition: fill 0.5s;
}
.ico.ico-chaudiere svg g {
    fill: black;
}
.ico.ico-account:hover svg g, .ico.ico-chaudiere:hover svg g {
    fill: red;
    transition: fill 0.2s;
}
.ico.ico-chaudiere { margin-left: 2rem;}

/* top-bar-center */
.top-bar-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.top-bar-center--logo {
    font-size: 0;
    background: url(../img/logo-frisquet.svg) no-repeat center center;
    background-size: contain;
    display: block;
    width: 200px;
    height: 50px;
    margin-left: auto;
    margin-right: auto;
}

/* top-bar-right */
.top-bar-right {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    height: 60px;
}
.top-bar-right--lang {
    background-color: inherit;
    height: 60px;
    
}
.top-bar-right--lang--ct {
    padding-left: 0;
    list-style: none;
    position: relative;
    line-height: 60px;
    z-index: 10;
}
.top-bar-right--lang--label > a {
    display: block;
    background: url('../img/ico-arrow-down-light.svg') center right no-repeat;
    background-size: 1.5rem;
    padding-right: 2rem;
    padding-left: 2rem;
    margin-right: 2rem;
}
.top-bar-right--lang--label > a:hover {
    cursor: pointer;
    color: #e61e2a;
}
.top-bar-right--lang--list {
    padding-left: 0;
    list-style: none;
    background: rgba(255,255,255,0.9);
    position: absolute;
    top: 60px;
    right: 0;
    padding: 1rem 4rem;
    margin-left: -2rem;
    border: 1px solid #c9c9c9;
}
.top-bar-right--lang--item {
    font-weight: normal;
    margin: 1rem 0;
    color: rgba(0,0,0,0.5);
    transition: color 0.5s;
    padding-left: 3rem;
	float: none;
}
.top-bar-right--lang--item:hover,
.top-bar-right--lang--item:active,
.top-bar-right--lang--item.active {
    color: rgba(0,0,0,1);
    transition: color 0.2s;
}
.top-bar-right--lang--item.fr {
    background: url('../img/ico-flag-fr.svg') no-repeat;
}
.top-bar-right--lang--item.en {
    background: url('../img/ico-flag-en.svg') no-repeat;
}
.top-bar-right--lang--item.it {
    background: url('../img/ico-flag-it.svg') no-repeat;
}
.top-bar-right--lang--item.ru {
    background: url('../img/ico-flag-ru.svg') no-repeat;
}
.top-bar-right--lang--item.cn {
    background: url('../img/ico-flag-cn.svg') no-repeat;
}

.top-bar-right--espace-pro {
    display: inline-block;
    font-size: 1.6rem;
    padding: 0 2rem;
    line-height: 60px;
    height: 60px;
    background-color: #e61e2a;
    color: #ffffff;
    transition: color 1s, background-color 1s;
}
.top-bar-right--espace-pro:hover,
.top-bar-right--espace-pro:focus {
    color: #e61e2a;
    background-color: #ffffff;
    transition: color 0.5s, background-color 0.5s;
}

@media (max-width:700px) {
    .top-bar-desk
    .ico.ico-account,
    .ico.ico-chaudiere{
        display: none;
    }
    .menu-icon {
        margin: 0;
    }
    .menu-icon span {
        display: none;
    }
    .top-bar-right--espace-pro {
        display: none;
    }
    .top-bar-right--lang {
        position: absolute;
        top:50%;
        transform: translateY(-50%);
        right:0;
        
    }
    .top-bar-center {
        text-align: center;
        width: auto;
    }
    .top-bar-left {
        width: auto;
        left: 2rem;
    }
}

.button-invert {
    background-color: rgba(255,255,255,0.9) !important;
    color: #e61e2a !important;
    border: 1px solid #e61e2a !important;
    transition: 0.2s background-color, 0.2s color;
}
.button-invert:hover,
.button-invert:focus,
.button-invert:active {
    background-color:  #e61e2a !important;
    color: rgba(255,255,255,0.9) !important;
    transition: 0.2s background-color, 0.2s color;
}
.button-invert.active {
    background-color:  #e61e2a !important;
    color: rgba(255,255,255,0.9) !important;
    transition: 0.2s background-color, 0.2s color;
}
/*

    MEGAMENU

*/
.megamenu {
    position: relative;
    top:60px;
}
.megamenu--wrap {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    
}

/* Megamenu row1 */
.megamenu--row1 > div:first-child {
    margin-bottom: 3rem;
    border-bottom: 1px solid #c9c9c9;
}
.main-menu--list {
    padding-left: 0;
    list-style: none;
    display: flex;
    margin-left: -4rem;
    justify-content: space-between;
}

/* Level 1 */
.main-menu--item {
    margin-left: 4rem;
}
.main-menu--item--image {
    display: block;
    width: 100%;
    position: relative;
    padding-top: 2rem;
}
.main-menu--item--image:hover::before {
    width: 100%;
    transition: width 0.2s;
}


/*.main-menu--item--image.bg-menu2 {*/
    /*background-image: url(../img/main-menu-02.jpg);*/
/*}*/
/*.main-menu--item--image.bg-menu3 {*/
    /*background-image: url(../img/main-menu-03.jpg);*/
/*}*/
/*.main-menu--item--image.bg-menu4 {*/
    /*background-image: url(../img/main-menu-04.jpg);*/
/*}*/
.main-menu--item--titre {
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: normal;
    line-height: 1.6rem;
    margin-bottom: 0rem;
    transition: transform 0.5s;
}
.bloc-footer--nav--item .main-menu--item--titre {
    font-size: 1.4rem;
}
span.main-menu--item--titre b {
    text-transform: uppercase;
}

@media (max-width:700px) {
    .main-menu--list {
        display: flex;
        flex-wrap: wrap;
    }
    .main-menu--item {
        width: calc(50% - 4rem);
    }
	.main-menu--item--image {
		background-image: none !important;
		display: inline;
		text-align: left;
	}
	.main-menu--item--image .main-menu--item--titre {
		color: #000;
		position: relative;
		margin-bottom: 0.6rem;
        padding-bottom: 0;
		margin-top: 1rem;
	}
	.main-menu--item--image .main-menu--item--titre::after {
		border-top: 2px solid #e61e2a;
		content: "";
		display: block;
		margin-top: 13px;
		transition: width 0.5s ease 0s;
		width: 25px;
	}
	.main-menu--item--image:hover .main-menu--item--titre::after {
		transition: width 0.2s ease 0s;
		width: 100%;
	}
}

@media (max-width:400px) {
    .main-menu--item {
        width: calc(100% - 4rem);
    }
    .main-menu--item--titre a {
        font-size: 2.4rem;
        line-height: 3rem;
    }
}

/* Level 2 */
.main-menu--level2--container {
    width: 60%;
    margin: 0px auto;
}
.main-menu--level2--container.first{
    width: 100%;
}
.main-menu--level2--container.two-cols {
    width: 70%;
}
.main-menu--level2--container--left{
    width:49%;
    float:left;
}
.main-menu--level2--container--left .description {
    padding-top:2rem;
    cursor: pointer;
}
.main-menu--level2--container.two-cols .main-menu--level2--container--left{
    padding-top:0rem;
}
.main-menu--level2--container--right {
    width:49%;
    float:left;
    margin-bottom:3rem;
    margin-left:1rem;
}
.main-menu--level2--container--right img {
    cursor: pointer;
}
.main-menu--level2--container.two-cols > div.main-menu--level2--container--left {
    width: 62%;
    display: inline-block;
    float: left;
}
.main-menu--level2--container.two-cols > div.main-menu--level2--container--right {
    width: 36%;
}
.main-menu--level2--container.no-first > div ul li a {
    text-align: left;
}
.main-menu--level2--list {
    padding-left: 0rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}
.main-menu--level2--container.no-first .main-menu--level2--container--left .main-menu--level2--list.column-3 {
    padding-left: 0;
    float: none;
    display: inline-block;
    padding-top: 1rem;
    width: 49%;
}
.main-menu--level2--container.no-first .main-menu--level2--list {
    flex-direction: column;
    float: left;
    padding-left: 10rem;
}
.main-menu--level2--container.no-first .main-menu--level2--item a {
    line-height: 1.3rem;
}
.main-menu--level2--container.no-first .main-menu--level2--item a:hover {
    font-weight: 500;
}
/*
.main-menu--level2--list::before {
    content:'';
    display: block;
    width: 2rem;
    border-top: 2px solid #e61e2a;
    margin-bottom: 1rem;
}
*/
.main-menu--level2--item a {
    width: 100%;
    display: inline-block;
    text-decoration: none;
    font-size: 1.4rem;
    padding: 2px 0;
    margin-bottom: 0.2rem;
    margin-top: 0.6rem;
    text-align: center;
}
.main-menu--level2--item img {
    display:block;
    width: 120px;
    height: 100px;
}
.main-menu--level2--item span.img-container {
    cursor: pointer;
}
.main-menu--level2--item span.img-container::after {
    content:'';
    display: block;
    margin-top: 13px;
    width: 0px;
    border-top: 2px solid #e61e2a;
    margin-top: 0rem;
    transition: width 0.5s;
}
.main-menu--level2--item:hover span.img-container::after {
    width: 100%;
    transition: width 0.2s;
}
/*
.main-menu--level2--item a:hover {
    opacity: 1;
    background: linear-gradient(to bottom,  white calc( 100% - 2px ), #e61e2a calc( 100% - 2px ), #e61e2a 100%);
}
*/

.main-menu--level2--item a {
    position: relative;
}
@media (min-width: 1025px) {	/* sinon double click sur tablette et mobile */
	/*.main-menu--level2--item a::before {*/
		/*content:'';*/
		/*position: absolute;*/
		/*width: 0;*/
		/*height: 1px;*/
		/*background-color: #e61e2a;*/
		/*left: 0;*/
		/*bottom: 0;*/
		/*transition: width 0.5s;*/
	/*}*/
	/*.main-menu--level2--item a:hover::before {*/
		/*width: 100%;*/
		/*transition: width 0.2s;*/
	/*}*/
}
@media (max-width: 890px) {
    .main-menu--level2--container, .main-menu--level2--container.two-cols {
        width: 100%;
    }
    .main-menu--level2--container--left .description {
        padding-top: 1rem;
    }
}

@media (max-width: 575px) {
    .main-menu--level2--container {
        display: block
    }
    .main-menu--level2--container img, .img-container {
        display: none;
    }
    .main-menu--level2--container--left .description {
        display: none;
    }
    .main-menu--level2--container.two-cols,.main-menu--level2--container.two-cols > div.main-menu--level2--container--left {
        width: 100%;
    }
    .main-menu--level2--container.no-first .main-menu--level2--container--left .main-menu--level2--list.column-3 {
        display: inline;
    }
    .main-menu--level2--container.no-first .main-menu--level2--item a {
        line-height: 2.4rem;
    }
    .main-menu--level2--item, .main-menu--level2--container.no-first > div ul li a {
        text-align: center;
    }
    .main-menu--item--image .main-menu--item--titre {
        margin-bottom: 0;
    }
    .main-menu--item--titre::after {
        margin-top: 0;
    }
    .main-menu--level2--item a {
        font-size: 1.6rem;
        font-weight: regular;
    }
    .main-menu--level2--list {
        display: inline;
    }
    .main-menu--level2--list::before {
        margin-left: auto;
        margin-right: auto;
    }
    .main-menu--item {
        margin-bottom: 1rem;
    }
    .megamenu--row1 > div:first-child {
        margin-bottom: 0;
        border-bottom: none;
    }
}

/* Megamenu row2 */
.megamenu--row2 {
    border-top: 1px solid #c9c9c9;
    padding-top: 2rem;
    margin-bottom: 2rem;
    clear: both;
}

.megamenu--row2--list {
    display: flex;
    margin-left: -4rem;
    flex-wrap: wrap;
}

.megamenu--row2--media {
    width: calc(33% - 4rem);
    margin-left: 4rem;
    display: flex;
}
.megamenu--row2--media--img {
    width: 33%;
    margin-right: 1rem;
}
.megamenu--row2--media--text {
    width: 66%;
}
.megamenu--row2--titre {
    display: inline-block;
    font-size: 1.6rem;
    line-height: 2rem;
    font-weight: normal;
    margin-bottom: .6rem;
}
span.megamenu--row2--titre b {
    text-transform: uppercase;
}
.megamenu--row2--titre::after {
    content:'';
    display: block;
    margin-top: 13px;
    width: 25px;
    border-top: 2px solid #e61e2a;
    margin-top: .1rem;
    transition: width 0.5s;
}
.megamenu--row2--media:hover .megamenu--row2--titre::after {
    width: 100%;
    transition: width 0.2s;
}
.main-menu--item--titre::after {
    content:'';
    display: block;
    margin-top: 13px;
    width: 0px;
    border-top: 2px solid #e61e2a;
    margin-top: 2rem;
    transition: width 0.5s;
}
.main-menu--item:hover .main-menu--item--titre::after, .main-menu--item.active .main-menu--item--titre::after {
    width: 100%;
    transition: width 0.2s;
}
.megamenu--row2--excerpt {
    margin:0;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.8rem;
}

@media (max-width: 700px) {
    .megamenu--row2--media {
        width: calc(50% - 4rem);
    }
}

@media (max-width: 400px) {
    .megamenu--row2 {
        margin-bottom: 0;
    }
    .megamenu--row2--media {
        width: calc(100% - 4rem);
    }
    .megamenu--row2--media--text {
        width: 70%;
    }
    .megamenu--row2--media {
        margin-bottom: 2rem;
    }
}

/* Megamenu row3 */
.megamenu--row3 {
    border-top: 1px solid #c9c9c9;
    padding: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.megamenu--row3--left {
    width: 50%;
}
.megamenu--row3--right {
    width: 33%;
}

.megamenu--row3--left--link {
    text-decoration: none;
    margin-right: 1rem;
}
.megamenu--row3--left--link:hover {
    opacity: 0.5;
}
.search-block {
    display: flex;
    align-items: center;
}

.search-block--input {
    margin-bottom: 0;
    width: 100%;
}
.search-block--submit {
    background-color: transparent;
    border: none;
    cursor: pointer;
    height: 4rem;
    width: 4rem;
    padding: 0.5rem;
    margin-left: 0.5rem;
}
.search-block--submit svg g {
    fill: rgba(0,0,0,0.5);
    transition: fill 0.5s;
}
.search-block--submit:hover svg g {
    fill: red;
    transition: fill 0.2s;
}

@media (max-width: 400px) {
    .megamenu--row3--right {
        width: 100%;
        order: 1;
        margin-bottom: 2rem;
    }
    .megamenu--row3--left {
        text-align: center;
        width: 100%;
        order: 2;
        margin-left: auto;
        margin-right: auto;
    }
}

/*

    SAV

*/

/* SAV Map */
.sav-map--form {
    display: flex;
    margin-left: -2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    margin-right: 2rem;
    flex-wrap: wrap;
}
.sav-map--form > * {
    margin-left: 2rem;
    width: calc(33% - 2rem);
    margin-bottom: 2rem;
}

@media (max-width:400px) {
    .sav-map--form {
        display: block;
    }
    .sav-map--form--item {
        width: 100%;
    }
    .sav-map--form--button {
        display: block;
        width: 100%;
    }
}

/* SAV Address */
.sav-adress--row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -2rem;
}

.sav-address--item {
    padding: 1rem;
    border: 1px solid #d2d2d2;
    text-align: center;
    position: relative;
    width: calc(25% - 2rem);
    margin-left: 2rem;
    background-color: white;
}
.sav-address--item--number {
    position: absolute;
    top: -2.5rem;
    right: -1px;
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.8rem;
    background-color: #e61e2a;
    color: #fff;
    text-align: center;
    
}
.sav-address--item--title {
    font-weight: normal;
    margin-bottom: 0;
}
.sav-address--item--text {
}
#sav_it-results .sav-address--item {
	text-align: left;
	padding: 2rem;
}
#sav_it-results .sav-address--item--title {
	color: #e61e2a;
    font-weight: 500;
}
#sav_it-results hr{
    border-bottom: 2px solid #e61e2a;
    width: 12%;
    display: inline-flex;
    margin: 0;
}
.sav_it .sav_it--btn {
	align-self: flex-end;
	margin-bottom: 1rem;
	min-height: 4rem;
}
@media (max-width:1024px) {
    .sav-address--item {
        width: calc(33% - 2rem);    
    }
	.sav-display-mobile {
		display: none;
	}
}
@media (max-width:700px) {
    .sav-address--item {
        width: calc(50% - 2rem);    
    }
}
@media (max-width:400px) {
    .sav-address--item {
        width: calc(100% - 2rem);    
    }
}

/*

    INNOVATIONS PRINCIPALES

*/

.innovations-principales {
    position: relative;
    height: 586px;
}
.innovations-principales--item {
    position: absolute;
    display: block;
    overflow: hidden;
}
.innovations-principales--item::after {
    content:'';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0);
    transition: background-color 1s;
}
.innovations-principales--ct {
    position: absolute;
    top: 0;
    bottom: 0;
    left:0;
    right:0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
    padding: 1rem;
    transform: translateY(calc(50% + 2.5rem));
    transition: transform 1s;
}
.innovations-principales--title {
    color:#fff;
    text-align: center;
    font-weight: 100;
    font-size: 2rem;
    line-height: 2.4rem;
    padding: 0 1rem;
    margin: 0 0 1rem 0;
}
.innovations-principales--title--annee {
    color:#fff;
    text-align: center;
    font-weight: 300;
    font-size: 3rem;
    line-height: 3rem;
    padding: 0 1rem;
    margin: 0 0 1rem 0;
}
.innovations-principales--title--annee:before {
    content:"-";
    margin-right: 1rem;
}
.innovations-principales--title--annee:after {
    content:"-";
    margin-left: 1rem;
}

/* Gestion survol */
.innovations-principales--item:hover::after {
    background-color: rgba(0,0,0,0.8);
    transition: background-color 0.5s;
}
.innovations-principales--item:hover .innovations-principales--ct {
    transform: translateY(0);
    transition: transform 0.5s;
}
.innovations-principales--bg1 {
    top: 0;
    left: 0;
    width: 33.6%;
    height: 383px;
    background: url(../img/innov-princ-bg1.jpg) no-repeat center bottom;
    background-size: cover;
}
.innovations-principales--bg2 {
    top: 0%;
    left: 33.6%;
    width: 38.8%;
    height: 294px;
    background: url(../img/innov-princ-bg2.jpg) no-repeat center bottom;
    background-size: cover;
}
.innovations-principales--bg3 {
    top: 0;
    left: 72.4%;
    width: 27.6%;
    height: 294px;
    background: url(../img/innov-princ-bg3.jpg) no-repeat center bottom;
    background-size: cover;
    position: relative;
}
.innovations-principales--bg4 {
    top: 383px;
    left: 0;
    width: 33.6%;
    height: 203px;
    background: url(../img/innov-princ-bg4.jpg) no-repeat center bottom;
    background-size: cover;
}
.innovations-principales--bg5 {
    top: 294px;
    left: 33.6%;
    width: 32.6%;
    height: 292px;
    background: url(../img/innov-princ-bg5.jpg) no-repeat center bottom;
    background-size: cover;
}
.innovations-principales--bg6 {
    top: 294px;
    left: 66.2%;
    width: 33.8%;
    height: 292px;
    background: url(../img/innov-princ-bg6.jpg) no-repeat center bottom;
    background-size: cover;
}

@media (max-width: 1024px) {
	.innovations-principales--item::after {
		background-color: rgba(0,0,0,0.5);
		transition: background-color 0.5s;
	}
	.innovations-principales--item .innovations-principales--ct {
		transform: translateY(0);
		transition: transform 0.5s;
	}
}

@media (max-width: 700px) {
    .innovations-principales {
        height: auto;
    }
    .innovations-principales {
        display: flex;
        flex-wrap: wrap;
    }
    .innovations-principales--item {
        position: relative;
        width: 50%;
        height: 45vw;
        top:0;
        left:0;
    }
    .innovations-principales--title {
        font-size: 1.5rem;
        line-height: 1.7rem;
        margin-bottom: 0;
    }
    .innovations-principales--title--annee {
        font-size: 2rem;
    }
    .innovations-principales--ct {
        transform: translateY(calc(50% - 3rem));
     }
}

@media (max-width: 400px) {
	.innovations-principales--title {
		margin-bottom: 1rem;
    }
    .innovations-principales--title--annee {
        display: none;
    }
	.innovations-principales--button span {
		display: none;
    }
}

/*

    ACCORDION

*/

.accordion { }

.accordion--title::before {
    content:'+';
    font-size: 2.2rem;
    margin-right: 1rem;
    min-width: 1.5rem;
    display: inline-block;
    color: #e61e2a;
    text-align: center;
}
.accordion--title {
    display: block;
    margin:0;
    padding: 0.5rem 0;
    background-color: #f5f5f5;
    padding: 1rem;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.5s;
	font-weight: bolder;
}
.accordion--title:active,
.accordion--title.ui-state-active {
    border-bottom: 2px solid #e61e2a;
    outline: none;
    transition: border-bottom 0.2s;
}
.accordion--title.active::before,
.accordion--title.ui-state-active::before {
    content:'-';
}

.accordion--title:hover {
    cursor: pointer;
}
.accordion--content {
    margin:0;
    padding: 2rem;
    background-color: #f5f5f5;
}
.accordion-aside {
    padding: 2rem;
    background-color: #f5f5f5;
}

/*

    INNOVATIONS ADN

*/

.innovations-adn {
    background: url(../img/innov-bg.jpg) center bottom;
    background-size: cover;
    min-height: 700px;
    overflow: hidden; 
    position: relative;
    color: white;
    text-align: center;
    padding: 4rem;
}

/* Adn Years */
.innovations-adn--years {
    position: absolute;
    top: 2rem;
    right: 0;
    left: 0;
    transform: translateX(38%);
    color: white;
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    transition: opacity 1s;
    border: 1p solid red;
}
.innovations-adn--years--item {
    margin-left: auto;
    margin-right: auto;
    width: 120px;
    line-height: 120px;
    text-align: center;
    background: url(../img/innov-adn.png) no-repeat center center;
    background-size: contain;
    position: relative;
}
.innovations-adn--years--item:first-child {
    background-image: url(../img/innov-adn-first.png);
}
.innovations-adn--years--item:last-child {
    background-image: url(../img/innov-adn-last.png);
}
.innovations-adn--years--item::before {
    content:'';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 0px;
    height: 80px;
    background-color: rgba(255,255,255,0);
    border-radius: 120px;
    z-index: -1;
    transition: background-color 1s, width 1s;
}
.innovations-adn--years--item:hover::before,
.innovations-adn--years--item.active::before {
    content:'';
    background-color: rgba(255,255,255,1);
    width: 80px;
    transition: background-color 0.5s, width 0.5s;
}
.innovations-adn--years--item:hover,
.innovations-adn--years--item.active {
    color: black;
    z-index: 1;
    cursor: pointer;
}

@media (max-width: 1140px) {
    .innovations-adn--years {
        opacity: 0;
        transition: opacity 0.5s;
    }
}

/* Introduction */
.innovations-adn--introduction {
    position: relative;
}

.innovations-adn--introduction--title {
    font-size: 6rem;
    line-height: 10rem;
    font-weight: 100;
 }
.innovations-adn----introduction--subtitle {
    font-size: 3rem;
    line-height: 5rem;
    font-weight: 100;
    text-transform: none;
}

.innovations-adn--introduction--ico-idea {
    transform: translateY(-20%);
    width: 320px;
}

/* Content */
.innovations-adn--innovation {
    position: relative;
    margin: auto;
    max-width: 800px;
    margin-bottom: 4rem;
}
.innovations-adn--innovation--title {
    font-size: 4rem;
    line-height: 5rem;
    text-transform: none;
    font-weight: 100;
}
.innovations-adn--innovation--title big {
    font-size: 4rem;
    font-weight: normal;
}
.innovations-adn--innovation--title big.date {
    font-size: 6rem;
}
.innovations-adn--innovation--title span {
    text-transform: uppercase;
}
.innovations-adn--innovation--excerpt {
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: 100;
}
.innovations-adn--innovation--description {
    padding-top: 1rem;    
}
.innovations-adn--innovation--description-p {
    font-size: 1.4rem;
    line-height: 1.8rem;
    font-weight: 100;
    text-align: left;
}
.innovations-adn--next {
    color: white;
    position: absolute;
    display: block;
    bottom:1rem;;
    left:0; right:0;
    margin-left: auto;
    margin-right: auto;
    font-size: 0;
    background: url(../img/innov-arrow.png) no-repeat center center;
    background-size: contain;
    width: 50px;
    height: 20px;
}

@media (max-width:700px) {
    .innovations-adn {
        height: auto;
        background-position: top center;
        background-repeat: no-repeat;
        background-size: 200%;
        background-color: black;
        overflow: auto;
    }
    .innovations-adn--years {
        display: none;
    }
    .innovations-adn--innovation {
        position: relative;
        transform: none;
        margin-bottom: 2rem; 
    }
    .innovations-adn--next {
        display: none;
    }
    .innovations-adn--introduction--title {
        font-size: 4rem;
    }
}

/*

    BLOCK HERO

*/

.block-hero { }
.block-hero--img { }

.block-hero--content-box {
    padding: 1rem 2rem;
    color: white;
    text-align: center;
}
div.block-hero--content-box--subtitle,
h2.block-hero--content-box--subtitle {
    font-size: 2.2rem;
    line-height: 3rem;
    font-weight: 400;
    margin-bottom: 0;
    text-transform: none;
    text-align: left;
    opacity: 1;
}

.block-hero--content-box--title {
    font-size: 3.6rem;
    line-height: 3.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-align: left;
    opacity: 1;
}

.block-hero--content-box--button {
    border: 1px solid white;
    color: white;
    background-color: transparent;
    transition: 0.5s opacity;
    margin-top: 1.7rem;
    float: left;
}
.block-hero--content-box--button:hover {
    border: 1px solid white;
    color: white;
    background-color: rgba(208, 208, 208, 0.6);
    transition: 0.2s opacity;
}

@media (max-width: 700px) {
    .block-hero--img {
		/*
        max-width: calc(2*100vw);
        margin-left: calc(-1*100vw);
		*/
    }
    .block-hero--content-box {
        position: relative;
        left: auto; right: auto; bottom: auto; top: auto;
        background-color: #ededed;
        color: #000;
		padding: 1rem 0.5rem;
    }
    h2.block-hero--content-box--subtitle,
    div.block-hero--content-box--subtitle{
        font-size: 1.4rem;
        line-height: 1.8rem;
        font-weight: 400;
        margin-bottom: 0;
    }
    .block-hero--content-box--title {
        font-size: 2rem;
        line-height: 1.9rem;
        font-weight: normal;
		margin: 0 0 1rem 0;
    }
    .block-hero--content-box--button {
        background-color: rgba(230,30,42,1);
        color: white;
		margin: 0;
		font-size: 1.2rem;
    }
    .block-hero--content-box--button:hover {
        background-color: rgba(230,30,42,1);
        color: white;
    }

}

@media (max-width: 400px) {
	h2.block-hero--content-box--subtitle,
    div.block-hero--content-box--subtitle {
        font-size: 1.8rem;
        line-height: 2rem;
        font-weight: 400;
        margin-bottom: 0;
    }
    .block-hero--content-box--title {
        font-size: 1.8rem;
        line-height: 2rem;
        font-weight: normal;
		margin: 0 0 1rem 0;
    }
}

/*

    BLOCK HERO 2

*/

.block-hero2 {
    background-size: cover;
    background-position: center center;
    position: relative;
}

.block-hero2--content-box {
    background-color: rgba(255,255,255,0.7);
    position: absolute;
    bottom: 2rem;
    padding: 1rem 2rem;
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
    left: 1rem;
    right: 1rem;
}

.block-hero2--content-box--title {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 300;
    text-transform: none;
    margin-bottom: 0;
}
    
@media (max-width: 700px) {
    .block-hero2--content-box {
        position: relative;
        left: auto; right: auto; bottom: auto; top: auto;
        background-color: #ededed;
    }
}

/*

    BLOCK MEDIA

*/

.block-media {
    display: flex;
    margin-left: -4rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    align-items: center;
}

.block-media .media--figure {
    position: relative;
    width: calc(70% - 6rem);
    margin-left: 4rem;
}
.block-media .media--figure--legend {
    position: absolute;
    top: 0;
    left: 0;
    color: white;
    font-size: 2.4rem;
    font-weight: 300;
    text-transform: uppercase;
    padding: 2rem;
    text-shadow: 0 0 10px black;
}
.block-media .media--content {
    width: calc(30% - 2rem);
    margin-left: 4rem;
    align-self: center;
}
.block-media .media--title {
    font-size: 2.2rem;
    line-height: 2.2rem;
    font-weight: normal;
}
.block-media .media--subtitle {
    font-size: 2.2rem;
    line-height: 2.2rem;
    font-weight: 300;
}

/* Right version */
.block-media.right .media--figure {
    order: 1;
}
.block-media.right .media--figure--legend {
    top: auto;
    left: auto;
    right: 0;
    bottom: 0;
    text-align: right;
}

@media (max-width: 960px) {
	.block-media .media--figure {
		margin-bottom: 1rem;
    }
}
@media (max-width: 700px) {
    .block-media {
        display: block;
        margin-left: 0;
    }
    .block-media .media--figure {
        width: 100%;
        margin-left: 0;
    }
    .block-media .media--figure--legend {
        font-size: 1.4rem;
        padding: 1rem;
        background-color: rgba(0,0,0,0.5);
        
    }
    .block-media .media--content--title {
        text-align: center;
    }
    .block-media .media--content--title::after {
        margin-left: auto;
        margin-right: auto;
    }
    .block-media .media--content {
        width: 100%;
        margin-left: 0;
        text-align: center;
    }
    .block-media .media--content--p {
        text-align: justify;
    }
}

@media (max-width: 400px) {
    .media--figure--legend {
        display: none;   
    }
}

/*

    BLOCK NEWS

*/

.block-news {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.bg-white-border-image-full .block-news {
    margin-top: 0;
    margin-bottom: 0;
}
.block-news h2 {
    font-size: 1.8rem;
    line-height: 2.4rem;
}
.block-news--title {
    font-size: 2rem;
    line-height: 2.2rem;
    font-weight: normal;
}
.block-news--subtitle {
    font-size: 1.6rem;
    line-height: 1.8rem;
    font-weight: 300;
    text-transform: none;
}

.block-news--excerpt {
    font-weight: 300;
    text-transform: none;
	font-size: 1.5rem;
}
.bg-white-border-image-full .block-news--excerpt {
    padding: 0 2rem 0 2rem;
}
.block-news--date_arrow {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0 2rem 1rem 2rem;
}
.block-news-date_arrow--date {
    font-size: 1.3rem;
    font-weight: 200;
}

@media (max-width: 960px) {
	.block-news--image {
		width: 50%;
	}
	.block-news--excerpt {
		padding: 0 13%;
	}
}
@media (max-width: 700px) {
	.block-news--image {
		width: 70%;
	}
	.block-news--excerpt {
		padding: 0 7%;
	}
}

/*

    BLOCK FOOTER

*/

.block-footer {
    background-color: #ededed;
    padding: 2rem;
}

.block-footer--row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Left column */
.block-footer--col-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 20%;
 
}

.bloc-footer--logo {
    background: url('../img/logo-frisquet.svg') center center no-repeat;
    font-size: 0;
    height: 25px;
    margin-bottom: 1rem;
}
.bloc-footer--adress {
    text-align: center;
    margin-bottom: 1rem;
}
.bloc-footer--mail {
    background: url('../img/ico-mail.svg') center center no-repeat;
    font-size: 0;
    width: 48px;
    height: 30px;
    margin: 0 auto -10px auto;
    padding: 0;
    display: block;
    transition: opacity 5s;
}
.bloc-footer--mail:hover {
    opacity: 0.5;
    transition: opacity .2s;
}

.bloc-footer--nav {
    list-style: none;
    display: flex;
    position: relative;
    justify-content: space-between;
}
.bloc-footer--nav--item {
    font-size: 1.3rem;
    text-transform: uppercase;
    font-weight: 300;
    margin-right: 1rem;
    margin-bottom: 0;
    padding: 0.5rem 0;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
	display: inline-block;
}
.bloc-footer--nav .main-menu--item {
    margin-left: 0;
}
/*
.bloc-footer--nav--item.active,
.bloc-footer--nav--item:hover,
.bloc-footer--nav--item:active {
    border-bottom: 2px solid #e61e2b;
}
*/

/*.bloc-footer--nav--item::before {*/
    /*content:'';*/
    /*position: absolute;*/
    /*width: 0;*/
    /*height: 2px;*/
    /*background-color: #e61e2a;*/
    /*left: 0;*/
    /*bottom: 0;*/
    /*transition: width 0.5s;*/
/*}*/
.bloc-footer--nav--item:hover::before,
.bloc-footer--nav--item.active::before {
    width: 100%;
    transition: width 0.2s;
}

.bloc-footer--snav {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background-color: #dddddd;
    padding: 0.5rem 6rem;
    margin: 0 0 2rem 0;
}
.bloc-footer--snav .description,.bloc-footer--snav .img-container, .bloc-footer--snav .main-menu--level2--container--right {
    display: none;
}

.bloc-footer--snav--item {
    text-transform: none;
    font-weight: 300;
    margin-right: 1rem;
    margin: 0.5rem;
    text-decoration: none;
    transition: opacity 1s;
}
.bloc-footer--snav--item:hover {
    opacity: 0.5;
    transition: opacity 0.5s;
}
.bloc-footer--snav ul {
    padding-left: 0;
}

.bloc-footer--direct-access {
    width: 100%;
    padding-left: 0;
    list-style: none;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding-top: 2rem;
}
.bloc-footer--direct-access--item {
    display: block;
    text-align: center;
    text-decoration: none;
    margin-bottom: 1rem;
    width: 120px;
    font-weight: 300;
    transition: opacity .5s;
    font-size: 1.2rem;
}

.bloc-footer--direct-access--item:hover {
    opacity: 0.5;
    transition: opacity .2s;
    cursor: pointer;
}


@media (max-width: 960px) {
    .bloc-footer--mail {
        margin: -1rem auto 1rem auto;
    }
    .block-footer {
        padding: 2rem 0;
    }
    .block-footer--row {
        margin-left: 0;
    }
    .block-footer--col-left {
        width: 100%;
        margin: 0;
    }
    .block-footer--col-right {
        width: 100%;
        margin: 0;
        border: none;
        padding: 0;
    }
    .bloc-footer--nav {
        justify-content: center;
        padding: 0;
		display: none;
    }
    /*.bloc-footer--nav--item::before {*/
        /*content:'';*/
        /*display: inline-block;*/
        /*width: 10px;*/
        /*height: 10px;*/
        /*margin-left: 0.5rem; */
        /*margin-right: 0.5rem;*/
    /*}*/
    .bloc-footer--snav {
        justify-content: center;
    }
    .bloc-footer--snav--item {
        display: block;
        padding: 0.25rem 0.25rem;
     }
    .bloc-footer--direct-access {
        padding-top: 22px;
		margin-top: 0;
        justify-content: center;
		border-top: 1px solid #c9c9c9;
    }
    .bloc-footer--direct-access--item {
    }
}

@media (max-width: 700px) {
    
    .bloc-footer--nav {
        display: none;
        height: auto;
        text-align: center;
        margin-bottom: 1rem;
    }
    .bloc-footer--nav--item {
        display: inline-block;
        margin-top: 1rem;
        margin-bottom: 1rem;
        padding: 0.5rem 0;
    }
    .bloc-footer--snav {
        position: relative;
    }
    .bloc-footer--direct-access {
        padding-top: 22px;
    }
}

@media (max-width: 400px) {
    .bloc-footer--nav .nav--item {
        margin-right: 0;
    }
    .bloc-footer--direct-access li {
        display: inline-block;
    }
    .bloc-footer--direct-access--item {
        width: 27vw;
        margin-bottom: 2rem;
    }
}

/*

    BLOCK SUBFOOTER

*/

.block-subfooter {
    background-color: #dddddd;
}
.block-subfooter--container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
    padding-right: 0;
}
.block-subfooter--list {
    padding-left: 0;
    list-style: none;
    display: flex;
}
.block-subfooter--list .subfooter--item {
    text-decoration: none;
    border-right: 1px solid #000;
    padding-right: 1rem;
    margin-right: 1rem;
    font-size: 1.2rem;
    font-weight: 300;
}
.block-subfooter--list > li:last-child .subfooter--item {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}
.subfooter--copyright {
    font-size: 1.2rem;
    font-weight: 300;
}

@media (max-width: 700px) {
    .block-subfooter--container{
        display:block;
        text-align: center;
    }
    .block-subfooter--list {
        margin-bottom: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    .block-subfooter--list .subfooter--item {

    }
}

@media (max-width: 400px) {
    .block-subfooter--list .subfooter--item.ru {
        border:0;
    }
}

/*

    PRODUCT FILTER

*/
.products-filter {
    margin: 1.7rem;
}
.products-filter--ct {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-left: -8rem;
}

.products-filter--block {
    display: flex;
    align-items: center;
    margin: 1rem 0 1rem 8rem;
    font-size: 1.5rem;
    line-height: 1.3rem;
    color: #383636;
    font-family: "Locator", Arial, sans-serif;
    font-weight: 300;
}
.products-filter--block.bar {
    flex: 1;
    margin: 0 auto;
    padding: 0 4rem;
}
.products-filter--block.bar .products-filter--list {
    width: 100%;
    position: relative;
}
.products-filter--list select {
    background-position: 97% 0.75rem;
    padding-right: 3rem;
    background-size: 3rem 2.3rem;
    background-origin: inherit;
}
.products-filter--list input[type="checkbox"] {
    display: block;
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
}
.products-filter--list .ms-options-wrap > .ms-options > ul input[type="checkbox"] {
    left: 3px;
    top: -4px;
}
.products-filter--block.filter-clear {
    margin-left: auto;
    cursor: pointer;
}
.products-filter--block.filter-title {
    font-size: 1.8rem;
    line-height: 1.3rem;
    color: #000000;
    font-family: "Locator", Arial, sans-serif;
    font-weight: bold;
}

.products-filter--title {
    margin: 0;
    background-color: #e61e2a;
    color: white;
    font-size: 1.4rem;
    line-height: 3rem;
    padding: 0 3rem;
    min-height: 3rem;
    text-align: center;
}
.products-filter--item {
    text-transform: uppercase;
    margin-left: 2rem;
    font-size: 1.4rem;
    border: none;
    background: none;
    border-bottom: 2px solid transparent;
    padding: 2px 0 0 0;
    min-height: 3rem;
    color: rgba(0,0,0,0.5);
    transition: color 1s, border-bottom 1s;
}
.products-filter--item:hover,
.products-filter--item:focus,
.products-filter--item.active {
    border-bottom: 2px solid #e61e2a;
    color: rgba(0,0,0,1);
    cursor: pointer;
    transition: color .5s, border-bottom .5s;
}

@media (max-width: 700px) {
    .products-filter--ct {
        flex-wrap: wrap;
        margin-left: 0;
    }
    .products-filter--block {
        margin: 0 0 1rem 0;
    }
    .products-filter--block:last-child {
        margin:0;
    }
    .products-filter--title {
        width: 120px;   
    }
}

@media (max-width: 400px) {
    .products-filter {
        display: block;
        width: 100%;
    }
    .products-filter--block {
        display: block;
        width: 100%;
    }
    .products-filter--title {
        display: block;
        width: 100%;
        cursor: pointer;
        border: 1px solid transparent;
        transform: all 0.5s;
    }
    .products-filter--title:hover {
        background-color: rgba(255,255,255,1);
        color: #e61e2a;
        border: 1px solid #e61e2a;
        transform: all 0.2s;
    }
    .products-filter--list {
        display: block;
        width: 100%;
    }
    .products-filter--item {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

/*

    PRODUCT LIST

*/

.products-list--row {
    padding: 0;
}

.products-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-family: "Locator", Arial, sans-serif;
}
.products-list b{
    font-weight: bold;
}
.products-list--item {
    display: block;
    width: 33%;
    border-left: 1px solid transparent;
    border-bottom: 1px solid transparent;
    position: relative;
    color: white;
    text-align: center;
    overflow: hidden;
}
.products-list--img::after {
    content:'';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.5) 20%, rgba(0,0,0,0) 50%);
}

.products-list--block {
    position: absolute;
    bottom: 3rem;
    width: 90%;
    padding: 1rem 2rem;
    z-index: 1;
    opacity: 0.8;
    left: 5%;
    overflow: hidden;
    background: #d5d5d5;
    height: 155px;
    -webkit-transition: height 0.4s linear; /* For Safari 3.1 to 6.0 */
    transition: height 0.4s linear;
}
.products-list--block .button {
    padding: 1.1rem 3rem;
}
.products-list--block::before {
    content:'';
    position: absolute;
    top: 0; bottom: 0;
    left: 0; right: 0;
    z-index: -1;
    opacity: 0;
}
.products-list--item:hover .products-list--block  {
    height: 86%;
}
.products-list--item:hover h2.products-list--title {
    margin-top: 9rem;
}

.products-list--item:hover .products-list--more {
    display: block;
}
.products-list--title {
    margin-bottom: 0.6rem;
    font-size: 1.6rem;
    line-height: 2rem;
    font-weight: 300;
	text-transform: none;
}
h2.products-list--title {
    border-bottom: 1px solid white;
    padding-bottom: 1rem;
    margin-bottom:0;
    transition: margin-top 0.4s linear;
    font-weight: bold;
}
.products-list--title.products-puissance {
    font-size: 1.4rem;
}
.products-list--text {
    padding-top: 1rem;
    font-size: 1.6rem;
    line-height: 1.8rem;
    margin: 0 0 0.6rem 0;
}
.button.white {
    border-color: #fff;
    color: #fff;
}

.products-list--more {
    display: none;
}
/* Colors */
.products-list--block.vert {
    background-color: rgb(64,161,85);
}
.products-list--block.rouge {
    background-color: rgb(255,50,50);
}
.products-list--block.orange {
    background-color: rgb(245,133,49);
}
.products-list--block.bleu {
    background-color: rgb(43,129,178);
}

/* Hover */
/*.products-list--item:hover .products-list--block,*/
/*.products-list--item.select .products-list--block {*/
    /*opacity: 0.8;*/
    /*transition: opacity 0.5s;*/
/*}*/

/* RWD */
@media (max-width: 1024px) {
    .products-list--block {
         transform: translateY(0);
    }
	.products-list--item {
        width: 33%;
    }
    .products-list--item .products-list--block::before {
        opacity:0.8;
    }
}
@media (max-width: 700px) {
    .products-list--item {
        width: 50%;
    }
}
@media (max-width: 450px) {
    .products-list--row {
        padding: 0;
    }
    .products-list--item {
        width: 100%;
        display: flex;
        margin: 0;
        border: none;
        margin-bottom: 1px;
    }
    .products-list--img::after {
        background: none;
    }
    .products-list--img {
        width: 33.33%;
        height: 155px;
    }
    .products-list--img img {
        height: 100%;
    }
    .products-list--block {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 66.66%;
        left: 0;
        bottom: 0;
        padding:0;
        transition: none;
    }
    .products-list--item:hover .products-list--block  {
        height: auto;
        transition:none;
    }
    .products-list--item:hover h2.products-list--title {
        margin-top: inherit;
        transition:none;
    }
    .products-filter--block.filter-title, .products-list--item:hover .products-list--more,.products-filter--block.filter-clear {
        display:none;
    }
    .products-filter { margin: 0;}
	.products-list--block::before {
		background: none !important;
    }
    .products-filter--block.bar {
        margin: 0 0 1rem 0;
        padding: 0;
    }
	.products-list--block.vert {
		background-color: rgba(64,161,85,0.8);
	}
	.products-list--block.rouge {
		background-color: rgba(255,50,50,0.8);
	}
	.products-list--block.orange {
		background-color: rgba(245,133,49,0.9);
	}
	.products-list--block.bleu {
		background-color: rgba(43,129,178,0.9);
	}
}

/*
    
    PRODUCT SHEET

*/


/* Slider + Excerpt */
.product-sheet--row1 {
    display: flex;
    flex-wrap: wrap;
}
.product-sheet {
    position: relative;
}
.product-sheet--close {
	display: block;
    width: 20px;
	height: 20px;
	position: absolute;
    right: 10px;
    top: 10px;
}
.product-sheet--close svg {
    display: block;
    fill: rgba(0,0,0,0.5);
    transition: fill 0.5s;
}
.product-sheet--close:hover svg {
    fill: rgba(0,0,0,1);
    transition: fill 0.2s;
    cursor: pointer;
}
.product-sheet--slider {
    width: 50%;
}

.product-sheet--excerpt {
    width: 49.9%;
    color: #fff;
    padding: 3rem 2rem 1rem 2rem;
}
h2.product-sheet--excerpt--subtitle-list {
    color: black;
    text-transform: inherit;
    margin-bottom: 0;
    font-size: 2.2rem;
}
.product-sheet--middle {
    position: absolute;
    top: 1rem;
    left: -5rem;
    z-index: 21;
    width: calc(100% + 7rem);
    padding: 2rem 0 2rem 4rem;
}
.product-sheet--middle span {
    padding: 1rem 0 0 1rem;
}
.product-sheet--middle span b{
    font-weight: 500;
}
.product-sheet--excerpt--title {
    margin-bottom: 1rem;
	text-transform: none;
    color: #000000;
    font-family: "Locator", Arial, sans-serif;
}
.product-sheet--excerpt--title span {
    font-weight: 300;
}
.product-sheet--excerpt--subtitle {
    display: block;
    font-weight: 300;
    line-height: 1.8rem;
    text-transform: none;
    font-family: "Locator", Arial, sans-serif;
    padding: 1rem 0 0 1rem;

}
.product-sheet--excerpt ul li{
    list-style: none;
    padding-left: 1em;
    text-indent: -1em;
}
.product-sheet--excerpt ul li:before {
    content: "➜";
    left: -1em;
    position: relative;
}
.product-sheet--icon-list {
    display: flex;
    align-items: center;
}
.product-sheet--icon {
    align-self: center;
    width:13%;
    margin-left: 2rem;
}
.product-sheet--icon img {
    width: 6rem;
    height: 4rem;
}

.product-sheet--text {
    margin-top: 1rem;
    font-size: 1.4rem;
}

.product-sheet--info-list {
    display: flex;
    flex-wrap: wrap;
    color: rgba(64,161,85,0.8);
    min-height: 83px;
    position: relative;
    left: -1rem;
    width: calc(100% + 7rem);
    z-index: 21;
}
.product-sheet--info {
    position: relative;
    text-align: center;
    min-width: 77px;
    margin-right: 1rem;
}
.product-sheet--info .product-sheet-info-second cls-1 {
    fill:#40a155;
}
.product-sheet--info .product-sheet-info-second .cls-2 {
    fill:#fff;
}
.product-sheet--info .product-sheet-info-second .cls-3{
    fill:none;stroke:#fff;stroke-miterlimit:10;stroke-width:0.75px;
}
.product-sheet--info #credit-impot-hover.product-sheet-info-second  .cls-1 {
    fill: none;
    stroke: #e61e2a;
    stroke-miterlimit: 10;
}
.product-sheet--info #credit-impot-hover.product-sheet-info-second .cls-2 {
    fill:#e61e2a;
}
.product-sheet-info-second {
    display: none;
    margin-top: -0.4rem;
}
.product-sheet--info:hover .product-sheet-info-second {
    display: flex;
    height: 72px;
    background-color: rgb(64,161,85);
    font-size: 12px;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 10px;
    width: 72px;
}
.product-sheet--info:hover .product-sheet-info-first {
    display: none;
}
.product-sheet--info svg {
    width: 70px;
	height: 70px;
    border: none;
    padding: 0.25rem;
}
.product-sheet--info .product-sheet-info-second svg {
    width: 77px;
    height: 77px;
}
.vert .product-sheet--info svg {
    fill: rgb(64,161,85);
}
.vert .product-sheet--info svg .hybridation_stroke {
    stroke: rgb(64,161,85);
}
.vert .product-sheet--info:hover .product-sheet-info-second {
    background-color: rgb(64,161,85);
}
.bleu .product-sheet--info svg {
    fill: rgba(43,129,178,0.9);
}
.bleu .product-sheet--info svg .hybridation_stroke {
    stroke: rgba(43,129,178,0.9);
}
.bleu .product-sheet--info:hover .product-sheet-info-second {
    background-color: rgba(43,129,178,0.9);
}
.orange  .product-sheet--info svg {
    fill: rgb(245,133,49);
}
.orange .product-sheet--info svg .hybridation_stroke {
    stroke: rgb(245,133,49);
}
.orange .product-sheet--info:hover .product-sheet-info-second {
    background-color: rgb(245,133,49);
}
.product-sheet--info--leg {
    position: relative;
    display: block;
    left: 0;
    right: 0;
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.4rem;
}

@media (max-width: 400px) {
    .product-sheet--info {
        margin-bottom: 2rem;    
    }
    .product-sheet--middle {
        width: 100%;
        padding: 3rem 2rem;
        position: relative;
        left: 0;
    }
    .product-sheet--icon {
        margin-left: 0px;
        width: 100%;
    }
    .product-sheet--icon img {
        width: 6rem;
        height: 4rem;
    }
    .product-sheet--info-list {
        margin-top: 2rem;
        left: 0;
    }
}

/* Colors */
.vert .product-sheet .product-sheet--middle {
    background-color: rgba(64,161,85,0.8);
}
.rouge .product-sheet .product-sheet--middle {
    background-color: rgba(255,50,50,0.8);
}
.orange .product-sheet .product-sheet--middle {
    background-color: rgba(245,133,49,0.9);
}
.bleu .product-sheet .product-sheet--middle {
    background-color: rgba(43,129,178,0.9);
}

@media (max-width: 960px) {
    .product-sheet {
        padding: 35px 1rem 1rem 1rem;
    }
    .product-sheet--slider {
        width: 100%;
    }
    .product-sheet--excerpt {
        width: 100%;
    }
    .product-sheet--icon {
        text-align: center;
        margin-bottom: 1rem;
    }
}

/* Description + Documents */
.product-sheet--row2 {
    display: flex;
    flex-wrap: wrap;
    background-color: #f7f7f7;
    margin-top: 2px;
}

.product-sheet--description {
    padding: 2rem;
    padding-left: 5rem;
    width: 66.66%;
    overflow-x: hidden;
}
.product-sheet--description--titre {
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.2rem;
    margin-bottom: 1rem;
    text-transform: none;
    position: relative;
}
.product-sheet--description--titre::before {
    content:'';
    display: inline-block;
    position: absolute;
    width: 70px;
    height: 20px;
    left: -70px;
    top: 15px;
    background: url('../img/ico-product-sheet-plus.svg') center right no-repeat;
}

.product-sheet--description--text {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.8rem;
    margin-bottom: 2rem;
}
.product-sheet--description--text:last-child {
    margin-bottom: 0;
}

.product-sheet--documents {
    display: flex;
    justify-content: space-between;
    padding: 2rem 0;
}
.product-sheet--documents--titre {
    margin-left: auto;
    margin-right: auto;
}

.product-sheet--documents--btn {
    padding: 1rem 2rem 1rem 5.5rem;
    width: 30%;
}

.product-sheet--documents--btn span,
.ico-notice span {
    position: relative;
	margin-left: 3.5rem;
}
.product-sheet--documents--btn span::before,
.ico-notice span::before {
    content:'';
    position: absolute;
    display: block;
    width: 3rem;
    height: 3rem;
    left: -3.5rem;
    top: 50%;
    transform: translatey(-50%);
}
.product-sheet--documents--btn.ico-book span::before {
    background-image: url('../img/ico-book.svg');
}
.product-sheet--documents--btn.ico-download span::before,
.ico-notice span::before {
    background: url('../img/ico-download.svg') center center no-repeat;
    background-size: 75%;
}

@media (max-width: 960px) {
	.product-sheet--documents--btn.button {
		padding: 1.1rem 0.3rem;
		width:80%;
	}
}
@media (max-width: 700px) {
    .product-sheet--description {
        width: 100%;
        padding-left: 4rem;
    }
    .product-sheet--documents {
        width: 100%;
    }
    .product-sheet--documents--btn.button {
        width:33%;
    }
}

/* Aside */
#product-sheet-aside-nav-container {
    position: -webkit-sticky;
    position: sticky;
    top: 60px;
    background-color: white;
    z-index: 99;
}
.product-sheet--aside {
    margin-top: 1px;
}
/* Nav */
ul.product-sheet--aside--nav.product-sheet--aside--nav--list {
    margin-top: 1rem;
}
.product-sheet--aside--nav--list {

    padding-left: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px solid #e5e5e5;
}

.product-sheet--aside--nav--item {
    text-transform: uppercase;
    font-size: 1.6rem;
    line-height: 1.8rem;
    transition: color 1s;
    color: #000000;
    font-family: "Locator", Arial, sans-serif;
    font-weight: bold;
}
.product-sheet--aside--nav--item a::after {
	border-top: 2px solid #e61e2a;
    content: "";
    display: block;
    margin-top: 0.8rem;
    transition: width 0.5s ease 0s;
	width: 0;
}
	
.product-sheet--aside--nav--item:hover,
.product-sheet--aside--nav--item.active {
    color: rgba(0,0,0,1);
    cursor: pointer;
    transition: color .5s;
}
.product-sheet--aside--nav--item:hover a::after,
.product-sheet--aside--nav--item.active a::after {
    transition: width 0.2s ease 0s;
    width: 100%;
}
.product-sheet--aside--nav--item.mobile {
        display: none; /* Affichage mobile uniquement */
}  

@media (max-width: 700px) {
    .product-sheet--aside--nav--item.mobile {
        display: block; /* Affichage mobile uniquement */
    }  
    .product-sheet--aside--nav {
        display: none;
    }
    #producs-bottom {
        display: none;
    }
    .product-sheet--aside--nav--item {
        background-color: #f0efef;
        text-align: center;
        margin-bottom: 0;
        padding-left: 1rem;
        padding-right: 1rem;
        position: relative;
        
    }
    .product-sheet--aside--nav--item::after {
        content: "";
        background: url('../img/ico-arrow-down-light.svg') no-repeat 95% 60%;
        background-size: 2.5rem;
        opacity: 0.5;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        position: absolute;
    }
    .product-sheet--aside--nav--item.active::after {
        content: "";
        background: url('../img/ico-arrow-down-light.svg') no-repeat 5% 50%;
        transform: rotate(180deg);
        background-size: 2.5rem;
        opacity: 0.5;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        position: absolute;
    }
    
}

/* Content */
.product-sheet--aside--content {
    margin-top: 5px;
}

/* Move up */
.product-sheet--close-up {
    display: block;
    font-size: 0;
    width: 100%;
    height: 4rem;
    background: #f4f4f4 url(../img/ico-arrow-up.svg) no-repeat center center;
    background-size: 3rem;
    margin-top: 2rem;
}

/*
    
    CONTACT FORM

*/

.contact-form.projet
 {
    background-size: cover;
    padding: 4rem;
    background-image:url('../img/contact-form-projet-bg.jpg');

}

.contact-form {
    background-image: url('../img/contact-form-bg.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 4rem 1rem 4rem 1rem;
}
.contact-form--ct {
    display: flex;
    flex-wrap: wrap;
}

.contact-form--form {
    width: 69.66%;
}
.contact-form--form input, .contact-form--form select {
    border: 0;
    background-color: rgba(255,255,255,0.75);
    padding: 1rem;
    margin-bottom: 2rem;
    font-size: 1.4rem;
}

.contact-form--form textarea {
    border: 0;
    background-color: rgba(255,255,255,0.75);
    min-height: 10rem;
}
.contact-form--form fieldset label {
    color: #000;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.contact-form--form fieldset input[type="checkbox"] + label::before {
    background-color: #ffffff;
}
.contact-form--map {
    width: 29.33%;
    padding: 2rem;
}

@media (max-width:700px) {
    .contact-form {
        padding: 2rem 0;
    }
    .contact-form--form {
        width: 100%;
    }
    .contact-form--map {
        display: none;
    }
}
@media (max-width:450px) {
    .contact-form,
	.contact-form.projet {
        background-image: none;
		background-color: #ededed;
	}
	.contact-form--form input {
		background-color: rgba(255,255,255,1);
	}
	.contact-form--form fieldset label {
		color: #000;
	}
    [class*="grid-"] > * {
        width: calc(100% - 4rem - .01px)
    }
}


/*

    DOCUMENTATIONS

*/

.documentations { }

.documentations--row { }

/* Documenation list */
.documentations--list {
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    row-gap: 5px;
    column-gap: 6px;
}
/*.documentations--list > .documentations--item:last-of-type {
    margin-right: auto;
    margin-left: 0.7rem;
}*/

.documentations--item {
    width: 295px;
    height: 330px;
    margin-bottom: 5px;
    position: relative;
    overflow: hidden;
}
/*.documentations--item::after {*/
    /*content:'';*/
    /*position: absolute;*/
    /*top: 0;*/
    /*bottom: 0;*/
    /*left: 0;*/
    /*right: 0;*/
    /*background-color: rgba(0,0,0,0);*/
    /*transition: background-color 1s;*/
/*}*/
/*.documentations--item:hover.documentations--item::after,*/
/*.documentations--item.select.documentations--item::after {*/
    /*background-color: rgba(0,0,0,0.66);*/
    /*transition: background-color .5s;*/
/*}*/
.documentations--item--info {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    /*top: 0; bottom: 0;*/
    /*transform: translateY(52%);*/
    /*transition: transform 1s;*/
    color: #fff;
    text-align: center;;
    z-index: 1;
    height: 80px;
    overflow: hidden;
    background-color: white;
}

/*.documentations--item--info.fr {*/
    /*transform: translateY(61%);*/
/*}*/
/*.documentations--item:hover .documentations--item--info,*/
/*.documentations--item.select .documentations--item--info {*/
    /*transform: translateY(0);*/
    /*transition: transform .5s;*/
/*}*/
.documentations--item--image {
    position: relative;
    height: 250px;
    display: block;
}
.documentations--item img {
    height: 100%;
    width: 100%;
}
.documentations--item--image h3 {
	width: 74%;
    bottom: 0;
    position: absolute;
    font-weight: 500;
    color: white;
    font-size: 1.6rem;
    left: 20px;
}
.documentations--item--info--action {
    display: flex;
    width: 100%;
    height: 25px;
}
.documentations--item--info--action a {
    display: flex;
    align-items: center;
    height: 25px;
    padding: 0 2rem;
    display: flex;
    align-items: center;
}
.documentations--item--info--action a.documentations--btn-dl::before{
    mask: url(../icons-svg/icons-documentations.svg?v3#ico-download);
    -webkit-mask-image: url(../icons-svg/icons-documentations.svg?v3#ico-download);
    background: rgba(0,0,0,0.57);
    width: 16px;
    right: 20px;
}
.documentations--item--info--action a.documentations--btn-dl.active::before,
.documentations--item--info--action a.documentations--btn-dl:hover::before,
.documentations--item--info--action a.doc-papier.active::before,
.documentations--item--info--action a.doc-papier:hover::before{
    mask: url(../img/check-circle.svg?v1);
    -webkit-mask-image: url(../img/check-circle.svg?v1);
    width: 20px;
    height: 20px;
    right: 18px;
}
.documentations--item--info--action a.documentations--btn-dl.active:hover::before,
.documentations--item--info--action a.doc-papier.active:hover::before
{
    mask: url(../img/icon-doc-croix.svg?v1);
    -webkit-mask-image: url(../img/icon-doc-croix.svg?v1);
    width: 16px;
    height: 16px;
    right: 21px;
    top:3px;
    background: #E93540;
}
.documentations--item--info--action a.doc-papier.active:hover,
.documentations--item--info--action a.documentations--btn-dl.active:hover {
    background-color: white;
    border-color: #E93540;
    color: #E93540;
}
.documentations--item--info--action a.doc-view::before {
    mask: url(../icons-svg/icons-documentations.svg#ico-view);
    -webkit-mask-image: url(../icons-svg/icons-documentations.svg#ico-view);
    background-color: rgba(0,0,0,0.57);
    height: 11px;
    top: 6px;
    right: 18px;
}
.documentations--item--info--action a.doc-papier::before{
    mask: url(../icons-svg/icons-documentations.svg?v3#ico-papier);
    -webkit-mask-image: url(../icons-svg/icons-documentations.svg?v3#ico-papier);
    background: rgba(0,0,0,0.57);
}
.documentations--item--info--action a::before,
.sticky--doc-content .commande::before,
.sticky--doc-content .download::before {
    content: "";
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
    width: 20px;
    height: 17px;
    position: absolute;
    right: 16px;
    top: 2px;
}
.documentations--item--info--action > :first-child {
    align-self: flex-start;
    text-align: left;
    position: relative;
    width: 100%;
    font-weight: 300;
    font-size: 1.3rem;
}
.documentations--btn-view,
.documentations--btn-dl{
    border-color: white;
    color: black;
    background-color: transparent;
	min-width: 160px;
    cursor: pointer;
}
.documentations--btn-view:hover,
.documentations--btn-dl:hover {
    background-color:  #E93540;
    opacity: 65%;
}
.documentations--btn-view.active,
.documentations--btn-dl.active{
    color: white;
    background-color:  #E93540;
    opacity: 85%;
}

.documentations--item--info--action a.doc-papier span.documentations--item--info--action--text-active,
.documentations--item--info--action a.doc-dl span.documentations--item--info--action--text-active,
.documentations--item--info--action a.doc-dl.active span.documentations--item--info--action--text-standard,
.documentations--item--info--action a.doc-papier.active span.documentations--item--info--action--text-standard
/*.documentations--item--info--action a.doc-dl:hover span.documentations--item--info--action--text-standard,*/
/*.documentations--item--info--action a.doc-papier:hover span.documentations--item--info--action--text-standard*/
{
    display:none;
}
.documentations--item--info--action a.doc-papier span.documentations--item--info--action--text-standard,
.documentations--item--info--action a.doc-dl span.documentations--item--info--action--text-standard{
    display:block;
}
/*.documentations--item--info--action a.doc-papier:hover span.documentations--item--info--action--text-active,*/
.documentations--item--info--action a.doc-papier.active span.documentations--item--info--action--text-active,
/*.documentations--item--info--action a.doc-dl:hover span.documentations--item--info--action--text-active,*/
.documentations--item--info--action a.doc-dl.active span.documentations--item--info--action--text-active{
    display:block;
}


.documentations--item--info--action a.doc-view:hover::before,
.documentations--item--info--action a.documentations--btn-dl:hover::before,
.documentations--item--info--action a.doc-papier:hover::before,
.documentations--item--info--action a.documentations--btn-dl.active::before,
.documentations--item--info--action a.doc-papier.active::before{
    background-color: white;
}
.documentations--btn-trash {
    font-size: 0;
    background: url('../img/ico-trash.svg') center center no-repeat;
    width: 4rem;
    height: 3.5rem;
	cursor: pointer;
	border: none;
}
.documentations--btn-trash:hover {
    opacity: 0.8;
}
#documentation_form_dl > div {
    display: flex;
}
#documentation_form_dl > div > label {
    width: 35%;
    min-width: 90px;
    font-weight: 500;
}
#dialog-documentation_download  input[type="checkbox"] + label::before {
    background-color: white;
}
#dialog-documentation_download_ok h3,
#dialog-documentation_download h3 {
    font-weight: 500;
}

#product-solo h1 {
     text-transform: inherit;
}

.button-position {
    margin: 0 auto;
    display: block;
}
.button-centre {
    text-align: center;
}
.button-droite {
    text-align: right;
}
.button-gauche {
    text-align: left;
}
.doc-valid-desktop {
    display:block;
}
.doc-valid-inline-desktop {
    display: inline-block;
}
.doc-valid-mobile {
    display:none;
}
@media (max-width: 1024px) {
	.documentations--item {
        width: 33%;
    }
	.documentations--item.documentations--item::after {
		background-color: rgba(0,0,0,0.5);
		transition: background-color .5s;
	}
	.documentations--item .documentations--item--info {
		transform: translateY(0);
		transition: transform .5s;
	}
	.documentations--item .documentations--item--info h3 {
		font-size: 1.5rem;
		font-weight: 300;
		line-height: 1.7rem;
		margin-bottom: 10px;
	}
}
@media (max-width: 960px) {
	.documentations--item .documentations--item--info {
		padding: 0;
	}
}
@media (max-width: 700px) {
    .documentations--item {
        width: 49%;
    }
	.documentations--item .documentations--item--info {
		padding: 1rem;
	}
}
@media (max-width: 570px) {
    .documentations .documentations--row {
        padding: 0 !important;
    }
    .documentations--item .documentations--item--info {
        padding: inherit;
    }
    .doc-valid-desktop,.doc-valid-inline-desktop  {
        display:none;
    }
    .doc-valid-mobile {
        display:block;
    }
    .download {
        margin-left: -30px;
    }
    .documentations--item--image {
        height: auto;
    }
    .documentations--item {
        width: 100%;
        height: 100%;
        overflow: inherit;
    }
    .sticky--doc-content .download::before{
        mask: url(../icons-svg/icons-documentations.svg?v3#ico-download);
        -webkit-mask-image: url(../icons-svg/icons-documentations.svg?v3#ico-download);
        background: white;
        width: 16px;
        right: -40px;
        top: 8px;
        transform: scale(1.4);
    }
    .sticky--doc-content .commande::before{
        mask: url(../icons-svg/icons-documentations.svg?v3#ico-papier);
        -webkit-mask-image: url(../icons-svg/icons-documentations.svg?v3#ico-papier);
        background: white;
        width: 20px;
        height: 17px;
        position: absolute;
        right: -43px;
        top: 9px;
        transform: scale(1.4);
    }
}

/* Documentaitons form */
.documentions--form {
    margin-top: 0;
    margin-bottom: 1rem;
}
@media (max-width: 400px) {
    .documentions--form {
        padding: 1rem;
    }
    .documentions--form--checkbox {
        
    }
}

/* Documentaiton block-basket */
.documentations--block-basket {
    width: 100%;
    position: fixed;
    bottom: 0;
    left:0;
    background-color: rgba(96,96,96,1);
    padding: 1rem;
    text-align: right;
    opacity: 0.98;
    transition: opacity 1s;
	z-index: 9999;
	display: none;
}
.documentations--block-basket:hover {
    opacity: 1;
    transition: opacity 0.5s;
}
.documentations--block-basket--ico {
    display: inline-block;
    color: white;
	/*
    background-image: url(../img/ico-basket.svg);    
    background-size: contain;
    background-repeat: no-repeat;
	padding: 0.3rem 0 0 2.5em;
	*/
    text-decoration: none;
    margin-right: 2rem;
    height: 2.5rem;
    line-height: 2.5rem;
}
.documentations--block-basket--ico:hover {
    color: white !important;
    opacity: 0.8;
}
.documentations--block-basket--ico img{
	width: 25px;
	height: 25px;
	margin-top: -8px;
	margin-right: 4px;
}
.documentations--block-basket--info {
    color: white;
    margin-right: 2rem;
}
@media (max-width: 400px) {
    .documentations--block-basket {
        text-align: center;
    }
    .documentations--block-basket--btn {
        margin-top: 1rem;
    }
}
.d-flex {
    display: flex !important;
}
.justify-content-center {
    justify-content: center !important;
}
.align-items-center {
    align-items: center !important;
}
.main-color {
    color: #E61E2A !important;
}

/*FAQ*/
.search-box {
    justify-content: center;
    margin-top: 1rem;
}

.search-box input[type="text"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 50px;
    outline: none;
}

.search-icon {
    position: absolute;
    right: 45px;
    top: 72%;
    width: 20px;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #888;
}

h1.h1_faq{
    font-size: 3rem;
    line-height: 5rem;
    font-family: 'Locator', Arial, sans-serif;
    font-weight: 500;
    text-transform: none;
    text-align: center;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
    padding: 0 2rem;
}
.thematique_faq {
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 2rem;
    background-color: #fff;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    width: calc(100% - 4rem - .01px);
 }

.thematique_faq:hover {
    transform: translateY(-5px);
}

.thematique_faq h2 {
    font-size: 1.8rem;
    margin-bottom: 1.4rem;
    font-weight: 500;
    line-height: 2.2rem;
}

.thematique_faq p {
    font-size: 1.5rem;
    color: black;
    margin: 0 0 1.4rem 0;
}

.thematique_faq .button--image{
    width: 18px !important;
    height: 18px !important;
}

.thematique_faq .button--text{
    font-size: 1.4rem !important;
    font-weight: 400 !important;
}

.row-white.row-faq {
    padding: 2rem 0 0 0;
}

.return-faq {
    transform: rotate(180deg);
    background-size: auto !important;
}

@media (max-width: 850px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur les écrans moyens */
    }
}

@media (max-width: 640px) {
    .grid-container {
        grid-template-columns: 1fr; /* 1 colonne sur les petits écrans */
    }
}

/*Fin FAQ*/

/*

    Notice

*/

/* FORMULAIRES COMMUN */
.contact-form {
    background: none;
    /*background-size: 100% 100%;*/
    /*background-repeat: no-repeat;*/
    padding: 4rem 0rem 4rem 0rem;
}
.contact-form.projet-contact {
    padding-bottom: 0;
}
.contact-form--ct {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    height:auto;
}
.contact-form--ct .col-left {
    background-image: url('../img/contact_image.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 526px;
    height: 623px;
}
.contact-form--ct .col-left.projet {
    background-image: url('../img/projet_image.png');
}
.installateur-form .contact-form--ct .col-left {
    background-image: url('../img/installateur-image.png');
}
.contact-form--ct .col-right {
    width: 674px;
    height: 100px;
    position: relative;
    padding-top: 4rem;
    padding-left: 1rem;
}
.documentions--form .contact-form--ct .col-right {
    width: 100%;
    height: 100%;
    padding-top: 1rem;
    padding-left: 1rem;
}
.documentions--form .coordonnee-container {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
}
.documentions--form .coordonnee-container .input-group,
.documentions--form .coordonnee-container .doc-install_contact{
    width: 45%;
    margin-bottom: 0;
}
.contact-form--ct .col-right .block-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact-form--ct .col-right h2 {
    font-size: 2.6rem;
    font-weight: 500;
}
.contact-form--ct .col-right h3 {
    font-size: 1.6em;
    line-height: 1em;
    font-weight: 400;
}
.contact-form--ct .col-right input[type=text],
.contact-form--ct .col-right input[type=email],
.contact-form--ct .col-right input[type=tel],
.contact-form--ct .col-right input[type=number],
.contact-form--ct .col-right select
{
    border-top: 0;
    border-left: 0;
    border-right: 0;
    margin-top: 1rem;
    padding-top: 5px;
    padding-bottom: 5px;
}
.contact-form--ct .col-right input[type=text].erreurFormulaire,
.contact-form--ct .col-right input[type=tel].erreurFormulaire,
.contact-form--ct .col-right input[type=email].erreurFormulaire,
.contact-form--ct .col-right input[type=number].erreurFormulaire,
.contact-form--ct .col-right select.erreurFormulaire,
.contact-form--ct .col-right textarea.erreurFormulaire
{
    border-top: 1px solid #e61e2a;
    border-left: 1px solid #e61e2a;
    border-right: 1px solid #e61e2a;
    border-bottom: 1px solid #e61e2a;
    margin-top: 1rem;
    box-shadow: none;
}
.documentions--form .coordonnee-container .input-group  input[type=email],
.documentions--form .coordonnee-container .input-group  input[type=tel],
.documentions--form .coordonnee-container input[type=text],
.documentions--form .coordonnee-container .col-right select,
.documentions--form .coordonnee-container .input-group  input[type=email].erreurFormulaire,
.documentions--form .coordonnee-container .input-group  input[type=tel].erreurFormulaire,
.documentions--form .coordonnee-container input[type=text].erreurFormulaire,
.documentions--form .coordonnee-container .col-right select.erreurFormulaire{
    margin:  0;
}
.contact-form--ct .col-right div.erreurFormulaire {
    border-top: 1px solid #e61e2a;
    border-left: 1px solid #e61e2a;
    border-right: 1px solid #e61e2a;
    border-bottom: 1px solid #e61e2a;
    padding: 0.7rem 0;
    box-shadow: none;
}
.contact-form--ct .col-right .form-contact {
    background-color: white;
    width: 745px;
    position: absolute;
    right: 0;
    padding: 3rem;
    font-weight: 300;
}
.documentions--form .contact-form--ct .col-right .form-contact,
.contact-form--ct.form-notices .col-right .form-contact
{
    position: relative;
    width: 100%;
    padding: 0;
}
.contact-form--ct .col-right #form-1 .form-contact {
    height: 432px;
}
.contact-form--ct .col-right #form-1 .form-contact .block-choix {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.contact-form--ct .col-right #form-4,
.contact-form--ct .col-right #form-5,
.contact-form--ct .col-right #form-6,
button.next,
button.return,
button.send,
.title-formulaire,
.contact-form--ct .col-right .list-puce
{
    display: none;
}
.contact-form--ct .col-right #form-2, .contact-form--ct .col-right #form-3,
.contact-form--ct .col-right #form-4, .contact-form--ct .col-right #form-5
,.contact-form--ct .col-right #form-6
,.contact-form--ct .col-right #form-7
,.contact-form--ct .col-right #form-8
,.contact-form--ct .col-right #form-9{
    margin-bottom: 5rem;
    width: 100%;
}
.contact-form--ct .col-right #form-7
,.contact-form--ct .col-right #form-8
,.contact-form--ct .col-right #form-9{
    margin-bottom: 2rem;
    width: 100%;
}
.contact-form--ct .col-right #form-2 .form-contact {
    min-height: 207px;
    font-size: 1.6rem;
}
.contact-form--ct .col-right .form-contact,
.contact-form--ct .col-right .block-choix {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}
.contact-form--ct .col-right .block--choix-element {
    margin-top: 2rem;
    width: 326px;
    height: 109px;
    border: 1px solid #cccccc;
    border-radius: 2%;
    display: flex;
}
.contact-form--ct .col-right .block--choix-element:hover {
    cursor: pointer;
}
.contact-form--ct .col-right .block--choix-element:hover svg,
.contact-form--ct .col-right .block--choix-element:hover p
{
    fill: #40a155;
    color: #40a155;
}
.contact-form--ct .col-right .block--choix-element p {
    line-height: 1.3;
}
.contact-form--ct #choix-projet {
    width: 100%;
}
.contact-form--ct #choix-projet .picto {
    width: 104px;
}
.contact-form--ct #choix-projet .element-text {
    width: 80%;
    text-align: center;
    padding: 3rem 0.7rem;
}
.contact-form--ct #choix-projet .element-title {
    margin-top: -1rem;
    margin-bottom: 2rem;
}
.block--choix-element .picto {
    width: 98px;
    height: 100%;
    display: block;
    padding: 1.5rem;
    display: flex;
    align-items: center;
}
.block--choix-element .element-title {
    font-weight: 500;
    font-size: 1.6rem;
}
.block--choix-element .element-text {
    width: 204px;
    height: 100%;
    display: block;
    padding: 1rem 1rem 1rem 0;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.3rem;
}
.form-contact .block-button {
    text-align: right;
    bottom: 20px;
    position: absolute;
    right: 40px;
}
.documentions--form .form-contact .block-button {
    position: relative;
    right: 10px;
}
.form-contact button.return, #dialog-contact-projet button,
#aides-financieres-results button.send{
    height: 49px;
    background-color: white;
    color: #e61e2a;
}
.form-contact button.next,
.contact-form button.send,
.contact-form button.send_aide,
.installateur-form button.send,
.documentions--form button.send,
.notices button.send-notice{
    height: 49px;
    background-color: #e61e2a;
    color: white;
    margin-left: 1rem;
}
.form-contact button.return:hover svg,
#aides-financieres-results button.send:hover svg{
    stroke: white;
}
.form-contact button.next:hover svg,
.contact-form button.send:hover svg,
.installateur-form button.send:hover svg,
.documentions--form button.send:hover svg,
.notices button.send-notice:hover svg,
.contact-form button.send_aide:hover svg
{
    stroke: #e61e2a;
}
.form-contact button.return:hover,
#aides-financieres-results button.send:hover,
#dialog-contact-projet button{
    background-color: #e61e2a;
    color: white;
}
.form-contact button.next:hover,
.contact-form button.send:hover,
.installateur-form button.send:hover,
.documentions--form button.send:hover,
.notices button.send-notice:hover,
.contact-form button.send_aide:hover
{
    background-color: white;
    color: #e61e2a;
}
.form-contact button.return svg,
#aides-financieres-results button.send svg{
    fill: none;
    stroke: #e61e2a;
    margin-right: 1.2rem;
    width: 20px;
}
.form-contact button.next svg,
.contact-form button.send svg,
.installateur-form button.send svg,
.documentions--form button.send svg,
.notices button.send-notice svg,
.contact-form button.send_aide svg
{
    fill: none;
    stroke: white;
    margin-right: 1.2rem;
    width: 20px;
}
.form_contact--title {
    display: flex;
}
.form_contact--title h3 {
    margin-bottom: 2rem;
    text-align: left;
    font-size: 2.4rem;
    line-height: 2.4rem;
    font-weight: 400;
}
.puce_child{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #cccccc;
    color: #fff;
    min-width: 1em;
    border-radius: 50%;
    vertical-align: middle;
    padding: 6px;
    margin: 0px;
    width: 23px;
    height: 23px;
    margin-right: -3px;
}

.puce_child.active{
    background-color: #e61e2a;
    border: 2px Solid #fff;
    color: #fff;
    min-width: 1em;
    border-radius: 50%;
    vertical-align: middle;
    padding: 6px;
    box-shadow: 0px -0px 0px 3px #e61e2a;
    -webkit-box-shadow: 0px -0px 0px 3px #e61e2a;
    -moz-box-shadow: 0px -0px 0px 3px #e61e2a;
    margin: 0px;
    width: 23px;
    height: 23px;
    cursor:pointer;
}
.vertical_line {
    border-top: 2px solid #cccccc;
    width: 20px;
    height: 1px;
    display: inline-block;
    margin-right: -4px;
}
.vertical_line.active {
    border-top: 2px solid #e61e2a;
}
.contact-form--ct .col-right .subtitle {
    font-size: 1.6rem;
    font-weight: 400;
}
.contact-form--ct .col-right .subtitle.with-space{
    margin-top: 4rem;
    margin-bottom: 1.5rem;
}
.contact-form--ct .col-right .form_radio_label {
    font-size: 1.4rem;
    margin-right: 1.2rem;
}
.contact-form--ct .list_title h2 {
    padding-left: 2rem;
}
.contact-form--ct .block_produit {
    display: flex;
    margin-bottom: 1rem;
}
.contact-form--ct input[type="radio"]:checked + label::before {
    background: url(../img/ico-radio-on-green.svg);
}
.contact-form--ct .produit_picto {
    height: 70%;
    display: block;
}
.contact-form--ct .produit_picto.sav {
    height: 59%;
    display: block;
}
.contact-form--ct .produit_picto svg {
    display: block;
    margin: 0 auto;
    height: 100%;
}
.contact-form--ct .block--produit_element {
    width: 135px;
    height: 95px;
    border: 1px solid #cccccc;
    border-radius: 3%;
    position: relative;
    margin-right: 5rem;
    cursor: pointer;
}
.contact-form--ct .block_produit.personne .block--produit_element {
    margin-right: 3rem;
}
.contact-form--ct .block--produit_element .buble {
    background-image: url('../img/buble.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 17px;
    height: 15px;
    display: block;
    position: absolute;
    right: 6px;
    top: 5px;
}
.contact-form--ct .block--produit_element.active .buble {
    background-image: url('../img/buble-checked.svg');
}
.contact-form--ct .block--produit_element:hover, .contact-form--ct .block--produit_element.active{
    fill: #40a155;
    color: #40a155;
    font-weight: 400;
}
.contact-form--ct .block--produit_element:hover #Tracé_186,
.contact-form--ct .block--produit_element:hover #Tracé_187,
.contact-form--ct .block--produit_element:hover #Ligne_18,
.contact-form--ct .block--produit_element:hover #Ligne_15,
.contact-form--ct .block--produit_element.active #Tracé_186,
.contact-form--ct .block--produit_element.active #Tracé_187,
.contact-form--ct .block--produit_element.active #Ligne_18,
.contact-form--ct .block--produit_element.active #Ligne_15
{
    stroke: #40a155;
}

.contact-form--ct .block--produit_element p {
    text-align: center;
    margin: 0;
    font-size: 1.4rem;
}
.contact-form--ct .block--produit_element.large {
    height: 103px;
    width: 137px;
}
.contact-form--ct .block--produit_element.large p {
   line-height: 1.4rem;
}
.input-group {
    position: relative;
    margin: 33px 0 20px;
}

.input-group input:focus {
    outline: none;
}

.input-group input, .input-group select
{
    color: #707070;
}
.input-group input:empty ~ label,
.input-group.select label{
    position: absolute;
    left: 10px;
    top: 0px;
    pointer-events: none;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.input-group.select label{
    top: -35px;
    left: 0;
    font-size: 12px;
    line-height: 3;
    color: black;
    font-weight: inherit;
    margin-top: 0;
    margin-bottom: 0;
}
.input-group input:focus ~ label,
.input-group input.notempty ~ label,
.input-group select.notempty ~ label,
.input-group.select label,
.input-group.novalid input:focus ~ label{
    top: -35px;
    left: 0;
    font-size: 12px !important;
    line-height: 3;
}
.error-form {
    font-size: 14px;
    color: rgb(228, 0, 32);
    display: none;
}
#form-doc-error.error-form {
    display: inline;
}
.error-form::before {
    background-image : url('../img/warning.svg');
    -webkit-background-size: 100%;
    background-size: 100%;
    display: inline-block;
    content: ' ';
    width: 15px;
    height: 15px;
    margin-right: 5px;
    vertical-align: text-top;
}
/* AIDES FINANCIERES */
.simulateur .contact-form--ct .col-left {
    background-image: url('../img/simulateur_image.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 526px;
    height: 909px;
}
.simulateur .contact-form--ct .col-right{
    width: 674px;
    height: 909px;
    position: relative;
    padding-top: 0;
    padding-left: 1rem;
}
.simulateur .contact-form--ct .col-right .form-contact {
    top: 0;
    padding-bottom: 0;
    height: 100%;
}
.simulateur .contact-form--ct .col-right .form_radio_label {
    position: relative;
    vertical-align: top;
}
.simulateur .contact-form--ct .col-right .form_radio_label::before{
    top: 10px;
}
#tab-container {
    width: 80%;
    margin:0 auto;
}
#tab-simulateur-aide {
    width: 100%;
    margin:0 auto;
    border-spacing: 5px;
    border-collapse: separate;
    border: 0;
}
#tab-simulateur-aide td {
    background-color: #F6F6F6;
    border-radius: 1px;
    border-color: white;
    font-weight: 400;
}
#tab-simulateur-aide td.first {
    width: 50%;
    text-align: left;
    padding-left: 5rem;
}
#tab-simulateur-aide tr.total td.first {
    text-align: right;
    padding-right: 5rem;
}
#tab-simulateur-aide td.second {
    width: 20%;
    text-align: center;
}
#tab-simulateur-aide tr.total td, .aides-coproprietaire-text .first-cop {
    background-color: #E61E2A;color: white;"
}
.aides-coproprietaire-text {
    background-color: #F6F6F6;
    padding: 3rem;
}
.aides-coproprietaire-text ul {list-style: none}
.aides-coproprietaire-text li::before {
    content: "•"; color: #E61E2A;
    display: inline-block;
    opacity: 0.6;
    font-size: 25px;
    margin-left: -1em;
    position: absolute;
    top: -7px;
}
.aides-coproprietaire-text li {
    position: relative;
}

@media (max-width: 960px) {
    .contact-form {padding-top: 0;}
    .contact-form--ct {height: auto; }
    .contact-form--ct .col-left {
        display: none;
    }
    .contact-form--ct .col-right {
        width: 100%;
        display: block;
        height: auto;
    }
    .contact-form--ct .col-right .form-contact {
        position: relative;
        width: 100%;
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 2rem;
    }
    .contact-form--ct .col-right .block--choix-element {
        width: 48%;
    }
    .contact-form--ct{
        height:auto !important;
    }
}
@media (max-width: 500px) {
    .documentions--form .coordonnee-container .input-group,
    .documentions--form .coordonnee-container .doc-install_contact{
        width: 100%;
        margin-bottom: 0;
    }
    .contact-form--ct .col-right .form-contact {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 0!important;
    }
    .contact-form  {
        padding-left: 0;
        padding-right: 0;
    }
    .contact-form--ct .col-left {
        width: 100%;
        height: auto;
    }
    .contact-form--ct .col-right {
        padding: 0;
    }
    .contact-form--ct #choix-projet .picto {
        width: 90px;
        height: 100%;
        display: block;
        padding: 1.5rem;
        display: flex;
        align-items: center;
    }
    .contact-form--ct #choix-projet .element-text {
        width: 236px;
        height: 100%;
        display: block;
        padding: 1rem 1rem 1rem 0;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 1.3rem;
    }
    .contact-form--ct #choix-projet .element-title {
        margin-top: auto;
        margin-bottom: auto;
    }
    .contact-form--ct .col-right .block-title {
        display: block;
    }
    .contact-form--ct .list_title {
        text-align: center;
        width: 100%;
        display: block;
    }
    .contact-form--ct .list_title h2 {
        margin-bottom: 0;
        padding-left: 0;
    }
    .contact-form--ct #chp_type_proprietaire label {
        margin-left:  0!important;
    }
    .simulateur .contact-form--ct .col-right {
        padding-left: 0;
    }
    .simulateur .block-button.txtright {
        bottom: 0 !important;
    }
    #tab-simulateur-aide tbody {
        display: flex;
        flex-direction: column;
    }
    #tab-simulateur-aide tbody tr {
        display: flex;
    }
    #tab-container {
        width: 100%;
    }
    #tab-simulateur-aide td.first { width: 60%}
    #tab-simulateur-aide td.second { width: 40%}
    table#tab-simulateur-aide tbody tr:nth-child(2n) {
        background-color: white;
    }
    .contact-form--ct .col-right .list-puce{
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
        margin-top: 1rem;
    }
    .contact-form--ct .col-right h3 {
        font-size: 2rem;
        font-weight: 500;
    }
    .contact-form--ct .col-right #form-2 {
        margin-bottom: 0;
    }
    .form-contact .block-button {
        position: relative;
        display: flex;
        justify-content: center;
        margin-top: 2rem;
        width: 100%;
        bottom: inherit;
        right: inherit;
    }
    .contact-form--ct .col-right .block--choix-element {
        width: 100%;
    }
    .contact-form--ct .block--produit_element, .contact-form--ct .block--produit_element.large {
        width: 100% !important;
        margin-right: 1rem;
    }
    .contact-form--ct txtright {
        text-align: center;
        margin: 0 auto;
    }
    .contact-form--ct #form-4 .block--produit_element,
    .contact-form--ct .block_produit.douche .block--produit_element{
        width: 45%;
        margin-right: 1rem;
        margin-top: 1rem;
    }
    .contact-form--ct .block_produit.personne .block--produit_element {
        width: 29%;
        margin-right: 1rem;
        margin-top: 1rem;
    }
    .contact-form--ct .block_produit.personne .block--produit_element:last-child {
        margin-right: auto;
        margin-left: 1rem;
    }
    .contact-form--ct #form-4 .block_produit,
    .contact-form--ct .block_produit.douche,
    .contact-form--ct .block_produit.personne
    {
        flex-wrap: wrap;
        justify-content: space-between;
    }
}
.notices {
    background-color: #f6f6f6;
}
/*.notices select {*/
    /*background-color: #f6f6f6;*/
/*}*/
.notices--btn {
    align-self: flex-end;
    margin-bottom: 1rem;
    min-height: 4rem;
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 400px) {
    .notices {
        padding: 1rem;
    }
    .notices--btn {
        margin-top: 1rem;
    }
}
main {
	margin-top: 60px;
}
main>div.bandeau {
	padding-top: 0 !important;
}

@media (max-width: 700px) {
	main {margin-top: 100px;}
}

.top-bar-right--lang--list,
.megamenu {
	display: none;
}
.megamenu {
	top: 0;
}

@media (min-width: 960px) {
	.multi-columns {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		  -ms-flex-wrap: wrap;
			  flex-wrap: wrap;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		  -ms-flex-direction: row;
			  flex-direction: row;
		margin-left: -4rem;
		align-items: center;
	}
	.multi-columns div[class*="columns-"] {
		box-sizing: border-box;
		margin-left: 4rem;
	}
	.multi-columns .columns-60 {
		width: calc(100% - 4rem);
	}
	.multi-columns .columns-30 {
		width: calc(50% - 4rem);
	}
	.multi-columns .columns-20 {
		width: calc(33% - 4rem);
	}
	.multi-columns .columns-40 {
		width: calc(66% - 4rem);

	}
	.multi-columns .columns-15 {
		width: calc(25% - 4rem);
	}
	.multi-columns .columns-45 {
		width: calc(75% - 4rem);
	}
	.multi-columns .columns-12 {
		width: calc(20% - 4rem);
	}
	.multi-columns .columns-24 {
		width: calc(40% - 4rem);
	}
	.multi-columns .columns-36 {
		width: calc(60% - 4rem);
	}
	.multi-columns .columns-48 {
		width: calc(80% - 4rem);
	}
}

.button {
	padding: 1.1rem 2rem;
	border: 1px solid rgba(230, 30, 42, 1);
}
.block-hero--content-box--button,
.documentations--btn-view,
.documentations--btn-dl{
	border: 1px solid white;
}
.button.black {
    border-color: #000;
    color: #000;
}

.block-hero {
	position: relative;
}
.block-hero.pseudo-rev-slider-fullwidth img {
	width: 100%;
	height: calc(100vw / (960/500));
	max-height: 588px;
	object-fit: cover;
}

.block-hero--cover {
	max-height: 627px;
	background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.block-hero--content-box {
	position: absolute;
	bottom: 55px;
	left: 50%;
	width: auto;
	max-width: 510px;
	padding: 3rem;
	background-color: rgba(230,30,42,0.7);
}

.block-hero-innov .block-hero--content-box {
	position: absolute;
	bottom: 20px;
	left: 0;
	width: 100%;
	background-color: inherit;
	opacity: 1;
	max-width: 100%;
}
.block-hero-innov h2.block-hero--content-box--subtitle,
.block-hero-innov div.block-hero--content-box--subtitle,
.block-hero-innov .block-hero--content-box--title {
	text-align: center;
	opacity: 1;
}
.block-hero-innov .block-hero--content-box--button {
	float: none;
}
.button.block-hero--content-box--button {
	opacity: 1;
	font-size: 1.6rem;
	font-weight: normal;
}

@media (max-width: 700px) {
	.block-hero--content-box { max-width: 100%;	}
	.block-hero.pseudo-rev-slider-fullwidth .block-hero--content-box {
		position: relative;
        left: auto; right: auto; bottom: auto; top: auto;
        background-color: #e61e2a;
		opacity: 1;
		color: white;
		padding-top: 2rem;
		padding-bottom: 2rem;
    }
	.button.block-hero--content-box--button {
		margin-top: 2rem;
		float: none;
		padding: 1.3rem;
		margin-top: 1rem;
		font-size: 1.5rem;
	}
}
.tp-revslider-mainul .block-hero--content-box {
	display: none;
}
.block-media{
	margin-top: 0;
	margin-bottom: 0;
}
.block-media .media--figure {
	width: 100%;
	margin-top: 0;
}

.form_retour {
	background-color: rgba(255, 255, 255, 0.75);	
}
.form_retour.valid {
	border: none;
	padding: 1rem;
}
.form_retour.invalid {
	border: 1px solid #e61e2a;
	padding: 1rem;
}
.contact-form .erreurFormulaire,
.contact-form.projet .erreurFormulaire,
.contact-form--ct .block--produit_element.erreurFormulaire,
.documentions-download--form .erreurFormulaire,
.documentions--form .erreurFormulaire {
	border: 1px solid #e61e2a;
}

.innov-sheet {
	display: none;
    padding: 35px;
    position: relative;
	margin-top: 30px;
}
@media (max-width: 700px) {
	.innov-sheet {
		padding: 0;
	}
}
.innov-sheet--close,
.documentations-sheet--close {
	display: block;
    width: 20px;
	height: 20px;
    position: absolute;
    right: 10px;
    top: 10px;
}
.innov-sheet--close svg,
.documentations-sheet--close svg {
    display: block;
    fill: rgba(0,0,0,0.5);
    transition: fill 0.5s;
}
.innov-sheet--close:hover svg,
.documentations-sheet--close:hover svg {
    fill: rgba(0,0,0,1);
    transition: fill 0.2s;
    cursor: pointer;
}

.innovations-adn--innovation,
.innovations-adn--innovation--description {
	display: none;
}
.innovations-adn--innovation.active {
	display: block;
}

.products-list--item {
	cursor: pointer;
}
#products-list--item-details {
	display: block;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	height:0;
	overflow:hidden;
}
.product-sheet--excerpt--title,
.product-sheet--excerpt--subtitle {
	margin: 2px 0;
}

@media (max-width: 450px) {
	.ms-options-wrap > .ms-options > ul, .ms-options-wrap > .ms-options > ul > li.optgroup ul {
		column-count: 1 !important;
	}
}

.media--figure--legend.haut {
	top: 0;
	bottom: inherit;
}
.media--figure--legend.bas {
	bottom: 0;
	top: inherit;
}
.media--figure--legend.gauche {
	left: 0;
	right: inherit;
}
.media--figure--legend.droite {
	right: 0;
	left: inherit;
}

.rev_slider_solution,
.innovations-new-adn,
.rev_slider_fullwidth,
.rev_slider_auto {
	position: relative;
}
.accordion--title,
.accordion--content {
	background-color: transparent;
}

.documentations--row {
	margin-bottom: 60px;
}
#documentations--calameo {
	position: relative;
}

p.legende,
span.legende {
	font-size: 1.2rem;
}
p.onglet,
span.onglet {
	font-size: 1.3rem;
}

.rev_slider ul,
.rev_slider_fullwidth ul,
.rev_slider_auto ul,
.rev_slider_solution ul,
.innovations-new-adn ul {
	list-style: none;
}
.rev_slider img,
.rev_slider_fullwidth img,
.rev_slider_auto img,
.rev_slider_solution img,
.innovations-new-adn img {
	display: none;
}
.hermes .tp-bullet {
	width: 10px;
	height: 10px;
	opacity: 0.8;
}
.hermes .tp-bullet::after {
	height: 100%;
}
.hermes .tp-bullet.selected::after {
	background-color: #e61e2a;
}
.hermes .tp-bullet:hover{
	opacity: 1;
}
.innovations-new-adn .uranus.tparrows::before {
	font-size: 110px;
	color: #e61e2a;
}
.innovations-new-adn--annee {
	font-weight: 600;
	font-size: 230px;
	color: #E9E9E9;
	/*opacity: 0;*/
	
	position: absolute;
	top: 0;
	right: 0;
	line-height: 167px;
	display: none;
}
@media (max-width: 960px) {	
	.innovations-new-adn .uranus.tparrows::before {
		font-size: 90px;
	}	
	.innovations-new-adn--annee {
		font-size: 190px;
	}
}
@media (max-width: 700px) {	
	.innovations-new-adn .uranus.tparrows::before {
		font-size: 70px;
	}	
	.innovations-new-adn--annee {
		font-size: 130px;
		line-height: 145px;
	}
}
@media (max-width: 400px) {	
	.innovations-new-adn .uranus.tparrows.tp-leftarrow {
		margin-left: -15px;
	}
	.innovations-new-adn .uranus.tparrows.tp-rightarrow {
		padding-left: 15px;
	}
	.innovations-new-adn .uranus.tparrows::before {
		font-size: 50px;
	}	
	.innovations-new-adn--annee {
		font-size: 70px;
		line-height: 75px;
	}
}

span.symbole {
	font-family: 'fontello', sans-serif;
}

.bloc-footer--snav li {
	display: inline-block;
}

button:focus,
a:focus,
li:focus {
	outline: 0;
}

fieldset h2 {
	margin-top: 2rem;
	margin-bottom: 0;
	font-size: 1.8rem;
}
fieldset .hline::after {
	margin-top: 0.5em;
}
.contact-form label input,
.contact-form label select,
.contact-form label textarea {
    background-color: rgba(255, 255, 255, 0.75);
    border: 0 none;
    font-size: 1.4rem;
	margin-left: 0;
    margin-bottom: 1rem;
    padding: 1rem;
	width: 100%;
}
.contact-form.projet label input,
.contact-form.projet label select,
.contact-form.projet label textarea {
	border: 1px solid rgba(0, 0, 0, 0.25);	
}
.contact-form.projet form {
	width: 100%;
}
.contact-form.projet #chp_localite_checked,
.contact-form--ct #chp_localite_checked
{
	height: 0;
	overflow: hidden;
}
.contact-form.projet textarea {
	min-height: 10rem;
}

.innovations-new-adn-timeline{
	text-align: center;
	margin-bottom: 35px;
}
.innovations-new-adn-timeline ul{
	padding: 0;
	margin:0;
	display: inline-block;
}
.innovations-new-adn-timeline ul li{
	display: block;
	float: left;
}
.innovations-new-adn-timeline a{
	color: #e61e2a;
	font-size: 16px;
	text-decoration: none;
	display: block;
	height: 41px;
	padding: 2px 8px;
	width: 32px;
	box-sizing: content-box;
}
.innovations-new-adn-timeline ul li a{
	background: url(../img/slider-grey-1-1.png) no-repeat center bottom;
}
.innovations-new-adn-timeline ul li:first-child a{
	background: url(../img/slider-grey-0-1.png) no-repeat center bottom;
}
.innovations-new-adn-timeline ul li:last-child a,
.innovations-new-adn-timeline ul li.last a{
	background: url(../img/slider-grey-1-0.png) no-repeat center bottom;
}
.innovations-new-adn-timeline ul li a.active{
	background: url(../img/slider-red-1-1.png) no-repeat center bottom;
}
.innovations-new-adn-timeline ul li:first-child a.active{
	background: url(../img/slider-red-0-1.png) no-repeat center bottom;
}
.innovations-new-adn-timeline ul li:last-child a.active,
.innovations-new-adn-timeline ul li.last a.active{
	background: url(../img/slider-red-1-0.png) no-repeat center bottom;
}
@media (max-width: 960px) {
	.innovations-new-adn-timeline a{
		font-size: 14px;
		height: 36px;
		width: 22px;
	}
}
@media (max-width: 400px) {
	.innovations-new-adn-timeline{
		display: none;
	}
}

.innovations-new-adn--item {
	display: none;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}
.innovations-new-adn--title {
	color: #e61e2a;
	font-size: 2.8rem;
	line-height: 3rem;
}
.innovations-new-adn--button {
	width: 240px;
	margin-top: 2rem;
}
.innovations-new-adn-detail {
	margin-top: 35px;
}

.xtra_innov,
.xtra_innov>div,
.xtra_innov>div>div,
.xtra_innov>div>div>div,
.xtra_innov>div>div>div>.block-hero-innov {
	min-height: calc(100vh - 60px);
	box-sizing: border-box;
}
.xtra_innov .block-hero-innov {
	position: relative;
	background-size: cover;
	background-position: center;
}
.xtra_innov .block-hero-innov .block-hero--content-box {
	bottom: 73px;
}
.xtra_innov .block-hero-innov .next_screen{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;	
}
.xtra_innov .next_screen {
	margin-bottom: 10px;
}
.xtra_innov .next_screen a{
	display: inline-block;
	width: 65px;
	height: 65px;
}
.xtra_innov .next_screen a::before {
    content: '\e825';
    color: #ddd;
    display: block;
    font-family: "revicons";
    font-size: 60px;
	transform: rotate(90deg);
	line-height: 60px;
	transition: font-size 0.2s;
}
.xtra_innov .next_screen a:hover::before {
	font-size: 80px;
	transition: font-size 0.2s;
}
@media (max-width: 700px) {
	.xtra_innov,
	.xtra_innov>div,
	.xtra_innov>div>div,
	.xtra_innov>div>div>div,
	.xtra_innov>div>div>div>.block-hero-innov {
		min-height: calc(100vh - 100px);
	}
	.xtra_innov .block-hero-innov .block-hero--content-box {
		background-color: inherit;
		color: #fff;
	}
}

.product-sheet--documents--btn.ico-book:hover span::before,
.product-sheet--documents--btn.ico-book:focus span::before {
    background-image: url('../img/ico-book-h.svg');
}
.product-sheet--documents--btn.ico-download:hover span::before,
.product-sheet--documents--btn.ico-download:focus span::before,
.ico-notice span::before {
    background: url('../img/ico-download-h.svg') center center no-repeat;
    background-size: 75%;
}

#legende_rev_slider_mobile {
	display: none;
}
@media (max-width: 500px) {
	#legende_rev_slider_mobile {
		display: block;
	}
	.tp-fullwidth-forcer {
		display:none;
	}
	.forcefullwidth_wrapper_tp_banner div.row-full {
		position:relative !important;
	}
}
#legende_rev_slider_mobile.block-hero--content-box {
	position: relative;
	top: auto;
	bottom: auto;
	left: auto;
	right: auto;
}

.ui-autocomplete {
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, 0.25);
	width: 350px;
	list-style: none;
	padding-left: 0;
}
.ui-autocomplete .ui-menu-item {
	cursor: pointer;
	padding: 2px 7px;
}
.ui-autocomplete .ui-menu-item:hover {
	background-color: #ededed;	
}
.ui-autocomplete-loading {
	background-image: url('../img/ui-autocomplete-loading.gif');
	background-repeat: no-repeat;
	background-origin: content-box;
	background-position: right center;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { 
	select {
		background: none;
	}
}

[class*="grid-"] > fieldset {
	margin-left: 4rem !important;
	width: calc(100% - 4rem - 0.01px) !important;
}

#scroll {
	display:none;
    bottom: 53px;
    right: 50px;
    position: fixed;
	z-index: 99;	
}
#scroll a{
	display: block;
    width: 40px;
	height: 40px;
	background: url(../img/scroll.png);
	opacity: 0.7;
}
#scroll a:hover{
	opacity: 1;
}
@media (max-width: 400px) {
	#scroll {
		bottom: 15px;
		right: 15px;
	}
}

.cc-message {
	font-size: 1.5rem;
}
.cc-compliance .cc-btn {
	font-weight: normal;
}

.video-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}

.video-container.connect2 {
	padding-bottom: 83.25%;
}

.video-container iframe,  
.video-container object,  
.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.two-columns {
	list-style: none;
	margin-bottom: 15px;
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2;
	-webkit-column-gap: 70px;
	column-gap: 70px;
	-moz-column-gap: 70px;
}
.two-columns li {
	padding: 5px 0;
}

.g-recaptcha>div {
	margin: 1rem auto;
}


.sav-map--form--types {
	width: calc(100% - 2rem);
	margin-left: 2rem;
	position: relative;
}
.sav-map--form--item-checkbox {
	display: inline-block;
	width: 49%;
}
.sav-map--form--item-checkbox:before {
	margin-top: 0.4rem;
}
.sav-map--form--item-checkbox img {
	width: 2rem;
	height: 2rem;
	margin-left: 1rem;
	margin-right: 1rem;
	margin-top: -0.4rem;
}
.sav-map--form--item-checkbox svg, .sav-address--item-picto svg {
	width: 2rem;
	height: 2rem;
	margin-left: 1rem;
	margin-right: 1rem;
	margin-top: -0.4rem;
	vertical-align: middle;
	fill:#28529b;
}
.sav-address--item-picto svg {
	margin-top: 0;
	margin-left: 0;
}
.form-submitted .sav-map--form--item[type="checkbox"]:invalid {
	position: absolute;
	bottom: 0;
	left: 0;
    display: inline-block;
    width: 1px;
    height: 1px;
    border: 0;
    padding: 0;
    margin: 0;
	box-shadow: unset;
}
.sav-address--item--number {
	background-color: #ededed;
	color: #000;
}
.sav-address--item-picto img {
	width: 2rem;
	height: 2rem;
	margin-right: 1rem;
}
.sav-address--item-picto {
	position: absolute;
	bottom: 0px;
	left: 50%;
	transform: translate( -50%);
}
#chp_cp_ville_install {
	width: 44%
}
button.sav-map--form--button {
	width: calc(20% - 2rem);
}

@media (max-width:450px) {
	.sav-map--form--item-checkbox, .sav-map--form > *, #chp_cp_ville_install, button.sav-map--form--button {
		width: 100%;
	}
}

.h1-title,
h1.h1-title:first-child {
	margin: -40px 0 0 0;
	height: 40px;
	color: #fff;
}
.h1-title.bg-grey {
	color: #f6f6f6;
}
	
p b,
p strong,
li b,
li strong {
	font-weight: 500;
}

.ui-dialog {
	background-color: #fff;
	z-index: 101;
	padding: 0 3rem 2rem 3rem
}
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.ui-widget-overlay {
	background:rgb(0, 0, 0);
	opacity: 0.7;
}

.ui-dialog.no-titlebar .ui-dialog-titlebar {
	display: none;
}
.dialog-close {
	position: absolute;
	width: 18px;
	height: 18px;
	top: 3px;
	right: 5px;
	fill: rgb(125,125,125);
}
.dialog-close svg:hover {
	fill: #e61e2a;
}
.dialog-choix-doc {
	font-size: 1.4rem;
	line-height: 1.9;
	padding:2rem 3rem;
	background-color: rgb(243,243,243);
	margin:3rem 0;
}
@media(max-width: 450px) {
	.dialog-choix-doc {
		font-size: 1.3rem;
		line-height: 1.9;
		padding:1rem 1rem;
		background-color: rgb(243,243,243);
		margin:2rem 0;
	}
	#form_documentation_dl,
	#dialog-documentation_download_ok {
		font-size: 1.3rem;
	}
	.documentions--form ul.two-columns {
		padding-left: 0;
		-webkit-column-gap: 0px;
		column-gap: 0px;
		column-count: 1;
	}
}

.prospect_contact_frisquetontact-form {
	display: none;
	margin-left: 2.6rem;
}

/* css pour module tableau csv */
.table-no-border {
	border: none;
	font-size: 1.5rem;
	margin: 0;
}
.table-no-border tr:first-child {
	font-weight: bold;
}

.table-no-border  tr  td {
	border: none;
	padding: 1.2rem;
}
.table-no-border  tr:first-child  td:first-child {
	width: 30%;
}
.table-no-border  tr td:first-child {
	font-weight: bold;
}
.table-no-border tbody tr:nth-child(2n) {
	background-color: #ffffff;
}
@media (max-width: 700px) {
	.table-no-border  tr  td {
		display: table-cell;
	}
}
#product-back a:hover {
	color: #e61e2a;
}
#product-back a:hover::before {
	background-image: url('../img/fleche-retour-red.png');
}
#product-back a::before {
	background-image: url('../img/fleche-retour.svg');
	background-size: 72%;
	display: inline-block;
	width: 15px;
	height: 11px;
	content: '';
	position: relative;
	padding-left: 0.5em;
	margin-right: 0.5em;
	background-repeat: no-repeat;
}
/* home actu slider */
.home-actu .multi-columns {
	align-items:inherit;
}
#block-list {
	position: absolute; bottom: 10px; left:0; right: 0;z-index: 200
}
.home-actu  .home-actu--content {
	display: flex;
	flex-direction: column;
	justify-content:space-between;
}
.actu-contenu--title {
	display: flex;
}
.actu-contenu--title h2 {
	margin-bottom: 2rem;
	text-align: left;
	font-size: 2.4rem;
	line-height: 2.4rem;
}
.actu-contenu--title .border-title,
.form_contact--title .border-title {
	padding-left: 1.5rem;
	border-left: 8px solid #e61e2a;
	margin: 2rem 0;
}
 .home-actu  .home-actu--content .hline::after {
	 border: none;
 }
.home-actu #block-content {
	background-color: white;
	padding: 4rem;
	margin-left: 0;
	z-index: 300;
	position: relative;
	cursor:pointer
}
.home-actu #block-image img{
	height: 100%;
}
.home-actu .actu-visu{
	height: 100%;
}
.home-actu #block-list {
	margin-top: 3.5rem;
}
#home-actu-arrow-left  {
	position: absolute;
	top: 50%;
	cursor: pointer;
	left: 18px;
	z-index: 200;
}
#home-actu-arrow-right {
	position: absolute;
	top: 50%;
	right: 18px;
	cursor: pointer;
	z-index: 200;
}
#home-actu-arrow-left svg, #home-actu-arrow-right svg {
	z-index: 200;
	background-color: #F5F5F5;
	border-radius: 100%;
}
#home-actu-arrow-left svg:hover, #home-actu-arrow-right svg:hover {
	opacity: 0.78;
}
.home-actu .actu-visu-mini {
	margin-right: 0rem;
	/*width: calc((100% - 9rem)/4);*/
	width: 113px;
	position: relative;
	cursor: pointer;
	margin-left: 0;
	max-height: 45px;
}

#block-image div.actu-visu, #block-content div.actu-contenu {
	display: none;
}

.home-actu .actu-visu-mini:nth-child(n+5){
	margin-right: 0px;
	display: none;
}
.home-actu .actu-visu-mini .visu-mini-img {
	display: block;
	height: 3px;
	background-color: white;
	width: 100%;
	position: absolute;
	bottom: 0;
}

.home-actu .actu-visu-mini .visu-mini-img .img-line {
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #e61e2a;
	-webkit-transform-origin: left;
	transform-origin: left;
	-webkit-transform: scaleX(0);
	transform: scale(0);
	opacity: 0;
}
.line-title {opacity: 0; position: absolute; bottom: 4px;}
.home-actu .actu-visu-mini.active .visu-mini-img .img-line ,
.home-actu .actu-visu-mini.active2 .visu-mini-img .img-line {
	-webkit-animation: opac 0.5s linear;
	animation: opac 0.5s linear;
	-webkit-transform: scaleX(1);
	opacity: 1;
}
.home-actu .black-bg {
	position: absolute;
	width: 100%;
	background-color: #182947;
	z-index: 50;
	display: block;
	width: 640px;
	bottom: 0;
	height: 210px;
	background: transparent linear-gradient(180deg, #18294700 0%, #05121E 100%) 0% 0% no-repeat padding-box;
	opacity: 0.85;
}

.home-actu .actu-visu-mini.active .line-title ,
.home-actu .actu-visu-mini.active2 .line-title,
.home-actu .actu-visu-mini:hover .line-title{
	display: block;
	opacity: 1;
	font-size: 1.3rem;
	color: white;
	margin-bottom: 0.3rem;
	font-weight: 400;
	cursor: pointer;
	line-height: 1.5rem;
}

@keyframes opac {
	0% {
		-webkit-transform: scaleX(0);
	}
	50% {
		-webkit-transform: scaleX(0.5);
	}
	100% {
		-webkit-transform: scaleX(1);
	}
}


.home-actu .actu-visu-mini:hover .img-line {
	-webkit-animation: opac 0.5s linear;
	animation: opac 0.5s linear;
	-webkit-transform: scaleX(1);
	opacity: 1;
}
.home-actu  .actu-visu-mini img {
	width: 131px;
	height: 90px;
	cursor: pointer;
	object-fit: cover;
}
.home-actu  .actu-contenu {
	margin: auto 0;
}
.home-actu .home-actu--content .grey-hover:hover {
	color: #696969;
}
.home-actu  #home-actu--list {
	display: flex;
	margin: auto;
	margin-bottom: 2rem;
	justify-content: space-between;
	width: calc(100% - 13rem);
}

.hover-red:hover {color: #e61e2a}
#chp_cp_ville_contact { border:none;}

.contact-form--form textarea[id^="chp_message"]::placeholder
{
	font-size: 1.3rem;
}

/* ajout effet sur image clickable */
img.block-news--image:hover {
	opacity: 1;
	-webkit-animation: flash 1s ease-in;
	animation: flash 1s ease-in;
}
@-webkit-keyframes flash {
	0% {
		opacity: .4;
	}
	100% {
		opacity: 1;
	}
}
@keyframes flash {
	0% {
		opacity: .4;
	}
	100% {
		opacity: 1;
	}
}
.only-desktop { display: block; }
@media (max-width:700px) {
	.only-desktop { display:none; }
}

#block-image {
	width: 640px;
	height: 396px;
}
#block-image div.actu-visu  {
	position: absolute;
	width: 100%;
}
#block-image div.actu-visu a img {
	width: 100%
}

.home-actu .actu-visu-mini .visu-mini-img img {
	display: none;
}

#block-content {
	width: 560px;
	height: 396px;
}
#block-content div.actu-contenu  {
	font-size: 1.5rem;
}

#block-content .button,
.block-news-date_arrow--arrow .button{
	font-size: 1.6rem;
	line-height: 2.2rem;
	color: black;
	background-color: white;
	font-weight: 400;
	align-items: end;
    justify-content: end;
	border: 0;
	display: flex;
}
.block-news-date_arrow--arrow .button {
	padding-top: 0;
}
#block-content .button:hover,
.block-news-date_arrow--arrow .button:hover{
	color: #e61e2a;
}

#block-content .button .button--image,
.block-news-date_arrow--arrow .button .button--image
{
	background-image: url('../icons-svg/arrow-right-savoir.svg');
	background-size: 68%;
	content: '';
	background-repeat: no-repeat;
	background-color: #e61e2a;
	width: 22px;
	height: 22px;
	margin-right: 1rem;
	background-position: center;
	border-radius: 50%;
	vertical-align: middle;
}



#block-image div.actu-visu.visible {
	display: block;
	animation: fader 1s 4s ;
	/*animation-name: fader;*/
	/*animation-delay: 3s;*/
	/*animation-duration: 1s;*/
	z-index: 20;
}
#block-content div.actu-contenu.visible {
	display: block;
	animation: fader-content 1s 4s ;
	z-index: 20;
}
#block-image div.actu-visu.next{
	animation: fade-in 2s 2s ;
	z-index: 10;
}

#block-content div.actu-contenu.next {
	animation: fade-in-content 2s 2s ;
	z-index: 10;
}

@keyframes fader-content {
	0% { opactity: 1.0; }
	30% { opacity: 0.75; }
	100% { opacity: 0; }
}

@keyframes fader {
	from { opacity: 1.0; }
	to   { opacity: 0.0; }
}
@keyframes fade-in {
	from { opacity: 0.0; }
	to   { opacity: 1.0; }
}


@keyframes fade-in-content {
	0% { opactity: 0;  }
	30% {opacity: 0.25; display: block }
	68%, 72% {opacity: 0.65;
		display: block;}
	100% { opacity: 1; }
}

@media(max-width: 980px) {
	#block-image, #block-content {
		width: 100%;
		height: inherit;
	}
	#block-image div.actu-visu  {
		position: relative;
		width: 100%;
	}
	#block-image div.actu-visu a img {
		width: 100%
	}

	#block-content div.actu-contenu  {
		position: relative;
		width: 100%;
	}

}

@media(max-width: 1243px) {
	#block-content {width: calc(52% - 4rem);}
	#block-image {width: calc(51% - 4rem); }
	.home-actu .black-bg { width: 100% }
	.home-actu .actu-visu-mini:nth-child(n+4){
		display: none;
	}
}
@media(max-width: 1070px) {
	.home-actu .actu-visu-mini:nth-child(n+3) {
		display: none;
	}
}
@media(max-width: 945px) {
	.home-actu #block-content {width: 100%; padding-top: 0rem;}
	#block-image {width: 100%; }
	.home-actu .actu-visu-mini .line-title,
	.home-actu .actu-visu-mini.active .line-title ,
	.home-actu .actu-visu-mini.active2 .line-title,
	.home-actu .actu-visu-mini:hover .line-title{
		display: none;
	}
	.home-actu .actu-visu-mini .visu-mini-img .img-line, .home-actu .black-bg {
		display: none;
	}
	.home-actu .actu-visu-mini .visu-mini-img {
		background-color: transparent;
	}
}
@media(max-width: 830px) {
	.home-actu  #home-actu--list {
		margin: 0;
		justify-content: space-around;
		margin-left: 5rem;;
	}
}
@media(max-width: 540px) {
	.actu-visu {
		display: none;
	}
	.home-actu .actu-visu-mini .visu-mini-img img { display: block;}
	.home-actu {
		padding-bottom: 0;
	}
	#home-actu-arrow-left, #home-actu-arrow-right, .actu-visu,
	.home-actu .actu-visu-mini.active2 .visu-mini-img .img-line,
	.home-actu .actu-visu-mini.active .visu-mini-img .img-line,
	.actu-contenu .actu-contenu--title .border-title,
	#block-content div.actu-contenu p
	{
		display: none;
	}
	.home-actu .actu-visu-mini:nth-child(n+3) {
		display: block;
	}
	.home-actu #home-actu--list { margin-left: 0; justify-content: space-between;}
	.home-actu #block-image img, .home-actu .actu-visu-mini, .home-actu .actu-visu-mini .visu-mini-img {
		width: 268px;
		height: 265px;
		position: relative;
	}
	.visu-mini-img img {
		border-radius: 6px;
	}
	.home-actu .actu-visu-mini {
		border: 0;
		max-height: 265px;
		margin-right: 3rem;
	}
	home-actu--list .actu-visu-mini:last-child {
		margin-right:0;
	}
	.home-actu #block-content {
		position: relative;
		cursor: pointer;
		display: flex;
		justify-content: space-between;
		flex-direction: row;
		padding: 0;
		background-color: #f6f6f6;
		margin-bottom: 2rem;
	}
	.home-actu .multi-columns {overflow: auto;}
	#block-content div.actu-contenu {
		display: block;
		width: 268px;
		margin-right: 3rem;
	}
	#block-content div.actu-contenu .actu-contenu--title {
		width: 268px;
	}
	.home-actu .actu-contenu--title h2 {
		margin-top: 0;
		margin-bottom: 0;
		font-size: 18px;
		line-height: 2.2rem;
	}
	.home-actu .actu-contenu {
		margin-top: 1rem;
	}
	#block-content a.button {
		margin-top: 0;
		text-align: left;
		padding-left: 0;
		float: none;
		background-color: #f6f6f6;
	}
	.home-actu #block-list {
		position: relative;
		margin-top: 0;
	}


}

/** custom class puces li rouge */
ul.red-bullets {
	list-style: none; /* Remove default bullets */
}

ul.red-bullets li::before {
	content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
	color: #e61e2a; /* Change the color */
	font-weight: bold; /* If you want it to be bold */
	display: inline-block; /* Needed to add space between the bullet and the text */
	width: 0.7em; /* Also needed for space (tweak if needed) */
	margin-left: -0.72em; /* Also needed for space (tweak if needed) */
	font-size: 1.44em;
	vertical-align: middle;
	line-height: 1rem;
}

.row-regular #vk_widget, .row-regular #vk_groups {
	width: 100%;
}
#cconsent-bar {
	background-color: #ffffff !important;
	padding-top: 20px !important;
	padding-bottom: 20px !important;
	border-top:1px solid #F3F3F3;
}
#consent-bar .consent-reject {
	font-weight: 500;
	font-size: 15px;
}
#cconsent-bar .ccb__wrapper--title {
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 21px;
}
#cconsent-bar .ccb__right {
	width: 100%;
}
#cconsent-bar .ccb__wrapper {
	max-width: 1128px !important;
}
.ccm__content__heading {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-right: 36px !important;
	padding-top: 47px !important;
}
#cconsent-modal .ccm__footer {
	padding-right: 36px !important;
}
#cconsent-bar button {
	margin-right: 0 !important;
}
.ccm__content__heading h2
{
	margin-top:1rem !important;
}
.ccm__content__heading p {
	margin-top: 2.3rem;
}
.ccm__content__heading button
{
	cursor: pointer;
	width:137px;
	height:42px;
	border-color: rgb(147,147,147);
	color: rgb(147,147,147);
	background-color: white;
}
.ccm__content__heading button.consent-give {
	margin-left: auto;
	margin-right: 1.4rem;
}
 div.ccm__footer button#ccm__footer__consent-modal-submit{
	 width:137px;
	 height:42px;
 }
.ccm__content__heading a { text-decoration: underline}
@media (max-width: 600px) {
	.ccm__content__heading h2 {
		width:100%;
		margin-bottom: 1rem !important;
	}
	div.ccm__footer button#ccm__footer__consent-modal-submit, .ccm__content__heading button{
		width:110px;
	}
	#cconsent-bar {
		padding: 30px 40px 20px 40px !important;
	}
	#cconsent-bar .ccb__wrapper--title {
		margin: 0 auto;
	}
	#cconsent-bar .consent-reject {
		order: 5;
		margin: 0 auto;
	}
	#cconsent-bar .ccb__button {
		width: 100%;
	}
	#cconsent-bar button {
		display: block;
		width: 100%;
		margin-left:0!important;
	}
	#cconsent-bar button.ccb__edit {
		margin-top:1rem;
		margin-bottom:2rem;
	}
}

.video-container.no-consent {
	background: url(../img/cookies-video.jpg) no-repeat center bottom; padding-bottom: 57%; cursor:pointer;
	background-size: cover;
}

#vk_groups { margin-left: 6em;}
#block_social {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #ddd;
	padding-bottom: 2em;
}

.footer-link-social {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	position: relative;
}

.footer-social__title {
	display: table-cell;
	vertical-align: middle;
	height: 16px;
	font-family: 'SamsungOne',arial,sans-serif;
	font-size: 12px;
	line-height: 1.33;
}

.footer-social__list {
	display: table-cell;
	vertical-align: middle;
}

.footer-social__list ul {
	list-style: outside none none;
}

.footer-social__item {
	display: inline-block;
	border-radius: 100%;
	margin-left: 15px;
}
.footer-social__link {
	display: block;
	width: 45px;
	height: 45px;
}

.mobile-arrow, .arrow-red-right, .mobile-arrow-footer,
.footer--col-left--img-mobile{ display: none; }

.footer--col-left--img-desktop img {
	margin-top: 1rem;
}
@media (max-width: 1020px) {
	.row-regular #vk_widget, .row-regular #vk_groups {
		width: 50% !important;
	}
}
@media (max-width: 960px) {
	#pad {
		display: none;
	}
}
@media (max-width: 810px) {
	.row-regular #vk_widget, .row-regular #vk_groups {
		width: 100% !important;
	}
	#vk_groups { margin-left: 0;}
}
@media (max-width: 720px) {
	.row-regular #vk_widget, .row-regular #vk_groups, #facebook_groups {
		margin-bottom: 1em;
	}
	.row-regular #vk_widget, .row-regular #vk_groups, #facebook_groups, .footer-social {
		display: flex;
	}
	.row-regular #vk_widget iframe, .row-regular #vk_groups iframe, #facebook_groups iframe, .footer-social__container {
		margin: 0 auto;
	}
	.footer-social {
		margin-left: 0;
		margin-right: 0;
	}
	#block_social {
		flex-direction: column;
	}
}
@media (max-width: 697px) {
	.footer-link-social {
		flex-direction: column;
	}
	.bloc-footer--direct-access.ru {
		width: 100%;
	}
}

@media (max-width: 700px) {
	header.megamenu-opened {
		box-shadow: none;
		overflow-y: auto;
		overflow-x: hidden;
		height: 100vh;
	}
	#mobile {
		display: none;
	}
	.megamenu {
		padding-top: 2rem;
		left: 5rem;
	}
	.megamenu--left-mobile {
		width: 4rem;
		background-color: #e61e2a;
		height: 100%;
		position: fixed;
	}
	.megamenu--left-mobile svg {
		margin: 1rem 1rem 0 1rem;
	}
	.main-menu--item {
		margin-top: 1rem;
	}
	.main-menu--item, .megamenu--row2--media {
		width: 100%;
	}
	span.main-menu--item--titre {
		width: 90%;
		display: inline-block;
		font-size: 20px;
	}
	span.main-menu--item--titre b {
		text-transform: none;
	}
	.main-menu--item--image {
		display: block;
		width: 100%;
	}
	.main-menu--item--image .main-menu--item--titre {
		line-height: 1.6;
		margin-bottom: 0;
		margin-top: 0;
	}
	.main-menu--item--image .main-menu--item--titre::after {
		margin-top: 1px;
		border-top: 1px solid black;
		width:0;
	}
	.main-menu--item.active .main-menu--item--image .main-menu--item--titre::after {
		width: 100%;
		transition: width 0.2s;
	}
	.megamenu--row1 {
		padding-right: 6rem;
	}

	.main-menu--level2--item a {
		text-align: left;
		padding-left: 2rem;
		font-size: 18px;
	}
	.main-menu--level2--item, .main-menu--level2--container.no-first > div ul li a {
		text-align: left;
	}
	.main-menu--level2--container.no-first .main-menu--level2--list {
		padding-left: inherit;
	}
	.main-menu--level2--container--left {
		width: 100%;
	}
	.main-menu--item--titre b {
		font-weight: 400;
	}
	span.mobile-arrow {
		width: 5%;
		display: inline-block;
	}
	.main-menu--item.active span.mobile-arrow span.arrow svg
	{
		transform: rotate(-180deg);
	}

	.main-menu--item--image { padding-top : 0;}
	.megamenu--row3, .main-menu--level2--container--right,
	.megamenu--row2--media--img,
	.megamenu--row2--excerpt {
		display: none;
	}
	.main-menu--level2--list {
		margin-bottom: 2rem;
	}
	.megamenu--row2 { border:0; padding-top: 3rem; }
	.megamenu--row2--titre { margin-bottom: 0; font-size: 20px;}
	.megamenu--row2--media--text {margin-top: 1rem;}
	span.megamenu--row2--titre b { font-weight: normal; text-transform: none;}
	span.megamenu--row2--titre::after { border:0}
	.megamenu--row2--media { margin-bottom: 1rem;}
	.megamenu--row2--media {
		margin-bottom: 0.6rem;
	}
	.arrow-red-right {
		display: inline;
		padding-right: 1rem;
		padding-left: 2rem;
	}
	.menu-mobile-espace-pro { margin-left: 13%; margin-top: 4rem;}
	.menu-mobile-espace-pro .big-arrow-red-right {
		padding-right: 0.5rem;
		vertical-align: middle;
	}
	.menu-mobile-espace-pro {
		font-weight: 400;
	}
	.menu-mobile-espace-pro a {
		font-size: 20px;
		padding: 1.8rem 2.7rem;
	}
}

/** FOOTER */
.footer--col-left--title-label {
	font-weight: 400;
	font-size: 1.7rem;
}
.footer--col-left--svg-desktop img {
	display: block;
	margin: 0 auto;
}
ul.bloc-footer--direct-access li {
	width: 122px;
	height: 87px;
	background-color: #dddddd;
	margin-right: 2rem;
	border-radius: 2px;
}

ul.bloc-footer--direct-access li svg {
	display: block;
	margin: 0 auto;
	margin-top: 1.5rem;
}
/* picto footer */
.bloc-footer--direct-access--item a { display: block; margin-top: 1rem;}
.bloc-footer--direct-access--item.contact svg{ margin-top: 1.7rem;}
.bloc-footer--direct-access--item.contact a { margin-top: 1.5rem;}
.bloc-footer--direct-access--item.sav svg{ margin-top: 0.9rem;}
.bloc-footer--direct-access--item.sav a { margin-top: 0.8rem;}
.bloc-footer--direct-access--item.doc { margin-right: 0;}
.bloc-footer--direct-access--item.doc svg{ margin-top: 1rem;}

.block-footer--col-right {
	display: flex;
	align-self: stretch;
}
.block-footer--col-right--bottom {
	font-size: 1.4rem;
	font-weight: 400;
	align-self: flex-end;
	position: absolute;
	bottom: 0;
}
.block-footer--col-right .footer-social__container { display: flex; justify-content: flex-end}

/* Footer Middle */
.block-footer--col-middle {
	display: flex;
	justify-content: start;
	width: 25%;
}
.block-footer--col-middle-list {
	margin-top: 0.5rem;
}
.block-footer--col-middle-list ul {
	padding-left: 0;
}
.block-footer--col-middle-list .list-title {
	font-size: 1.5rem;
	font-weight: 400;
}
.block-footer--col-middle-list li {
	font-size: 1.4rem;
	list-style: none;
	margin-bottom: 0.6rem;
	opacity: 0.8;
}
.block-footer--col-middle-list.first {
	width: 45%;
}
.block-footer--col-middle-list.second {
	margin-left: 4rem;
}

.block-footer--col-middle-list ul li a:hover {
	font-weight: 500;
}
.block-footer--col-left {
	text-align: center;
}

@media (max-width: 1095px) {
	.block-footer--col-left {
		width: 25%;
	}
	.block-footer--col-middle {
		width: 33%;
	}
	.block-footer--col-right { width: 33%}
	.bloc-footer--direct-access {
		justify-content: unset;
		padding-top: 0;
	}
	.block-footer--col-right--bottom {
		position: relative;
	}
	ul.bloc-footer--direct-access li {
		margin-right: 2rem;
	}
}
@media (max-width: 900px) {

	ul.bloc-footer--direct-access li {
		margin-right: 0.6rem;
	}
	.block-footer--col-left {
		width: 20%;
	}
	.block-footer--col-middle {
		width: 32%;
	}
}
@media (max-width: 830px) {
	.block-footer--col-left {
		width: 50%;
	}
	.block-footer--col-middle {
		width: 50%;
	}
	.block-footer--col-right {
		width: 100%;
	}
	.footer--col-left--img-desktop img {
		width: 55%;
	}
	.bloc-footer--direct-access {
		padding-top: 2rem;
		justify-content: space-between;
		margin-bottom: 1rem;
	}
	.footer-link-social {
		width: 100%;
	}
	.block-footer--col-middle-list ul {
		display: block;
	}

}
@media (max-width: 500px) {
	.footer--col-left--img-desktop{ display: none; }
	.footer--col-left--img-mobile{ display: block; }
	.block-footer--col-left {
		width: 100%;
	}
	.block-footer--col-middle {
		width: 100%;
		order: 3;
		flex-direction: column;
	}
	.block-footer--col-right {
		width: 100%;
		border-bottom: 1px solid #c9c9c9;
		padding-bottom: 2rem;
	}
	.footer--col-left--img-desktop img,
	.footer--col-left--img-mobile img {
		margin: 0 auto;
	}
	.footer--col-left--title-label {
		display: block;
		margin: 0 auto;
		text-align: center;
	}
	ul.bloc-footer--direct-access li {
		width: 100px;
	}
	.bloc-footer--direct-access--item.contact {
		order: 4;
		flex-grow: 1;
		height: 41px;
		margin-right: 0;
	}
	.bloc-footer--direct-access--item.contact svg {
		display: inline-block;
		margin-top: 0.8rem;
	}

	.bloc-footer--direct-access--item.contact a {
		display: inline-block;
		margin-bottom: 2rem;
		margin-left: 1rem;
		vertical-align: middle;
		margin-top: 0;
	}
	.block-footer--col-right--bottom {
		margin: 0 auto;
		display: block;
		padding: 0 5.2rem;
		text-align: center;
	}
	.block-footer--col-middle-list {
		margin-top: 1.5rem;
		padding-left: 3rem;
		border-bottom: 1px solid #c9c9c9;
		padding-bottom: 1rem;

	}
	.block-footer--col-middle-list.first {
		width: 100%;
	}
	.block-footer--col-middle-list.second {
		padding-left: 3rem;
		margin-left: 0;
	}
	.block-footer--col-middle-list ul {
		display: none;
	}

	.block-subfooter--container {
		display: flex;
		flex-direction: column;
		align-items: inherit;
	}
	.subfooter--copyright {
		order: 2;
		padding: 1rem 0;
	}
	.block-subfooter--list {
		justify-content: space-between;
		margin: 0 -2rem;
		padding: 0 2rem;
		background-color: #ededed;
		padding-bottom: 2rem;
	}
	.block-subfooter--list .subfooter--item {
		border: 0;
		margin-right: 0;
		justify-content: space-between;
	}
	.block-subfooter--container { padding: 0}
	span.mobile-arrow-footer {
		width: 5%;
		display: inline-block;
		float: right;
	}
	.block-footer--col-middle-list.active span.mobile-arrow-footer span.arrow svg
	{
		transform: rotate(-180deg);
	}
	.block-footer--col-middle-list .list-title {
		font-size: 1.5rem;
		font-weight: normal;
	}
	.block-footer--col-middle-list .block-title {
		cursor: pointer;
	}
}
@media (max-width: 330px) {
	ul.bloc-footer--direct-access li {
		width: 91px;
	}
}
/** bloc promo */
.block-promo > div {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.block-promo--image {
	width: 50%;
}
.block-promo > div > div {
	width: 50%;
	padding: 0 15px;
}
.bloc-promo--arrow {
	display: none;
}
.bloc-promo--arrow .ico-arrow-big {
	padding-left: 3rem;
}
@media (max-width: 768px){
	.block-promo {
		padding: 1rem;
	}
	.block-promo h3 {
		text-align: left;
	}
	.block-promo h3.hline:after {
		margin-left: 0;
		margin-right: 0;
	}
	.block-promo > div {
		height: 31vw;
	}
	.block-promo--image {
		width: 36%;
		height: 100%;
		padding: 0;
	}
	.block-promo > div > div {
		width: 75%;
		height: 100%;
		overflow: hidden;
		padding: 0;
		padding-left: 1rem;
	}
	.block-promo > div > div .button-like {
		display: none;
	}
	.block-promo > div > div > p {
		width: 100%;
		/* hide text if it more than N lines  */
		overflow: hidden;
		/* for set '...' in absolute position */
		position: relative;
		/* use this value to count block height */
		line-height: 2rem;
		/* max-height = line-height (1.2) * lines max number (3) */
		max-height: 10rem;
		/* fix problem when last visible word doesn't adjoin right side  */
		text-align: justify;
		/* place for '...' */
		margin-right: -1em;
		padding-right: 1em;
	}
	/* create the ... */
	.block-promo > div > div > p:before {
		/* points in the end */
		content: '...';
		/* absolute position */
		position: absolute;
		/* set position to right bottom corner of block */
		right: 0;
		bottom: 0;
	}
	/* hide ... if we have text, which is less than or equal to max lines */
	.block-promo > div > div > p:after {
		/* points in the end */
		content: '';
		/* absolute position */
		position: absolute;
		/* set position to right bottom corner of text */
		right: 0;
		/* set width and height */
		width: 1em;
		height: 1em;
		margin-top: 0.2em;
		/* bg color = bg color under block */
		background: white;
	}
	.bloc-promo--arrow {
		display: block;
	}
}
#sticky-doc {
	height: 64px;
	background-color:#E61E2A;
	display: none;
	color: white;
	width: 100%;
	z-index: 99;
	opacity: 0.9;
}
#sticky-doc.active {
	display: block;
	position: fixed;
	bottom: 0px;
}
.sticky--doc-content {
	width: 80%;
	float: right;
	display: flex;
	justify-content: space-around;
	align-items: center;
	height: 100%;
	font-weight: 400;
}
#sticky--doc--content-valide {
	border-radius: 9px;
	display: flex;
	align-items: center;
}
#sticky--doc--content-valide svg {
	width: 24px;
}
#recap_papier,#recap_dl {
	margin-left: 2rem;
	width: 31px;
	height: 31px;
	display: inline-block;
	text-align: center;
	border-radius: 15px;
	background-color: white;
	color: red;
	line-height: 30px;
	font-size: 15px;
	font-weight: 700;
}
.pluriel { display:none;}
@media (max-width: 500px) {
	.sticky--doc-content {
		width: 100%;
	}
	.sticky--doc-content .commande span:nth-of-type(2),
	.sticky--doc-content .download span:nth-of-type(2){
		display: none;
	}
	.pluriel {
		display: none!important;
	}
}

#page-conseil .block-news-excerpt--text:hover,
#page-actus .block-news-excerpt--text:hover{
	color: #7B7B7B;
}
#page-conseil .block-news-date_arrow--arrow:hover .button .button--image,
#page-actus .block-news-date_arrow--arrow:hover .button .button--image
{
	background-image: url('../icons-svg/arrow-right-savoir-hover.svg');
	background-color: white;
	border: 1px solid #E61E2A;
}
#page-conseil .block-news-date_arrow--arrow:hover .button--text,
#page-actus .block-news-date_arrow--arrow:hover .button--text
{
	text-decoration: underline;
}
#page-conseil .block-news-excerpt--text, #page-conseil .block-news-excerpt--text p,
#page-actus .block-news-excerpt--text, #page-conseil .block-news-excerpt--text p{
	line-height: 1.2;
}
#page-conseil h2,#page-conseil h2 p,
#page-actus h2,#page-conseil h2 p{
	margin-bottom: 1rem;
	line-height: 1.2;
}
#load-page-actus .mobile
{
	display:none;
}
.actualite-categorie {
	padding: 1rem 4rem;
	color:white;
	gap: 1rem;
	border-radius: 4rem;
	border: 1px solid #E61E2A;
	background: #E61E2A;margin-right: 3rem;
	cursor: pointer;
}
@media (max-width: 810px) {
	#page-conseil .columns-20 {
		margin-bottom: 1.5rem;
	}
	#page-conseil .desktop,
	#page-actus .desktop
	{
		display: none;
	}
	#page-conseil .mobile,
	#page-actus .mobile
	{
		display: flex!important;
	}
	#page-conseil #result-conseils .block-news,
	#page-actus #result-actus .block-news{
		flex-direction: column;
		margin-left: 0!important;
		border: 1px solid #F3F3F3;
		margin-bottom: 1.5rem;
		margin-top: 0;
	}
	#page-conseil .block-news--image,
	#page-actus .block-news--image{
		width:100%;
		max-width: 100% !important;
	}
	#page-actus .actualite-decouvrir {
		margin-left: 0;
		margin-bottom: 1rem;
	}
	#page-conseil #result-conseils .button--text,
	#page-actus #result-actus .button--text{
		display: none;
	}
	#page-conseil #result-conseils .block-news-text,
	#page-conseil #result-conseils .block-news--content,
	#page-actus #result-actus .block-news-text,
	#page-actus #result-actus .block-news--content
	{
		margin-left: 0 !important;
	}
	#header-conseil-expert {
		display: none;
	}
	#load-page-actus .actualite-categorie {
		margin-bottom: 1rem;
	}
	#load-page-actus .row-principale {
		padding-top: 2rem;
		padding-bottom: 2rem;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	.actualite-categorie {
		padding: 1rem 2rem;
	}
}
@media (max-width: 500px) {
	#load-page-actus .desktop
	{
		display: none;
	}
	#load-page-actus .mobile
	{
		display: flex!important;
	}
	#load-page-actus .block-new-categorie{
		margin-top: 1.2rem!important;
	}
}
.block-new-categorie {
	color: #7B7B7B;
	font-size: 13px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
}
.actualite-decouvrir {
	margin-left: 4rem;
	margin-top: 2rem;
	color: #000;
	font-size: 2.8rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.container-etat-service {
	width:50%;
}
#etat-service-connect {
	margin-top: 6.3rem;
}
@media (max-width: 740px) {
	.container-etat-service {
		width:100%;
		margin: 0 auto;
	}
	#etat-service-connect {
		flex-direction: column;
		margin-top: 3.3rem;
	}
	.etat-service-img {
		width: 100%;
		margin: 0 auto;
	}
}
