/************ Breakpoints Bootstrap ************/
/************ Colors ************/
/************ Typography ************/
/************ Spacing ************/
/************ Radius ************/
/************ Borders & shadows ************/
/************ Motion ************/
/************ General ************/
/************ Brand / UI colors ************/
/************ Typography semantic ************/
html {
  font-size: 16px;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  color: #333333;
  background-color: #ffffff;
  font-weight: 200;
}

a {
  color: #111111;
}
a:hover, a:focus, a:active {
  color: #333333;
}

.a-block {
  display: block;
  text-decoration: none;
}
.a-block:hover, .a-block:focus, .a-block:active {
  text-decoration: none;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img,
picture,
video {
  border-radius: 2px;
}

:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 2px;
}

::selection {
  background-color: #333333;
  color: #ffffff;
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-rows-2 {
  grid-template-rows: repeat(2, 1fr);
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-5 {
  padding: 1.5rem;
}

.p-6 {
  padding: 2rem;
}

.p-7 {
  padding: 3rem;
}

.p-8 {
  padding: 4rem;
}

.m-1 {
  margin: 0.25rem;
}

.m-2 {
  margin: 0.5rem;
}

.m-3 {
  margin: 0.75rem;
}

.m-4 {
  margin: 1rem;
}

.m-5 {
  margin: 1.5rem;
}

.m-6 {
  margin: 2rem;
}

.m-7 {
  margin: 3rem;
}

.m-8 {
  margin: 4rem;
}

p {
  margin-bottom: 0.5rem;
}

section {
  padding-block: 3rem;
}

.section-height {
  min-height: 600px;
}

header:not(:has(.navbar)) {
  padding-bottom: 3rem;
}

h1,
.h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  color: #111111;
}
@media (max-width: 991.98px) {
  h1,
  .h1 {
    font-size: 3rem;
  }
}
@media (max-width: 767.98px) {
  h1,
  .h1 {
    font-size: 2.25rem;
  }
}

h2,
.h2 {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.1;
  color: #111111;
}
@media (max-width: 991.98px) {
  h2,
  .h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767.98px) {
  h2,
  .h2 {
    font-size: 1.75rem;
  }
}

h3,
.h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.1;
  color: #111111;
}
@media (max-width: 991.98px) {
  h3,
  .h3 {
    font-size: 1.4rem;
  }
}
@media (max-width: 767.98px) {
  h3,
  .h3 {
    font-size: 1.35rem;
  }
}

h4,
.h4 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.1;
  color: #111111;
}

small,
.small {
  font-size: 0.875rem;
}

.smaller {
  font-size: 0.8rem;
}

.font-bold {
  font-weight: 700;
}

.font-light {
  font-weight: 200;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.heading-caps {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.text-white {
  color: #ffffff;
}

.p-heading {
  font-size: 1.25rem;
}
@media (max-width: 767.98px) {
  .p-heading {
    font-size: 1rem;
  }
}

.svg-60 {
  width: 60px;
  height: 60px;
}

.btn-primary {
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid #111111;
  background-color: transparent;
  color: #111111;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  display: inline-block;
  width: fit-content;
}
.btn-primary:hover {
  background-color: #111111;
  color: #ffffff;
  transition: 0.2s ease;
  border: 1px solid #111111;
  outline: 2px solid #111111;
  outline-offset: 3px;
}
.btn-primary:focus, .btn-primary:active, .btn-primary:focus-visible {
  background-color: #111111;
  color: #ffffff;
  border: 1px solid #ffffff;
  transition: 0.2s ease;
  outline: 2px solid #111111;
  outline-offset: 3px;
  box-shadow: none;
}
.btn-primary:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
}

.btn-primary.btn-white {
  border-color: #ffffff;
  color: #ffffff;
}
.btn-primary.btn-white:hover {
  background-color: #ffffff;
  color: #111111;
  transition: 0.2s ease;
  border: 1px solid #ffffff;
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}
.btn-primary.btn-white:focus, .btn-primary.btn-white:active, .btn-primary.btn-white:focus-visible {
  background-color: #ffffff;
  color: #111111;
  border: 1px solid #ffffff;
  transition: 0.2s ease;
  outline: 2px solid #ffffff;
  outline-offset: 3px;
  box-shadow: none;
}
.btn-primary.btn-white:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
}

.btn-primary.btn-black {
  color: #ffffff;
  background-color: #111111;
}
.btn-primary.btn-black:hover {
  background-color: #ffffff;
  color: #111111;
  transition: 0.2s ease;
  border: 1px solid #ffffff;
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}
.btn-primary.btn-black:focus, .btn-primary.btn-black:active, .btn-primary.btn-black:focus-visible {
  background-color: #ffffff;
  color: #111111;
  border: 1px solid #ffffff;
  transition: 0.2s ease;
  outline: 2px solid #ffffff;
  outline-offset: 3px;
  box-shadow: none;
}
.btn-primary.btn-black:active {
  background-color: #F8F6F5 !important;
  border-color: #F8F6F5 !important;
}

.btn-primary.btn-sm {
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
}

.btn-primary.btn-square {
  border-radius: 2px;
}

.bg-cover {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay-dark {
  position: relative;
}

.overlay-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  z-index: 0;
}

.overlay-dark > * {
  position: relative;
  z-index: 1;
}

.back-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

div:has(> .back-img) {
  position: relative;
}
div:has(> .back-img) > *:not(.back-img) {
  z-index: 1;
  position: relative;
}

.bg-colored {
  background-color: #F8F6F5;
}

.line-on-right {
  border-right: 1px solid #F8F6F5;
}

.line-right {
  position: relative;
}

.line-right::after {
  content: "";
  content: "";
  position: absolute;
  top: 0;
  right: 0px;
  width: 1px;
  height: 100%;
  background: #F8F6F5;
}

