/*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*\
|||||  Web Agency SC-CONCEPTION ---------------------- sc-conception.com  |||||
|||||  Powered by cms Iminence.com software --------------- iminence.com  |||||
\*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/
/* =========================
   COMMON / GLOBAL
   Chargé sur toutes les pages
========================= */
/* ---------- Variables ---------- */
:root {
  --sidebar-width: 290px;
  --nature-900: #1f2a1f;
  --nature-800: #263326;
  --nature-700: #314231;
  --nature-600: #496349;
  --sand-100: #f7f3ee;
  --sand-200: #efe7dc;
  --sand-300: #e4d7c6;
  --gold-400: #c8a977;
  --gold-500: #b7925f;
  --text-900: #182018;
  --text-700: #485448;
  --text-500: #6d786d;
  --white: #ffffff;
  --sidebar-bg: rgba(24, 32, 24, 0.92);
  --sidebar-border: rgba(255, 255, 255, 0.08);
  --sidebar-link: rgba(255, 255, 255, 0.72);
  --sidebar-link-hover: #ffffff;
  --sidebar-link-active-bg: rgba(200, 169, 119, 0.16);
  --sidebar-link-active-border: rgba(200, 169, 119, 0.52);
  --sidebar-link-active-text: #f7e7c8;
  --scrollbar-track: #ebe6de;
  --shadow-soft: 0 20px 60px rgba(19, 28, 19, 0.1);
  --shadow-card: 0 24px 70px rgba(18, 27, 18, 0.12);
  --shadow-hover: 0 28px 90px rgba(18, 27, 18, 0.18);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --transition-base: .35s ease;
  --transition-slow: .8s ease;
}
/* ---------- Base ---------- */
html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #6f896f var(--scrollbar-track);
}
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-900);
  background: #f6f4ef;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
