/**
 * Store Locator / Dealer Locator - CSS
 * Styles pour la page "Points de vente"
 */

/* Variables CSS */
:root {
    --color-primary: #e96b4c;
}

/* ===============================================
   WTB Base Styles
   =============================================== */

body.revendeur-template-default .btn_download_brochure {
    display: none !important;
}

.page .container {
    width: 100%;
    max-width: inherit;
    margin: 0;
    padding: 0;
}

.page .wtb-side-panel .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 5vw;
}

.wtb-where-to-buy {
    position: relative;
    box-sizing: border-box;
    padding: 0 10vw;
}

.wtb-where-to-buy .wtb-side-panel {
    padding: 0;
    width: 100%;
    margin-bottom: 0;
}

.wtb-where-to-buy .wtb-side-panel .search-btn {
    padding: 8.5px 10px;
    -webkit-box-flex: 0;
    flex: auto;
    margin-top: 10px;
    max-width: 12rem;
}

@media (min-width: 1120px) {
    .wtb-where-to-buy .wtb-side-panel .search-btn {
        padding: 8.5px 40px;
        margin: 0;
    }
}

.wtb-where-to-buy .wtb-side-panel .wtb-search {
    position: relative;
    padding: 0;
    line-height: 1;
    text-align: center;
    font-size: 0;
    z-index: 2;
    display: flex;
    flex-direction: row;
    gap: 1vw;
    width: 100%;
}

.wtb-search_address {
    display: flex;
    align-items: center;
}

.wtb-search_inputs {
    display: flex;
    align-items: center;
    gap: 1vw;
}

.wtb-search_actions {
    display: flex;
    align-items: center;
}


@media (min-width: 1600) {
    .wtb-where-to-buy .wtb-side-panel .wtb-search {
        height: 50px;
        padding: 0 20px 0 0;
        flex-wrap: nowrap;
    }
}

@media (min-width: 1400px) {
    .wtb-search .search-btn {
        flex: 0 0 auto;
        margin-right: 1rem;
    }
}

.wtb-where-to-buy .wtb-side-panel .wtb-search input {
    vertical-align: middle;
    display: inline-block;
    outline: none;
    background: none;
    height: 45px;
    border: 1px solid hsla(0, 0%, 100%, 0.1);
    color: #fff;
    font-weight: 700;
    margin: 0;
    font-size: 14px;
    min-width: 0;
    padding: 0 15px;
    -webkit-box-flex: 1;
    flex: 1 0 calc(100% - 45px);
    width: 100%;
    border-radius: inherit !important;
}

@media (min-width: 1120px) {
    .wtb-where-to-buy .wtb-side-panel .wtb-search input {
        padding: 0 25px;
        -webkit-box-flex: 0;
        flex: 0 1 auto;
        width: 386px;
    }
}

.wtb-where-to-buy .wtb-side-panel .wtb-search ::-webkit-input-placeholder {
    color: #fff;
    font-weight: 700;
}

.wtb-where-to-buy .wtb-side-panel .wtb-search :-moz-placeholder,
.wtb-where-to-buy .wtb-side-panel .wtb-search ::-moz-placeholder {
    color: #fff;
    font-weight: 700;
}

.wtb-where-to-buy .wtb-side-panel .wtb-search :-ms-input-placeholder {
    color: #fff;
    font-weight: 700;
}

.wtb-where-to-buy .wtb-side-panel .wtb-search .pos-btn {
    display: inline-block;
    vertical-align: middle;
    height: 45px;
    width: 45px;
    min-width: 0;
    padding: 0;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    margin-bottom: 0;
    margin-right: 0;
    border: none;
    outline: none;
    background: transparent no-repeat 50%;
    cursor: pointer;
    background-color: var(--color-primary);
}

@media (min-width: 1120px) {
    .wtb-where-to-buy .wtb-side-panel .wtb-search .pos-btn {
        margin-right: 20px;
    }
}

.wtb-where-to-buy .wtb-side-panel .wtb-search .wtb-confirm-btn {
    background-image: url(../images/wtb-search.png);
    margin-left: 0;
}

.wtb-where-to-buy .wtb-side-panel .wtb-search .location {
    background-image: url(../images/wtb-location.png);
}

@media (max-width: 1120px) {
    .wtb-where-to-buy .wtb-side-panel .wtb-search .location {
        margin-left: -10px;
    }
}

@-webkit-keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

@keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

.wtb-where-to-buy .wtb-side-panel .wtb-search .fetching {
    position: relative;
}

.wtb-where-to-buy .wtb-side-panel .wtb-search .fetching:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/wtb-location.png) no-repeat 50%;
    -webkit-animation: rotate-center 1.2s linear infinite;
    animation: rotate-center 1.2s linear infinite;
}

.wtb-where-to-buy .wtb-side-panel .wtb-search .wtb-range-field {
    -webkit-box-flex: 0;
    flex: 0 0 85px;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    margin-left: 0;
    flex: 1;
}

