/*  
BLUE #0a2d81 , hover:#071c50
RED : #ee2e24
*/

html{margin: 0; padding: 0;} 

body{
    font-family: 'Ubuntu', sans-serif !important;
    font-weight: 400;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    -webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-interpolation-mode: nearest-neighbor;
    text-rendering: optimizeLegibility;
    color: #363638 !important;
    font-size: 16px;
}

*, ::after, ::before{box-sizing: inherit !important;}

h1.old{
    font-family: 'Play', sans-serif !important;
    font-size: 40px;
    line-height: 44px;
    font-weight: 700;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}
h1{
    font-family: 'Play', sans-serif !important;
    font-size: 30px;
    line-height: 34px;
    font-weight: 700;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

h2{
    font-family: 'Play', sans-serif !important;
    font-size: 30px;
    line-height: 34px;
    font-weight: 700;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

h3{
    font-family: 'Play', sans-serif !important;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

h4{
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

a{color:#353131; text-decoration: none; cursor: pointer; -webkit-transition: all 300ms; transition: all 300ms;}

a:hover,
a:focus{color:#353131; text-decoration: none; outline: none; cursor: pointer;}

button:focus{
    outline: none;
}

/* ------------------ */
/* ----  Header  ---- */
/* ------------------ */


.nav-top{
    background-color: #363638;
    position: relative;
    z-index: 101;
}

.nav-header-top{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 1200px;
    height: 40px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-header-top ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    color: #e1e1e1;
}

.nav-header-top ul a{color: #e1e1e1; display: block; cursor: pointer; transition: all 400ms;}

.nav-header-top .btn-sidebar-detail{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}

.nav-header-top .btn-sidebar-detail:hover,
.nav-header-top .btn-sidebar-detail:focus,
.nav-header-top ul a:hover,
.nav-header-top ul a:focus{text-decoration: none; color: #ee2e24; cursor: pointer;}

.nav-header-top li span{display: inline-block; margin-right: 6px; font-size: 17px; line-height: 17px;}

.nav-header-top ul li{margin-right: 30px; font-size: 12px; line-height: 14px; font-weight: 500;}
.nav-header-top ul li:last-child{margin-right: 0;}

.nav-header-top .RS{display: flex; justify-content: space-between; align-items: center;}

.nav-header-top li .RS a{margin-right: 12px;}
.nav-header-top li .RS a:last-child{margin-right: 0;}

.nav-header-top li .RS a span{font-size: 16px; line-height: 16px; margin-right: 0px;}

.nav-header-top li .RS a svg{fill:#e1e1e1; transition: all 400ms;}
.nav-header-top li .RS a:focus svg,
.nav-header-top li .RS a:hover svg{fill:#ee2e24;}

#nav-header .menu-header .close-submenu{
    display: none;
    justify-content: center;
    align-items: flex-start;
    background-color: #ee2e24;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    width: 35px;
    height: 30px;
    font-family: 'Play', sans-serif !important;
    font-size: 24px;
    line-height: 24px;
    cursor: pointer;
    color: #FFF;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.5);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.hamburger{
    padding: 15px 15px;
    display: none;
    cursor: pointer;
    transition-property: opacity, -webkit-filter;
    transition-property: opacity, filter;
    transition-property: opacity, filter, -webkit-filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger:hover,
.hamburger:focus{opacity: 0.7;}

.hamburger-box{
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner{
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before, 
.hamburger-inner::after{
    width: 40px;
    height: 4px;
    background-color: #d52b1e;
    border-radius: 4px;
    position: absolute;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after{content: ""; display: block;}

.hamburger-inner::before{top: -10px;}
.hamburger-inner::after{bottom: -10px;}

.hamburger--spin-r .hamburger-inner{
    -webkit-transition-duration: 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r .hamburger-inner::before{
    -webkit-transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in;
    transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin-r .hamburger-inner::after{
    transition: bottom 0.1s 0.34s ease-in, -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r.is-active .hamburger-inner{
    -webkit-transform: rotate(-225deg);
    -webkit-transition-delay: 0.14s;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: rotate(-225deg);
    transition-delay: 0.14s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin-r.is-active .hamburger-inner::before{
    top: 0;
    opacity: 0;
    -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out;
    transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out;
}

.hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}

#Sidebar-header{
    position: absolute;
    top: 40px;
    left: 0;
    z-index: 1;
    height: 0;
    width: 100%;
    padding: 0;
    background: rgb(30,87,153);
    background: -moz-linear-gradient(top,  rgba(30,87,153,1) 0%, rgba(10,45,129,1) 100%);
    background: -webkit-linear-gradient(top,  rgba(30,87,153,1) 0%,rgba(10,45,129,1) 100%);
    background: linear-gradient(to bottom,  rgba(30,87,153,1) 0%,rgba(10,45,129,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#0a2d81',GradientType=0 );
    overflow-x: hidden;
    -webkit-transition: all 500ms;
    transition: all 500ms;  
}

#Sidebar-header.show-Sidebar,
#Sidebar-header.show-Sidebar2,
#Sidebar-header.show-Sidebar3{
    padding-bottom: 30px;
    height: auto;}

#nav-header.Margin-Sidebar,
#nav-header.Margin-Sidebar2,
#nav-header.Margin-Sidebar3{margin-top:200px;}

.horaires-detail,
.plan-acces-detail,
.horaires-detail2,
.plan-acces-detail2,
.newsletter-detail{display: none;}

.horaires-detail.active-detail,
.plan-acces-detail.active-detail,
.newsletter-detail.active-detail{display: block;}

.closebtn{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ee2e24;
    position: absolute;
    top: 5%;
    right: 3%;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    font-family: 'Play', sans-serif !important;
    font-size: 34px;
    line-height: 34px;
    cursor: pointer;
    color: #FFF;
    opacity: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.5);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.show-Sidebar .closebtn,
.show-Sidebar2 .closebtn,
.show-Sidebar3 .closebtn{opacity: 1;}

.horaires-detail{
    max-width: 700px;
    margin: 34px auto 0;
    text-align: center;
    color: #FFF;
    font-size: 18px;
}

.horaires-detail b{color: #f9f606;}

.row-cta{display: flex; justify-content: center; align-items: center; margin-top: 20px; flex-wrap: wrap;}

.cta-header-top{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFF;
    width: 150px;
    height: 34px;
    margin: 0 10px;
    color: #333;
    font-size: 15px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.cta-header-top:hover,
.cta-header-top:focus{text-decoration: none; background-color: #ee2e24; color:#FFF;}

.newsletter-detail{
    max-width: 800px;
    margin: 24px auto;
    text-align: center;
    color: #FFF;
    font-size: 16px;
}

.newsletter-detail h3{font-size: 22px; margin-bottom: 15px;}

.form-news input,
.form-news button{border: none;}

.form-news input{padding: 5px 10px; font-size: 14px; height: 24px;}
.form-news button{
    background-color: #00B994;
    margin: 0;
    height: 24px;
    padding: 5px 20px;
    color: #FFF;
    font-weight: 500;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.form-news button:hover,
.form-news button:focus{background-color: #03a383;}

.newsletter-detail .legal-message{max-width: 500px; margin: 15px auto 0; font-size: 11px; line-height: 13px; text-align: justify;}

#header-concessionnaire{position: relative; z-index: 10; padding-bottom: 81px; background-color: #f5f5f5;}

#nav-header{
    background-color: #FFF;
    border-bottom: 1px solid #dddddd;
    -webkit-transition: all 500ms;
    transition: all 500ms;
    position: fixed;
    z-index: 100;
    top:40px;
    left: 0;
    right: 0;
}

#nav-header.fixed-active{top:0;}

.content-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    padding: 8px 20px 6px;
    margin: 0 auto;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.logo-header{/*max-width: 250px;*/}
.logo-header .logo-yamaha{display: block; max-width: 140px;     position: relative;
    z-index: 10;}
.logo-header .logo-yamaha img{width: 100%;}

.logo-header h1{margin-bottom: 0; text-transform: uppercase; margin-top: 2px;margin-left: 15px;}
.logo-header h1 a{display: flex; align-items: center; font-size: 21px; line-height: 24px; font-weight: 700; color: #3d4045;}
.logo-header span.titre-nom-site{
    font-family: 'Play', sans-serif !important;
    font-size: inherit;
    line-height: 44px;
    font-weight: 700;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    margin-bottom: 0; text-transform: uppercase; margin-top: 2px;margin-left: 15px;
}
.logo-header span.titre-nom-site a{
    display: inline-block; align-items: center; font-size: 24px; line-height: 24px; font-weight: 700; color: #3d4045;
    font-family: 'Play', sans-serif !important;
}
.titre37 h1{
    font-size: 34px;
}

.logo-header h1 a span{display: block; margin-right:4px; font-size: 12px; line-height: 14px;}
.logo-header h1 a:hover,
.logo-header h1 a:focus{text-decoration: none;}

#nav-header nav{width: 80%; margin-right: -10px; -webkit-transition: all 500ms ease; transition: all 500ms ease;}
#nav-header nav ul{display: flex; justify-content: flex-end; align-items: center; list-style: none; margin: 0; padding: 0; width: 100%;}
#nav-header nav ul li {
    margin: 0;
    position: relative;
    text-align: center;
}
#nav-header nav ul li ul li {
    white-space: nowrap;
}
#nav-header nav ul li .link-nav,
#nav-header nav ul li a{padding: 22px 10px; cursor: pointer;}

#nav-header nav ul li .link-nav,
#nav-header nav ul li .first-cat{position: relative; -webkit-transition: all 500ms ease; transition: all 500ms ease;}

#nav-header nav ul li .first-cat::after{
    content: "";
    position: absolute;
    bottom: -7px;
    left: 0;
    background-color: #ee2e24;
    height: 0;
    width: 100%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

#nav-header nav ul li .first-cat:hover::after,
#nav-header nav ul li .first-cat:focus::after{height: 4px;}

#nav-header nav ul li .link-nav:hover,
#nav-header nav ul li .link-nav:focus,
#nav-header nav ul li .first-cat:hover,
#nav-header nav ul li .first-cat:focus{background: #e9ecf2;}

#nav-header nav ul li .submenu{
    position: absolute;
    top: 69px;
    left: -10px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 15px 0;
    background: rgba(255,255,255,0.8);
    overflow-y: auto;
    overflow-x: hidden;
    text-align:left;
    opacity:0;
    visibility:hidden;
    border-top: 4px solid #ee2e24;
    -webkit-box-shadow:0px 5px 15px 0px rgba(0, 0, 0, 0.2);
    box-shadow:0px 5px 15px 0px rgba(0, 0, 0, 0.2);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    width: auto;
}

#nav-header nav ul li .submenu::before{
    content: "";
    position: absolute;
    top: -2px;
    left: 50%;
    margin-left: -22px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 22.5px 0 22.5px;
    border-color: #ee2e24 transparent transparent transparent;
}

#nav-header nav ul li:hover ul.submenu{
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1) translateY(0px);
    transform: scale(1) translateY(0px);
}
#nav-header nav ul li .submenu li{padding: 0; margin: 0; width: 100%;}

#nav-header nav ul li .submenu li a{
    display: flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 17px;
    line-height: 19px;
    
}

#nav-header nav ul li .submenu li span{display: inline-block; padding-top: 3px; margin-right: 15px; font-size: 7px; line-height: 7px;}

#nav-header nav ul li .submenu li a:hover,
#nav-header nav ul li .submenu li a:focus{text-decoration: none; background-color: #e9ecf2;}

.contact-mobile{display: none;}

#nav-header nav .link-nav,
#nav-header nav ul li a{
    position: relative;
    display: block;
    font-family: 'Play', sans-serif !important;
    font-size: 20px;
    line-height: 22px;
    font-weight: 700;
    color: #3d4045;
    cursor: pointer;
    /*white-space: nowrap;*/
}

#nav-header nav ul li a:hover,
#nav-header nav ul li a:focus{text-decoration: none; background: #e9ecf2;}

#back-top {
	position: fixed;
	bottom: 20px;
    right: 15px;
    overflow: hidden;
    z-index: 10;
}
#back-top a {
	width: 40px;
	display: block;
	text-align: center;
	font: 11px/100% Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	text-decoration: none;
	color: #bbb;
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
    outline: none;
    border-bottom: none;
}
#back-top a:hover {
	color: #000;
}
/* arrow icon (span tag) */
#back-top span {
	width: 40px;
	height: 40px;
	display: block;
	margin-bottom: 7px;
	background: rgba(82,97,108,0.5) url(../images/up-arrow.png) no-repeat center center;
    background-size: 35%;
	border-radius: 5px;
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
}
#back-top a:hover span {
	background-color: #0a2d81;
}



/* ------------------ */
/* ----  Footer  ---- */
/* ------------------ */


footer{background-color: #363638; padding: 45px 0 30px; color:#afafaf; font-size: 15px; text-align: center;}

footer a{color:#afafaf; -webkit-transition: all 800ms ease; transition: all 800ms ease;}

footer a:hover,
footer a:focus{text-decoration: none; color: #ee2e24;}

footer ul{list-style: none; margin: 0; padding: 0;}

.entry-footer{max-width: 960px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: flex-start;}

.news-footer{
    background: url(../images/img-news-footer.png) no-repeat 0 0;
    background-size: cover;
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    width: 244px;
    min-height: 130px;
    padding: 5px;
    border: 1px solid #000;
}

.news-footer .icon-news{display: block; margin: 0 0 15px; font-size: 45px; color:#e1e1e1;}

.news-footer h4{text-transform: uppercase; font-size: 25px; line-height: 25px; margin-bottom: 4px; font-weight: 700;}
.news-footer p{margin-bottom: 15px;}

.news-footer .cta-inscrire{
    background-color: #ee2e24;
    position: absolute;
    bottom: -14px;
    left: 50%;
    z-index: 6;
    display: block;
    width: 120px;
    height: 32px;
    padding-top: 1px;
    margin-left: -65px;
    padding: 8px 5px;
    text-transform: uppercase;
    font-family: 'Play', sans-serif !important;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}
.news-footer .btn-newsletter{
    color: #fff;
    background-color: #ee2e24;
    position: absolute;
    bottom: -14px;
    left: 50%;
    z-index: 6;
    display: block;
    width: 120px;
    height: 32px;
    padding-top: 1px;
    margin-left: -65px;
    padding: 8px 5px;
    text-transform: uppercase;
    font-family: 'Play', sans-serif !important;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.news-footer .cta-inscrire span{display: inline-block; margin-right: 5px; font-size: 12px;}

.flip-card {
  background-color: transparent;
  width: 244px;
  height: 165px;
  perspective: 800px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-transition: transform 0.6s;
  -webkit-transform-style: preserve-3d;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card .flip-card-inner.is-flipped{
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.flip-card .flip-card-inner.is-flipped .flip-card-front{opacity: 0;}
.flip-card .flip-card-inner.is-flipped .flip-card-back{display: flex; opacity: 1;}

.flip-card-front, .flip-card-back {
    position: absolute;
    backface-visibility: hidden;
    -webkit-transition: all 800ms ease;
    transition: all 800ms ease;
}

.flip-card-back{
    background: rgb(30,87,153);
    background: -moz-linear-gradient(top,  rgba(30,87,153,1) 0%, rgba(10,45,129,1) 100%);
    background: -webkit-linear-gradient(top,  rgba(30,87,153,1) 0%,rgba(10,45,129,1) 100%);
    background: linear-gradient(to bottom,  rgba(30,87,153,1) 0%,rgba(10,45,129,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#0a2d81',GradientType=0 );
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    padding: 5px;
    width: 100%;
    height: 100%;
    color: white;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.flip-card-back .close-flip{
    background-color: #ee2e24;
    position: absolute;
    top: -8px;
    right: -8px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 24px;
    height: 24px;
    color: #FFF;
    border-radius: 12px;
    font-size: 16px;
    line-height: 21px;
    font-weight: 500;
    cursor: pointer;
}

.flip-card-back h4{font-size: 17px;}
.flip-card-back .legal-message{font-size: 11px; line-height: 13px; padding: 0 15px;}

.flip-card-back .form-news{display: flex; justify-content: center; align-items: center; margin-bottom: 15px;}
.flip-card-back .form-news input{
    padding: 2px 6px;
    font-size: 13px;
    height: 24px;
    width: 150px;
}

.flip-card-back .form-news button{height: 20px; padding: 4px 10px 5px; font-size: 14px;}

.information-footer h4{font-size: 14px; font-weight: 500;}

.information-footer a{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 14px 0 20px;
    font-size: 16px;
    color: #FFF;
    font-weight: 700;
    text-transform: uppercase;
}

.information-footer span{display: inline-block; margin-right: 8px; font-size: 40px;}

.RS-footer h4{
    padding-top: 16px;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-top: 1px solid #afafaf;
}

.RS-footer .RS-footer__container{display:flex; justify-content:center; align-items:center; gap:8px;}
.RS-footer a{display: flex; justify-content:center; max-width:24px; font-size: 24px; margin: 0 10px;}
.RS-footer a svg{fill:#afafaf; transition: all 800ms ease;}
.RS-footer a:focus svg,
.RS-footer a:hover svg{fill:#ee2e24;}

.nav-footer{max-width: 960px; margin: 20px auto 0; padding: 0 20px;}
.nav-footer ul{display: flex; justify-content: center; align-items: center;}

.nav-footer ul li{background: url(../images/separation-link-footer.png) no-repeat right center; padding: 0 18px;}
.nav-footer ul li:last-child{background: none;}

.copyright-yamaha{margin: 15px 0 0; padding: 18px 20px 0; border-top: 1px solid #afafaf; font-size: 12px; line-height: 16px;}



/* --------------------- */
/* ----  Home page  ---- */
/* --------------------- */


.banner-home{position: relative; z-index: 8; margin-bottom: 0;}

.col-left-home-banner{position: absolute; top: 0; left: 0; z-index: 4; width: 388px; height: 530px; overflow: hidden;}

.col-left-home-banner .flip-card{
    perspective: 9000px;
}
.col-left-home-banner .flip-card-back{
    background: transparent;
    border: 1px solid #fff;
    justify-content: left;
    align-items: end;
}
.col-left-home-banner .flip-card-back a{color: #fff;}
.col-left-home-banner::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 4;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 1065px 388px 0 0;
    border-color: #363638 transparent transparent transparent;
}

.col-left-home-banner::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -526px;
    z-index: 5;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 584px 217px 0 0;
    border-color: #f5f5f5 transparent transparent transparent;
}

.col-left-home-banner ul{
    position: relative;
    z-index: 100;
    list-style: none;
    max-width: 283px;
    margin: 30px 0 0 30px;
    padding: 0;
    text-shadow: 1px 1px 1px #000;
}

.col-left-home-banner .txt-intro{
    margin-bottom: 25px;
    font-family: 'Play', sans-serif !important;
    font-size: 16px;
    line-height: 27px;
    color:#FFF;
}
.col-left-home-banner .txt-intro strong{font-size: 20px; line-height: 31px; text-transform: uppercase; font-weight: 700;}

.show-mobile{display:none;}

.phone-banner{
    margin-bottom: 19px;
    font-family: 'Play', sans-serif !important;
    font-size: 24px;
    line-height: 24px;
    color:#FFF;
    font-weight: 700;
}

.phone-banner a{color:#FFF;}

.phone-banner span{display: inline-block; width: 20px; font-size: 17px; margin-right: 3px;}

.adresse-banner,
.horaires-banner,
.contact-header-top{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    line-height: 16px;
    color:#FFF;
    cursor: pointer;
    -webkit-transition: all 500ms;
    transition: all 500ms;
}

.adresse-banner,
.horaires-banner{margin-bottom: 12px;}

.adresse-banner span,
.horaires-banner span,
.contact-header-top span{display: block; margin-right: 8px;}

.adresse-banner span{font-size: 20px; text-align: center; width: 20px;}
.horaires-banner span{font-size: 18px;}
.contact-header-top span{font-size: 18px;}

.adresse-banner:hover,
.horaires-banner:hover,
.contact-header-top:hover,
.contact-header-top:focus{text-decoration: none; color:#ee2a24;}

.title-banner-home{
    background-color: #0a2d81;
    position: absolute;
    bottom: 114px;
    right: 0;
    z-index: 5;
    padding: 0 0 0 40px;
    margin-bottom: 0;
    min-width: 275px;
}

.title-banner-home::before{
    content: "";
    position: absolute;
    left: -28px;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 32.5px 0 32.5px 28px;
    border-color: transparent transparent transparent #0a2e81;
    transform: rotate(180deg);
}

.title-banner-home a{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    height: 65px;
    font-family: 'Play', sans-serif !important;
    font-size: 20px;
    line-height: 24px;
    color:#FFF;
    font-weight: 700;
    text-transform: uppercase;
}

.title-banner-home a:hover{text-decoration: none; color: #FFF;}

.img-banner-home{background-color: #f5f5f5; position: relative; z-index: 1; display: flex; align-items: center; height: 530px; overflow: hidden;}
.img-banner-home img{width: 100%;}

.items-concessionnaire,
.items-home-product{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5px;
}

.items-concessionnaire{margin-bottom: 80px;}

.items-home-product h3{font-size: 36px; font-weight: 700; color: #353131; margin-bottom: 54px;}

.presentation-modeles{position: relative; margin-bottom: 34px; padding-top: 22px;}

.cta-concessionnaire{
    font-family: 'Play', sans-serif !important;
    background-color: #0a2d81;
    padding: 10px 24px;
    font-size: 20px;
    line-height: 20px;
    color:#FFF;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none;
    cursor: pointer;
}

.cta-concessionnaire .icon-arrow{display: inline-block; margin-left: 10px; font-size: 14px; font-weight: bold;}

.cta-concessionnaire:hover,
.cta-concessionnaire:focus{background-color: #071c50; text-decoration: none; color:#FFF;}

.voir-tous-les-modeles{position: absolute; top: 1px; left: 0; z-index: 2;}

.reserver-votre-essai{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 68px;
    padding: 0 10px;
    font-size: 14px;
    font-weight: 700;
}

.picto-reserv{
    background-color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    min-width: 48px;
    height: 48px;
    margin-right: 20px;
    border-radius: 24px;
    font-size: 31px;
    color: #0a2d81;
}

.reserver-votre-essai .icon-arrow{margin-left: 20px;}

.content-product{background-color: #F5F5F5; padding: 72px 20px;}

.col1-home,
.col2-home{width: 46%;}

.img-presentation-modeles .col1 a{
    max-width: 550px;
    height: 150px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.img-presentation-modeles .col1 a img,
.img-presentation-modeles .col3 a img{width: 100%;}

.img-presentation-modeles .col2{
    max-width: 550px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.img-presentation-modeles .col3 a{
    max-width: 294px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.img-presentation-modeles .col4 a{
    max-width: 256px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.img-presentation-modeles .col4 a img{height: 100%;}

.item-occasion{
    background-color: #FFF;
    border: 1px solid #e6e6e6;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-right: 34px;
    margin-bottom: 30px;
}

.item-occasion .img-occasion{
    width: 214px;
    height: 148px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-right: 34px;
}

.item-occasion .img-occasion img{width: 100%;}

.detail-annonce{font-size: 16px; line-height: 23px; color: #333333; letter-spacing: 0.02em;}

.detail-annonce h4{margin-bottom: 8px; text-transform: uppercase; line-height: 15px;}
.detail-annonce h4 a{font-family: 'Play', sans-serif !important; font-size: 17px; line-height: 20px; font-weight: 700; color: #333333;}
.detail-annonce h4 a:hover,
.detail-annonce h4 a:focus{text-decoration: none; color: #333333;}

.detail-annonce .price{display: block; margin-top: 10px; font-size: 18px; line-height: 20px; font-weight: 700; color: #ee2e24;}

.items-home-accessoire{max-width: 1200px; margin: 0 auto;}

.title-accessoires-home{display: flex; justify-content: space-between; align-items: center; margin-bottom: 54px; margin-top: 57px;}

.title-accessoires-home h3{font-size: 36px; font-weight: 700; color: #353131; width: 72%; position: relative;}

.title-accessoires-home h3::after{
    background-color: #353131;
    position: absolute;
    top: 25px;
    right: 0;
    content: "";
    width: 74%;
    height: 1px;
}

.voir-tous-les-accessoires{
    border: 1px solid #363638;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 308px;
    height: 45px;
    font-family: 'Play', sans-serif !important;
    font-size: 20px;
    line-height: 20px;
    color: #363638;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.voir-tous-les-accessoires:hover,
.voir-tous-les-accessoires:focus{text-decoration: none; background-color: #363638; color:#FFF;}

.voir-tous-les-accessoires span{display: inline-block; margin-left: 10px; padding-top: 1px; font-size: 15px; line-height: 20px;}

.items-home-accessoire ul{display: flex; justify-content: space-between; align-items: stretch; list-style: none; margin: 0; padding: 0;}

.item-accessoire{
    background-color: #FFF;
    border: 1px solid #e6e6e6;
    max-width: 220px;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.item-accessoire:hover,
.item-accessoire:focus{transform: translateY(-4px);}

.img-accessoire{
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 164px;
    border-bottom: 1px solid #e6e6e6;
}

.img-accessoire img{width: 100%;}

.txt-item-access{padding: 15px; display: flex; flex-direction: column; justify-content: space-between;}
.txt-item-access h4{font-size: 14px; line-height: 18px; color: #333333; font-weight: 400; margin-bottom: 30px;}
.txt-item-access .price{position: absolute; bottom: 12px; left: 15px; display: block; font-size: 16px; font-weight: 700; color:#ee2e24;}

.content-actus{background-color: #363638; padding: 50px 0 367px; position: relative;}

.content-actus::before{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -12px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 24px 30px 0 30px;
    border-color: #F5F5F5 transparent transparent transparent;
}

.title-actus{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
}

.title-actus h3{font-size: 36px; color:#FFF; font-weight: 700; margin-bottom: 0;}
.title-actus h3 span{display: inline-block; margin-right: 8px; font-size: 35px;}

.voir-toutes-les-actus{
    font-family: 'Play', sans-serif !important;
    font-size: 20px;
    line-height: 20px;
    color: #FFF;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.voir-toutes-les-actus:hover,
.voir-toutes-les-actus:focus{text-decoration: none; color:#ee2e24;}

.voir-toutes-les-actus span{display: inline-block; margin-left: 12px; font-size: 14px;}

.content-actus .liste-actu{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0;
    padding: 0;
    list-style: none;
}

.content-actus .liste-actu li{width: 50%;}

.content-actus .liste-actu li:first-child{border-right: 1px solid #FFF;}

.img-actu{
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    max-height: 450px;
    position: relative;
}

/*.img-actu img{height: 100%;}*/

.img-actu .en-savoir-plus{
    background-color: rgba(238,46,36,0.8);
    border: 1px solid #0a2d81;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 144px;
    height: 40px;
    margin-top: -10px;
    margin-left: -72px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Play', sans-serif !important;
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    color: #FFF;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.img-actu a:hover .en-savoir-plus,
.img-actu a:focus .en-savoir-plus{background-color: rgba(238,46,36,1); width: 150px; letter-spacing: 0.04em; margin-left: -75px;}

.img-actu .en-savoir-plus span{display: inline-block; margin-left: 8px; font-size: 14px;}

.content-actus .liste-actu li h4{margin-bottom: 0;}

.content-actus .liste-actu li h4 a{
    background-color: #0a2d81;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 44px;
    padding: 10px;
    font-size: 22px;
    font-weight: 700;
    color: #FFF;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.content-actus .liste-actu li h4 a:hover,
.content-actus .liste-actu li h4 a:focus{background-color: #071c50; text-decoration: none; color:#FFF;}

.content-avantages{position: relative; z-index: 2;}

.items-avantages{max-width: 1200px; margin: -100px auto 80px;}

.items-avantages h3{text-align: center; font-size: 36px; font-weight: 700; color: #FFF; margin-bottom: 40px;}

.liste-avantages .row1,
.liste-avantages .row2{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.liste-avantages .row1 a,
.liste-avantages .row2 a{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 260px;
    overflow: hidden;
    margin-right: 6px;
}

.liste-avantages .row1 a:last-child,
.liste-avantages .row2 a:last-child{margin-right: 0;}

.liste-avantages .row1 a::before,
.liste-avantages .row2 a::before{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    background: -moz-linear-gradient(top,  rgba(1,1,1,0.1) 36%, rgba(1,1,1,0.8) 100%);
    background: -webkit-linear-gradient(top,  rgba(1,1,1,0.1) 36%,rgba(1,1,1,0.8) 100%);
    background: linear-gradient(to bottom,  rgba(1,1,1,0.1) 36%,rgba(1,1,1,0.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1a010101', endColorstr='#cc010101',GradientType=0 );
}

.liste-avantages .row1 h4,
.liste-avantages .row2 h4{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-bottom: 0;
    text-align: left;
    padding: 16px 30px;
    font-family: 'Ubuntu', sans-serif !important;
    font-size: 18px;
    line-height: 24px;
    color:#FFF;
    font-weight: 400;
}

.liste-avantages h4 strong{
    font-family: 'Play', sans-serif !important;
    font-size: 26px;
    line-height: 28px;
    font-weight: 700;
}

.liste-avantages .option1,
.liste-avantages .option5{width: 50%;}

.liste-avantages .option2,
.liste-avantages .option3,
.liste-avantages .option4,
.liste-avantages .option6{width: 25%;}

.liste-avantages .option1 img,
.liste-avantages .option5 img{width: 100%; height: auto;}

.liste-avantages .option2 img,
.liste-avantages .option3 img,
.liste-avantages .option4 img,
.liste-avantages .option6 img{height: 100%;}

.presentation-concessionnaire{max-width: 1200px; margin: 0px auto 72px; padding: 0; display: flex; justify-content: flex-end;}

.presentation-concessionnaire .content-presentation{
    /*max-width: 62%;*/
    background-color: #efefef;
    border: 1px solid #e6e6e6;
    margin-left: 160px;
    padding: 35px 34px 35px 487px;
    font-size: 14px;
    line-height: 19px;
    color: #333;
    text-align: justify;
    position: relative;
    min-height: 408px;
}

.content-presentation .txt1{display: flex; justify-content: space-between; align-items:flex-start; margin-bottom: 20px; margin-top: 20px;}
.content-presentation .txt1 a{display: inline-block; margin-right: 40px; width: auto; color: #0a2d81;}
.content-presentation .txt1 a img{width: 100%;}

.content-presentation .txt1 p{width: 70%;}

.content-presentation p{margin-bottom: 0;}
.content-presentation p strong{display: block; font-weight: 700; color:#0a2d81; margin-bottom: 15px;}

.cta-en-savoir-plus{
    background-color: #0a2d81;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 30px;
    margin-top: 20px;
    font-size: 15px;
    line-height: 16px;
    color:#FFF;
    font-weight: 700;
    font-family: 'Play', sans-serif !important;
}

.cta-en-savoir-plus span{display: inline-block; font-size: 12px; margin-left: 8px;}

.cta-en-savoir-plus:hover,
.cta-en-savoir-plus:focus{text-decoration: none; color:#FFF; width: 155px; letter-spacing: 0.03em;}

.more-information{
    position: absolute;
    top: -2px;
    left: -162px;
    width: 554px;
    height: 359px;
    height: 409px;
    overflow: hidden;
    border: 1px solid #e6e6e6;
}

.more-information ul{
    background-color: #363638;
    position: static;
    
    top:0;
    left: 0;
    right: 0;
    z-index: 3;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: 'Play', sans-serif !important;
    color:#FFF;
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
}

.more-information ul li{padding: 0 8px;}
.more-information ul span{color:#ee2e24;}
.more-information ul .icon-phone{font-size: 17px;}
.more-information .tel-info{min-width: 158px;}
.more-information .tel-info a{color:#FFF;}
.presentation-concessionnaire .content-presentation .more-information .tel-info a:hover {text-decoration: none !important;}

.more-information .adresse-info,
.more-information .horaires-info{cursor: pointer;}

.more-information .owl-dots{position: absolute; bottom: 6px; left: 0; right: 0; z-index: 2;}
.more-information .owl-theme .owl-dots .owl-dot span{
    background-color: #FFF;
    width: 12px;
    height: 12px;
    margin: 5px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    box-shadow: 0px 0px 4px #000;
    display: inline-block;
}
.more-information .owl-theme .owl-dots .owl-dot.active span,
.more-information .owl-theme .owl-dots .owl-dot:hover span{background-color: #ee2e24;}

.show-more-detail{
    background: rgb(30,87,153);
    background: -moz-linear-gradient(top,  rgba(30,87,153,1) 0%, rgba(10,45,129,1) 100%);
    background: -webkit-linear-gradient(top,  rgba(30,87,153,1) 0%,rgba(10,45,129,1) 100%);
    background: linear-gradient(to bottom,  rgba(30,87,153,1) 0%,rgba(10,45,129,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#0a2d81',GradientType=0 );
    position: absolute;
    top:-266px;
    left: 0;
    right: 0;
    z-index: 2;
    width: 380px;
    height: 266px;
    padding-top: 40px;
    color:#FFF;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
}

.active-detail-info2 .show-more-detail,
.active-detail-info .show-more-detail{top:0px;}

.horaires-detail2.active-detail,
.plan-acces-detail2.active-detail,
.horaires-detail2.active-detail2,
.plan-acces-detail2.active-detail2{display: flex;}

.plan-acces-detail2{
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.plan-acces-detail2 a{
    background-color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 35px;
    margin-top: 20px;
    margin-bottom: 10px;
    color:#0a2d81;
}

.more-information .cta-header-top:hover,
.plan-acces-detail2 a:hover,
.plan-acces-detail2 a:focus{text-decoration: none; color:#0a2d81;}

.more-information .closebtn{border-radius: 0; right: 0;}

.active-detail-info2 .closebtn,
.active-detail-info .closebtn{top: 40px; opacity: 1;}

.horaires-detail2{
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 16px;
}

.more-information .cta-header-top{
    background-color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 35px;
    margin-top: 10px;
    margin-bottom: 10px;
    color:#0a2d81;
    font-size: 18px;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
    cursor: pointer;
}



/* -------------------- */
/* --- Page produit --- */
/* -------------------- */



.content-detail{
    background-color: #F5F5F5;
    padding: 45px 20px 10px;
}

.breadcrumb-yamaha{max-width: 1200px; margin: 15px auto 30px; color:#333333;}

.breadcrumb-yamaha a{font-family: 'Play', sans-serif !important; font-size: 16px; line-height: 20px; color:#333333; transition: color 300ms ease;}
.breadcrumb-yamaha a:hover{color: #ee2e24;}
.breadcrumb-yamaha span{display: inline-block; margin-right: 8px; font-size: 14px;}

.content-detail .col1-concessionnaire{max-width: 750px; width: 64%; margin-right: 30px;}
.col1-concessionnaire img{width: 100%;}

.content-detail .col2-concessionnaire{max-width: 402px; width: 34%;}

.row-detail{background-color: #FFF; padding: 25px 30px; position: relative; margin-bottom: 30px;}
.row-detail .form-contact-product > .col-lg-12{padding: 20px 25px !important;}
.row-detail h1{font-size: 24px; line-height: 26px; font-weight: 700; color:#363638; margin-bottom: 25px;}
.row-detail .detail-product{font-size: 16px; line-height: 22px;}
.row-detail .detail-product .price{display: block; font-size: 28px; line-height: 30px; margin-bottom: 25px; color:#ee2e24;}

.row-detail .scroll-bottom{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0a2d81;
    border: 1px solid #0a2d81;
    font-size: 14px;
}

.row-detail .scroll-bottom:hover{text-decoration: none;  background-color: #0a2d81; color: #FFF;}

.form-contact-product{background-color: #FFF; padding: 25px 30px; position: relative;}

.form-contact-product h3{
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #dddddd;
}

.form-contact-product .contact-name{font-size: 18px; line-height: 22px; font-weight: 700;}
.form-contact-product .tel{
    font-size: 22px;
    line-height: 24px;
    display: block;
    margin-bottom: 22px;}

.form-contact-product .contact-info-product{
    list-style: none;
    margin: 20px 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}

.form-contact-product .contact-info-product .horaires-info-product,
.form-contact-product .contact-info-product .plan-info-product a{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.form-contact-product .contact-info-product .plan-info-product a{color: #363638;}

.form-contact-product .contact-info-product .plan-info-product a:hover,
.form-contact-product .contact-info-product .plan-info-product a:focus{color: #ee2e24; text-decoration: none;}

.form-contact-product .contact-info-product .horaires-info-product{margin-right: 30px;}
.form-contact-product .contact-info-product span{display: inline-block; margin-right: 5px; font-size: 18px;}

.form-contact-product p em{display: inline-block; font-size: 14px; line-height: 18px; font-weight: 400;}

.form-detail-product-contact{
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}

.form-detail-product-contact input{
    border: 1px solid #dddddd;
    padding: 11px 10px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 16px;
    color: #333333;
}

.form-detail-product-contact input::placeholder{color: #333333; opacity: 1;}
.form-detail-product-contact input:-ms-input-placeholder{color: #333333;}
.form-detail-product-contact input::-ms-input-placeholder{color: #333333;}

.form-detail-product-contact .custom-select2{
  position: relative;
  font-family: Arial;
    width: auto;
    margin-bottom: 20px;
}

.form-detail-product-contact .custom-select2 select{display: none;}

.form-detail-product-contact .select-selected {border: 1px solid #dddddd;
  background-color: #fff;
}

.form-detail-product-contact .select-selected:after{
  position: absolute;
  content: "";
  top: 16px;
  right: 12px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #333 transparent transparent transparent;
}

.form-detail-product-contact .select-selected.select-arrow-active:after {
  border-color: transparent transparent #333 transparent;
  top: 10px;
}

.form-detail-product-contact .select-items div,.select-selected {
  color: #333333;
  padding: 8px 16px;
  cursor: pointer;
  user-select: none;
    font-size: 14px;
}

.form-detail-product-contact .select-items {
  position: absolute;
    background-color: #fff;
  border-left: 1px solid #dddddd;
    border-right: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

.form-detail-product-contact .select-hide {display: none;}

.form-detail-product-contact .select-items div:hover, .same-as-selected{background-color: rgba(0, 0, 0, 0.1);}

.button-submit-contactez-nous{display: none;}

.button-submit-contactez-nous,
.form-detail-product-contact .button-submit{
    background-color: #0a2d81;
    padding: 10px 24px;
    border: none;
    font-family: 'Play', sans-serif !important;
    font-size: 20px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: 700;
    color: #FFF;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;  
    cursor: pointer;
}

.form-detail-product-contact .button-submit span{
    display: inline-block;
    margin-left: 10px;
    font-size: 14px;
    font-weight: bold;
}

.list-option-detail-product .reserver-votre-essai:hover,
.list-option-detail-product .reserver-votre-essai:focus{
    background-color: #3fb34f;
    text-decoration: none;
    color: #FFF;
}

.button-submit-contactez-nous:hover,
.button-submit-contactez-nous:focus,
.form-detail-product-contact .button-submit:hover,
.form-detail-product-contact .button-submit:focus{
    background-color: #071c50;
    text-decoration: none;
    color: #FFF;
}

.list-option-detail-product{ padding: 0; list-style: none; display: flex;/* justify-content: space-between;*/ align-items: center;}

.list-option-detail-product .reserver-votre-essai{
    background-color: #0a2d81;
    font-family: 'Play', sans-serif !important;
    font-weight: 700;
    color: #FFF;
    min-height: 56px;
    padding: 0 15px;
    margin-right: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;  
}

.list-option-detail-product .reserver-votre-essai .picto-reserv{
    width: 36px;
    height: 36px;
    font-size: 25px;
    position: relative;
    min-width: inherit;
}

.reserver-votre-essai .icon-valider{
    display: block;
    position: absolute;
    z-index: 2;
    top: -1px;
    right: -12px;
    font-size: 19px;
    color:#3fb34f;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;  
}

.list-option-detail-product .reserver-votre-essai:hover .icon-valider,
.list-option-detail-product .reserver-votre-essai:focus .icon-valider{color:#0a2d81;}

.list-option-detail-product .reserver-votre-essai .picto-reserv::before{
    content: "";
    position: absolute;
    top: 0;
    right: -11px;
    z-index: 1;
    background-color: #FFF;
    width: 16px;
    height: 16px;
    border-radius: 10px;
}

.list-option-detail-product .cta-white{
    background-color: #FFF;
    border: 1px solid #0a2d81;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0px;
    font-family: 'Play', sans-serif !important;
    font-size: 15px;
    line-height: 24px;
    color: #0a2d81;
    font-weight: 700;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;  
}

.list-option-detail-product .cta-white span{display: inline-block; margin-right: 18px; font-size:35px;}

.list-option-detail-product .cta-white:hover,
.list-option-detail-product .cta-white:focus{background-color: #0a2d81; text-decoration: none;color: #FFF;}

.items-concessionnaire .lSSlideOuter .lSPager.lSGallery{margin-top: 20px !important; display: flex; justify-content: space-between;}

.items-concessionnaire .lSSlideOuter .lSPager.lSGallery li{
    display: flex;
    align-items: center;
    background-color: #050505;
    max-width: 135px !important;
    max-height: 94px !important;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease; 
}

.items-concessionnaire .lSSlideOuter .lSPager.lSGallery li.active,
.items-concessionnaire .lSSlideOuter .lSPager.lSGallery li:hover,
.items-concessionnaire .lSSlideOuter .lSPager.lSGallery li:focus{border-radius: 0;}

.items-concessionnaire .lSSlideOuter .lSPager.lSGallery li:hover img,
.items-concessionnaire .lSSlideOuter .lSPager.lSGallery li:focus img,
.items-concessionnaire .lSSlideOuter .lSPager.lSGallery li.active img{opacity: 1;}
.items-concessionnaire .lSSlideOuter .lSPager.lSGallery li img{
    opacity: 0.5; 
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.items-concessionnaire .lSSlideOuter .lSPager.lSGallery::before,
.items-concessionnaire .lSSlideOuter .lSPager.lSGallery::after{display: none;}

.items-concessionnaire .lSAction > a{opacity: 0.7;}

.items-concessionnaire .lSSlideOuter .lightSlider .lslide a{cursor: zoom-in;}

#detail-info{max-width: 1200px; margin: 0 auto; padding: 75px 20px; display: flex; justify-content: space-between; align-items: flex-start;}

#detail-info .col1-detail-info{width: 61%;}
#detail-info .col2-detail-info{width: 33.5%;}

#detail-info .col2-detail-info h3{
    background-color: #363638;
    margin: 0;
    padding: 20px 34px;
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
    color: #FFF;
    border-bottom: 1px solid #FFF;
}

#detail-info .col2-detail-info table{
    width: 100%;
    background-color: #363638;
    color: #FFF;
    border-top: 20px solid #363638;
    border-bottom: 20px solid #363638;
}

#detail-info .col2-detail-info table th,
#detail-info .col2-detail-info table td{padding: 12px 34px; font-weight: 400; font-size: 16px;}

#detail-info .col2-detail-info table tr:nth-child(even){background-color: #4b4b4b;}

.col1-detail-info .content-title{padding-bottom: 18px; margin-bottom: 40px; border-bottom: 1px solid #dddddd;}

.col1-detail-info .content-title,
.col1-detail-info .content-title .partage-RS{display: flex; justify-content: space-between; align-items: center;}

.content-title  h3{font-size: 24px; font-weight: 700;}

.content-title .partage-RS .fb-share-button{background-color: #1877f2; padding: 1px 2px;}
.content-title .partage-RS .twitter-share-button{background-color: #000; padding: 5px; margin-left: 20px; display: flex; align-items: center; box-sizing: content-box !important;}

.content-title .partage-RS .twitter-share-button:hover,
.content-title .partage-RS .twitter-share-button:focus{background-color: #333;}

.txt-detail-info{font-size: 16px; line-height: 22px; text-align: justify;}

.col1-detail-info .info-plus{
    padding: 20px;
    background-color: #E8E8E8;
    border: 1px dashed #BBB;
    margin-top: 40px;
}


/* -------------------- */
/* --- Page magasin --- */
/* -------------------- */


.section-concessionnaire  .items-concessionnaire{margin-bottom: 140px;}

.section-concessionnaire .col2-concessionnaire{width: 31%}

.section-concessionnaire .lSSlideOuter{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    max-height: 480px;
    overflow: hidden;
}

.section-concessionnaire  .items-concessionnaire .lSSlideOuter .lSPager.lSGallery{
    position: absolute;
    bottom: 20px;
    z-index: 4;
    display: flex;
    justify-content: center;
}


.section-concessionnaire .items-concessionnaire .lSSlideOuter .lSPager.lSGallery li{
    max-width: 78px !important;
    max-height: 52px !important;
}

.content-etablissement{background-color:#363638; padding: 20px 20px 20px; position: relative;}

.content-etablissement .list-employee{
    max-width: 945px;
    margin: 0px auto 12px;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color:#c2c0c0;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}
.modif-margin{
    margin-top: -100px;
}

.content-etablissement .list-employee strong{font-weight: 700; color: #FFF;}

.img-employee{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 160px;
    border-radius: 80px;
    overflow: hidden;
    border: 1px solid #4f5b84;
    margin-bottom: 16px;
}

.img-employee img{width: 100%;}

.txt-presentation-etablissement{
    max-width: 1170px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 22px;
    color:#c2c0c0;
    text-align: center;
}

.txt-presentation-etablissement .txt-intro{color: #FFF;}

.coordonnee-concessionnaire{
    background-color: #FFF;
    padding: 30px;
    position: relative;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    font-size: 16px;
    line-height: 22px;
    overflow: hidden;
}

.coordonnee-concessionnaire .logo-concessionnaire{width: 100%; max-width: 270px; margin-bottom: 34px;}

.tel-concessionnaire{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    font-family: 'Play', sans-serif !important;
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
}

.tel-concessionnaire span{padding-top: 1px; display: inline-block; margin-right: 10px; font-size: 17px; color:#ee2e24;}

.horaires-concessionnaire{cursor: pointer; margin: 10px 0; -webkit-transition: all 500ms ease; transition: all 500ms ease;}
.horaires-concessionnaire span{display: inline-block; margin-right: 6px;}

.horaires-concessionnaire:hover,
.horaires-concessionnaire:focus{color:#ee2e24;}

.popin-horaires-detail{
    background-color: #fff;
    box-shadow: 0 1px 5px rgba(0,0,0,0.15);
    position: static;
    top:  calc(50% - 59px);
    right: -1000px;
    width: 334px;
    padding: 20px;
    font-size: 14px;
    line-height: 20px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    text-align: center;
}

.activepopin .popin-horaires-detail{right: 0;}

.form-contact-product .popin-horaires-detail{bottom: inherit; top: 0px; right: 0; width: 362px; opacity: 0;}

.form-contact-product.activepopin .popin-horaires-detail{top: 30px; opacity: 1;}

.closepopin{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-color: #ee2e24;
    width: 30px;
    height: 30px;
    color: #FFF;
    font-size: 30px;
    line-height: 27px;
    position: absolute;
    right: 0;
    top: -30px;
    cursor: pointer;
}

.cta-ecrire-concessionnaire {
    background-color: #0a2d81;
    padding: 12px 24px;
    width: 222px;
    font-family: 'Play', sans-serif !important;
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    color: #FFF;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    cursor: pointer;
    display: inline-block;
    margin-top: 18px;
}

.cta-ecrire-concessionnaire span {
    display: inline-block;
    margin-left: 10px;
    font-size: 14px;
}

.cta-ecrire-concessionnaire:hover,
.cta-ecrire-concessionnaire:focus {
    background-color: #071c50;
    text-decoration: none;
    color: #FFF;
}
.picto-rouge .fas, .picto-rouge .fab, .picto-rouge .far{
    color: #ee2e24;
    font-size: 20px;
}
.fa-space{
    margin-right: 7px;
}
.fa-right{
    margin-left: 7px;
    margin-top: 3px;
}
.img-actu {
    height: 600px;
}
.content-presentation .txt1 {
    display: block;
}
.content-presentation h2 {
    display: block;
    font-weight: 700;
    color: #0a2d81;
    margin: 0;
    margin-bottom: 15px;
    font-size: 14px;
}
.img-float-left{
    float: left;
    max-width: 565px;
    margin-right: 40px;
    margin-bottom: 20px;
}
.img-float-right{
    float: right;
    max-width: 565px;
    margin-left: 40px;
    margin-bottom: 20px;
}
.content-presentation .txt1 p {
    width: 100%; 
}
.content-presentation .txt1 {
    text-align: justify; 
}
.form-group-center {
  margin: 17px 10px;
}
.CLPagintation {
  padding-top: 20px;
}

.CLPagintation > * {
  background-color: #0a2d81;
  color: white;
  padding: 3px;
  border: 1px #0a2d81 solid;
}
.CLPagintation > *:first-child {
  background-color: rgba(0, 0, 0, 0);
  color: black;
  border: 0px;
}
.CLPagintation > *:nth-child(2) {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.CLPagintation > *:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.CLPagintation .ative {
  background-color: white;
  color: #363638;
}
.CLbtn {
  margin: 10px;
  padding: 6px;
  position: relative;
  color: #0a2d81;
  background-color: white;
  top: 8px;
  text-align: center;
  border-radius: 6px;
}
.active {
  background-color: #363638;
  color: white;
}
.select-selected {
  max-height: 17px !important;
  overflow-y: hidden;
  padding: 8px 30px 8px 8px;
}
.bg-white {
  background-color: white;
}
.custom-select2-liste {
  margin: 17px;
}
.moto-card {
  text-align: center;
}
.a2logo {
  margin-left: -3px;
}
.moto-card {
  font-family: "Play", sans-serif !important;
  color: #000;
  text-decoration: none;
  background-color: white;
  margin: 10px;
}
.moto-card:hover .moto-card-head h5,
.moto-card .moto-card-head h5 {
  padding-bottom: 10px;
  margin: 0;
}
*:hover {
  text-decoration: none !important;
}
.moto-card .moto-card-head h3 {
  padding-top: 17px;
}

.moto-card:hover .moto-card-head,
.moto-card:hover .moto-card-head h3,
.moto-card:hover .moto-card-head h5,
.moto-card:hover .moto-card-foo {
  text-decoration: none !important;
  transition-duration: 0.5s;
  color: white;
}
.moto-card .moto-card-head,
.moto-card .moto-card-head h3,
.moto-card .moto-card-head h5,
.moto-card .moto-card-foo {
  text-decoration: none !important;
}
.moto-card:hover .moto-card-head {
  background-color: red;
}
.moto-card .moto-card-foot .left {
  color: red;
}
.moto-card .moto-card-foot .bottom {
  padding: 10px 0;
}
.moto-card .moto-card-foot .left,
.moto-card .moto-card-foot .right {
  display: inline-block;
  padding: 10px 0;
  min-width: 48%;
}
.first-select-left {
  margin-left: 0;
}
.card-img-top {
  padding: 0;
  margin: 0;
}
.CLAncienPrix {
  text-decoration: line-through;
}
.submit-form {
  margin: 0px 30px 15px 0px;
}
.checkbox-text {
  font-size: 14px;
}
.checked {
  margin-top: 23px;
}
.custom-select2 .form-group{
    display: none;
}

.list-option-detail-product .reserver-votre-essai .picto-reserv::before{
    display: none;
}
.select2-container--default .select2-selection--single{
    border-radius: 0;
    -webkit-border-radius: 0;
    height: 32px;
    /*border: none;*/
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 4px;
}
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    offset: none;
}

.items-home-product .reserver-votre-essai{
    font-size: 25px;
}
.items-home-product .reserver-votre-essai .fa-angle-right{
    margin-left: 5px;
}

.contact-header{
    position: relative;
}
.submenu-contact{
    position: absolute;
    top: 27px;
    left: -10px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 15px 0;
    background: rgba(54, 54, 56, 0.93);
    min-width: 265px;
    overflow-y: auto;
    overflow-x: hidden;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    border-top: 4px solid #ee2e24;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.contact-header:hover .submenu-contact {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1) translateY(0px);
    transform: scale(1) translateY(0px);
}
.nav-header-top .contact-header ul li{
    display: block;
    width: 100%;
}
.nav-header-top .contact-header ul li a{
    display: block;
    padding: 15px;
    width: 100%;
}
.nav-header-top .contact-header ul li a:hover{
    background: #000;
    /*-webkit-transition: all 500ms ease;
    transition: all 500ms ease;*/
}
.submenu-contact ul{
    display: block;
    width: 100%;
}
.concess-horaire{
    font-size: 15px;
}
.horaires-li{
    padding: 15px;
}
.collapse-presentation .card{
    background: transparent;
    color: #fff;
    padding: 0;
    border: 0;
    margin-bottom: 15px;
    font-size: 13px;
}
.collapse-presentation .card a{
    color: #e1e1e1;
    display: block;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms;
    display: block;
    padding: 6px 24px;
    width: 100%;
}
.collapse-presentation .card a:hover{
    color: #ee2e24;
}
.content-presentation .item{
    background: #fff;
    padding: 0;
    /*border: 1px solid #e6e6e6;*/
}
footer .collapse-presentation{
    background: rgb(255, 255, 255);
    margin-top: 25px;
    color: #0a2d81;
    text-align: left !important;
}
footer .collapse-presentation *{
    color: #0a2d81;
}
.cached-contact{
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
}
.bloc-magasin-footer h3{
    color: #0a2d81;
}
.adresse-magasin-footer  {
    color: #363638 !important;
}
.btn-contact-footer{
    cursor: pointer;
    margin-bottom: 10px;
}
.contact-footer:hover{
    color: #ee2e24;
}
.nav-header-top li span {
    display: inline-block;
    margin-right: 12px;
    font-size: 13px;
    line-height: 17px;
}
.ville-footer{
    color: #363638 !important;
}
.content-detail .col-full-concessionnaire{
    width: 100%;
    max-width: none;
}
#collapse-horaires{
    max-width: 274px;
}
.bloc-logo-magasin{
    width: 185px;
    margin-right: 60px;
}
.one-contact{
    justify-content: center;
}
.titre-article-magasin {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 27px 0;
    background: #363638;
    color: #fff;
    font-size: 36px;
}
.tr-form__fields .row{
    padding-bottom: 15px;
}
.border-bottom-newsletter{
    border-bottom: 2px solid black;
    margin-bottom: 65px;
    padding-bottom: 20px !important;
}
.confirm-contact input[type='checkbox']{
    margin-right: 5px;
    position: relative;
    top: 2px;
}
.nom-concess-magasin{
    font-size: 25px;
}
.logo-vignette-desc{
}
.btn-conf {
    margin-bottom: 12px;
    display: inline-block;
    font-size: 11px;
    color: #000;
}
a.btn-conf:hover{
    color: #071c50;
    text-decoration: underline !important;
}
.btn-ami{
    font-size: 11px;
    border-radius: 0;
    margin-left: 20px;
}
.custom-home .items-avantages {margin: -273px auto 80px;}
.custom-home.sans-actu .items-avantages {margin: 30px auto 80px;}

.bloc-info{padding: 10px 25px 22px;}
.infos-base{
    display: flex;
    align-items: normal;
    justify-content: space-between;
}
#show_me_contact #form_contact{margin: 0 -15px;}

.contact-info {padding: 0 17px !important;}
a.a-newsletter{color: #fff;}
a.a-newsletter:hover{color: #fff;}

.critair-cl{margin-top: -25px;}

.force-center{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.moto-card-overflow{
    overflow: hidden;
    position: relative;
}
.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    margin-left: 0;
    margin-top: 0;
    background: url(../images/owl-video-play.png) no-repeat center;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform .1s ease; 
}
.rs-links a{
    display: flex;
    align-items: center;
    margin-right: 7px;
}
.rs-links a i {
    padding: 8px !important;
    width: 17px;
    box-sizing: content-box !important;
    text-align: center;
}
.insta-link {
    text-align: center;
    margin: 10px;
}
.ytube-link {
    border-radius: 100%;
    color: white;
    background: #f00;
}
/*ariane css*/
.ariane{padding: 50px 0 32px;}
.container-ariane{background: #F5F5F5;}
body{background: #F5F5F5;}
.ariane a:hover{text-decoration: underline !important;}
.content-header{padding: 8px 15px 6px;}
.content-detail {
    background-color: #F5F5F5;
    padding: 10px 20px 10px;
}
.ariane .fas{
    margin: 0 7px;
    font-size: 15px;
}
/*** ariane css */

.prix-liste-gamme{
    color: #333;
    font-size: 14px;
    text-align: center;
}
.titre-gamme-liste{
    margin-bottom: 7px;
    margin-top: 12px;
    color: #0a2d81;
    text-align: center;
    font-weight: bold;
}
.slogan-liste-gamme{
    color: rgb(10,10,10);
    font-weight: bold;
    font-size: 17px;
    text-align: center;
    margin: 0;
    margin-bottom: 12px;
}
.nom-gamme-details{
    text-align: right;
    text-transform: uppercase;
    color: #0a2d81;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
}
.head-fiche {margin-top: -1px !important;}
.fiche-gamme .breadcrumb-yamaha {margin: 0 auto 11px;}
.header-gamme-details{
    display: flex;
    align-items: baseline;
}
.head-fiche.gamme-fiche-header .prix {margin-bottom: 0;}
.head-fiche.gamme-fiche-header .titre {margin: 0px 24px 0px !important;}
.fiche-serie .list-option-detail-product .cta-white{
    padding: 15px 10px;
    margin-right: 20px;
    margin-top: 20px
}
.acces-barre {
    font-size: 13px;
    text-decoration: line-through;
    color: #000;
    padding-right: 7px;
}
.acces-prix{
    font-size: 19px;
    font-weight: bold;
}
.marque-access{
    font-size: 15px;
    padding-top: 5px;
}
h2.titre-page{
    margin-bottom: 0;
    margin-top: 15px;
}
.CLArticle {
    margin-top: 30px;
    /*display: flex;
    align-items: center;*/
}
.concession-page .CLArticle{
    margin-top: 0;
    padding-top: 25px;
}
.concession-page h2.titre-page{
    margin-top: 0;
}
.image-seule {
    text-align: center;
}
.image-seule .img-responsive{
    max-width: 100%;
    width: auto;
}
.concession-page .MagasinArticle p {
    display: inherit;
    margin-bottom: 0px;
}
.concession-page .MagasinArticle a{
    color: #fff;
}
.concession-page .MagasinArticle a:hover{
    color: #fff;
    text-decoration: underline !important;
}
.form-contact-product .label-checkbox {
    text-align: left;
}
.form-contact-product .confirm-contact{
    justify-content: left;
}
.presentation-concessionnaire .content-presentation a:hover{
    text-decoration: underline !important;
}
.titre-access{
    font-weight: bold;
}
.link-accessoires .voir-tout-occasions{
    margin-top: 10px;
}
.vignette-acce{
    background: #fff;
}
.vignette-acce:hover {
    box-shadow: 0 0 4px #000;
    transition-duration: 0.5s;
}
.fiche-accessoire .border{
    background: #fff;
}
.text-center{
    text-align: center;
}
.fiche-accessoire .vignette, .img-responsive {
    width: auto; 
    max-width: 100%;
    margin: 0 auto;
}
.fiche-accessoire .col1-concessionnaire img {
    width: auto;
    max-width: 100%;
}
.pas-annonce{
    text-align: center;
    font-weight: bold;
    color: #0a2d81;
}
.txt-intro h1{
    font-size: 20px;
}
.btn-newsletter{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.fb-newsletter .fab {
    font-size: 25px;
    color: #24478c;
    margin-right: 6px;
}
.in-newsletter .fab {
    font-size: 25px;
    color: #e21414;
    margin-right: 6px;
}
.tw-newsletter .fab {
    font-size: 25px;
    color: #1da1f2;
    margin-right: 6px;
}
.center-vertical{
    display: flex;
    align-items: center;
    justify-content: center;
}
.permis-a2-liste{
    position: absolute;
    top: 15px;
    right: 15px;
}
.MagasinArticle .img-float-right, .MagasinArticle .img-float-left{
    max-width: 388px;
}
.content-accessoire{
    padding-top: 0;
}
.btn-droite{
    float: right;
}
.border-separation {
    border-top: 2px solid black;
}

.concession-page .content-avantages .items-avantages {
    margin-top: 0;
    padding-top: 30px;
}
.concession-page .content-avantages{
    background: url(../images/bg-plus.jpg) repeat-x top;
}
.list-employee .px-3{
    max-width: 192px;
}
#h1{
    opacity: 0;
    
}
#h1::before {
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900; 
    content: "\f054";
    margin: 0 7px;
    font-size: 15px;
}
.CLArticle a:hover{
    text-decoration: underline;
}
h1{
    margin-top: 25px;
}
.txt-presentation-etablissement{
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;
}
.container-article{
    font-size: 16px;
    line-height: 24px;
}
.container-article a{
    color: #0a2d81;
}
.container-article a:hover{
    text-decoration: underline !important;
}
.actualites-detail-title{
    margin-bottom: 20px;
}
.presentation-concessionnaire .content-presentation{
    padding: 0;
    margin-left: 0;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    margin-left: 170px
}
.more-information{
    position: static;
    float: left;
    margin-left: -172px;
}
.content-presentation .txt1{
    float: right;
    width: calc(50% + 130px);
}
.show-more-detail{
    display: none;
}
.container-txt1{
    padding: 0px 15px  0px 92px;
}
.container-txt1 .CLArticle {
    margin-top: 0; 
    margin-bottom: 0;
}
.flip-card-back .form-news button {
    height: 23px;
    padding: 2px 10px 1px;
    font-size: 14px;
    position: relative;
    top: -4px;
}
.flip-card-back .form-news {
    margin-bottom: 0;
}
.flip-card-back h4 {
    margin-bottom: 2px;
}
.flip-card-back .form-news input {
    border-radius: 0;
}
#nomSite{
    white-space: nowrap;
}
#nomSite.wrap{
    white-space: normal;
}
.fiche-accessoire .form-contact-product h3{
    padding-bottom : 16px;
}
.fiche-accessoire #h1-html{
    margin-top: 6px;
}
#header-concessionnaire.header-minisite{
    padding-bottom: 0;
}
.header-minisite #nav-header{
    position: static;
    padding-bottom: 15px;
    padding-top: 15px;
}
.presentation-minisite  .p-0{
    background: #fff;
    padding: 86px 0 7px !important;
}
.presentation-minisite .presentation-concessionnaire {
    margin: 0px 25px 72px 0;
    justify-content: right;
    float: right;
}
.presentation-minisite .presentation-concessionnaire .container-txt1 {
    padding: 0px 25px 0px 25px; 
}
.presentation-minisite .content-presentation {
    margin-right: 170px;
    margin-left: 0;
    display: block;
}
.presentation-minisite .more-information {
    float: right;
    margin-right: -172px;
}
.presentation-minisite .content-presentation .txt1 { 
    float: left;
}

.ecolo{
    margin-top: 10px;
}



.container.container-gamme{margin-bottom: 80px;}