.section-title {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.02em;
}
p,
li,
input,
textarea,
button,
a {
  font-family: 'Inter', sans-serif;
}
a {
  text-decoration: none;
  transition: color var(--transition-base), background var(--transition-base), border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #8fa48f 0%, #496349 100%);
  border-radius: 999px;
  border: 2px solid var(--scrollbar-track);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #b7925f 0%, #5d775d 100%);
}
::-webkit-scrollbar-corner {
  background: var(--scrollbar-track);
}
/* ---------- Layout principal ---------- */
main.main {
  position: relative;
  min-height: 100vh;
  width: 100%;
}
main.main .container {
  width: 100%;
  max-width: 1320px;
  padding-left: 34px;
  padding-right: 34px;
}
@media (min-width: 1600px) {
  main.main .container {
    max-width: 1440px;
  }
}
@media (min-width: 992px) {
  .sidebar {
    display: flex;
    width: var(--sidebar-width);
  }
  .mobile-topbar {
    display: none !important;
  }
  main.main {
    margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
  }
}
@media (max-width: 991.98px) {
  .sidebar,
  .sidebar:before,
  .sidebar:after {
    display: none !important;
  }
  .mobile-topbar {
    display: flex !important;
  }
  main.main {
    margin-left: 0;
    width: 100%;
  }
  main.main .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* ---------- Header / navigation commun ---------- */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1040;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 22px;
  background: linear-gradient(180deg, rgba(20, 28, 20, 0.94) 0%, rgba(31, 42, 31, 0.92) 100%);
  border-right: 1px solid var(--sidebar-border);
  backdrop-filter: blur(18px);
  box-shadow: 12px 0 40px rgba(0, 0, 0, 0.08);
}
.sidebar:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 100%);
}
.sidebar-brand {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 18px;
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
}
.sidebar-brand span {
  display: block;
  margin-top: 10px;
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.sidebar-brand:after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c8a977, rgba(200, 169, 119, 0));
}
.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sidebar-nav .nav-link {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: .98rem;
  font-weight: 600;
  color: var(--sidebar-link);
}
.sidebar-nav .nav-link:hover {
  color: var(--sidebar-link-hover);
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(4px);
}
.sidebar-nav .nav-link.active {
  color: var(--sidebar-link-active-text);
  background: var(--sidebar-link-active-bg);
  border: 1px solid var(--sidebar-link-active-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.sidebar-nav .nav-link.active:before {
  content: "";
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d8bb8b 0%, #b7925f 100%);
}
.sidebar-footer {
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.62);
  font-size: .93rem;
  line-height: 1.75;
}
.sidebar-footer i {
  color: #d7bc91;
  margin-right: 6px;
}
/* ---------- Topbar mobile / offcanvas ---------- */
.mobile-topbar {
  position: sticky;
  top: 0;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(20, 28, 20, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}
.mobile-topbar .btn {
  border-radius: 12px;
}
.offcanvas.offcanvas-start {
  background: linear-gradient(180deg, rgba(20, 28, 20, 0.98) 0%, rgba(31, 42, 31, 0.98) 100%);
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.offcanvas .nav-link {
  border-radius: 12px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 600;
}
.offcanvas .nav-link:hover,
.offcanvas .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
/* ---------- Footer commun ---------- */
footer {
  position: relative;
  padding: 28px 0;
  background: linear-gradient(180deg, #1f2a1f 0%, #182018 100%);
  color: rgba(255, 255, 255, 0.76);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
footer .footer-link-facebook {
  color: #fff;
  border-radius: .5rem;
  padding: 1rem 1rem;
  font-weight: bold;
  box-shadow: 0 0px 10px #000000;
  background: linear-gradient(0deg, #0866ff, #1e4f9d);
  -webkit-transition: all 333ms ease-out;
  -moz-transition: all 333ms ease-out;
  -o-transition: all 333ms ease-out;
  transition: all 333ms ease-out;
}
footer .footer-link-facebook:hover {
  background: linear-gradient(90deg, #0866ff, #1e4f9d);
}
footer p {
  margin-bottom: 0;
  font-size: .95rem;
}
.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-legal-links li {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.footer-legal-links li:not(:last-child):after {
  content: "";
  width: 4px;
  height: 4px;
  margin-left: 18px;
  border-radius: 999px;
  background: rgba(200, 169, 119, 0.75);
}
.footer-legal-links a {
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}
.footer-legal-links a:hover {
  color: #f7e7c8;
}
.footer-ajax-modal .modal-content {
  border: 1px solid rgba(200, 169, 119, 0.22);
  border-radius: var(--radius-lg);
  background: #f7f3ee;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.footer-ajax-modal .modal-header {
  padding: 20px 24px;
  background: linear-gradient(135deg, #1f2a1f 0%, #314231 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-ajax-modal .modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
}
.footer-ajax-modal .btn-close {
  filter: invert(1) grayscale(100%);
  opacity: .8;
}
.footer-ajax-modal .modal-body {
  padding: 26px;
  color: var(--text-700);
  line-height: 1.75;
}
.footer-ajax-modal .modal-body h1,
.footer-ajax-modal .modal-body h2,
.footer-ajax-modal .modal-body h3,
.footer-ajax-modal .modal-body h4 {
  color: var(--nature-900);
}
.footer-modal-loader,
.footer-modal-error {
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(31, 42, 31, 0.06);
  border: 1px solid rgba(31, 42, 31, 0.1);
  color: var(--text-700);
}
.footer-modal-error strong {
  display: block;
  margin-bottom: 6px;
  color: var(--nature-900);
}
.footer-modal-error p {
  margin: 0;
}
@media (max-width: 991.98px) {
  footer {
    text-align: center;
  }
  .footer-legal-links {
    gap: 8px 14px;
  }
  .footer-legal-links li:not(:last-child):after {
    display: none;
  }
}
/* ---------- Helpers globaux ---------- */
.section {
  position: relative;
  padding: 110px 0;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--nature-900);
}
.section-subtitle {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text-700);
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(31, 42, 31, 0.06);
  border: 1px solid rgba(31, 42, 31, 0.1);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--nature-700);
}
.reveal-on-scroll {
  transform: translateY(40px) scale(0.985);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.65, 0.2, 1);
}
.reveal-on-scroll.is-visible {
  opacity: 1;
}
.reveal-delay-1 {
  transition-delay: .08s;
}
.reveal-delay-2 {
  transition-delay: .16s;
}
.reveal-delay-3 {
  transition-delay: .24s;
}
.reveal-delay-4 {
  transition-delay: .32s;
}
@media (max-width: 991.98px) {
  .section {
    padding: 88px 0;
  }
}
/* ---------- Modal connexion / formulaire utilisateur ---------- */
/*
   Bloc ajouté sans changer la structure HTML existante.
   Il cible le modal global Bootstrap et le formulaire #DialogFormLogin.
*/
#modal #DialogFormLogin {
  background: linear-gradient(180deg, #fffaf3 0%, var(--sand-100) 100%);
}
#modal .modal-header {
  background: rgba(31, 42, 31, 0.94);
  color: #fff;
  box-shadow: 0 24px 80px rgba(24, 32, 24, 0.18);
}
#modal #DialogFormLogin {
  position: relative;
  padding: 0;
}
#modal #DialogFormLogin .modal-header,
#modal #DialogFormLogin header {
  position: relative;
  padding: 30px 32px 18px;
  background: radial-gradient(circle at top left, rgba(200, 169, 119, 0.24), transparent 38%), linear-gradient(135deg, var(--nature-900) 0%, var(--nature-700) 100%);
  border: 0;
  color: #fff;
}
#modal #DialogFormLogin .modal-title,
#modal #DialogFormLogin h1,
#modal #DialogFormLogin h2,
#modal #DialogFormLogin h3 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}
#modal #DialogFormLogin .modal-header p,
#modal #DialogFormLogin header p {
  max-width: 380px;
  margin: 10px 0 0;
  font-size: .96rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}
#modal #DialogFormLogin .btn-close,
#modal #DialogFormLogin .close-dialog {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  opacity: 1;
  transition: var(--transition-base);
}
#modal #DialogFormLogin .btn-close:hover,
#modal #DialogFormLogin .close-dialog:hover {
  background-color: rgba(255, 255, 255, 0.22);
  transform: rotate(6deg) scale(1.04);
}
#modal #DialogFormLogin .block-login + .block-lost-password {
  padding-top: 0;
}
#modal #DialogFormLogin .form-group,
#modal #DialogFormLogin .mb-3 {
  position: relative;
  margin-bottom: 18px;
}
#modal #DialogFormLogin label {
  display: block;
  margin-bottom: 8px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--nature-700);
}
#modal #DialogFormLogin .input-group {
  position: relative;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(24, 32, 24, 0.07);
}
#modal #DialogFormLogin .input-group-text {
  min-width: 52px;
  justify-content: center;
  border: 1px solid rgba(49, 66, 49, 0.12);
  border-right: 0;
  border-radius: 18px 0 0 18px;
  background: rgba(31, 42, 31, 0.045);
  color: var(--gold-500);
}
#modal #DialogFormLogin .form-control,
#modal #DialogFormLogin input[type="text"],
#modal #DialogFormLogin input[type="email"],
#modal #DialogFormLogin input[type="password"] {
  height: 54px;
  border: 1px solid rgba(49, 66, 49, 0.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(24, 32, 24, 0.07);
  font-size: .98rem;
  font-weight: 600;
  color: var(--text-900);
  padding: 0 18px;
  transition: var(--transition-base);
}
#modal #DialogFormLogin .input-group .form-control {
  border-left: 0;
  border-radius: 0 18px 18px 0;
  box-shadow: none;
}
#modal #DialogFormLogin .form-control::placeholder,
#modal #DialogFormLogin input::placeholder {
  color: rgba(72, 84, 72, 0.55);
  font-weight: 500;
}
#modal #DialogFormLogin .form-control:focus,
#modal #DialogFormLogin input[type="text"]:focus,
#modal #DialogFormLogin input[type="email"]:focus,
#modal #DialogFormLogin input[type="password"]:focus {
  border-color: rgba(183, 146, 95, 0.68);
  box-shadow: 0 0 0 4px rgba(200, 169, 119, 0.18), 0 16px 36px rgba(24, 32, 24, 0.1);
}
#modal #DialogFormLogin .input-group:focus-within .input-group-text {
  border-color: rgba(183, 146, 95, 0.68);
  background: rgba(200, 169, 119, 0.13);
  color: var(--nature-800);
}
#modal #DialogFormLogin .btn,
#modal #DialogFormLogin button {
  min-height: 50px;
  border-radius: 16px;
  font-weight: 800;
  letter-spacing: .03em;
  box-shadow: none;
  transition: var(--transition-base);
}
#modal #DialogFormLogin .btn-primary,
#modal #DialogFormLogin #submit {
  width: 100%;
  border: 0;
  background: linear-gradient(135deg, var(--nature-800) 0%, var(--nature-600) 100%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(31, 42, 31, 0.22);
}
#modal #DialogFormLogin .btn-primary:hover,
#modal #DialogFormLogin #submit:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--nature-900) 0%, var(--nature-700) 100%);
  box-shadow: 0 20px 44px rgba(31, 42, 31, 0.28);
}
#modal #DialogFormLogin .btn-secondary,
#modal #DialogFormLogin .btn-outline-secondary,
#modal #DialogFormLogin #submitLost {
  border: 1px solid rgba(183, 146, 95, 0.36);
  background: rgba(200, 169, 119, 0.12);
  color: var(--nature-800);
}
#modal #DialogFormLogin .btn-secondary:hover,
#modal #DialogFormLogin .btn-outline-secondary:hover,
#modal #DialogFormLogin #submitLost:hover {
  transform: translateY(-2px);
  background: rgba(200, 169, 119, 0.2);
  border-color: rgba(183, 146, 95, 0.55);
}
#modal #DialogFormLogin a,
#modal #DialogFormLogin .lost-password-link {
  font-weight: 700;
  color: var(--nature-700);
  text-decoration: none;
}
#modal #DialogFormLogin a:hover,
#modal #DialogFormLogin .lost-password-link:hover {
  color: var(--gold-500);
}
#modal #DialogFormLogin .block-lost-password {
  margin: 0 32px 32px;
  padding: 22px;
  border: 1px solid rgba(49, 66, 49, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
}
#modal #DialogFormLogin .alert,
#modal #DialogFormLogin .form-alert {
  border: 0;
  border-radius: 16px;
  background: rgba(200, 169, 119, 0.14);
  color: var(--nature-800);
  font-weight: 600;
}
@media (max-width: 575.98px) {
  #modal .modal-dialog:has(#DialogFormLogin) {
    margin: 14px;
  }
  #modal #DialogFormLogin .modal-header,
  #modal #DialogFormLogin header,
  #modal #DialogFormLogin .modal-body,
  #modal #DialogFormLogin section,
  #modal #DialogFormLogin .block-login {
    padding-left: 22px;
    padding-right: 22px;
  }
  #modal #DialogFormLogin .block-lost-password {
    margin-left: 22px;
    margin-right: 22px;
  }
}
/* ==========================================================================
   Modal espace client
   ========================================================================== */
