@charset "UTF-8";

/*** CSS skins/nom-domaine.fr/site/style.css ***/
/* --------------------GLOBAL-------------------- */
@font-face {
    font-family: "HKNovaRegular";
    src: url("fonts/HKNova-Regular.ttf") format("truetype");
}
@font-face {
    font-family: "HKNovaBold";
    src: url("fonts/HKNova-Bold.ttf") format("truetype");
}
@font-face {
    font-family: "HKNovaExtraBold";
    src: url("fonts/HKNova-ExtraBold.ttf") format("truetype");
}
@font-face {
    font-family: "HKNovaExtraLight";
    src: url("fonts/HKNova-ExtraLight.ttf") format("truetype");
}
@font-face {
    font-family: "HKNovaHeavy";
    src: url("fonts/HKNova-Heavy.ttf") format("truetype");
}
@font-face {
    font-family: "HKNovaLight";
    src: url("fonts/HKNova-Light.ttf") format("truetype");
}
@font-face {
    font-family: "HKNovaMedium";
    src: url("fonts/HKNova-Medium.ttf") format("truetype");
}
@font-face {
    font-family: "HKNovaSemiBold";
    src: url("fonts/HKNova-SemiBold.ttf") format("truetype");
}
@font-face {
    font-family: "HKNovaThin";
    src: url("fonts/HKNova-Thin.ttf") format("truetype");
}

.toggle-switch {
    display: flex;
    position: relative;
    width: 100%;
    max-width: 650px;
    border-radius: 50px;
    overflow: hidden;
    background-color: #f8f9fa;
    padding: 4px;
    box-sizing: border-box;
}

.toggle-btn {
    flex: 1;
    border: none;
    background: transparent;
    z-index: 2;
    text-align: center;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.toggle-btn.active {
    color: #fff;
}

.toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    border-radius: 50px;
    transition: transform 0.5s ease, background-color 0.5s ease;
    z-index: 1;
    background-color: #6c757d;
}

.toggle-btn:focus,
.toggle-btn:active,
.toggle-btn:focus-visible {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
	color: #fff !important;
}

.toggle-btn:not(.active):hover {
	color: #13BFAB !important;
	animation: scaleText 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes scaleText {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
	100% {
		transform: scale(1);
	}
}

/* ========================================
   SWITCH SEARCH / SUGGESTIONS
   ======================================== */

/* Bouton de switch */
.switch-search-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    margin: 15px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 25px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.switch-search-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.switch-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

.switch-search-btn:hover::before {
    width: 300px;
    height: 300px;
}

.switch-search-btn:active {
    transform: translateY(0);
}

.switch-search-btn .btn-icon {
    display: inline-flex;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.switch-search-btn.switching .btn-icon {
    animation: iconFlip 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes iconFlip {
    0% {
        transform: rotateY(0deg) scale(1);
    }
    50% {
        transform: rotateY(90deg) scale(0.8);
        opacity: 0;
    }
    51% {
        transform: rotateY(-90deg) scale(0.8);
        opacity: 0;
    }
    100% {
        transform: rotateY(0deg) scale(1);
        opacity: 1;
    }
}

.switch-search-btn .btn-text {
    transition: opacity 0.3s;
}

.switch-search-btn.switching .btn-text {
    animation: textFade 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes textFade {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* Container de transition */
#searchBar,
#suggestionsForm {
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* États de base */
#searchBar.hidden,
#suggestionsForm.hidden {
    display: none;
    opacity: 0;
    pointer-events: none;
}

#searchBar.active,
#suggestionsForm.active {
    display: flex !important;
    opacity: 1;
    pointer-events: auto;
}

/* Transition sortante avec effet 3D morphing */
#searchBar.transitioning-out,
#suggestionsForm.transitioning-out {
    animation: morphOut 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes morphOut {
    0% {
        opacity: 1;
        transform: scale3d(1, 1, 1) translate3d(0, 0, 0) rotateX(0deg);
    }
    100% {
        opacity: 0;
        transform: scale3d(0.95, 0.95, 1) translate3d(0, -15px, 0) rotateX(8deg);
    }
}

/* Transition entrante avec effet 3D morphing */
#searchBar.transitioning-in,
#suggestionsForm.transitioning-in {
    animation: morphIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes morphIn {
    0% {
        opacity: 0;
        transform: scale3d(0.95, 0.95, 1) translate3d(0, 15px, 0) rotateX(-8deg);
    }
    100% {
        opacity: 1;
        transform: scale3d(1, 1, 1) translate3d(0, 0, 0) rotateX(0deg);
    }
}

/* Classes visible pour compatibilité */
.visible {
    display: block !important;
}

/* Réinitialisation après transition - assurez que tout est visible */
#searchBar.active *,
#suggestionsForm.active * {
    opacity: 1;
    transform: none;
}

#extensionAutocomplete .list-group-item {
    border: none;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    padding: 0.75rem 1rem;
    transition: background-color 0.2s ease;
}

/* Animation d'apparition de l'autocomplete */
#extensionAutocomplete {
    animation: fadeInList 0.2s ease;
}