@media (max-width: 991.98px) {
  .line-right::after {
    display: none;
  }
  .line-on-right {
    border-right: none;
  }
}
hr,
.hr {
  border: none;
  border-top: 2px solid #F8F6F5;
  margin: 1rem 0;
}

.pagination {
  padding-block: 1rem;
  justify-content: center !important;
}
.pagination a {
  color: #111111;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0 !important;
  padding: 0;
  width: 20px;
  aspect-ratio: 0.8;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.pagination a:hover, .pagination a:focus {
  border-bottom: 2px solid #111111;
  background-color: transparent;
  color: #111111;
  box-shadow: none;
}
.pagination .page-item.disabled a {
  font-weight: 600;
  color: #111111;
  background-color: transparent;
  border-bottom: 2px solid #111111;
}
.pagination .page-item {
  margin-inline: 5px;
}
.pagination a[href="#"] {
  pointer-events: none;
  border-bottom: none !important;
  font-weight: 200 !important;
}

.table__list {
  margin-block: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  font-size: 0.875rem;
}
.table__list dt {
  font-weight: 500;
}
.table__list > div {
  flex: 0 0 calc(50% - 0.5rem);
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
  max-width: 270px;
  min-width: 250px;
  border-bottom: solid #bdbdbd 1px;
}

ul a {
  text-underline-offset: 4px;
  padding-left: 0.5rem;
}
ul a:hover {
  text-decoration-thickness: 2px;
}
ul li {
  padding-block: 0.25rem;
}

.sticky {
  position: sticky;
  top: 10vh;
}

@media (max-width: 767.98px) {
  .sticky {
    position: static;
  }
}
.pop-up {
  width: 100%;
  box-shadow: 0 4px 8px rgba(17, 17, 17, 0.2);
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 2px;
  display: none;
  z-index: 10;
}

.pop-up.fixed {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-inline: 0.5rem;
  height: min(95vh, 700px);
  transform: translate(-50%, -50%);
}

/* sm */
@media (max-width: 575.98px) {
  .pop-up.fixed {
    max-width: calc(100% - 2rem);
    margin-inline: 0;
  }
}
/* md */
@media (min-width: 767.98px) {
  .pop-up.fixed {
    max-width: calc(720px - 1rem);
  }
}
/* lg */
@media (min-width: 991.98px) {
  .pop-up.fixed {
    max-width: calc(960px - 1rem);
  }
}
/* xl */
@media (min-width: 1199.98px) {
  .pop-up.fixed {
    max-width: calc(1140px - 1rem);
  }
}
/* xxl */
@media (min-width: 1399.98px) {
  .pop-up.fixed {
    max-width: calc(1320px - 1rem);
  }
}
.pop-up.relative {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.btn-popup-close.cross {
  cursor: pointer;
  color: #111111;
  font-size: 1.5rem;
  position: absolute;
  top: 0;
  right: 7px;
  z-index: 11;
  font-weight: 600;
}
.btn-popup-close.cross:hover {
  color: #333333;
}

.ajustable-arrow {
  display: flex;
  align-items: center;
  width: 90%;
}
.ajustable-arrow .ajustable-arrow__line {
  flex: 1;
  height: 2px;
  background: #111111;
}
.ajustable-arrow .ajustable-arrow__arrow {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}
.ajustable-arrow .ajustable-arrow__arrow.left {
  position: relative;
  left: 7px;
}
.ajustable-arrow .ajustable-arrow__arrow.right {
  position: relative;
  right: 7px;
}
.ajustable-arrow .ajustable-arrow__arrow line {
  stroke: #111111;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

div:has(> picture) {
  position: relative;
  overflow: hidden;
}

picture {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

picture > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

input[type=text],
input[type=search],
select.form-select {
  background-color: transparent;
  font-weight: 200;
  position: relative;
  border-color: transparent;
  border-radius: 0;
  border-bottom: 1px solid #111111;
  transition: 0.2s ease;
}
input[type=text]::after,
input[type=search]::after,
select.form-select::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #111111;
}
input[type=text]:focus, input[type=text]:hover,
input[type=search]:focus,
input[type=search]:hover,
select.form-select:focus,
select.form-select:hover {
  outline: none;
  box-shadow: none;
  border-radius: 0;
  border-color: transparent;
  border-bottom: 2px solid #111111;
  background-color: transparent;
}
input[type=text]::placeholder,
input[type=search]::placeholder,
select.form-select::placeholder {
  font-size: 0.8rem;
  opacity: 0.8;
  font-weight: 200;
}

.form-check-input {
  border: none;
  border-radius: none;
}
.form-check-input:checked {
  background-color: #111111;
  border-color: #111111;
}
.form-check-input:focus {
  box-shadow: none;
}

.form-group:has(.form-check-input) * {
  cursor: pointer;
}

.form-group.disabled {
  opacity: 0.4;
  pointer-events: none;
}

form small.error {
  font-style: italic;
  font-size: 0.8rem;
  text-align: center;
  margin-top: 0.25rem;
  display: none;
}
form sup.requis {
  color: red;
  font-weight: 900;
}
form .is-invalid .select2-selection {
  border-color: red;
}

.scrollableX,
.scrollableY,
body {
  scrollbar-width: auto;
  scrollbar-color: rgba(17, 17, 17, 0.9) transparent;
}

.scrollableX::-webkit-scrollbar,
.scrollableY::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.scrollableX::-webkit-scrollbar-track,
.scrollableY::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}

.scrollableX::-webkit-scrollbar-thumb,
.scrollableY::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.35);
}

.scrollableX::-webkit-scrollbar-thumb:hover,
.scrollableY::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
  background: rgba(17, 17, 17, 0.35);
}