#modalCustomerAccount.customer-account-modal .customer-account-header {
  background: linear-gradient(135deg, rgba(122, 15, 15, 0.96), #440808);
  color: #ffffff;
  border: 0;
  padding: 26px 30px;
  align-items: flex-start;
}
#modalCustomerAccount.customer-account-modal .customer-account-header .customer-account-kicker {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}
#modalCustomerAccount.customer-account-modal .customer-account-header .modal-title {
  margin: 0;
  font-weight: 800;
  font-size: 24px;
}
#modalCustomerAccount.customer-account-modal .customer-account-header p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
}
#modalCustomerAccount.customer-account-modal .customer-account-header .customer-account-close {
  color: #ffffff;
  opacity: .9;
  text-shadow: none;
  font-size: 30px;
  margin-top: -6px;
}
#modalCustomerAccount.customer-account-modal .customer-account-body {
  background: #f7f3ef;
  padding: 22px;
}
#modalCustomerAccount.customer-account-modal .customer-account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
#modalCustomerAccount.customer-account-modal .customer-account-card {
  background: #fff;
  border: 1px solid rgba(122, 15, 15, 0.12);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}
#modalCustomerAccount.customer-account-modal .customer-account-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #7a0f0f;
  font-weight: 800;
}
#modalCustomerAccount.customer-account-modal .customer-account-card-title i {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(122, 15, 15, 0.1);
}
#modalCustomerAccount.customer-account-modal .customer-account-profile {
  background: linear-gradient(180deg, #ffffff 0%, #fff9f3 100%);
}
#modalCustomerAccount.customer-account-modal .customer-account-identity {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}
#modalCustomerAccount.customer-account-modal .customer-account-identity strong {
  font-size: 19px;
  color: #3d3d3d;
}
#modalCustomerAccount.customer-account-modal .customer-account-identity span {
  color: #757575;
}
#modalCustomerAccount.customer-account-modal .customer-account-list {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 8px 12px;
  margin: 0;
}
#modalCustomerAccount.customer-account-modal .customer-account-list dt {
  color: #7d7d7d;
  font-weight: 600;
}
#modalCustomerAccount.customer-account-modal .customer-account-list dd {
  margin: 0;
  font-weight: 700;
  color: #3d3d3d;
}
#modalCustomerAccount.customer-account-modal .customer-account-info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}
#modalCustomerAccount.customer-account-modal .customer-account-info-list div {
  padding: 10px 12px;
  border-radius: 12px;
  background: #f8f8f8;
}
#modalCustomerAccount.customer-account-modal .customer-account-info-list span {
  display: block;
  font-size: 12px;
  color: #7d7d7d;
}
#modalCustomerAccount.customer-account-modal .customer-account-info-list strong {
  color: #3d3d3d;
}
#modalCustomerAccount.customer-account-modal .customer-account-address {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 15px;
  color: #3d3d3d;
}
#modalCustomerAccount.customer-account-modal .customer-account-address span {
  color: #6b6b6b;
}
#modalCustomerAccount.customer-account-modal .customer-account-booking {
  grid-column: -1;
}
#modalCustomerAccount.customer-account-modal .customer-booking-resume {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 15px;
}
#modalCustomerAccount.customer-account-modal .customer-booking-reference,
#modalCustomerAccount.customer-account-modal .customer-booking-dates > div {
  padding: 14px;
  border-radius: 14px;
  background: #f8f8f8;
}
#modalCustomerAccount.customer-account-modal .customer-booking-reference span,
#modalCustomerAccount.customer-account-modal .customer-booking-dates > div span {
  display: block;
  font-size: 12px;
  color: #7d7d7d;
}
#modalCustomerAccount.customer-account-modal .customer-booking-reference strong,
#modalCustomerAccount.customer-account-modal .customer-booking-dates > div strong {
  color: #3d3d3d;
  font-size: 16px;
}
#modalCustomerAccount.customer-account-modal .customer-booking-dates {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
#modalCustomerAccount.customer-account-modal .customer-account-empty,
#modalCustomerAccount.customer-account-modal .customer-account-help {
  margin: 0 0 14px;
  color: #757575;
}
#modalCustomerAccount.customer-account-modal .customer-account-help {
  margin-top: 10px;
  font-size: 13px;
}
#modalCustomerAccount.customer-account-modal .btn {
  border-radius: 999px;
  font-weight: 700;
}
#modalCustomerAccount.customer-account-modal .btn-outline-primary {
  border-color: #7a0f0f;
  color: #7a0f0f;
}
#modalCustomerAccount.customer-account-modal .btn-outline-primary:hover,
#modalCustomerAccount.customer-account-modal .btn-outline-primary:focus {
  background: #7a0f0f;
  color: #ffffff;
}
#modalCustomerAccount.customer-account-modal .customer-account-footer {
  background: #fff;
  border-top: 1px solid rgba(122, 15, 15, 0.12);
  padding: 16px 22px;
}
@media (max-width: 767px) {
  #modalCustomerAccount.customer-account-modal .customer-account-grid,
  #modalCustomerAccount.customer-account-modal .customer-booking-resume,
  #modalCustomerAccount.customer-account-modal .customer-booking-dates {
    grid-template-columns: 1fr;
  }
  #modalCustomerAccount.customer-account-modal .customer-account-booking {
    grid-column: auto;
  }
  #modalCustomerAccount.customer-account-modal .customer-account-header {
    padding: 22px 20px;
  }
  #modalCustomerAccount.customer-account-modal .customer-account-body {
    padding: 16px;
  }
}
/*
Pour créer un effet de trois petits points clignotants en CSS, vous pouvez utiliser des animations CSS. Voici un exemple de classe CSS qui crée cet effet :
*/
@keyframes blink {
  0% {
    opacity: 0%;
  }
  50% {
    opacity: 100%;
  }
  100% {
    opacity: 0%;
  }
}
.blinking-dot-white {
  display: inline-block;
  margin-right: 1px;
  width: 3px;
  height: 3px;
  background-color: #fff;
  border-radius: 50%;
  animation: blink 1s infinite;
}
.blinking-dot-black {
  display: inline-block;
  margin-right: 1px;
  width: 3px;
  height: 3px;
  background-color: #000;
  border-radius: 50%;
  animation: blink 1s infinite;
}
b,
strong {
  font-weight: bold;
}
select option[disabled] {
  color: #aaa;
  font-style: italic;
  font-weight: 100;
}
a,
.open-dialog,
.open-dialog-alert,
.close-dialog-alert {
  cursor: pointer;
}
.text-justify {
  text-align: justify;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.block-html img.fr-fil:not(.fr-tni),
.block-html img.fr-tag.fr-fil:not(.fr-tni) {
  float: left;
}
.block-html img.fr-fil,
.block-html img.fr-tag.fr-fil {
  z-index: 1;
  position: relative;
  vertical-align: top;
  display: block;
  margin: auto;
  overflow: auto;
  padding: 10px 10px 10px 3px;
}
.block-html img.fr-fir,
.block-html img.fr-tag.fr-fir {
  z-index: 1;
  position: relative;
  vertical-align: top;
  display: block;
  margin: auto;
  overflow: auto;
  padding: 10px 3px 10px 10px;
}
.block-html img.fr-fir:not(.fr-tni),
.block-html img.fr-tag.fr-fir:not(.fr-tni) {
  float: right;
}
@media (min-width: 0px) AND (max-width: 576px) {
  .col-xs-0 {
    display: none !important;
  }
}
@media (min-width: 576px) AND (max-width: 768px) {
  .col-sm-0 {
    display: none !important;
  }
}
@media (min-width: 768px) AND (max-width: 992px) {
  .col-md-0 {
    display: none !important;
  }
}
@media (min-width: 992px) AND (max-width: 1200px) {
  .col-lg-0 {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .col-xl-0 {
    display: none !important;
  }
}
html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}
body,
p,
blockquote,
a {
  font-family: 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
}
a:focus,
a:hover {
  text-decoration: none;
}
.hide {
  display: none;
}
.computer-hide {
  display: none;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}
.truncate-text {
  white-space: nowrap;
  /* Empêche le retour à la ligne */
  overflow: hidden;
  /* Masque le contenu débordant */
  text-overflow: ellipsis;
  /* Ajoute les trois petits points (...) à la fin du contenu */
}
.block-editor > .contents {
  border: 1px dashed rgba(145, 145, 145, 0);
  margin: -1px;
  -webkit-transition: all 333ms ease-out;
  -moz-transition: all 333ms ease-out;
  -o-transition: all 333ms ease-out;
  transition: all 333ms ease-out;
}
.block-editor > .contents-button {
  height: 30px;
}
.block-editor > .contents-button > .button-save {
  float: right;
  margin-top: -35px;
  margin-right: -1px;
  opacity: 0;
  -webkit-transition: all 333ms ease-out;
  -moz-transition: all 333ms ease-out;
  -o-transition: all 333ms ease-out;
  transition: all 333ms ease-out;
}
.block-editor > .contents-button > .button-save:hover,
.block-editor > .contents-button > .button-save:focus,
.block-editor > .contents-button > .button-save:active {
  margin-top: 0px;
  opacity: 1;
}
.block-editor:hover > .contents,
.block-editor:focus > .contents,
.block-editor.active > .contents {
  border: 1px dashed rgba(145, 145, 145, 0.5);
  margin: -1px;
}
.block-editor:hover > .contents-button > .button-save,
.block-editor:focus > .contents-button > .button-save,
.block-editor.active > .contents-button > .button-save {
  margin-top: 0px;
  opacity: 1;
}
.block-html > .froala_box > .froala_element {
  min-height: initial !important;
}
.main {
  opacity: 0%;
  -webkit-transition: all 333ms ease-out;
  -moz-transition: all 333ms ease-out;
  -o-transition: all 333ms ease-out;
  transition: all 333ms ease-out;
}
.main > .dialog-alert {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: -260px;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  width: 0;
  -webkit-transition: all 333ms ease-out;
  -moz-transition: all 333ms ease-out;
  -o-transition: all 333ms ease-out;
  transition: all 333ms ease-out;
}
.main > .dialog-alert > .dialog-alert-content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
  min-height: 150px;
  min-width: 250px;
  max-width: 500px;
  margin: auto;
  box-shadow: 0px 10px 10px 0px #000, inset 0px 0px 5px 4px #fff;
  padding: 25px;
}
.main > .dialog-alert > .dialog-alert-content > header {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 20px 0;
  padding: 0 0 10px 0;
  border-bottom: 2px solid #fff;
  text-align: center;
}
.main > .dialog-alert > .dialog-alert-content > section {
  font-size: 16px;
  margin: 0 0 20px 0;
  text-align: center;
}
.main > .dialog-alert > .dialog-alert-content > footer .btn {
  border-radius: 0;
  font-weight: bold;
}
.main > .dialog-alert.dialog-alert-danger > .dialog-alert-content {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.main > .dialog-alert.dialog-alert-success > .dialog-alert-content {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.main > .dialog-alert.dialog-alert-warning > .dialog-alert-content {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.main > .dialog-alert.dialog-alert-info > .dialog-alert-content {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}
.main > .dialog-alert.open {
  left: 0;
  opacity: 1;
  width: 100%;
}
.main > .main-section > .section-center > .block-page > .page-header.is-editable > h1 > span {
  font-size: .7rem;
  position: absolute;
  color: #069;
  background-color: #fff;
  border-radius: 25px;
  padding: .25rem;
  border: solid 1px #ccc;
  margin: 0 0 0 .25rem;
  opacity: 0;
  -webkit-transition: all 333ms ease-out;
  -moz-transition: all 333ms ease-out;
  -o-transition: all 333ms ease-out;
  transition: all 333ms ease-out;
}
.main > .main-section > .section-center > .block-page > .page-header.is-editable:hover {
  cursor: pointer;
  text-decoration: underline;
}
.main > .main-section > .section-center > .block-page > .page-header.is-editable:hover > h1 > span {
  opacity: 1;
}
.main > .main-section > .section-center > .block-page > .page-wrapper {
  display: table;
}
.main > .main-section > .section-center > .block-page > .page-wrapper > .wrapper-content {
  float: left;
  width: 62%;
  padding-right: 30px;
}
.main > .main-section > .section-center > .block-page > .page-wrapper > .wrapper-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 30px;
  float: left;
  width: 38%;
}
.main > .main-footer > .footer-section > .section-footer .block-copyright {
  font-size: x-small;
  font-weight: 600;
  color: #000;
  padding: 5px 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.main > .main-footer > .footer-section > .section-footer .block-copyright a {
  font-size: x-small;
  font-weight: 600;
  -webkit-transition: all 333ms ease-out;
  -moz-transition: all 333ms ease-out;
  -o-transition: all 333ms ease-out;
  transition: all 333ms ease-out;
}
.main > .main-footer > .footer-section > .section-footer .block-copyright a > img.logo-cms {
  width: 40px;
  float: left;
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #000;
  -webkit-transition: all 333ms ease-out;
  -moz-transition: all 333ms ease-out;
  -o-transition: all 333ms ease-out;
  transition: all 333ms ease-out;
}
.main > .main-footer > .footer-section > .section-footer .block-copyright a > img.logo-cms:hover {
  filter: invert(1);
}
.main > .main-footer > .footer-section > .section-footer .block-legal-obligations {
  font-size: x-small;
  font-weight: 600;
  color: #000;
  padding: 5px 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-align: right;
}
.main > .main-footer > .footer-section > .section-footer .block-legal-obligations > span {
  width: 30px;
  float: right;
  padding: 5px 5px 5px 5px;
  background-color: #006395;
  margin: 0 0 0 15px;
  cursor: pointer;
  -webkit-transition: all 333ms ease-out;
  -moz-transition: all 333ms ease-out;
  -o-transition: all 333ms ease-out;
  transition: all 333ms ease-out;
}
.main > .main-footer > .footer-section > .section-footer .block-legal-obligations > span > img {
  width: 100%;
  filter: invert(1);
  -webkit-transition: all 333ms ease-out;
  -moz-transition: all 333ms ease-out;
  -o-transition: all 333ms ease-out;
  transition: all 333ms ease-out;
}
.main > .main-footer > .footer-section > .section-footer .block-legal-obligations > span:hover {
  filter: invert(1);
}
.main > .main-footer > .footer-section > .section-footer .block-legal-obligations a {
  font-size: x-small;
  font-weight: 600;
  -webkit-transition: all 333ms ease-out;
  -moz-transition: all 333ms ease-out;
  -o-transition: all 333ms ease-out;
  transition: all 333ms ease-out;
}
.main.is-loaded {
  opacity: 100%;
}
.chat-online {
  position: fixed;
  z-index: 10000;
  bottom: 20px;
  right: 20px;
}
.chat-online > .co-btn-open {
  width: 80px;
  height: 80px;
  background-color: #7a0f0f;
  border-radius: 100%;
  line-height: 100px;
  text-align: center;
  box-shadow: 0px 1px 0px 1px #ffffff, 0px 1px 10px -2px #ffffff;
  cursor: pointer;
}
.chat-online > .co-btn-open > i {
  font-size: 3rem;
  color: #ffffff;
}
.chat-online > form > .card {
  box-shadow: 0 0 0 2px #a3a3a3, 0 -5px 20px -5px black;
  border: none;
  border-radius: 0;
  width: 400px;
}
.chat-online > form > .card > .card-header {
  background-color: #7a0f0f;
  color: #ffffff;
  padding: 0.5rem;
  border-radius: 0;
}
.chat-online > form > .card > .card-header > button.co-btn-close {
  float: right;
  border: none;
  background-color: #7a0f0f;
  border-radius: 0;
  padding: 0 0.25rem;
  -webkit-transition: all 333ms ease-out;
  -moz-transition: all 333ms ease-out;
  -o-transition: all 333ms ease-out;
  transition: all 333ms ease-out;
}
.chat-online > form > .card > .card-header > button.co-btn-close > i {
  color: #ffffff;
  -webkit-transition: all 333ms ease-out;
  -moz-transition: all 333ms ease-out;
  -o-transition: all 333ms ease-out;
  transition: all 333ms ease-out;
}
.chat-online > form > .card > .card-header > button.co-btn-close:hover {
  background-color: #fff;
}
.chat-online > form > .card > .card-header > button.co-btn-close:hover > i {
  color: #000;
}
.chat-online > form > .card > .card-header > span.icon-support {
  float: left;
  margin-right: 0.5rem;
}
.chat-online > form > .card > .card-body {
  height: 400px;
  overflow-x: hidden;
  overflow-y: scroll;
  padding: 0.5rem;
  background-color: #f0f0f0;
}
.chat-online > form > .card > .card-body > .message {
  background-color: #fff;
  border-radius: 1rem;
  padding: 1rem;
  max-width: 80%;
  box-shadow: 1px 1px 4px -2px #7a0f0f;
}
.chat-online > form > .card > .card-body > .message > .caption > p {
  margin: 0;
  font-size: .8rem;
}
.chat-online > form > .card > .card-body > .message > .caption > p > b {
  color: #7a0f0f;
}
.chat-online > form > .card > .card-body > .message > .caption > time {
  font-size: 0.7rem;
  text-transform: uppercase;
  opacity: 75%;
}
.chat-online > form > .card > .card-body > .message.message-support {
  margin: 0 0 1rem auto;
}
.chat-online > form > .card > .card-body > .message.message-visitor {
  margin: 0 auto 1rem 0;
}
.chat-online > form > .card > .card-footer {
  padding: 0.5rem;
  border: none;
  background-color: #a3a3a3;
  border-radius: 0;
}
.chat-online > form > .card > .card-footer > .input-group > .form-control {
  font-size: 0.9rem;
  border: none;
  border-radius: 0;
}
.chat-online > form > .card > .card-footer > .input-group > .input-group-append > button.btn {
  background-color: #7a0f0f;
  font-size: 0.9rem;
  border: none;
  border-radius: 0;
}
.chat-online > form > .card > .card-footer > .input-group > .input-group-append > button.btn > i {
  font-size: 0.9rem;
  color: #ffffff;
}
.chat-online.is-closed > form {
  display: none;
  pointer-events: none;
}
.chat-online.is-closed > .co-btn-open {
  display: block;
}
.chat-online.is-opened > form {
  display: block;
  pointer-events: inherit;
}
.chat-online.is-opened > .co-btn-open {
  display: none;
}
/* 
For Mobile 
Lorsque l'écran (fenêtre du navigateur) devient plus petit que 768 pixels :
*/
@media screen and (max-width: 768px) {
  .main .main-section .section-center .block-page > .page-wrapper > .wrapper-content {
    float: inherit !important;
    width: 100% !important;
    padding: 0 !important;
  }
  .main .main-section .section-center .block-page > .page-wrapper > .wrapper-sidebar {
    float: inherit !important;
    width: 100% !important;
    padding: 0 !important;
    position: inherit !important;
    top: 0 !important;
    margin-top: 1rem !important;
  }
  .chat-online {
    bottom: 10px;
    right: 10px;
  }
  .chat-online > .co-btn-open {
    width: 40px;
    height: 40px;
    line-height: 50px;
  }
  .chat-online > .co-btn-open > i {
    font-size: 2rem;
  }
  .chat-online > form {
    margin-left: 10px;
  }
  .chat-online > form > .card {
    width: 100%;
  }
  .mobile-hide {
    display: none;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
  }
}
/*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*\
|||| ||||||| ||   || ||||||| ||||||||||||||||||||||||||||||||||||||||||||||||||
|||| ||      ||| ||| ||      |||||||||  - Web Agency SC-CONCEPTION -  |||||||||
|||| ||||||| || | || || |||| ||||||   Developped by SMG-CONCEPTION.com   ||||||
||||      || ||   || ||   || |||    Powered by cms Iminence.com software    |||
|||| ||||||| ||   || ||||||| ||||||||||||||||||||||||||||||||||||||||||||||||||
\*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/

/*# sourceMappingURL=index.min.css.map */