@keyframes fadeInList {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   BOUTONS EXTENSIONS POPULAIRES
   ======================================== */

.popular-extensions {
    width: 100%;
}

/* Ligne horizontale décorative à côté du label "Populaires" */
.horizontalLine {
    flex: 1;
    height: 2px;
    margin-left: 1rem;
    margin-top: 0.75rem;
    border-radius: 2px;
    opacity: 0.5 !important;
}

.horizontalLine:after {
    content: " ";
    display: block;
    border-bottom: 2px solid #9E9E9E;
}

.btn-extension {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    padding: inherit !important;
    color: #0d6efd !important;
    background-color: white !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    text-transform: lowercase !important;
}

.btn-extension:hover {
    background-color: #0d6efd !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3) !important;
}

.btn-extension:active,
.btn-extension.active {
    background-color: #0d6efd !important;
    color: white !important;
    border-color: #0d6efd !important;
    transform: translateY(0) !important;
}


/* ===== Loader Custom ===== */
.loader-custom {
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    border-right-color: transparent;
    animation: rotation 1s linear infinite;
}

/* ===== Tailles ===== */
.loader-custom--sm {
    width: 27px;
    height: 27px;
    border-top: 3px solid;
    border-right: 3px solid transparent;
}

.loader-custom--lg {
    width: 62px;
    height: 62px;
    border-top: 4px solid;
    border-right: 4px solid transparent;
}

/* ===== Couleurs ===== */
.loader-custom--blue {
    border-top-color: #2983c6;
}

.loader-custom--white {
    border-top-color: #ffffff;
}

/* ===== Animation ===== */
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.italic-placeholder::-webkit-input-placeholder {
    font-style: italic;
    line-height: 2;
    font-size: 12px;
}
.italic-placeholder:-moz-placeholder {
    font-style: italic;
    line-height: 2;
    font-size: 12px;
}
.italic-placeholder::-moz-placeholder {
    font-style: italic;
    line-height: 2;
    font-size: 12px;
}
.italic-placeholder:-ms-input-placeholder {
    font-style: italic;
    line-height: 2;
    font-size: 12px;
}
.italic-placeholder::placeholder {
    font-style: italic;
    line-height: 2;
    font-size: 12px;
}

#domainResultsVariants > .title-domain-table {
    display: none !important;
}

.suggestions-faded {
    opacity: 0.10;
    pointer-events: none;
    transition: opacity 0.3s;
}

#suggestionsLoadingContent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    background-color: rgba(255, 255, 255, 0.95);
    display: none;
}

#suggestionsLoadingContent.active {
    opacity: 1;
    pointer-events: auto;
    display: flex !important;
}

#domainResultsVariants > .title-domain-table {
    display: none !important;
}

.defaultPopover {
    background: #eff7ff;
    border:none;
}
.defaultPopover .popover-arrow {
    background: #eff7ff !important;
    border:none !important;
    transform: translate(130px) rotate(45deg) !important;
    width: 1em !important;
    height: 1rem !important;
    bottom: -.2rem !important;
}