.scrollableX {
  padding-bottom: 8px;
  scrollbar-gutter: stable;
}

.scrollableY {
  padding-left: 8px;
  scrollbar-gutter: stable;
}

header ul li {
  padding-block: 0;
}
header .navbar > div:first-child .navbar-brand {
  display: inline-block;
  padding-top: 0;
  padding-bottom: 0;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}
header .navbar > div:first-child .navbar-brand img {
  min-width: 140px;
}
@media (min-width: 992px) {
  header .navbar > div:first-child .navbar-brand img {
    min-width: 140px;
  }
}
header .navbar > div:first-child a.nav-link {
  font-family: "Fira Sans Condensed", sans-serif !important;
  font-weight: 500;
  font-size: 1.375rem;
}
header .navbar > div:first-child .dropdown-menu {
  border: none;
  border-radius: 0;
  font-weight: 400;
  margin: 0;
}
header .navbar > div:first-child .dropdown-menu a {
  color: #686e6e;
  font-family: "Fira Sans Condensed", sans-serif !important;
}
header .navbar > div:first-child .nav-item:not(.toggle-nav-items) .nav-link:hover:before {
  width: calc(100% - 2rem);
  opacity: 1;
}
header .navbar > div:first-child .nav-item:not(.toggle-nav-items) .nav-link:before {
  content: "";
  position: absolute;
  bottom: 2.4rem;
  width: 0;
  height: 5px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  background-color: #df252b;
}
header .navbar > div:first-child .nav-item > .nav-link {
  transition: padding 0.2s ease;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-right: 1rem;
  padding-left: 1rem;
}
header .navbar > div:first-child .nav-item:not(.toggle-nav-items) .nav-link {
  position: relative;
}
header .navbar > .container {
  max-width: 1140px;
}
header .button-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
header .button-nav .nav {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 1rem;
  opacity: 1;
  pointer-events: all;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
header .button-nav .nav-item {
  margin-left: 0.25rem;
}
header .button-nav .nav-link {
  background-color: #A4A7A7;
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 0;
  display: block;
  text-decoration: none;
}
header .button-nav .nav-link svg {
  width: 1em;
  display: inline-block;
  font-size: inherit;
  height: 1em;
  vertical-align: -0.125em;
}
header .button-nav .nav-link:hover {
  background-color: #DF252B;
}
header .button-nav .dropdown-menu {
  box-shadow: -1rem 1rem 2rem -1rem rgba(0, 0, 0, 0.2), 1rem 1rem 2rem -1rem rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1000;
  float: left;
  min-width: 10rem;
  font-size: 1rem;
  color: #686e6e;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 0 solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
  width: calc(100% - 170px);
  padding: 0.75rem;
  padding-bottom: 20px;
}
header .button-nav .dropdown-menu button {
  color: #fff;
  background-color: #df252b;
  border-color: #df252b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  border-radius: 2px;
  font-weight: 600;
  padding-inline: 1.5rem;
}
header .button-nav .dropdown-menu input {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.3;
  background-color: #eff0f0;
  background-clip: padding-box;
  border: 2px solid #eff0f0;
  border-radius: 4px;
  box-shadow: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  font-family: "Fira Sans Condensed", sans-serif !important;
}
header .button-nav .dropdown-menu input::placeholder {
  color: #949999 !important;
  opacity: 1;
  font-weight: 400;
}
header .button-nav .dropdown-item {
  font-family: "Fira Sans Condensed", sans-serif;
}
header .button-nav-mobile {
  display: none !important;
}
@media (max-width: 991.98px) {
  header:first-of-type {
    padding-top: 20px;
  }
  header .navbar-toggler {
    margin-right: 30px;
  }
  header .navbar .container {
    padding: 0;
  }
  header .navbar > div:first-child .navbar-brand {
    padding-left: 30px;
  }
  header .navbar-brand img {
    max-width: 110px;
    transition: all 0.2s ease;
    min-width: 110px !important;
  }
  header .navbar > div:first-child .nav-item > .nav-link {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCI+DQogIDxkZWZzPg0KICAgIDxjbGlwUGF0aCBpZD0iY2xpcC1wYXRoIj4NCiAgICAgIDxyZWN0IHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0ibm9uZSIvPg0KICAgIDwvY2xpcFBhdGg+DQogIDwvZGVmcz4NCiAgPGcgaWQ9Imljb25zX2RhcmtfbmV4dCIgZGF0YS1uYW1lPSJpY29ucy9kYXJrL25leHQiIGNsaXAtcGF0aD0idXJsKCNjbGlwLXBhdGgpIj4NCiAgICA8cmVjdCBpZD0iYmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0ibm9uZSIvPg0KICAgIDxwYXRoIGlkPSJ1bmlvbiIgZD0iTTYuMjMsMTMuMjkuMyw3LjM2YS43NTguNzU4LDAsMCwxLS4wOC0uMDcuNzY1Ljc2NSwwLDAsMSwwLTEuMDcyLjc1OS43NTksMCwwLDEsLjA4LS4wN0w2LjIzLjIyQS43NS43NSwwLDAsMSw3LjI5MSwxLjI4TDEuODE3LDYuNzU1LDcuMjkxLDEyLjIzQS43NS43NSwwLDEsMSw2LjIzLDEzLjI5WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNi4wMTEgMTUuNzQxKSByb3RhdGUoLTkwKSIgZmlsbD0iIzJmM2U0OCIvPg0KICA8L2c+DQo8L3N2Zz4=);
    background-repeat: no-repeat;
    background-position: 97% center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1.5px solid #dee2e6;
    color: #686e6e;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.3;
  }
  header .navbar > div:first-child .nav-item > .nav-link::before {
    position: static !important;
  }
  header .dropdown-item:hover {
    border-bottom: 1.5px solid #df252b;
    color: #686e6e;
    background-color: transparent;
  }
  header .dropdown-menu {
    background-color: #f8f9fa;
    position: static;
    float: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
  }
  header .dropdown-item {
    border-bottom: 1.5px solid #dee2e6;
    font-weight: 300;
    padding: 1.25rem 1.5rem;
    display: block;
    width: 100%;
  }
  header .nav-item:has(.show) .nav-link {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCI+DQogIDxkZWZzPg0KICAgIDxjbGlwUGF0aCBpZD0iY2xpcC1wYXRoIj4NCiAgICAgIDxyZWN0IHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0ibm9uZSIvPg0KICAgIDwvY2xpcFBhdGg+DQogIDwvZGVmcz4NCiAgPGcgaWQ9Imljb25zX2RhcmtfbmV4dCIgZGF0YS1uYW1lPSJpY29ucy9kYXJrL25leHQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI0IDI0KSByb3RhdGUoMTgwKSIgY2xpcC1wYXRoPSJ1cmwoI2NsaXAtcGF0aCkiPg0KICAgIDxyZWN0IGlkPSJiZyIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiBmaWxsPSJub25lIi8+DQogICAgPHBhdGggaWQ9InVuaW9uIiBkPSJNNi4yMywxMy4yOS4zLDcuMzZhLjc1OC43NTgsMCwwLDEtLjA4LS4wNy43NjUuNzY1LDAsMCwxLDAtMS4wNzIuNzU5Ljc1OSwwLDAsMSwuMDgtLjA3TDYuMjMuMjJBLjc1Ljc1LDAsMCwxLDcuMjkxLDEuMjhMMS44MTcsNi43NTUsNy4yOTEsMTIuMjNBLjc1Ljc1LDAsMSwxLDYuMjMsMTMuMjlaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2LjAxMSAxNS43NDEpIHJvdGF0ZSgtOTApIiBmaWxsPSIjMmYzZTQ4Ii8+DQogIDwvZz4NCjwvc3ZnPg0K) !important;
    font-weight: 500 !important;
  }
  header .button-nav-mobile {
    display: block !important;
    position: static;
    transform: none !important;
  }
  header .button-nav-mobile .nav-pills {
    position: relative !important;
    font-size: 1.6rem !important;
    margin-block: 30px 20px;
  }
  header .button-nav-mobile .nav-pills .nav-link {
    background-color: #a4a7a7;
    color: #fff !important;
    padding: 0.4rem 0.8rem 0.3rem !important;
    width: 46px;
    height: 40px;
    background-image: none !important;
  }
  header .button-nav-mobile .nav-item {
    margin: 0 0.25rem;
  }
  header .button-nav-mobile svg {
    width: 100% !important;
    height: auto !important;
    overflow: visible;
    vertical-align: 0 !important;
  }
}