.wtb-where-to-buy .wtb-side-panel .wtb-search .wtb-range-field .form__input {
    border: 1px solid hsla(0, 0%, 100%, 0.1);
    padding: 13px 25px 13px 15px;
    border-radius: 0;
    margin-top: 10px;
}

.wtb-where-to-buy .wtb-side-panel .wtb-search .wtb-range-field .form__input option {
    background-color: #252429;
    color: #fff;
}

@media (min-width: 1120px) {
    .wtb-where-to-buy .wtb-side-panel .wtb-search .wtb-range-field {
        -webkit-box-flex: 0;
        flex: 0 0 auto;
        margin-left: 20px;
    }
    .wtb-where-to-buy .wtb-side-panel .wtb-search .wtb-range-field .form__input {
        border-top: 1px solid hsla(0, 0%, 100%, 0.1);
        margin-top: 0;
    }
}

.wtb-where-to-buy .wtb-map-ctn {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 500px;
    -webkit-transition: width 0.6s cubic-bezier(0.645, 0.045, 0.355, 1), left 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: width 0.6s cubic-bezier(0.645, 0.045, 0.355, 1), left 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.wtb-where-to-buy .wtb-map-ctn .wtb-map {
    width: 100%;
    height: 100%;
    position: relative;
}

@media (min-width: 1220px) {
    .wtb-where-to-buy .wtb-map-ctn {
        height: 680px;
    }
}

.wtb-where-to-buy .no-dealers {
    margin-bottom: 50px;
    text-align: center;
}

/* ===============================================
   Dealer Locator Specific Styles
   =============================================== */

/* Search Button - Style similaire à .btn_orange */
.btn.btn--color.search-btn {
    cursor: pointer;
    pointer-events: all;
    display: inline-block;
    position: relative;
    padding: 13px 25px;
    background: transparent;
    font-size: 0.875rem;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    opacity: 1;
    transition: all 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99) 50ms;
    overflow: hidden;
    outline: none;
    z-index: 1;
    border: none;
    border-radius: 0;
}

.btn.btn--color.search-btn:before,
.btn.btn--color.search-btn:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.btn.btn--color.search-btn:before {
    transform: scaleX(0) translateZ(0);
    transform-origin: right;
    backface-visibility: hidden;
    background: linear-gradient(90deg, var(--color-primary), #eb9d5f, var(--color-primary));
    background-size: 600% 600%;
    animation: fire 15s infinite;
    transition: transform 0.9s cubic-bezier(0.6, 0.05, 0.01, 0.99) 50ms;
    transition: transform 0.9s cubic-bezier(0.6, 0.05, 0.01, 0.99) 50ms, -webkit-transform 0.9s cubic-bezier(0.6, 0.05, 0.01, 0.99) 50ms;
    z-index: -1;
}

.btn.btn--color.search-btn:after {
    border: 1px solid #fff;
    opacity: 1;
    transition: all 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99) 50ms;
    transform: translateZ(0);
}

.btn.btn--color.search-btn:hover {
    color: #fff;
}

.btn.btn--color.search-btn:hover::before {
    transform: scaleX(1) translateZ(0);
    transform-origin: left;
}

.btn.btn--color.search-btn:hover::after {
    opacity: 0;
}

/* Animation fire (gradient animé) */
@keyframes fire {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@-webkit-keyframes fire {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.search-btn {
    cursor: pointer;
}

#map {
    width: 100%;
    height: 800px;
    position: relative;
}

#map-alert {
    display: block;
    margin: 2.5vw 10vw;
    width: auto;
}

#map-alert p {
    font-size: 24px;
    font-weight: 700;
}

.dealers-header {
    padding: 10vw 10vw 2.5vw 10vw;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.dealers-header h1 {
    margin: 10px 0 0 0;
}

/* header and footer's background at 100vw */
.site-container {
    max-width: inherit !important;
}

.site-container > header > .container, .site-container > .page, .site-container .footer {
    max-width: 1600px;
    margin: 0 auto;
}

#site-wrapper > .site-container:nth-child(3) {
    background: #19191b;
}
/* /header and footer's background at 100vw */

#indices_map {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#indices_map .wrap-indice_map {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.wrap-indice_map p {
    display: block;
    font-size: 13px;
    color: white;
    margin: 0px 7px;
}

.wtb-search {
    padding: 0 !important;
}

#indices_map > .wrap-indice_map:not(:last-child) {
    margin-right: 20px;
}

.wtb-where-to-buy .wtb-side-panel .wtb-search .pos-btn {
    margin-right: 0;
}

.wtb-where-to-buy .wtb-side-panel .wtb-search .wtb-range-field {
    margin-left: 0;
    min-width: 10vw;
    flex: 1;
}

