.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;
}
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;
}

@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-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-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;
    }
}

/*

    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--content-box--button {
        display: none;
    }
}

/*

    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;
}
.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.8rem;
}
.product-sheet--info:hover .product-sheet-info-second {
    display: inline-block;
}
.product-sheet--info:hover .product-sheet-info-first {
    display: none;
}
.product-sheet--info svg {
    width: 60px;
	height: 60px;
    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);
}
.bleu .product-sheet--info svg {
    fill: rgba(43,129,178,0.9);
}
.orange  .product-sheet--info svg {
    fill: 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;
    }
}

/* 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;
    justify-content: space-between;
}
.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;
    padding: 1rem 2rem;
    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%;
}
.documentations--item--info--action a.documentations--btn-dl::before,
.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: rgba(0,0,0,0.57);
    width: 16px;
    right: 2px;
}
.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: 4px;
}
.documentations--item--info--action a.doc-papier::before,
.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: 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: 0;
    top: 2px;
}
.sticky--doc-content .commande::before,
.sticky--doc-content .download::before {
    right: -40px;
    background-color: white;
}
.documentations--item--info--action > :first-child {
    align-self: flex-start;
    text-align: left;
    display: block;
    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,
.documentations--btn-view.active,
.documentations--btn-dl.active{
    color:  #e61e2a;
}
.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:  #e61e2a;
}
.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;
}

@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;
	}
	.documentations--btn-view {
		margin-bottom: 0.5rem;
		margin-top: 0.5rem;
	}
}
@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: 370px) {
    .documentations .documentations--row {
        padding: 0 !important;
    }
    .documentations--item {
        width: 100%;
        max-height: 33vh;
    }
}

/* 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;
    }
}

/*

    Notice

*/