footer {
  position: relative;
  background-color: #686e6e;
  color: #fff;
  padding-top: 4rem;
  margin-top: 7rem;
  font-size: 1rem !important;
  font-weight: 300;
  line-height: 1.3;
}
footer img {
  display: inline;
}
footer .address-box-container {
  transform: translateY(-50%);
  margin-top: -4rem;
}
@media (min-width: 1199.98px) {
  footer .container {
    max-width: 1140px;
  }
}
footer address {
  font-family: "Fira Sans Condensed", sans-serif;
}
footer address a:hover {
  text-decoration: underline;
  opacity: 0.8;
}
footer .address-box {
  padding: 1rem 3rem;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  background-color: #df252b;
  color: #fff;
  font-weight: bolder;
}
footer .footer-bar {
  margin-top: 3rem;
  padding: 1rem 0;
}
footer .footer-bar hr {
  border-color: #fff;
}
footer hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
footer .btn-primary {
  color: #fff;
  background-color: #df252b;
  border-color: #df252b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  border-radius: 2px;
  font-family: "Fira Sans Condensed", sans-serif;
}
footer .btn-primary:hover {
  background-color: #b82126;
  outline: none;
  border-color: #b82126;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  border-radius: 2px;
  font-family: "Fira Sans Condensed", sans-serif;
  color: #fff;
}
footer .nav-link {
  font-family: "Fira Sans Condensed", sans-serif;
  color: white;
}
footer .nav-link:hover {
  text-decoration: underline;
  color: white;
}
footer .address-box .nav-link {
  padding-left: 1rem;
  padding-right: 1rem;
  display: block;
  padding: 0.5rem 1rem;
}
footer .address-box .nav-link:hover {
  opacity: 0.8;
  color: #fff !important;
}
footer .address-box .nav-link svg {
  width: 1.25em;
  overflow: visible;
  vertical-align: -0.225em;
}

.page-header {
  position: relative;
  aspect-ratio: 2.5;
  overflow: hidden;
}
.page-header .page-header-overlay {
  position: absolute;
  top: 0;
  left: calc(var(--bs-gutter-x) * 0.5);
  right: calc(var(--bs-gutter-x) * 0.5);
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.233);
}
.page-header .img-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-fit: cover;
  object-position: center;
  display: block;
  inset: 0;
}
.page-header .page-header-headings {
  position: absolute;
  top: 50%;
  left: min(5%, 50px);
  transform: translateY(-50%);
}
.page-header .page-header-headings h1,
.page-header .page-header-headings p {
  margin: 0;
}
.page-header h1 {
  font-size: clamp(2rem, 7vw, 7rem);
}
.page-header span,
.page-header p {
  font-size: clamp(1rem, 2vw, 1.6rem);
}