.wtb-where-to-buy .wtb-side-panel .wtb-search input {
    width: 100%;
    min-width: 20vw;
    border-radius: inherit !important;
}

#screen-marker_info {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #25242aeb;
    z-index: 1000;
    display: none;
}

#screen-marker_info.active {
    display: block;
}

#wrap-marker_info {
    width: 30vw;
    height: 100vh;
    position: fixed;
    right: -30vw;
    top: 0;
    background-color: #EAE5DE;
    padding: 0;
    box-shadow: -1rem 0 1rem rgb(0 0 0 / 50%);
    overflow-y: scroll;
    overflow-x: hidden;
    transition: all 0.75s ease-in-out;
}

#screen-marker_info.t-1 > #wrap-marker_info {
    width: 70vw;
    right: -50vw;
}

#screen-marker_info > #wrap-marker_info.active {
    right: 0;
}

#wrap-marker_info .close-marker_info {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1001;
}

#wrap-aside_info.slider-activation-1 .close-marker_info {
    top: 0;
    right: 0;
}

#wrap-marker_info .close-marker_info > img {
    display: none;
}

#wrap-aside_info.slider-activation-1 .close-marker_info > .close-studio-x {
    display: block;
}

#wrap-aside_info.slider-activation-0 .close-marker_info > .close-x {
    display: block;
}

#wrap-marker_info #desc-marker_info {
    color: black;
    padding: 4rem;
}

#wrap-marker_info #desc-marker_info h3, #wrap-aside_produits h3 {
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 1.25rem;
    position: relative;
}

#wrap-aside_produits h3 {
    color: white;
    margin-bottom: 4rem;
}

#wrap-marker_info #desc-marker_info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

#wrap-marker_info #desc-marker_info p {
    margin-bottom: 1rem;
    line-height: 1.25rem;
}

#wrap-marker_info #desc-marker_info p span {
    font-weight: 600;
}

#wrap-marker_info #btn-marker_info {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    text-align: center;
    margin-top: 2rem;
}

#wrap-marker_info #btn-marker_info a {
    background-color: #25242A;
    padding: .75rem 1rem;
    border: 0;
    color: white;
    width:100%;
}

#wrap-marker_info #btn-marker_info a:first-child {
    background-color: #25242A;
    margin-bottom: 1rem;
}

#load_gif {
    width: 10rem;
    height: 10rem;
    position: relative;
    top: 20rem;
    margin-left: 50%;
    left: -5rem;
}

#wrap-aside_info {
    display: none;
}

.type-espace #btn-marker_info > a:nth-child(2) {
    background-color: #718B64 !important;
}

.type-studio #btn-marker_info > a:nth-child(2) {
    background-color: #E96B4C !important;
}

.type-revendeur #btn-marker_info > a:nth-child(2) {
    background-color: #6069AC !important;
}

#desc-marker_info h3::before {
    position: absolute;
    left: -2rem;
}

#desc-marker_info > a:nth-child(4) {
    text-decoration: none;
}

.type-espace #desc-marker_info h3::before {
    content: url('../images/espace-marker_blank.png');
}

.type-studio #desc-marker_info h3::before {
    content: url('../images/studio-marker_blank.png');
}

.type-revendeur #desc-marker_info h3::before {
    content: url('../images/revendeur-marker_blank.png');
}

.wtb-search > div:nth-child(4) {
    width: 7rem;
}

.wtb-search > button.search-btn {
    padding: 8.5px 30px;
}

#slide-marker_info {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-activation-1 #slide-marker_info {
    display: block;
}

#slide-marker_info .slick-prev {
    left: 20px;
}

#slide-marker_info .slick-next {
    right: 20px;
}

#slide-marker_info .slick-prev, #slide-marker_info .slick-next {
    height: 35px;
    width: 35px;
    z-index: 1002;
}

#aside_produits-slider .slick-prev, #aside_produits-slider .slick-next {
    width: 35px;
    height: 35px;
    z-index: 10;
}

#slide-marker_info ul.slick-dots {
    bottom: 20px;
}

#slide-marker_info ul button,
#wrap-aside_produits ul button {
    border-radius: 50%;
    background: white;
}

#slide-marker_info .slick-dots li, #slide-marker_info .slick-dots li button,
#wrap-aside_produits .slick-dots li, #wrap-aside_produits .slick-dots li button {
    height: 8px;
    width: 8px;
}

#slide-marker_info ul li.slick-active button,
#wrap-aside_produits ul li.slick-active button {
    background: #E96B4C;
}

#slide-marker_info .slick-dots li button:before,
#wrap-aside_produits .slick-dots li button:before {
    display: none;
}

#wrap_section-marker_form {
    display: none;
}

#wrap_section-marker_form h3 {
    color: #25242A;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

#wrap_section-marker_form > p {
    color: #25242A;
    margin-bottom: 2.5rem;
    line-height: 1.25rem;
}

