@import url('https://fonts.googleapis.com/css2?family=Courgette&display=swap');
:root {
    --border-radius-theme: 17px;
    --color-marine: #21224a;
    --color-lavande: #5f56a1;
    --color-flamingo: #eb5b9c;
    --color-clementine: #f59f40;
    --color-bleu-clair: #d4edfc;
    --gradient-rooly: linear-gradient(90deg, rgba(236, 115, 96, 1) 0%, rgba(110, 103, 170, 1) 100%);
}

header.style1 .header-bottom {
    border-radius: 17px;
}

header.style1:not(.sticky) .header-bottom .header-btn {
    border-top-right-radius: 17px;
    border-bottom-right-radius: 17px;
    overflow: hidden;
}

.font-script {
    font-family: "Courgette", serif;
    font-weight: 400;
    font-style: normal;
}

.bg-bleu-ciel-logo {
    background-image: url('../img/hero/hero-shape-1.png');
    background-size: cover;
}

.rounded-theme {
    border-radius: var(--border-radius-theme);
}

.text-gradient {
    background: var(--gradient-rooly);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-lavande {
    background-color: var(--color-lavande);
    --bs-btn-hover-bg: #433b7e;
    --bs-btn-hover-border-color: #433b7e;
}

.bg-bleu-clair {
    background-color: var(--color-bleu-clair);
}

.bg-clementine {
    background-color: var(--color-clementine) !important;
}

.bg-flamingo {
    background-color: var(--color-flamingo) !important;
}

.bg-marine {
    background-color: var(--color-marine) !important;
}

.text-marine {
    color: var(--color-marine);
}

.text-flamingo {
    color: var(--color-flamingo);
}

.text-clementine {
    color: #f59f40 !important;
}

.text-lavande {
    color: var(--color-lavande);
}

.fw-800 {
    font-weight: 800;
}

.hero-shape-one {
    object-fit: cover;
}

.card-hero-header {
    border-radius: var(--border-radius-theme);
    border: none;
    max-width: 375px;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.card-hero-header:hover {
    transform: scale(1.1);
    /* Zoom au survol */
}

.underline {
    position: relative;
    display: inline-block;
}

.underline::after {
    content: '';
    position: absolute;
    top: calc(100% - 0.2em);
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/assets/underline.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}

.underline.underline-flamingo::after {
    background-image: url(../img/assets/underline-flamingo.png);
}

.card-stage-miniature {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.card-stage-miniature .prix {
    position: absolute;
    top: 0;
    right: 0;
    border-bottom-left-radius: 17px;
    background-color: var(--color-marine);
    color: white;
    font-weight: bold;
    padding: 7px 14px;
}

.card-stage-miniature .btn-reserver {
    background-color: var(--color-flamingo);
    border-radius: 9px;
    padding: 7px 14px;
    font-weight: 700;
    color: white;
}

.card-ressources-header {
    border-radius: var(--border-radius-theme);
    text-align: center;
    cursor: pointer;
    transition: 0.3s ease;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border: 2px solid var(--color-marine); */
    flex-direction: column;
}

.card-ressources-header:hover {
    background-color: var(--color-marine);
    color: white;
}

.card-ressources-header img {
    margin-bottom: 15px;
    transition: 0.3s ease;
}

.card-ressources-header .titre {
    position: relative;
    color: white;
}

.card-ressources-header:hover .titre {
    color: white;
}

.card-ressources-header:hover img {
    transform: rotate(-5deg) scale(1.2);
}

.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    position: relative;
    padding-left: 30px;
    line-height: 1.9;
}

.custom-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url('../img/assets/check.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.feature-item-wrap .feature-item.style1 .feature-icon i {
    color: var(--color-marine);
}

.exclamation {
    position: relative;
}

.exclamation::after {
    content: '';
    position: absolute;
    top: -75px;
    right: -75px;
    width: 100px;
    height: 100px;
    background-image: url(../img/assets/exclamation.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 5;
    transform: rotate(142deg);
}

.card-over-image-container {
    position: absolute;
    /* background-color: red; */
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    padding-bottom: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-over-image {
    border-radius: var(--border-radius-theme);
    background-color: var(--color-bleu-clair);
    width: 90%;
}

.section-title.style1 span,
.content-title.style1 span {
    color: var(--color-flamingo);
}

.section-title span:after,
.content-title span:after,
.section-title span:before,
.content-title span:before {
    background-color: var(--color-flamingo);
}

.card-ville {
    /* background-color: white; */
    border-radius: var(--border-radius-theme);
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    margin-bottom: 10px;
}

.card-ville img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 50%;
}

.card-ville i {
    /* display: none; */
    transform: translateX(50px);
    transition: 0.4s ease;
}

.card-ville:hover i {
    /* display: block; */
    transform: translateX(-15px);
}

.accordion-item .accordion-header .accordion-button:not(.collapsed) {
    background: var(--color-clementine) !important;
    color: #fff;
}

.lien-cssr:hover {
    color: var(--color-flamingo);
}

.section-faq {
    position: relative;
}

.section-faq::after {
    content: '';
    position: absolute;
    top: 0;
    right: -78px;
    width: auto;
    aspect-ratio: 1 / 2;
    height: 100%;
    background-image: url(../img/assets/question.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -9;
    transform: rotate(17deg);
    opacity: 18%;
}

.road-after {
    position: relative;
}

.road-after .container {
    position: relative;
    z-index: 1;
}

.road-after::after {
    content: '';
    position: absolute;
    width: auto;
    aspect-ratio: 1 / 1;
    height: 60%;
    /* background-image: url(../img/assets/road.webp); */
    background-image: url(../img/assets/road-lavande.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
    opacity: 67%;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected,
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true]:not(.select2-results__option--highlighted) {
    background-color: var(--color-marine) !important;
}

.road-after.top-right:after {
    top: 0;
    right: 0;
}

.rooly-sign-after {
    position: relative;
}

.rooly-sign-after::after {
    content: '';
    position: absolute;
    width: 148px;
    aspect-ratio: 413 / 151;
    height: auto;
    background-image: url(../img/assets/rooly-sign.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
    top: -24px;
    left: -27px;
    transform: rotate(348deg);
}

.card-cssr {
    background-color: white;
    border-radius: var(--border-radius-theme);
    margin-bottom: 10px;
    border: 2px solid;
    position: relative;
}

.card-cssr::after {
    content: '';
    position: absolute;
    width: auto;
    aspect-ratio: 266 / 275;
    height: 100%;
    background-image: url(../img/assets/road2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
    bottom: 0;
    right: 7px;
    opacity: 20%;
}

.card-cssr .logo-wrap {
    width: 64px;
    height: 64px;
    background-color: #ffffff;
    border-radius: 9px;
    border: 2px solid;
    margin-top: -47px;
    margin-bottom: 20px;
    margin: auto;
    margin-top: -51px;
    margin-bottom: 12px;
    padding: 5px;
}

.card-cssr .logo-wrap img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

#slider_cssr .owl-stage-outer {
    padding-top: 42px;
}

.marquee-slider__list {
    display: flex;
    justify-content: space-around;
}

.marquee-slider__list .marquee-slider__list--item {
    min-width: 300px;
    max-width: 300px;
    margin: 0px 40px;
}

.card-trustpilot {
    border-radius: var(--border-radius-theme);
    background-color: white;
}

.cke_notification.cke_notification_warning {
    display: none !important;
}

#slider_avis .card-trustpilot p {
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    /* Ajuste selon ton besoin */
    max-height: calc(1.5em * 4);
    /* Ajuste selon la taille de la police */
    line-height: 1.5em;
    /* Définit l'espacement des lignes */
    white-space: normal;
    /* Permet le retour à la ligne */
}

.text-justify {
    text-align: justify;
}

.exclamation.top-left::after {
    left: -75px;
    transform: rotate(46deg);
    top: -66px;
}

.exclamation.exclamation-flamingo::after {
    background-image: url(../img/assets/exclamation-flamingo.png);
}

.road-layout {
    position: absolute;
    right: 0;
    transform: rotate(90deg);
    bottom: 0;
    height: 50%;
    opacity: 32%;
    z-index: 0;
}

.blog-card {
    border-radius: var(--border-radius-theme);
    overflow: hidden;
}

.border-none {
    border: none !important;
}

.header-wrap.style1 .header-bottom .others-options .header-btn .btn.style1 {
    background: var(--color-flamingo);
}

.back-to-top {
    background: var(--color-lavande);
}

.accordion-button {
    border-radius: var(--border-radius-theme) !important;
    border-top-left-radius: var(--border-radius-theme);
    border-top-right-radius: var(--border-radius-theme);
}

.accordion-body {
    border-bottom-left-radius: var(--border-radius-theme);
    border-bottom-right-radius: var(--border-radius-theme);
}

.accordion-button.collapsed {
    border-radius: var(--border-radius-theme) !important;
    border-bottom-left-radius: var(--border-radius-theme) !important;
    border-bottom-right-radius: var(--border-radius-theme) !important;
}

.counter-area.style1:before {
    background: var(--color-bleu-clair);
}

.owl-carousel .owl-dots:not(.disabled) {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.owl-carousel .owl-dots button.owl-dot.active span {
    background: var(--color-flamingo);
}

.hero-content .owl-nav {
    display: none;
}


/* Breadcrumb  */

.breadcrumb-wrap-custom {
    overflow-x: scroll;
    scrollbar-width: none;
}

.breadcrumb-wrap-custom::-webkit-scrollbar {
    display: none;
}

ol.breadcrumb {
    padding: 10px 0px;
    list-style: none;
    flex-wrap: nowrap;
    width: max-content;
    margin-bottom: 0px;
    /* margin: auto; */
}

ol.breadcrumb li {
    display: inline;
    font-size: 15px;
}

ol.breadcrumb li+li:before {
    padding: 8px;
    color: var(--pxpMainColorDark);
    /* font-family: "Font Awesome 5 Free"; */
    font-weight: 900;
    content: "/";
}

ol.breadcrumb li a {
    color: var(--pxpMainColor);
    text-decoration: none;
}

ol.breadcrumb li a:hover {
    color: var(--pxpMainColor);
    text-decoration: underline;
}

#chargement-stripe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffffa1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    backdrop-filter: blur(1px);
    color: black;
}


/* CARD RRESSOURCES */

.card-ressource {
    width: 100%;
    border-radius: var(--border-radius-theme);
    padding: 15px;
    background-position: center;
    background-size: cover;
    height: auto;
    aspect-ratio: 16 / 9;
    position: relative;
    background-size: 100% auto;
    transition: 0.3s ease;
}

.card-ressource .btn-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
}

.card-ressource .btn-wrap .btn-ressource {
    width: max-content;
    display: block;
    background-color: white;
    padding: 10px 24px;
    border-radius: 13px;
    font-weight: 600;
    color: var(--color-marine);
    margin: auto;
    text-align: center;
    border: 2px solid var(--color-marine);
}

.card-ressource:hover {
    background-size: 117% auto;
}


/* CARD VILLE LARGE */

.card-ville-large {
    background-size: 100% 100%;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius-theme);
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: end;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.card-ville-large::after {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(33, 34, 74, 0.8491771708683473) 21%, rgba(110, 103, 170, 0) 79%);
}

.card-ville-large a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    z-index: 1;
    width: 100%;
    font-size: 1.3em;
}

.owl-carousel.owl-marquee .owl-stage {
    transition-timing-function: linear !important;
}

#slider_avis img {
    width: 87px !important;
}


/* MAPS */

.marker-stage {
    color: var(--color-marine);
    font-weight: 900;
    font-size: 13px;
    border-radius: 13px;
    border: 1px solid;
    background-color: white;
    cursor: pointer;
    transition: 0.2s ease;
}

.marker-stage:hover {
    transform: scale(1.3);
    z-index: 999;
    position: relative;
    color: white;
    background-color: var(--color-marine);
}

.loader-map {
    position: absolute;
    z-index: 1;
    background-color: white;
    padding: 5px 15px;
    border-radius: 10px;
    top: 19px;
    left: calc(50% - 40px);
}

.loader-map img {
    width: 50px;
}

.card-stage-large {
    padding: 15px;
    border-radius: var(--border-radius-theme);
    border: 1px solid;
    margin-bottom: 15px;
    position: relative;
    background: #f9f9f9;
    border: 1px solid #DADADA;
    border-radius: 10px;
}

.card-centre:nth-child(even) {
    background-color: #d4edfc4d;
}

.card-centre:nth-child(odd) {
    background-color: #f8f9fa;
}

.card-stage-large:nth-child(even) {
    /* background-color: #d4edfc4d; */
}

.btn-reserver {
    background-color: var(--color-flamingo);
    border-radius: 9px;
    padding: 7px 14px;
    font-weight: 700;
    color: white;
    display: block;
    text-align: center;
    --bs-btn-hover-bg: #c03473;
    --bs-btn-hover-border-color: #c03473;
}

.btn-lavande {
    background-color: var(--color-lavande);
    border-radius: 9px;
    padding: 7px 14px;
    font-weight: 700;
    color: white;
    display: block;
    text-align: center;
    border: none;
}

.card-stage-large .col-jour {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.card-stage-large .col-jour .jour {
    font-weight: bold;
    color: var(--color-marine);
}

.card-stage-large .col-jour .date {
    font-weight: bold;
    color: var(--color-clementine);
}

.card-stage-large .col-jour .mois {
    color: var(--color-lavande);
}

.card-stage-large .centre-mobile,
.card-stage-large .distance-mobile {
    display: none;
}

.pac-logo::after {
    display: none !important;
}

.pac-container {
    border-bottom-left-radius: 11px !important;
    border-bottom-right-radius: 11px !important;
}

.pac-item .pac-icon {
    background-image: url('../img/assets/marker-flamingo.png') !important;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.pac-item .pac-matched {
    color: var(--color-flamingo);
}

.distance-km-0 {
    display: none !important;
}

.range-custom {
    -webkit-appearance: none;
    width: 100%;
    height: 19px;
    background: white;
    outline: none;
    opacity: 0.7;
    border-radius: 7px;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.range-custom:hover {
    background: #f7f7f7;
}

.range-custom::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 30px;
    background: var(--color-flamingo);
    cursor: pointer;
    border-radius: 4px;
}

.section-stages-map {
    height: calc(100vh - 0px);
    padding-top: 90px;
    width: 100%;
}

.btn.btn-primary {
    border-radius: var(--border-radius-theme);
}

.btn.btn-primary.lavande {
    border: none;
    background-color: var(--color-lavande);
}

.text-no-wrap {
    white-space: nowrap;
}

.pp-centre-stage {
    width: 72px;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 15px;
    border: 1px solid #acaaaa;
    object-fit: contain;
}

.sticky-theme {
    position: sticky;
    top: 105px;
}

.hero-section-page {
    padding-top: 120px;
}

.image-centre-liste {
    background-color: white;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 13px;
    overflow: hidden;
    border: 2px solid var(--color-lavande);
    width: 100%;
    height: auto;
}

.page-navigation .page-nav li a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-navigation .page-nav li a.active,
.page-navigation .page-nav li a:not(.disabled):hover {
    background-color: var(--color-lavande);
}

.page-navigation .page-nav li a i {
    line-height: 0;
    margin-bottom: 7px;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: var(--bs-nav-pills-link-active-color);
    background-color: var(--color-lavande);
}

.nav-link {
    color: var(--color-lavande);
}

.list-style-none {
    list-style: none !important;
}

.card-etape {
    position: relative;
    /* min-height: 465px; */
    /* min-height: 279px; */
    min-height: 347px;
}

.card-etape .icon {
    max-width: 89px !important;
}

.card-etape .svg {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
}

.slider-half .owl-stage {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.slider-half .owl-stage-outer {
    overflow: visible !important;
}

.dots-grey.owl-carousel .owl-dots button.owl-dot:not(.active) span {
    background: #cfcaca;
}

.label-annonce-stage {
    position: absolute;
    display: block;
    width: fit-content;
    background-color: #eb5b9c;
    color: white;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    top: -9px;
    left: 23px;
}

.blog-card.style1 img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background-color: #d4edfc;
}

.preview-blog-texte {
    text-align: justify;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.btn-geolocalisation {
    position: absolute;
    right: 48px;
    z-index: 11;
    height: 100%;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    font-size: 1.6em;
    padding: 0px 10px;
    border: none !important;
    color: var(--color-marine);
}

.btn-geolocalisation.miniature {
    right: 0px;
    font-size: 1.3em;
}

.loader-absolute {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-theme);
}

.loader-absolute img {
    max-width: 130px;
    background-color: white;
    border-radius: var(--border-radius-theme);
    padding: 5px 18px;
    border: 2px solid;
}

.w-70 {
    width: 70px !important;
}

.text-no-wrap {
    white-space: no-wrap;
}

.progress-inscription-stage .progress-bar {
    position: relative;
    overflow: visible;
    background-color: var(--color-marine);
}

.progress-inscription-stage .progress-bar::after {
    position: absolute;
    content: '';
    height: 100%;
    aspect-ratio: 1 / 1;
    width: auto;
    border-radius: 50%;
    top: 0;
    right: -10px;
    background-color: var(--color-flamingo);
}


/* COMPTE CONNECT STRIPE */

.border-red {
    border: 2px solid !important;
    border-color: rgb(220, 72, 72) !important;
}

.compte-connect-stripe {
    background-color: #21224a0d;
    padding: 26px 15px;
    border-radius: 25px;
    margin: 25px 0px;
    position: relative;
    flex-wrap: wrap;
    border: 2px dashed grey;
}

.compte-connect-stripe .badge-secondary {
    background-color: #c2c2c2;
    color: #17171d;
    font-weight: 600;
}

.compte-connect-stripe .loader {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid #cfcfcf;
    z-index: 0;
}


/* DATATABLE */

.active>.page-link,
.page-link.active {
    background-color: var(--color-flamingo);
    border-color: var(--color-flamingo);
}

.page-link {
    color: var(--color-flamingo);
}


/* #slider_etapes .owl-item:not(:nth-child(0)):not(.active) {
    max-width: 80vw;
} */

.stage-col-prix .stage-prix {
    font-size: 22px;
    font-weight: 600;
    color: #01022a;
}

.stage-col-prix {
    border-right: 1px solid #ccc;
    min-width: 100px;
}

.col-stage-ville .ville {
    color: #01022a;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: bottom;
}

.col-stage-ville .adresse {
    color: #3A3A3A;
    display: block;
    overflow: hidden;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    text-align: left;
    font-size: 12px;
    font-weight: normal;
    margin-bottom: 0px;
}

.col-stage-date .picto-calendrier {
    color: #418C20;
    font-size: 18px;
    padding: 10px;
    background: #DFEDDE;
    border-radius: 100%;
    aspect-ratio: 1 / 1;
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.col-stage-date .date {
    color: #418C20;
    font-size: 14px;
    font-weight: 600;
    /* line-height: 20px; */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 0px;
}

.col-stage-date .outter {
    line-height: 18px;
}

.col-stage-date .date.date_courte {
    display: none;
}

.col-stage-date .label-sub-date {
    color: #418C20;
    font-size: 13px;
    font-weight: 500;
}

.btn-reserver-tel {
    background-color: var(--color-flamingo);
    color: #FFF;
    border-radius: 6px;
    border: 0;
    background-image: linear-gradient(to bottom, var(--color-flamingo), #E9558F);
    outline-color: var(--color-flamingo);
    font-size: 14px;
    padding: 10px 13px;
    display: none;
}

.btn-reserver-2 {
    background-color: var(--color-flamingo);
    color: #FFF;
    border-radius: 6px;
    border: 0;
    background-image: linear-gradient(to bottom, var(--color-flamingo), #E9558F);
    outline-color: var(--color-flamingo);
    font-size: 14px;
    padding: 10px 13px;
}

.numero-fresque {
    background-color: white;
    width: 42px;
    display: block;
    height: 42px;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 33px;
}

.card-stat {
    padding: 15px;
    border: 3px solid #5f56a1;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    margin-bottom: 24px;
}

.card-stat .nombre {
    color: #eb5b9c;
    font-weight: 800;
    font-size: 21px;
}


/* @media only screen and (max-width: 1320px) { */

@media only screen and (max-width: 1199px) {
    .section-stages-map {
        padding-top: 58px;
    }
}

@media only screen and (max-width: 1320px) {
    .stage-col-prix {
        /* max-width: 90px !important; */
        min-width: 92px;
    }
}

@media only screen and (max-width: 1200px) {
    .col-stage-date .date.date_normale {
        display: none !important;
    }
    .col-stage-date .date.date_courte {
        display: block !important;
    }
}

@media only screen and (max-width: 991px) {
    .card-stage-large .centre-mobile,
    .card-stage-large .distance-mobile {
        display: inline-block;
        font-size: 12px;
    }
    .card-stage-large .centre,
    .card-stage-large .marker {
        display: none !important;
    }
    .card-stage-large .btn-reserver {
        position: absolute;
        right: -1px;
        height: calc(100% + 2px);
        top: -1px;
        width: 35px !important;
        border-radius: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0px;
        border-top-right-radius: 17px;
        border-bottom-right-radius: 17px;
    }
    .card-stage-large .btn-reserver span {
        display: none;
    }
    .card-stage-large .col-prix-resa {
        text-align: left !important;
        display: flex;
        align-items: center;
        min-width: 100px;
    }
    .card-stage-large .prix {
        font-size: 17px !important;
    }
    .card-stage-large .col-jour {
        font-size: 14px;
    }
    .card-stage-large .ville {
        font-size: 15px !important;
    }
    .card-stage-large .adresse {
        line-height: 17px;
        font-size: 13px;
        font-weight: 500;
    }
    .card-stage-large .col-date {
        /* max-width: 100px; */
    }
    .card-stage-large .distance-mobile {
        color: var(--color-flamingo);
    }
    .card-stage-large {
        padding: 9px;
    }
    .card-stage-large .col-jour {
        justify-content: space-evenly;
    }
    .col-prix-resa {
        display: none !important;
    }
    .btn-reserver-tel {
        display: block !important;
    }
    .stage-col-prix {
        border-right: none !important
    }
    .stage-col-prix .inner {
        width: 100%;
        border-top: 1px solid #DADADA;
        padding-top: 10px;
    }
    .col-stage-date .date {
        font-size: 13px;
    }
    .col-stage-date .picto-calendrier {
        font-size: 16px;
        height: 31px;
        width: 31px;
    }
    .col-stage-date .outter {
        line-height: 15px;
    }
}

@media only screen and (max-width: 1200px) {
    nav.navbar {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }
    nav.navbar .navbar-brand img {
        /* width: 80px !important; */
    }
    header .header-bottom {
        padding: 0px 10px;
    }
    .hero-section-page {
        padding-top: 90px;
    }
}

@media only screen and (max-width: 992px) {
    .why-choose-wrap.style1 .wh-img-wrap .wh-bg-1 {
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .card-ville {
        border-radius: 9px;
    }
    .card-ville img {
        display: none;
    }
    .road-after::after {
        width: 60%;
        height: auto;
        opacity: 47%;
    }
    .bg-bleu-clair.road-after.top-right .section-title h2 {
        display: inline;
        background-color: var(--color-bleu-clair);
    }
    .rooly-sign-after::after {
        width: 110px;
        top: -23px;
        left: 17px;
        transform: rotate(354deg);
    }
    #map {
        min-height: 30vh !important;
    }
    .header-recherche-stage-carte {
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        margin-top: -25px;
        z-index: 1;
        box-shadow: rgb(33 34 74 / 33%) 0px -27px 24px -5px;
        padding-top: 24px !important;
    }
    /* Google Maps : Plan Satelite */
    .gmnoprint.gm-style-mtc-bbw {
        display: none !important;
    }
    /* Google Maps : Zoom +/- */
    .gmnoprint.gm-bundled-control.gm-bundled-control-on-bottom {
        display: none !important;
    }
    .marker-stage {
        font-weight: 500;
        font-size: 12px;
        border-radius: 9px;
        padding: 5px !important;
    }
    .section-stages-map {
        height: 100% !important;
    }
    .card-reassurance {
        display: flex;
        align-items: center;
        text-align: left !important;
    }
    .card-reassurance p {
        margin-bottom: 0px !important;
    }
    .card-reassurance img {
        width: 54px;
    }
    .card-reassurance .titre {
        margin-bottom: 0px;
    }
    #div-recherche-et-filtres:not(.centre) {
        position: fixed;
        top: 58px;
        left: 0;
        width: 100vw;
        background-color: #d4edfc;
        z-index: 1111;
        margin: 0px;
        padding: 10px 0px;
        box-shadow: var(--bs-box-shadow) !important;
    }
    .badge-filtre-stage {
        font-weight: 400;
        font-size: 10px;
    }
}