.defaultPopover .popover-arrow:before,
.defaultPopover .popover-arrow:after {
    content: "";
    border:none;
}
.btn-close {
  background-image: url(closeCrossBackground.svg);
}
.form-select {
  background-image: url(selectBackground.svg);
}
a:hover {
    color: #13BFAB;
    transition: cubic-bezier(.5,0,.1,1) all 500ms;
}
a, h2, h3, h4, h5, button, .h1, .h2, .h2, .h4, .h5 {
    color: #0E215C;
    font-family: "HKNovaSemiBold";
}
h1 {
    font-family: "HKNovaBold";
}
p, span {
    color: #5B606B;
    font-family: "HKNovaRegular";
}
.btn {
    box-shadow: none;
    transition: none;
}
.btn-success {
    background-color: #13BFAB;
    border-color: #13BFAB;
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active {
    background-color: #13BFAB;
    background: linear-gradient(180deg, rgba(20,207,185,1) 0%, rgba(19,191,171,1) 70%);
    border-color: #13BFAB;
    box-shadow: 0 2px 6px 0 rgba(19,191,171,.5);
}
strong, .font-weight-bold {
    font-family: "HKNovaSemiBold";
}
.font-weight-extrabold, .text-extrabold {
    font-family: "HKNovaExtraBold";
}
.text-extralight {
    font-family: "HKNovaExtraLight";
}
.text-lightblue {
    color: #13BFAB;
}
.text-darkblue {
    color: #0E215C;
}
.text-blue {
    color: #4B8DD0;
}
.bg-lightblue {
    background-color: #EFF7FF;
}
.bg-darkblue {
    background-color: #0E215C;
}
.border-blue {
    border-color: #4B8DD0 !important;
}
.custom-accordion a.collapsed i.accordion-arrow::before {
    content: "\F0142";
}
.boxshadow {
    box-shadow: 0px 0px 22px 5px rgba(15,44,102,0.1);
    -webkit-box-shadow: 0px 0px 22px 5px rgba(15,44,102,0.1);
}
.shadow-lg {
    box-shadow: 0 20px 45px 0 rgba(0,0,0,.12) !important;
}
.table-line-bordered thead,
.table-line-bordered tbody,
.table-line-bordered tfoot,
.table-line-bordered table {
    border: none;
}
.table-line-bordered tr {
    border-width: 1px 1px;
    border-color: #edeff1;
}
.hover-bg-lightblue:hover {
    background-color: #EFF7FF;
}
/*****************************************************************/
/*                  Loader component                             */
/*****************************************************************/
.mat-loader {
    position: relative;
    margin: 0 auto;
    width: 24px;
}
.circularLoader {
    -webkit-animation: loaderRotate 2s linear infinite;
            animation: loaderRotate 2s linear infinite;
    height: 100%;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    width: 100%;
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.circularLoader .path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    -webkit-animation: loaderDash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
            animation: loaderDash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round;
    stroke: #fff;
    stroke-width: 4px;
}
@-webkit-keyframes loaderRotate {
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
/* Don't take care of vim error on the next "}" */
}
@keyframes loaderRotate {
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
@-webkit-keyframes loaderDash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
/* Don't take care of vim error on the next "}" */
}
@keyframes loaderDash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}
/* --------------------ACCUEIL-------------------- */
.mobile-menu {
    display: none;
}
.hero-section::after {
    background: url("bgtop.png") no-repeat center center/cover;
    height: 100vh;
    transform: none;
    bottom:0px;
}
.hero-section .hero-title {
    line-height: normal;
}
.bgHeader {
    background: url(wave-pattern.svg) no-repeat left -2px bottom -196px/auto 300px, url(gradient-bg-top.svg) no-repeat center center/cover;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    position:relative;
    padding-bottom: 5rem;
    overflow: hidden;
}
.bgHeader .v-viaducHome {
    position: absolute;
    bottom: -34px;
    left: 17%;
    right: 0;
    height: 125%;
}
.banner .card {
    background: linear-gradient(to right, #0E215C, #183E84);
    z-index: 1;
}
.banner h3 {
    z-index: 2;
    text-shadow: 0px 0px 10px black;
}
.banner svg {
    z-index: -1;
}
.blockquote-footer::before {
    content: none;
}

.faq {
    background:  linear-gradient(#EFF7FF, #FFFFFF);
}
.blockfooter {
    padding-top: 200px;
    padding-bottom: 150px;
}
.blockfooter a {
    font-family: "HKNovaRegular";
    color: #5B606B;
}
.blockfooter::after {
    content: " ";
    position: absolute;
    width: 100%;
    z-index: -1;
    height: 100%;
    top: 0;
    background: url("bgfooter.png") no-repeat center center/cover;
    background-position-y: inherit;
}
.btnFooter {
    text-align: right;
}
.trustpilot img, .services .marque img {
    width: 100%;
    height: auto;
}
.services .marque {
    max-width: 600px;
}

/* --------------------QSN-------------------- */
.bgHeader.qsn {
    background: url(wave-pattern.svg) no-repeat left -2px bottom -210px/auto 300px, url("top-qsn.png") no-repeat center center/cover;
    padding-bottom: 20rem;
}
.advices .imgBg {
    z-index: -1;
}
/* --------------------PAGES TYPE-------------------- */
.menu-header svg#smsIcon {
    width: 34px;
    height: 34px;
    margin-right: 6px;
}
.menu-header .white-menu svg#smsIcon path.cls-2 {
    fill: #0E215C;
}
.menu-header .white-menu a.text-darkblue:hover svg#smsIcon path.cls-2 {
    fill: #13BFAB;
    transition: cubic-bezier(.5,0,.1,1) all 500ms;
}
.hero-section.interne {
    padding: 150px 0;
}
.hero-section.interneBis::after {
    background:  linear-gradient(#EFF7FF, #FFFFFF);
    top:-200px;
}
.bg-gradient {
    background-color: #eff7ff;
}
.white-menu a {
    color: #0E215C!important;
}
.white-menu a:hover {
    color: #13BFAB!important;
    transition: cubic-bezier(.5,0,.1,1) all 500ms;
}
.white-menu a.btn {
    color: #FFFFFF!important;
}
.breadcrumb-item.active,
.breadcrumb-item + .breadcrumb-item::before,
.breadcrumb-item a {
    color:#fff;
}
.breadcrumb-item a:hover {
    color: #13BFAB!important;
    transition: cubic-bezier(.5,0,.1,1) all 500ms;
}
.white-menu .breadcrumb-item.active,
.white-menu .breadcrumb-item + .breadcrumb-item::before {
    color:#adb5bd;
}
.white-menu .breadcrumb-item a {
    color:#0E215C;
}
.white-menu .breadcrumb-item a:hover {
    color: #13BFAB!important;
    transition: cubic-bezier(.5,0,.1,1) all 500ms;
}
.quote {
    font-family: 'Newsreader', serif;
    font-size: 1.2rem;
    color: #2c8ed6;
}
.extBlockTxt img,
.extBlockTxt iframe {
    max-width: 100%;
}
/* --------------------VERIFIER-DOMAIN-------------------- */

.extension-item {
    break-inside: avoid;
    page-break-inside: avoid;
}

#extensionsModal .btn-extension {
	white-space: normal;
	word-wrap: break-word;
	overflow-wrap: break-word;
	min-height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.show-more-container {
	animation: fadeIn 0.3s ease-in;
}

.extension-item[data-hidden="true"] {
	display: none;
}

.show-more-btn {
	border-radius: 20px;
	padding: 0.5rem 1.5rem;
	font-weight: 500;
	transition: all 0.3s ease;
}

.show-more-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.show-more-btn .bi {
	transition: transform 0.3s ease;
}

.show-more-btn:hover .bi {
	transform: translateY(2px);
}

.show-more-btn .remaining-count {
	font-weight: 600;
	opacity: 0.7;
}

/* Animation pour les extensions */
.extension-item {
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.extension-item[data-hidden="true"] {
	display: none !important;
}

.extension-item:not([data-hidden]) {
	animation: slideIn 0.3s ease-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(10px) scale(0.95);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* Espacement entre les catégories d'extensions */
.extensions-category {
	margin-bottom: 1.5rem;
}

.extensions-category:last-child {
	margin-bottom: 0;
}

#preBasketContainer {
    width:100%;
    z-index:9;
}
#domainResults .list-group .list-group-item.domainLine,
#domainResultsVariants .list-group .list-group-item.domainLine {
    padding:18px 0;
}
#domainResults .list-group .list-group-item.domainLine.selectDomain,
#domainResultsVariants .list-group .list-group-item.domainLine.selectDomain {
    border-bottom: 2px solid #4B8DD0;
    padding-bottom:17px;
}
#domainResults .list-group .list-group-item:first-of-type,
#domainResultsVariants .list-group .list-group-item:first-of-type {
    border-top-width: 1px;
}
#domainResults .list-group .list-group-item:last-of-type,
#domainResultsVariants .list-group .list-group-item:last-of-type {
    border-bottom-width: 1px;
}
#domainResults .jsContentTd .mat-loader,
#domainResultsVariants .jsContentTd .mat-loader {
    display:none;
}
#domainResults .jsContentTd.loader .mat-loader,
#domainResultsVariants .jsContentTd.loader .mat-loader {
    display:block;
}
#domainResults .lineAction,
#domainResultsVariants .lineAction {
    text-align: right;
}
#domainResults .domainLinks,
#domainResultsVariants .domainLinks{
    display:none;
}
/* --------------------IDENTIFICATION-------------------- */
.cardTab .nav-item .nav-link {
    padding: 16px;
    background-color: #EFF7FF;
    color: #0E215C;
}
.cardTab .nav-item .nav-link.active {
    background-color: #FFF;
    color: #2C8ED6;
}
.cardTab .tab-content {
    padding: 2em 5em;
}
/* --------------------PANIER-------------------- */
.selectLines .border-top {
    border-top: 1px solid #eef2f7 !important;
}
/* --------------------ESPACE CLIENT-------------------- */
.connectionVCol {
    background: rgb(15,36,96);
    background: linear-gradient(0deg, rgba(15,36,96,1) 0%, rgba(33,88,166,1) 100%);
    z-index: 1;
}
.connectionVCol .row::after {
    position: absolute;
    bottom: 0;
    left: 35px;
    width: 100%;
    top: 0;
    content:" ";
    background: url("V.png") no-repeat bottom -50px center/100%;
    z-index: -1;
}
/* ==========================================================================
 *    Bandeau cookies
 * ========================================================================== */