#wrap_section-marker_form #wpforms-submit-4031 {
    border: 0;
    color: white;
    padding: .75rem 3rem;
}

.wpforms-field-container label {
    display: none;
}

.wpforms-field-container input[type="text"] {
    border: 0;
    width: 100%;
    padding: .5rem .5rem .5rem 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid #C6C6C4;
    background-color: transparent;
}

.aside-prod-img {
    width: 200px;
    height: 200px;
    background-size: cover;
    background-position: center;
}

/* gMap width 100% */
.scroll-content {
    max-width: inherit;
    margin: inherit;
}

#wrap-aside_produits {
    background-color: #252429;
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 40vh;
    padding: 4rem;
    margin: auto 0 0 0;
}

#aside_produits-slider {
    width: 100%;
}

#aside_produits-slider .slick-list, #aside_produits-slider .slick-track, #aside_produits-slider .w-it {
    height: 100%;
}

#radial {
    height: 100%;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

#radial::after {
    position: absolute;
    width: 100%;
    height: 71%;
    left: 0;
    top: 0;
    content: "";
    background: radial-gradient(circle at bottom, hsla(0, 0%, 72.2%, 0.1) 0, hsla(0, 0%, 100%, 0) 60%);
}

#bulle-info {
    font-size: .75vw;
    line-height: 1;
    background-color: #252429;
    border: 1px solid #707070;
    padding: .5vw;
    position: absolute;
    bottom: 5rem;
    text-align: left;
    z-index: 1;
    width: 100%;
    display: none;
}

#bulle-info .arrow-down {
    position: absolute;
    bottom: -13px;
    right: 304px;
}

#bulle-info.studio .arrow-down {
    right: 304px;
}

#bulle-info.espace .arrow-down {
    right: 159px;
}

#bulle-info.revendeur .arrow-down {
    right: 0;
}

#bulle-info p {
    display: none;
    margin: 0;
    font-size: .75vw;
    line-height: 1.5;
}

#bulle-info.studio p.c-studio {
    display: block;
}

#bulle-info.espace p.c-espace {
    display: block;
}

#bulle-info.revendeur p.c-revendeur {
    display: block;
}

#realform {
    width: 30vw;
    height: 100vh;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9999;
    padding: 4rem;
    overflow-y: scroll;
    display: none;
    color: #fff;
    background-color: #252429;
}

#realform h3 {
    font-weight: 500;
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

#realform p {
    color: #fff;
}

#realform h3 + p {
    color: #fff;
    margin-bottom: 2rem;
    width: 20rem;
}

#realform input[type="email"], #realform input[type="text"], #realform input[type="tel"] {
    border: 0;
    margin-bottom: 1rem;
    padding: .5rem 0 .5rem 0;
    border-bottom: 1px solid #C6C6C4;
}

#realform .btn.btn--color {
    border: 0;
    padding: .5rem 3rem;
}

.close-aside {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 1001;
} 

.wpcf7-form-control-wrap.lorem .last {
    margin: 0;
}

.wpcf7-form-control-wrap.lorem .last label {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: .5rem;
    color: black;
}

.wpcf7-form-control-wrap input[type="checkbox"] {
    width: 24px;
    height: 24px;
    padding: 0;
    margin: 0 1rem 0 0;
}

#wrap-model_inputs {
    margin-bottom: 2rem;
}

#wrap-model_inputs > .checkbox-339 > span,
#wrap-model_inputs > .modeles > span {
    display: flex;
    flex-wrap: wrap;
}

#wrap-model_inputs > .checkbox-339 > span > span > label,
#wrap-model_inputs > .modeles > span > span > label {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: .5rem;
    color: black;
}

#wrap-model_inputs .wpcf7-list-item {
    margin: 0;
    width: 100%;
}

#wrap-model_inputs > .checkbox-339 > span > span > label > input,
#wrap-model_inputs > .modeles > span > span > label > input {
    width: 24px;
    height: 24px;
    padding: 0;
    margin: 0 1rem 0 0;
}

#wrap-model_inputs > .checkbox-339 > span > span > label > span,
#wrap-model_inputs > .modeles > span > span > label > span {
    margin-right: 1rem;
}

.mod-msg {
    color: black;
    font-weight: 600;
    margin: 1.5rem 0 1.25rem;
}

#realform .wpcf7-not-valid-tip {
    margin-bottom: .5rem;
}

#realform .wpcf7-response-output {
    color: #dc3232;
    border: 0;
}

#realform form.sent .wpcf7-response-output {
    color: #46b450;
}

#aside_produits-slider .w-it img {
    width: 100%;
    height: auto;
}

#aside_produits-slider p {
    text-align: center;
    font-weight: 400;
    margin: .5rem 0;
    font-size: .85rem;
}

#aside_produits-slider a {
    text-decoration: none;
}

#wrap-slider_content {
    display: flex;
    min-height: 60vh;
}