.page-breadcrumb .breadcrumb {
  margin-top: 1rem;
}
.page-breadcrumb .breadcrumb li {
  color: #C0C0C0 !important;
}
.page-breadcrumb .breadcrumb a,
.page-breadcrumb .breadcrumb ::before {
  text-decoration: none;
  color: #C0C0C0 !important;
}
@media (max-width: 575.98px) {
  .page-breadcrumb .breadcrumb .breadcrumb-item {
    margin-block: 0.25rem;
  }
}
.page-breadcrumb .breadcrumb-item {
  font-size: 0.875rem;
}
.page-breadcrumb .breadcrumb-item:not(.active):hover {
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  section:has(> .page-breadcrumb) {
    display: none;
  }
}
.card-vipanel,
.card-product {
  border-radius: 2px;
  text-decoration: none;
  max-width: 270px;
}
.card-vipanel .img-wrapper,
.card-product .img-wrapper {
  width: 100%;
  aspect-ratio: 424/720;
  overflow: hidden;
  transition: 0.2s ease;
  border-radius: 2px;
}
.card-vipanel:hover .img-wrapper,
.card-product:hover .img-wrapper {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(17, 17, 17, 0.2);
}
.card-vipanel[href*=uni][href*=blanc] .img-wrapper,
.card-product[href*=uni][href*=blanc] .img-wrapper {
  border: #e9e9e9 1px solid;
}

.card-product .img-wrapper {
  aspect-ratio: 1/1.1;
}

#page-espace-douche-panneaux-vipanel .decor-layout {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
  min-height: 700px;
}
#page-espace-douche-panneaux-vipanel .decor-layout__main {
  grid-column: 1/2;
  grid-row: 1/3;
}
#page-espace-douche-panneaux-vipanel .decor-layout__tile {
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  background-color: #F8F6F5;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}
#page-espace-douche-panneaux-vipanel .decor-layout__tile img {
  transform: translateY(-10px);
  transition: 0.2s ease;
}
#page-espace-douche-panneaux-vipanel .decor-layout__tile:hover img {
  transform: translateY(0px);
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.5));
}
#page-espace-douche-panneaux-vipanel .decor-layout__caption a {
  text-decoration: none;
}
#page-espace-douche-panneaux-vipanel .advantages__tile {
  display: flex;
  gap: 1rem;
  align-items: center;
}
#page-espace-douche-panneaux-vipanel .finitions__main {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
#page-espace-douche-panneaux-vipanel .finitions__main img {
  width: 70px;
}
#page-espace-douche-panneaux-vipanel .finitions__main > div {
  flex: 0 0 29%;
  aspect-ratio: 1;
}
#page-espace-douche-panneaux-vipanel .svg-wrapper {
  aspect-ratio: 1;
  background-color: #F1EADF;
  width: 100%;
  box-shadow: 0 4px 8px rgba(17, 17, 17, 0.2);
  border-radius: 2px;
  position: relative;
}
#page-espace-douche-panneaux-vipanel .svg-wrapper svg {
  width: 100%;
  height: 100%;
}
#page-espace-douche-panneaux-vipanel .colors__main {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 20%;
  height: 100%;
  justify-content: space-around;
  left: -10%;
}
#page-espace-douche-panneaux-vipanel .circle {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(17, 17, 17, 0.2);
}
#page-espace-douche-panneaux-vipanel svg g[id^=color],
#page-espace-douche-panneaux-vipanel .circle {
  opacity: 0;
}
#page-espace-douche-panneaux-vipanel .color1 {
  background-color: #F1EADF;
}
#page-espace-douche-panneaux-vipanel .color2 {
  background-color: #E3DBC7;
}
#page-espace-douche-panneaux-vipanel .color3 {
  background-color: #E6DECE;
}
#page-espace-douche-panneaux-vipanel .color4 {
  background-color: #DDD3BA;
}
#page-espace-douche-panneaux-vipanel .color1 {
  animation-delay: 1s;
}
#page-espace-douche-panneaux-vipanel .color1 {
  animation: show1 6s linear infinite;
}
#page-espace-douche-panneaux-vipanel .color2,
#page-espace-douche-panneaux-vipanel svg g[id=color2] {
  animation: show2 6s linear infinite;
}
#page-espace-douche-panneaux-vipanel .color3,
#page-espace-douche-panneaux-vipanel svg g[id=color3] {
  animation: show3 6s linear infinite;
}
#page-espace-douche-panneaux-vipanel .color4,
#page-espace-douche-panneaux-vipanel svg g[id=color4] {
  animation: show4 6s linear infinite;
}
@keyframes show1 {
  0%, 16% {
    opacity: 0;
  }
  20%, 30% {
    opacity: 1;
  }
  31% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes show2 {
  0%, 32% {
    opacity: 0;
  }
  36%, 46% {
    opacity: 1;
  }
  47% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes show3 {
  0%, 48% {
    opacity: 0;
  }
  52%, 62% {
    opacity: 1;
  }
  63% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes show4 {
  0%, 64% {
    opacity: 0;
  }
  68%, 78% {
    opacity: 1;
  }
  79% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#page-espace-douche-panneaux-vipanel .sections-solutions img {
  max-width: none;
}
#page-espace-douche-panneaux-vipanel .sections-solutions .img-wrapper {
  height: 500px;
}
#page-espace-douche-panneaux-vipanel .carusel {
  overflow: hidden;
  width: 100%;
  padding-block: 1rem;
}
#page-espace-douche-panneaux-vipanel .carusel__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: scroll 60s linear infinite;
}
#page-espace-douche-panneaux-vipanel .carusel__track:hover {
  animation-play-state: paused;
}
#page-espace-douche-panneaux-vipanel .carusel__group {
  display: flex;
  gap: 1rem;
  flex: 0 0 auto;
  margin-right: 1rem;
}
#page-espace-douche-panneaux-vipanel .carusel__item {
  flex: 0 0 auto;
  width: 300px;
  aspect-ratio: 0.8;
}
#page-espace-douche-panneaux-vipanel .carusel__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
#page-espace-douche-panneaux-vipanel .vipanel-types__main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-block-start: calc(3rem * 2);
  padding-block-end: 3rem;
}
#page-espace-douche-panneaux-vipanel .vipanel-types__main > a {
  flex: 0 0 calc(33.333% - 1rem);
  aspect-ratio: 1.1;
}
#page-espace-douche-panneaux-vipanel .vipanel-types__block {
  padding: 1.5rem;
  padding-block-end: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  overflow: hidden;
}
#page-espace-douche-panneaux-vipanel .vipanel-types__block:hover img {
  transform: translateY(0px);
  filter: drop-shadow(0 -5px 5px rgba(0, 0, 0, 0.2));
}
#page-espace-douche-panneaux-vipanel .img-wrapper-square {
  width: 75%;
  margin: auto;
  margin-block: 0;
  aspect-ratio: 1;
}
#page-espace-douche-panneaux-vipanel .img-wrapper-square img {
  transition: 0.2s ease;
  transform: translateY(10px);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