#tarteaucitronRoot {
    display:none;
}
#tarteaucitronRoot.tarteaucitronBeforeVisible{
    display:block;
}
#tarteaucitronRoot button {
    padding: 4px 8px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 500;
}
#tarteaucitronRoot button:hover {
    background: rgba(150, 150, 150, 5%);
}
#tarteaucitronRoot #tarteaucitronAlertBig button {
    font-size: 14px;
    margin: 0 5px;
    margin-top: 1px;
    color:grey;
}
#tarteaucitronRoot #tarteaucitronAlertBig button.tarteaucitronCTAButton.tarteaucitronAllow {
    margin-right: 16px;
    margin-top: 0;
    color: #fff;
    font-size: 16px;
    float:right;
}
.tarteaucitronHidden {
    display: none;
}

/*
Bottom alert
*/
div#tarteaucitronRoot.tarteaucitronBeforeVisible::before {
    background:black !important;
}
#tarteaucitronAlertBig:before {
    content:'' !important;
}
#tarteaucitronAlertBig {
    position: fixed;
    max-width: 540px;
    min-width: auto !important;
    background-color: #fff;
    box-shadow: 0 1px 3px 0 rgb(60 64 67 / 30%), 0 4px 8px 3px rgb(60 64 67 / 15%) !important;
    z-index: 999;
    border-radius: 0 !important;
    padding:8px !important;
    padding-bottom: 24px !important;
}
#tarteaucitronDisclaimerAlert {
    display: block;
    padding: 16px 16px 60px !important;
    color: #5B606B;
    font-size: 14px;
    line-height: normal;
    margin: 0 !important;
}
#tarteaucitronRoot .tarteaucitronCTAButton, #tarteaucitronCloseAlert {
    float: left;
    margin-bottom: 8px;
    color: #727cf5;
    z-index: 100;
}
#tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronPrivacyUrl {
    position: absolute;
    bottom: 70px;
    margin: auto;
    padding: 0;
    color: grey;
    font-size: 14px;
    line-height: normal;
    left: 50%;
    transform: translate(-50%, 0%);
}
#tarteaucitronRoot #tarteaucitronPrivacyUrl:hover {
    background: transparent;
    text-decoration: underline;
}