#wrap-slider_content #slide-marker_info {
    width: 70%;
}

.t-1 #wrap-slider_content #desc-marker_info {
    width: 30%;
}

.slider-activation-1 #desc-marker_info {
    width: 100%;
}

.te {
    width: 971px;
    width: 100%;
    height: 60vh;
    background-size: cover;
    background-position: center center;
}

.aside-link {
    color: #e96b4c;
    font-weight: 500;
    margin-bottom: 1.25rem;
    display: inline-block;
}

#desc-marker_info > p:nth-child(3) {
    margin-bottom: .5rem;
}

#btn-marker_info #btn-rdv {
    background-color: #e96b4c !important;
    margin-right: 2rem;
}

#btn-marker_info #btn-rdv:before {
    background: #25242a;
}

.wtb-search .search-btn {
    margin-left: 1rem;
}

#indices_map {
    margin-top: 0;
}

.autorisation .last {
    margin-left: 0;
}

.autorisation label {
    display: flex;
    justify-content: center;
    align-items: center;
}

#realform label {
    color: #fff;
}

.tel-link { 
    pointer-events: none;
    cursor: default; 
    color: #000;
    text-decoration: none;
}

/* ===============================================
   RESPONSIVE - Store Locator
   =============================================== */

@media (max-width: 1500px) {
    #wrap-slider_content {
        flex-direction: column;
    }
    #wrap-slider_content #desc-marker_info {
        order: 2;
        width: 100% !important;
    }
    #wrap-slider_content #slide-marker_info {
        order: 1;
        width: 100%;
    }

    #btn-marker_info > a {
        max-width: 20rem;
    }

    .wrap-indice_map p {
        font-size: 12px;
    }

    #radial::after {
        height: 69%;
    }
}

@media (max-width: 1300px) {
    #radial::after {
        height: 66%;
    }
}

@media (max-width: 1077px) {
    #screen-marker_info > #wrap-marker_info {
        width: 100vw !important;
    }

    #realform {
        width: 100vw !important;
    }
    
    .wtb-search > div:nth-child(3) {
        margin-left: 0 !important;
    }

    #radial::after {
        height: 64%;
    }
}

@media (max-width: 1024px) {
    #radial::after {
        height: 70%;
    }
    .wtb-where-to-buy .wtb-side-panel .wtb-search input {
        flex: 1 0 calc(100% - 100px);
    }
    .wtb-where-to-buy .wtb-side-panel .wtb-search .pos-btn {
        margin: 0;
    }
    .tel-link { 
        pointer-events: auto;
        cursor: pointer;
        text-decoration: underline;
    }
}

@media (max-width: 600px) {
    .wtb-where-to-buy .wtb-side-panel .search-btn {
        margin-left: 0;
        flex: 100%;
        max-width: inherit;
    }
    .wtb-where-to-buy .wtb-side-panel .wtb-search .wtb-range-field {
        margin-left: 0;
    }
    .wtb-where-to-buy .wtb-side-panel .wtb-search .wtb-range-field:nth-child(5) {
        flex: 100%;
    }
    .tel-link { 
        pointer-events: auto;
        cursor: pointer;
        text-decoration: underline;
    }
    #map-alert {
        margin: 2rem;
        width: auto;
    }
    #bulle-info p {
        font-size: .75rem;
    }
}

@media (min-width: 1600px) {
    .search-btn {
        flex: 0 0 auto !important;
    }
    #indices_map {
        margin-top: 0;
    }
}

@media (min-width: 768px) {
    #btn-rdv {
        margin-bottom: 0;
    }
}

@media (min-width: 800px) {
    #btn-rdv {
        margin-bottom: 0 !important;
    }
}

@media (min-width: 1079px) {
    #btn-rdv {
        margin-bottom: 1rem !important;
    }

    #wrap-aside_info:not(.type-1) #btn-rdv {
        margin-right: 0;
        margin-bottom: 1rem !important;
    }
}

@media (min-width: 1051px) {
    .search-btn {
        margin-right: 1rem;
    }

    #btn-rdv {
        margin-bottom: 0 !important;
    }
}

@media (min-width: 1500px) {
    #btn-rdv {
        margin-bottom: 1rem !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 550px) {
    #btn-marker_info #btn-rdv {
        margin-right: 0;
    }
}

@media (max-width: 450px) {
    .wrap-indice_map > img:first-child {
        width: .8rem;
    }

    .wrap-indice_map > img:nth-child(3) {
        width: 1.1rem;
    }

    .wrap-indice_map p {
        font-size: 11px;
        margin: 0 5px;
    }
}

/* ===============================================
   SINGLE REVENDEUR - Dealer Back Button
   =============================================== */

.dealers_back {
    position: absolute;
    z-index: 100;
    left: 5vw;
    top: 10vw;
}