#page-espace-douche-panneaux-vipanel .vipanel-types__main > a:nth-of-type(6) .vipanel-types__block {
  padding-block-end: 1.5rem;
  padding-block-start: 0;
}
#page-espace-douche-panneaux-vipanel .vipanel-types__main > a:nth-of-type(6) .vipanel-types__block .img-wrapper-square {
  width: 100%;
  overflow: hidden;
}
#page-espace-douche-panneaux-vipanel .vipanel-types__main > a:nth-of-type(6) .vipanel-types__block .img-wrapper-square img {
  object-fit: contain;
  transform: translateY(-10px);
}
#page-espace-douche-panneaux-vipanel .vipanel-types__main > a:nth-of-type(6) .vipanel-types__block:hover img {
  transform: translateY(-20px);
}
#page-espace-douche-panneaux-vipanel .vipanel-types__main > a:nth-of-type(5) .vipanel-types__block .img-wrapper-square {
  height: 100%;
  width: 110%;
  aspect-ratio: auto;
  margin-left: -10%;
}
#page-espace-douche-panneaux-vipanel .vipanel-types__main > a:nth-of-type(5) .vipanel-types__block .img-wrapper-square img {
  object-position: right;
}
#page-espace-douche-panneaux-vipanel .videos__main {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
#page-espace-douche-panneaux-vipanel .videos__main .video-wrapper {
  flex: 0 0 calc(43% - 1rem);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}
#page-espace-douche-panneaux-vipanel .videos__main .video-wrapper img:last-child {
  transition: 0.2s ease;
}
#page-espace-douche-panneaux-vipanel .videos__main .video-wrapper:hover img:last-child {
  transform: scale(1.05);
}
#page-espace-douche-panneaux-vipanel .videos__main .video-wrapper .libelle {
  position: absolute;
  top: -1.5rem;
  left: 0;
  right: 0;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}