/*
Dialog
*/
#tarteaucitron {
    position: fixed;
    display: none;
    background: #fff;
    z-index: 9999;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%);
    max-width: 96%;
    width:700px;
}
#tarteaucitronRoot #tarteaucitronClosePanel {
    position: fixed;
    top: 0px;
    right: 0px;
    padding: 8px 12px;
    color: #000;
}
#tarteaucitronRoot #tarteaucitronPrivacyUrlDialog {
    padding: 0;
    color: #5B606B;
}

/*
Services
*/
#tarteaucitronServices {
    height: auto !important;
    padding: 0;
    margin: 40px auto 0px;
    max-height: calc(90vh - 40px);
}
/* buttons */
#tarteaucitronRoot .tarteaucitronCTAButton.tarteaucitronAllow,
#tarteaucitronRoot #tarteaucitronAllAllowed {
    color: #fff;
    background-color: #727cf5;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.20);
}
#tarteaucitronRoot #tarteaucitronAllDenied {
    color: #727cf5;
}
#tarteaucitronRoot #tarteaucitronAllAllowed, #tarteaucitronRoot #tarteaucitronAllDenied {
    padding: 8px 24px;
}
#tarteaucitron ul .tarteaucitronAllow, #tarteaucitron ul .tarteaucitronDeny {
    padding: 4px 16px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    color: #727cf5;
    font-size: .875rem;
    letter-spacing: .0107142857em;
    font-weight: 500;
}
/* sections */
#tarteaucitronMainLineOffset {
    padding: 24px;
    border-bottom: 1px solid #ddd;
}
.tarteaucitronLine:not(.tarteaucitronMainLine) {
    margin: 0 24px;
    padding: 24px 0;
}
.tarteaucitronDetails.tarteaucitronInfoBox {
    display: none;
    margin: 16px 24px;
    color: #727cf5;
    font-weight: 500;
}
#tarteaucitron .tarteaucitronAsk {
    text-align:right;
}
/* spacing */
#tarteaucitronServices_mandatory .tarteaucitronAsk {
    margin-top: 0;
}
#tarteaucitronRoot #tarteaucitronServices_mandatory .tarteaucitronAsk button {
    margin-left: 0;
}
#tarteaucitron ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
#tarteaucitronRoot #tarteaucitronServicesTitle_mandatory button {
    margin-left: -8px; /* reset &nbsp; text */
}
#tarteaucitronRoot .tarteaucitronTitle button {
    padding: 8px 0;
}
li {
    margin-bottom: 0;
}
li .tarteaucitronAsk {
    margin-top: 16px;
}