.dealers_back .btn {
    cursor: pointer;
    pointer-events: all;
    display: inline-block;
    position: relative;
    padding: 1.25vw 2vw;
    background: var(--color-primary);
    font-size: .85vw;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    opacity: 1;
    transition: all 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99) 50ms;
    overflow: hidden;
    outline: none;
    z-index: 1;
    border: none;
    border-radius: 0;
}

.dealers_back .btn:before,
.dealers_back .btn:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.dealers_back .btn:before {
    transform: scaleX(0) translateZ(0);
    transform-origin: right;
    backface-visibility: hidden;
    background: #252429;
    transition: transform 0.9s cubic-bezier(0.6, 0.05, 0.01, 0.99) 50ms;
    z-index: -1;
}

.dealers_back .btn:after {
    border: none;
    opacity: 0;
}

.dealers_back .btn:hover {
    color: #fff;
}

.dealers_back .btn:hover::before {
    transform: scaleX(1) translateZ(0);
    transform-origin: left;
}

/* ===============================================
   SINGLE REVENDEUR - Header Section
   =============================================== */

.dealers_single__header {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 70vh;
    padding: 5rem 10vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.dealers_single__header h1 {
    font-size: 3vw;
    font-weight: 700;
    margin: 0 0 .5rem 0;
}

.dealers_single__header h1 span {
    display: block;
    font-size: 1vw;
    margin: 0 0 .5vw 0;
    font-weight: 400;
}

.dealers_single__header_actions {
    display: flex;
    align-items: center;
    gap: 40px;
}

.dealers_single__header_actions__infos,
.dealers_single__header_actions__btns {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.5;
}

.sep { 
    display: inline-block; 
    padding: 0 .5rem; 
}

.dealers_single__header_actions__infos img {
    width: 3rem;
}

.dealers_single__header_actions__infos a { 
    color: #e96b4c; 
}

/* Bouton noir pour itinéraire - Style btn_orange */
.dealers_single__header_actions__btns .btn--black {
    cursor: pointer;
    pointer-events: all;
    display: inline-block;
    position: relative;
    padding: 1.25vw 2vw;
    background: #252429;
    font-size: .85vw;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    opacity: 1;
    transition: all 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99) 50ms;
    overflow: hidden;
    outline: none;
    z-index: 1;
    border: none;
    border-radius: 0;
}

.dealers_single__header_actions__btns .btn--black:before,
.dealers_single__header_actions__btns .btn--black:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.dealers_single__header_actions__btns .btn--black:before {
    transform: scaleX(0) translateZ(0);
    transform-origin: right;
    backface-visibility: hidden;
    background: linear-gradient(90deg, var(--color-primary), #eb9d5f, var(--color-primary));
    background-size: 600% 600%;
    animation: fire 15s infinite;
    transition: transform 0.9s cubic-bezier(0.6, 0.05, 0.01, 0.99) 50ms;
    z-index: -1;
}

.dealers_single__header_actions__btns .btn--black:after {
    border: none;
    opacity: 0;
}

.dealers_single__header_actions__btns .btn--black:hover {
    color: #fff;
}

.dealers_single__header_actions__btns .btn--black:hover::before {
    transform: scaleX(1) translateZ(0);
    transform-origin: left;
}

/* Bouton "Prendre rendez-vous" - Orange → Gris (comme .dealers_back) */
.dealers_single__header_actions__btns .btn.btn--color {
    cursor: pointer;
    pointer-events: all;
    display: inline-block;
    position: relative;
    padding: 1.25vw 2vw;
    background: var(--color-primary);
    font-size: .85vw;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    opacity: 1;
    transition: all 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99) 50ms;
    overflow: hidden;
    outline: none;
    z-index: 1;
    border: none;
    border-radius: 0;
}

.dealers_single__header_actions__btns .btn.btn--color:before,
.dealers_single__header_actions__btns .btn.btn--color:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.dealers_single__header_actions__btns .btn.btn--color:before {
    transform: scaleX(0) translateZ(0);
    transform-origin: right;
    backface-visibility: hidden;
    background: #252429;
    transition: transform 0.9s cubic-bezier(0.6, 0.05, 0.01, 0.99) 50ms;
    z-index: -1;
}

.dealers_single__header_actions__btns .btn.btn--color:after {
    border: none;
    opacity: 0;
}

.dealers_single__header_actions__btns .btn.btn--color:hover {
    color: #fff;
}

.dealers_single__header_actions__btns .btn.btn--color:hover::before {
    transform: scaleX(1) translateZ(0);
    transform-origin: left;
}

/* ===============================================
   SINGLE REVENDEUR - Slider Styles
   =============================================== */

/* Slick Dots - Styles de base */
.slick-dots {
    position: absolute;
    bottom: -25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
}

.slick-dots li,
.slick-dots li button {
    height: 20px;
    width: 20px;
    cursor: pointer;
}