#page-espace-douche-panneaux-vipanel .videos__main iframe {
  width: 100%;
  aspect-ratio: 16/9;
  position: absolute;
  outline: 2px solid #000;
  outline-offset: 3px;
}
#page-espace-douche-panneaux-vipanel .durability__main > div {
  flex: 1 1 20%;
}
#page-espace-douche-panneaux-vipanel .img-vipanel-layers {
  position: relative;
  left: -10px;
}
#page-espace-douche-panneaux-vipanel .layer__item h3 {
  font-size: 1rem;
}
#page-espace-douche-panneaux-vipanel .layers__main {
  position: relative;
}
#page-espace-douche-panneaux-vipanel .layer {
  position: absolute;
  transition: transform 0.8s ease-in-out;
  width: 400px;
}
#page-espace-douche-panneaux-vipanel .layer1 {
  top: 80px;
  right: 0;
}
#page-espace-douche-panneaux-vipanel .layer2 {
  top: 120px;
  right: 30px;
}
#page-espace-douche-panneaux-vipanel .layer3 {
  top: 160px;
  right: 60px;
}
#page-espace-douche-panneaux-vipanel .layer4 {
  top: 200px;
  right: 110px;
}
#page-espace-douche-panneaux-vipanel .layer__item:hover h3, #page-espace-douche-panneaux-vipanel .layer__item.choosen h3 {
  transition: 0.2s ease;
  text-decoration: underline;
  text-decoration-thickness: 3px;
}
#page-espace-douche-panneaux-vipanel .layers__section:has(.layer__item1:hover) .layer2, #page-espace-douche-panneaux-vipanel .layers__section:has(.layer__item1.choosen) .layer2 {
  transform: translateY(-50px);
}
#page-espace-douche-panneaux-vipanel .layers__section:has(.layer__item1:hover) .layer1, #page-espace-douche-panneaux-vipanel .layers__section:has(.layer__item1.choosen) .layer1 {
  transform: translateY(120px);
}
#page-espace-douche-panneaux-vipanel .layers__section:has(.layer__item1:hover) .layer3, #page-espace-douche-panneaux-vipanel .layers__section:has(.layer__item1.choosen) .layer3 {
  transform: translateY(100px);
}
#page-espace-douche-panneaux-vipanel .layers__section:has(.layer__item1:hover) .layer4, #page-espace-douche-panneaux-vipanel .layers__section:has(.layer__item1.choosen) .layer4 {
  transform: translateY(80px);
}
#page-espace-douche-panneaux-vipanel .layers__section:has(.layer__item2:hover) .layer1, #page-espace-douche-panneaux-vipanel .layers__section:has(.layer__item2:hover) .layer3, #page-espace-douche-panneaux-vipanel .layers__section:has(.layer__item2.choosen) .layer1, #page-espace-douche-panneaux-vipanel .layers__section:has(.layer__item2.choosen) .layer3 {
  transform: translateY(-50px);
}
#page-espace-douche-panneaux-vipanel .layers__section:has(.layer__item2:hover) .layer2, #page-espace-douche-panneaux-vipanel .layers__section:has(.layer__item2.choosen) .layer2 {
  transform: translateY(120px);
}
#page-espace-douche-panneaux-vipanel .layers__section:has(.layer__item2:hover) .layer4, #page-espace-douche-panneaux-vipanel .layers__section:has(.layer__item2.choosen) .layer4 {
  transform: translateY(80px);
}
#page-espace-douche-panneaux-vipanel .layers__section:has(.layer__item3:hover) .layer3, #page-espace-douche-panneaux-vipanel .layers__section:has(.layer__item3.choosen) .layer3 {
  transform: translateY(-50px);
}
#page-espace-douche-panneaux-vipanel .layers__section:has(.layer__item3:hover) .layer1, #page-espace-douche-panneaux-vipanel .layers__section:has(.layer__item3.choosen) .layer1 {
  transform: translateY(150px);
}
#page-espace-douche-panneaux-vipanel .layers__section:has(.layer__item3:hover) .layer2, #page-espace-douche-panneaux-vipanel .layers__section:has(.layer__item3.choosen) .layer2 {
  transform: translateY(120px);
}
#page-espace-douche-panneaux-vipanel .layers__section:has(.layer__item3:hover) .layer4, #page-espace-douche-panneaux-vipanel .layers__section:has(.layer__item3.choosen) .layer4 {
  transform: translateY(80px);
}
#page-espace-douche-panneaux-vipanel .layers__section:has(.layer__item4:hover) .layer4, #page-espace-douche-panneaux-vipanel .layers__section:has(.layer__item4.choosen) .layer4 {
  transform: translateY(-120px);
}
#page-espace-douche-panneaux-vipanel .layers__section:has(.layer__item4:hover) .layer1, #page-espace-douche-panneaux-vipanel .layers__section:has(.layer__item4.choosen) .layer1 {
  transform: translateY(150px);
}
#page-espace-douche-panneaux-vipanel .layers__section:has(.layer__item4:hover) .layer2, #page-espace-douche-panneaux-vipanel .layers__section:has(.layer__item4.choosen) .layer2 {
  transform: translateY(120px);
}
#page-espace-douche-panneaux-vipanel .layers__section:has(.layer__item4:hover) .layer3, #page-espace-douche-panneaux-vipanel .layers__section:has(.layer__item4.choosen) .layer3 {
  transform: translateY(100px);
}
@media (max-width: 1199.98px) {
  #page-espace-douche-panneaux-vipanel .decor-layout {
    min-height: 600px;
  }
  #page-espace-douche-panneaux-vipanel .decor-layout__tile img {
    transform: translateY(-25px);
  }
  #page-espace-douche-panneaux-vipanel .decor-layout__tile:hover img {
    transform: translateY(-15px);
  }
  #page-espace-douche-panneaux-vipanel .layer {
    width: 288px;
  }
}
@media (max-width: 991.98px) {
  #page-espace-douche-panneaux-vipanel .decor-layout {
    min-height: 480px;
  }
  #page-espace-douche-panneaux-vipanel .decor-layout__caption {
    bottom: -10px;
  }
  #page-espace-douche-panneaux-vipanel .finitions__main > div {
    flex: 0 0 auto;
    max-width: 60px;
  }
  #page-espace-douche-panneaux-vipanel .finitions__main > div p {
    font-size: 0.875rem;
  }
  #page-espace-douche-panneaux-vipanel .finitions__main {
    justify-content: center;
    margin-block: 1rem;
  }
  #page-espace-douche-panneaux-vipanel .section-4 .section-height {
    margin-top: 200px;
    overflow: visible;
  }
  #page-espace-douche-panneaux-vipanel .section-4 .move-on-margin {
    position: relative;
    top: -130px;
  }
  #page-espace-douche-panneaux-vipanel .videos__main .video-wrapper {
    flex: 0 0 calc(48% - 1rem);
  }
  #page-espace-douche-panneaux-vipanel .layer {
    width: 201px;
  }
}
@media (max-width: 767.98px) {
  #page-espace-douche-panneaux-vipanel .decor-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 1rem;
  }
  #page-espace-douche-panneaux-vipanel .decor-layout__main {
    grid-column: span 2;
    grid-row: span 2;
  }
  #page-espace-douche-panneaux-vipanel .decor-layout {
    min-height: 1050px;
  }
  #page-espace-douche-panneaux-vipanel .page-header-headings {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  #page-espace-douche-panneaux-vipanel .videos__main .video-wrapper {
    flex: 0 0 calc(100% - 1rem);
  }
  #page-espace-douche-panneaux-vipanel .vipanel-types__main > a {
    flex: 0 0 calc(50% - 1rem);
  }
  #page-espace-douche-panneaux-vipanel .durability__main > div {
    width: auto;
    flex: 0 0 40%;
  }
  #page-espace-douche-panneaux-vipanel .layers-animation__main {
    height: 420px;
    overflow: hidden;
  }
  #page-espace-douche-panneaux-vipanel .layer {
    width: 375px;
    max-width: 95vw;
  }
}
@media (max-width: 575.98px) {
  #page-espace-douche-panneaux-vipanel .liens-top a {
    font-size: 0.85rem;
  }
  #page-espace-douche-panneaux-vipanel .decor-layout {
    min-height: 850px;
  }
  #page-espace-douche-panneaux-vipanel .decor-layout__tile img {
    top: -15px;
  }
  #page-espace-douche-panneaux-vipanel .margin-mobile {
    margin-inline: auto;
  }
  #page-espace-douche-panneaux-vipanel .vipanel-types__main > a {
    aspect-ratio: 0.9;
  }
  #page-espace-douche-panneaux-vipanel .img-wrapper-square {
    width: 95%;
  }
  #page-espace-douche-panneaux-vipanel .vipanel-types__main > a:nth-of-type(6) .vipanel-types__block .img-wrapper-square {
    width: 125%;
  }
  #page-espace-douche-panneaux-vipanel .finitions__main {
    gap: 1rem 3rem;
  }
}
@media (max-width: 440.98px) {
  #page-espace-douche-panneaux-vipanel .liens-top a {
    font-size: 0.82rem;
  }
  #page-espace-douche-panneaux-vipanel .vipanel-types__main > a {
    flex: 0 0 90%;
    margin: auto;
    aspect-ratio: 1;
  }
  #page-espace-douche-panneaux-vipanel .layer {
    width: 300px;
    max-width: 95vw;
  }
}