.tarteaucitronTitle {
    position: sticky;
    top: 0;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 92%);
    box-shadow: 0 1px 2px 0 rgb(60 64 67 / 30%), 0 1px 3px 1px rgb(60 64 67 / 15%);
    z-index: 99;
}
.tarteaucitronTitle button {
    color: #000;
}
.tarteaucitronSelfLink {
    margin: 24px;
}
.tarteaucitronSelfLink img {
    opacity: 0.5;
}
.tarteaucitronSelfLink img:hover {
    opacity: 1;
}
ul li ul li:not(:first-child) {
    border-top: 1px solid #dadce0;
    padding-top: 16px;
}

/*
Typography
*/
.tarteaucitronH1, .tarteaucitronH2, .tarteaucitronH3 {
    display: block;
    font-weight: 500;
}
.tarteaucitronH1 {
    font-size: 24px;
}
.tarteaucitronH2 {
    font-size: 18px;
}
.tarteaucitronH3 {
    display: block;
    margin-bottom: 12px;
    margin-top: 6px
}
.tarteaucitronName {
    color: #3c4043;
    letter-spacing: .01428571em;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.25rem;
    margin: 8px 0;
}
.tarteaucitronName .tarteaucitron-toggle-group {
    color: #727cf5;
    font-size:14px;
}
.tarteaucitronName a {
    color: #727cf5;
    text-decoration: none;
}
.tarteaucitronName a:hover {
    text-decoration: underline;
}