.slick-dots li button {
    border: 0;
    background: transparent;
    display: block;
    outline: none;
    line-height: 0;
    font-size: 0;
    color: transparent;
    padding: 5px;
}

.slick-dots li button:focus,
.slick-dots li button:hover {
    outline: none;
}

.slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "\2022";
    width: 20px;
    height: 20px;
    font-family: slick;
    font-size: 6px;
    line-height: 20px;
    text-align: center;
    color: #000;
    opacity: 0.25;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
    color: #000;
    opacity: 0.75;
}

/* Single Revendeur - Custom Dots */
#slide-marker_info .te {
    width: 100%;
    height: 100svh;
    background-size: cover;
    background-position: center center;
}

#slide-marker_info .slick-prev {
    left: 20px;
}

#slide-marker_info .slick-next {
    right: 20px;
}

#slide-marker_info .slick-prev, 
#slide-marker_info .slick-next {
    height: 35px;
    width: 35px;
    z-index: 1002;
}

#aside_produits-slider .slick-prev, 
#aside_produits-slider .slick-next {
    width: 35px;
    height: 35px;
    z-index: 10;
}

#slide-marker_info ul.slick-dots {
    bottom: 20px;
}

#slide-marker_info ul button,
#wrap-aside_produits ul button {
    border-radius: 50%;
    background: white;
}

#slide-marker_info .slick-dots li, 
#slide-marker_info .slick-dots li button,
#wrap-aside_produits .slick-dots li, 
#wrap-aside_produits .slick-dots li button {
    height: 8px;
    width: 8px;
}

#slide-marker_info ul li.slick-active button,
#wrap-aside_produits ul li.slick-active button {
    background: #E96B4C;
}

#slide-marker_info .slick-dots li button:before,
#wrap-aside_produits .slick-dots li button:before {
    display: none;
}

/* ===============================================
   SINGLE REVENDEUR - Products Section
   =============================================== */

#dealers_single__products {
    background-color: #252429;
    position: relative;
    width: 100%;
    min-height: 40vh;
    padding: 80px 10vw;
}

#dealers_single__products h3 {
    font-weight: 700;
    color: #fff;
    font-size: 1.5vw;
    margin-bottom: 5vw;
}

#dealers_single__products a {
    text-decoration: none;
    color: #fff;
} 

#dealers_single__products p {
    text-align: center;
    font-weight: 400;
    margin: .5rem 0;
    font-size: .85rem;
}

#dealers_single__products p.aside_snprod {
    font-size: 1.25rem;
}

.aside_snprod {
    font-weight: 600 !important;
    margin: 2rem 0 .5rem 0 !important;
}

/* ===============================================
   SINGLE REVENDEUR - Responsive Mobile
   =============================================== */

@media (max-width: 767px) {

    .dealers_back {
        left: 2rem;
        top: 6rem;
    }

    /* Boutons - Remplacer vw par rem sur mobile */
    .dealers_back .btn,
    .dealers_single__header_actions__btns .btn.btn--color,
    .dealers_single__header_actions__btns .btn--black {
        padding: 15px 25px;
        font-size: 0.875rem;
    }

    .dealers_single__header {
        position: static;
        height: auto;
        padding: 10rem 2rem 2rem 2rem;
        display: block;
    }

    .dealers_single__header_actions {
        flex-direction: column;
        gap: 2rem;
    }

    .dealers_single__header h1 {
        font-size: 2.5rem;
        margin: 0 0 1.5rem 0;
    }

    .dealers_single__header h1 span {
        font-size: 1rem;
        margin: 0 0 .5rem 0;
    }

    #aside_produits-slider .slick-prev {
        left: 0;
    }

    #aside_produits-slider .slick-next {
        right: 0;
    }

    #dealers_single__products {
        min-height: auto;
        padding: 2rem;
    }

    #dealers_single__products h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    #appointment {
        padding: 2rem;
    }

}

/* ===============================================
   APPOINTMENT SECTION - Formulaire de prise de rendez-vous
   =============================================== */

#appointment {
    padding: 80px 10vw;
    color: #fff;
    background-color: #252429;
}

#appointment h3 {
    font-weight: 500;
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

#appointment p {
    color: #fff;
}

#appointment h3 + p {
    color: #fff;
    margin-bottom: 2rem;
    width: 20rem;
}

#appointment input[type="email"], 
#appointment input[type="text"], 
#appointment input[type="tel"] {
    border: 0;
    margin-bottom: 1rem;
    padding: .5rem 0 .5rem 0;
    border-bottom: 1px solid #C6C6C4;
    background-color: transparent;
    color: #fff;
    font-family: inherit;
    width: 100%;
}

#appointment textarea {
    border: 1px solid #C6C6C4;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: transparent;
    color: #fff;
    font-family: inherit;
    width: 100%;
    min-height: 120px;
}