#page-configurateurs-salle-de-bain-espace-de-douche-panneaux-muraux-vipanel .catalogue-container__main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
#page-configurateurs-salle-de-bain-espace-de-douche-panneaux-muraux-vipanel .filtre hr {
  border: 1px solid #111111;
}
@media (max-width: 991.98px) {
  #page-configurateurs-salle-de-bain-espace-de-douche-panneaux-muraux-vipanel #form-filtres.hidden {
    height: 0;
    overflow: hidden;
    transition: 0.2s ease;
    padding: 0;
  }
  #page-configurateurs-salle-de-bain-espace-de-douche-panneaux-muraux-vipanel #form-filtres {
    padding-top: 1rem;
    transition: 0.2s ease;
  }
  #page-configurateurs-salle-de-bain-espace-de-douche-panneaux-muraux-vipanel #btn_form-filters {
    cursor: pointer;
  }
  #page-configurateurs-salle-de-bain-espace-de-douche-panneaux-muraux-vipanel .arrow-filtres {
    transform: rotate(180deg);
  }
  #page-configurateurs-salle-de-bain-espace-de-douche-panneaux-muraux-vipanel .filtres-container:has(.hidden) .arrow-filtres {
    transform: rotate(0deg);
  }
}
@media (max-width: 440.98px) {
  #page-configurateurs-salle-de-bain-espace-de-douche-panneaux-muraux-vipanel .catalogue-container__main {
    grid-template-columns: repeat(auto-fit, minmax(200px, 270px));
    justify-content: center;
  }
}

#page-catalogue-produit .gallery__section .img-wrapper:not(.gallery-slider__item) {
  width: 100%;
  aspect-ratio: 1/0.9;
  overflow: hidden;
  border-radius: 2px;
}
#page-catalogue-produit .gallery__section .btn-primary {
  top: 1rem;
  left: 1rem;
}
#page-catalogue-produit .gallery-slider__main {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  height: 135px;
  width: 100%;
}
#page-catalogue-produit .gallery-slider__main .gallery-slider__item {
  cursor: pointer;
  height: 100%;
  flex: 0 0 auto;
}
#page-catalogue-produit .gallery-slider__main .gallery-slider__item img {
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
}
#page-catalogue-produit .advatages__item img {
  width: 50px;
}
#page-catalogue-produit .dimentions__main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
}
#page-catalogue-produit .dimentions__main a {
  width: 100%;
}
#page-catalogue-produit .dimentions__main a:not(.choosen):not(:hover),
#page-catalogue-produit .finitions__main a:not(.choosen):not(:hover) {
  color: #bdbdbd;
  border-color: #bdbdbd;
}
#page-catalogue-produit .img-cadrage {
  width: 100px;
}
#page-catalogue-produit .configurator-ref__section .img-wrapper {
  width: 200px;
}
#page-catalogue-produit .products__main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
#page-catalogue-produit .products__main:has(.card-product) {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
#page-catalogue-produit .pop-up.vipanel-full-pop-up .back-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
  position: static;
}
#page-catalogue-produit .vipanel-cadrage__main .img-wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}
#page-catalogue-produit .vipanel-cadrage__main .img-wrapper img {
  position: static;
  max-height: 100%;
  width: auto;
  object-fit: contain;
}
#page-catalogue-produit .fix-width_popup {
  width: min(600px, 100%);
}
#page-catalogue-produit .show-on-mobile {
  display: none;
}
#page-catalogue-produit .fix-width {
  min-width: 62px;
}
#page-catalogue-produit .autresproduits .heading-caps {
  font-size: 0.9rem;
  max-height: 2rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 991.98px) {
  #page-catalogue-produit .show-on-mobile {
    display: block;
  }
  #page-catalogue-produit #see_cadrage {
    height: fit-content;
    max-height: 95vh;
  }
  #page-catalogue-produit #see_cadrage > div {
    flex-direction: column;
  }
  #page-catalogue-produit #see_cadrage .vipanel-cadrage__main {
    height: 40vh !important;
  }
}
@media (max-width: 767.98px) {
  #page-catalogue-produit .section_specifications .table__list {
    justify-content: center;
  }
  #page-catalogue-produit .section_specifications .table__list > div {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }
  #page-catalogue-produit .max-width {
    max-width: 80px;
  }
}
@media (max-width: 575.98px) {
  #page-catalogue-produit .dimentions__main {
    grid-template-columns: 1fr;
  }
  #page-catalogue-produit .products__main {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
  #page-catalogue-produit .card-product,
  #page-catalogue-produit .card-vipanel {
    max-width: none;
  }
}

/*# sourceMappingURL=rothfrance-new.scss.map */