/*
button coloration
*/
.tarteaucitronIsDenied .tarteaucitronDeny {
    background-color: #fa5c7c !important;
    color: #fff !important;
}
.tarteaucitronIsAllowed .tarteaucitronAllow {
    background-color: #13BFAB !important;
    color: #fff !important;
}

/*
Media queries
*/
@media screen and (max-width: 900px) {
    #tarteaucitronRoot div#tarteaucitronAlertBig button {
        margin: 0 8px 0 !important;
    }
    #tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronPrivacyUrl {
        margin: auto !important;
    }
}

@media screen and (max-width: 741px) {
    body #tarteaucitronRoot div#tarteaucitronAlertBig {
        display: flex !important; flex-direction: column;
    }
    #tarteaucitronRoot div#tarteaucitronAlertBig button {
        float: none;
    }
    #tarteaucitronRoot div#tarteaucitronAlertBig button#tarteaucitronAllDenied2 {
        order: 3;
    }
    #tarteaucitronRoot div#tarteaucitronAlertBig button#tarteaucitronPersonalize2 {
        order: 4;
    }
    #tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronPrivacyUrl {
        bottom: 130px;
    }
}
/* --------------------RESPONSIVE-------------------- */
@media (max-width: 1700px) {
    .hero-section.interne {
        padding-top: 0;
    }
}

@media (min-width: 1200px) {
    h1 {
        font-size: 3.2rem;
    }
    h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 1200px) {
    .banner svg {
        zoom: 2;
        -moz-transform: scale(2);
    }
}

/* @media (max-width: 1024px) {
} */

@media (max-width: 991px) {
    .navbar-dark .navbar-nav .nav-link {
        color: white;
    }
    .headerContent {
        min-width: 100%;
    }
    .blockfooter {
        padding-bottom: 50px;
    }
    .btnFooter {
        top: -35px;
        text-align: center;
    }
    .rights {
        top: 35px;
        text-align: center;
    }
    .hero-section, .blockfooter {
        margin: 0!important;
    }
    .hero-section::after {
        top: -375px;
        background-position-x: -90px;
    }
    .mobile-menu {
        display: block;
    }
    .web-menu {
        display: none;
    }
    .menu-header {
        margin-top: 20px;
    }
    .navbar-dark .navbar-toggler {
        color: #FFFFFF;
    }
    .navbar-dark .navbar-toggler.dark {
        color: #0E215C;
    }
    .right-menu {
        display: none;
    }
    .quote {
        font-size: 0.9rem;
    }
    .tunnelSteps .step:not(.active) {
        display:none !important;
    }

    .custom-modal .feature-icon {
        width: 35px;
        height: 35px;
    }
    .search-bar-container {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 768px) {
    .bgHeader.qsn {
        padding-bottom: 5rem;
    }
    .testimony .container {
        margin: 0;
        max-width: 100%;
    }
    .navbar-dark .navbar-nav .nav-link {
        color: #FFFFFF;
    }
    .banner {
        padding: 0!important;
    }
    .footer-description {
        margin-right: 0!important;
    }
    /* --------------------PANIER-------------------- */
    .selectLines .mobileBorder {
        border-bottom: 1px solid #eef2f7 !important;
    }
}

@media (max-width: 480px) {
    .margin-mobile {
        margin: 0!important;
    }
}

/* Responsive : assurer une taille confortable sur mobile */
@media (max-width: 767px) {
    #suggestionsForm .form-control {
        font-size: 1.1rem !important;
        padding: 0.75rem 1rem !important;
        min-height: 50px !important;
    }

    #suggestionsForm .form-label {
        font-size: 1.1rem !important;
        margin-bottom: 0.6rem !important;
    }
}

/* "Voir plus" */
@media (max-width: 767px) {
	.show-more-btn {
		font-size: 0.85rem;
		padding: 0.4rem 1.2rem;
	}

	.extensions-category {
		margin-bottom: 1rem;
	}
}

/* Responsive pour les boutons d'extensions */
@media (max-width: 767px) {
    .btn-extension {
        font-size: 0.85rem !important;
        padding: 0.5rem 0.25rem !important;
    }

    /* Mobile : 3 colonnes par ligne */
    .popular-extensions .d-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* Très petits écrans : 2 colonnes par ligne */
@media (max-width: 480px) {
    .popular-extensions .d-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