#appointment select {
    border: 1px solid #C6C6C4;
    margin-bottom: 1rem;
    padding: .5rem;
    background-color: transparent;
    color: #fff;
    font-family: inherit;
    width: 100%;
}

#appointment .btn.btn--color {
    border: 0;
    padding: .5rem 3rem;
}

#appointment .wpcf7-not-valid-tip {
    margin-bottom: .5rem;
    color: #dc3232;
}

#appointment .wpcf7-response-output {
    color: #dc3232;
    border: 0;
}

#appointment form.sent .wpcf7-response-output {
    color: #46b450;
}

#appointment .mod-msg {
    color: #fff;
    font-weight: 600;
    margin: 3rem 0 1.25rem;
}

#appointment ul.inputs-list {
    margin-bottom: 3rem;
}

#appointment ul.inputs-list > li {
    margin-bottom: .5rem;
}

#appointment ul.inputs-list > li > label {
    display: flex;
    align-items: center;
    color: #fff;
}

#appointment input[type="checkbox"] {
    margin-right: 1rem;
    width: 24px;
    height: 24px;
}

/* HubSpot Forms dans #appointment */
#appointment .hbspt-form input[type="text"],
#appointment .hbspt-form input[type="email"],
#appointment .hbspt-form input[type="tel"] {
    font-family: Heebo, Helvetica, Arial, sans-serif;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #C6C6C4;
    color: #fff;
    font-size: 1rem;
    padding: .5rem 0;
    margin-bottom: 1rem;
    width: 100%;
}

#appointment .hbspt-form textarea {
    font-family: Heebo, Helvetica, Arial, sans-serif;
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1rem;
    padding: 1rem;
    min-height: 120px;
    width: 100%;
    resize: vertical;
}

#appointment .hbspt-form select {
    font-family: Heebo, Helvetica, Arial, sans-serif;
    background-color: #252429;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1rem;
    padding: 1rem;
    width: 100%;
}

#appointment .hbspt-form select option {
    background-color: #252429;
    color: #fff;
}

#appointment .hbspt-form label {
    display: block;
    color: #fff;
    padding: 0 0 .5rem 0;
}

#appointment .hbspt-form legend {
    font-style: italic;
    font-size: 12px;
    padding: .5rem 0 0 0;
    color: #fff;
}

#appointment .hbspt-form ::placeholder {
    color: rgba(255,255,255,0.7);
}

#appointment .hbspt-form .hs-input {
    width: 100%;
}

#appointment .hbspt-form .hs-form-required {
    color: #e76c51;
}

#appointment .hbspt-form input[type="submit"] {
    background-color: transparent;
    border: 2px solid #e96b4c;
    font-size: 14px;
    line-height: 26px;
    color: #fff;
    padding: 15px 40px;
    font-weight: 700;
    transition: all 0.25s ease;
    margin: 2rem 0 0 0;
    width: 50%;
    cursor: pointer;
}

#appointment .hbspt-form input[type="submit"]:hover {
    background-color: #e96b4c;
    color: #fff;
}

#appointment .hbspt-form input[type="checkbox"] {
    margin-right: 1rem;
    width: 24px;
    height: 24px;
}

#appointment .hbspt-form .hs-form-booleancheckbox-display {
    display: flex;
    align-items: center;
    padding: 20px 0;
}

#appointment .hbspt-form .hs-form-booleancheckbox-display > .hs-input {
    display: inline-block;
}

#appointment .hbspt-form .hs-form-booleancheckbox-display > span {
    font-weight: normal;
    color: #fff;
}

#appointment .hbspt-form .hs-error-msg {
    color: #dc3232;
}

#appointment .hbspt-form .submitted-message {
    color: #46b450;
}



@media (max-width: 932px) {

    .dealers-header {
        padding: 6.5rem 2rem 2rem 2rem;
        flex-direction: column;
        gap: 2rem;
    }
    
    .dealers-header h1 {
        margin: 0;
    }

    #indices_map {
        justify-content: flex-start;
    }

    .wtb-where-to-buy {
        padding: 0 2rem;
    }

    .wtb-where-to-buy .wtb-side-panel .wtb-search {
        flex-direction: column;
        gap: 1rem;
    }

    .wtb-search_inputs {
        gap: 1rem;
    }

    #bulle-info {
        font-size: .75rem;
        padding: .5rem;
        bottom: 2rem;
    }

}

@media (max-width: 932px) and (max-height: 932px) and (orientation: landscape) {

    .dealers-header {
        padding: 6.5rem 2rem 2rem 2rem;
        flex-direction: row;
        gap: 2rem;
    }

    .form__group--select {
        justify-content: flex-start;
    }

    .wtb-search .search-btn {
        margin-left: 0;
    }

    #bulle-info {
        font-size: .75rem;
        padding: .5rem;
        bottom: 3.5rem;
        z-index: 9999;
    }

    #bulle-info p {
        font-size: .75rem;
    }

}


