@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --bs-primary: #2a2a2a;
  --bs-secondary: #E3D002;
  --bs-light: #efeae1;
  --bs-dark: #202020;
  --bs-primary-rgb: 42,42,42;
  --bs-secondary-rgb: 227,208,2;
  --bs-light-rgb: 239,234,225;
  --bs-dark-rgb: 32,32,32;
  --input-bg: #646464;
}

.resize-none {
  resize: none;
}

.container {
  max-width: 100%;
}
@media (min-width: 576px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
@media (min-width: 1700px) {
  .container {
    max-width: 1620px;
  }
}

.navbar-nav .nav-link {
  font-size: 20px;
  padding: 0.5rem 1rem !important;
}
.navbar-nav .nav-link.active {
  color: var(--bs-secondary) !important;
  font-weight: normal !important;
}
.navbar-nav .nav-link:focus {
  color: var(--bs-secondary) !important;
}
.navbar-nav .nav-link:hover {
  color: var(--bs-secondary) !important;
}

form {
  color: #2A2E2C;
}
form label {
  font-size: 20px;
}
form .form-control {
  font-size: 16px;
  font-weight: 400;
  padding-left: 0.5rem;
  height: 2.5rem;
  background-color: white;
  border-color: #888888;
  border-radius: 0;
}
form .form-control:focus {
  background-color: white;
  border-color: #888888;
  color: #2A2E2C;
  border-radius: 0;
}

.btn {
  font-size: 18px;
  font-weight: bold;
  font-style: italic;
  border-radius: 0;
  padding: 1.2rem;
  text-transform: uppercase;
}
.btn.btn-primary {
  background-color: black;
  border-color: var(--bs-primary);
  color: var(--bs-light);
}
.btn.btn-primary:hover {
  background-color: var(--bs-dark);
  border-color: var(--bs-dark);
  color: var(--bs-light);
}
.btn.btn-secondary {
  background-color: var(--bs-secondary);
  border-color: var(--bs-secondary);
  color: var(--bs-dark);
}
.btn.btn-secondary:hover {
  background-color: var(--bs-dark);
  border-color: var(--bs-dark);
  color: var(--bs-light);
}
.btn.btn-outline-primary {
  background-color: var(--bs-dark);
  border-color: var(--bs-dark);
  color: var(--bs-light);
}
.btn.btn-outline-primary:hover {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: var(--bs-light);
}
.btn.btn-outline-secondary {
  background-color: none;
  border-color: var(--bs-secondary);
  color: var(--bs-secondary);
  border: var(--bs-secondary) 2px solid;
}
.btn.btn-outline-secondary:hover {
  background-color: var(--bs-secondary);
  border-color: var(--bs-secondary);
  color: var(--bs-dark);
}

.accordion {
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-active-bg: var(--bs-secondary);
  --bs-accordion-active-color: var(--bs-dark);
}
.accordion .accordion-button {
  box-shadow: none;
}
.accordion .accordion-collapse {
  background-color: rgb(244, 244, 244);
}
.accordion .accordion-collapse .accordion-body {
  padding: 2rem;
}

.nav-link {
  color: var(--bs-light);
  font-size: 24px;
  font-weight: 300;
}
.nav-link.active {
  color: var(--bs-light) !important;
  font-weight: 600;
}

*, ::after, ::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Chivo", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #F2F2F2;
}

main {
  flex: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
}

.privacy_policy a {
  color: var(--bs-body_color);
}

.w-fit-content {
  width: fit-content !important;
}

.selection_section {
  padding-top: 10rem;
}

.top_slider_container {
  padding-bottom: 8rem;
  gap: 4rem;
}

.main_form_container label {
  font-size: 16px;
  font-weight: bold;
  font-style: italic;
}
.main_form_container .sub_form_container {
  height: fit-content;
  flex: 1;
}
.main_form_container .form_header {
  height: 8rem;
}
.main_form_container .unmappedForm {
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  min-height: 50rem;
}
@media (max-width: 1400px) {
  .main_form_container .unmappedForm {
    min-height: 50rem;
  }
}
.main_form_container .unmappedForm .img_container {
  width: 100%;
  height: 15.5rem;
  overflow: hidden;
  border: #060606 1px solid;
  position: relative;
}
.main_form_container .unmappedForm .img_container img {
  width: auto;
  height: 100%;
  object-fit: contain;
  transform: translateX(-50%);
  top: 0;
  left: 50%;
  position: absolute;
}
@media (max-width: 768px) {
  .main_form_container .unmappedForm {
    height: auto;
  }
}
.main_form_container .unmappedForm .form_header {
  background-color: var(--bs-secondary);
}
.main_form_container .unmappedForm .form_header p {
  line-height: 1;
}
.main_form_container .bomForm {
  background-color: #F2F2F2;
  min-height: 50rem;
  display: flex;
  flex-direction: column;
  /* Masquer les flèches dans Firefox */
}
.main_form_container .bomForm input[type=number]::-webkit-outer-spin-button,
.main_form_container .bomForm input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.main_form_container .bomForm input[type=number] {
  text-align: center; /* Centrer le texte horizontalement */
  vertical-align: middle;
  -moz-appearance: textfield;
}
.main_form_container .bomForm #bom_form_productBoms {
  gap: 1rem 2rem;
  display: flex;
  flex-direction: column;
}
.main_form_container .bomForm #bom_form_productBoms .product_type_container {
  flex: 1;
  padding-right: 0.5rem;
}
.main_form_container .bomForm #bom_form_productBoms .product_type_container > div {
  width: 100%;
  margin-bottom: 0 !important;
}
.main_form_container .bomForm #bom_form_productBoms .product_type_container textarea, .main_form_container .bomForm #bom_form_productBoms .product_type_container input {
  border: none;
}
.main_form_container .bomForm #bom_form_productBoms .productContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background-color: white;
  gap: 1rem;
}
.main_form_container .bomForm #bom_form_productBoms .productContainer .img_container {
  width: 96px;
  height: 96px;
}
.main_form_container .bomForm #bom_form_productBoms .productContainer .img_container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main_form_container .bomForm #bom_form_productBoms .productContainer .inner_container {
  flex: 1;
}
.main_form_container .bomForm #bom_form_productBoms .productContainer .inner_container > div {
  margin-bottom: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main_form_container .bomForm #bom_form_productBoms .productContainer .inner_container > div:first-child {
  flex-direction: column;
  align-items: flex-start;
}
.main_form_container .bomForm #bom_form_productBoms .productContainer .inner_container > div button {
  border: 1px solid #EDEDED;
  width: 1rem;
  height: 2rem;
  color: #888888;
  background-color: #EDEDED;
}
.main_form_container .bomForm #bom_form_productBoms .productContainer .inner_container > div button:hover {
  background-color: #D9D9D9;
}
.main_form_container .bomForm #bom_form_productBoms .productContainer .inner_container > div .productType {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  font-style: italic;
  overflow-y: hidden;
}
.main_form_container .bomForm #bom_form_productBoms .productContainer .inner_container > div .quantity {
  width: 3rem;
  height: 2rem;
  border: 1px solid #EDEDED;
}
.main_form_container .bomForm #bom_form_productBoms .productContainer .trash_button {
  transition: transform 0.3s ease;
}
.main_form_container .bomForm #bom_form_productBoms .productContainer .trash_button:hover {
  transform: scale(0.9);
}
.main_form_container .bomForm #bom_form_productBoms .productContainer .step_button {
  height: 2rem !important;
  padding: 0 0.5rem;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}
.main_form_container .bomForm .form_header {
  background-color: #060606;
}
.main_form_container .bomForm .bom_container .form_block_container {
  height: 80%;
}
.main_form_container .bomForm .bom_container .form_block_container .overflow_container {
  overflow-y: scroll;
  height: 30rem;
}
.main_form_container .bomForm .bom_container .btn_container {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.form_row {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .form_row {
    margin-bottom: 4rem;
  }
}

.swiper_container, .top-swiper-container {
  background-color: #f9f9f9;
  padding: 2rem;
}
.swiper_container .swiper-button-prev, .swiper_container .swiper-button-next, .top-swiper-container .swiper-button-prev, .top-swiper-container .swiper-button-next {
  width: 4rem;
  height: 4rem;
}
.swiper_container .swiper-button-prev::after, .swiper_container .swiper-button-next::after, .top-swiper-container .swiper-button-prev::after, .top-swiper-container .swiper-button-next::after {
  width: 100%;
  height: 100%;
  background-image: url("../images/arrow_light-99272560cf68135bb8066cd72a926d63.svg");
  background-size: contain;
  background-repeat: no-repeat;
  color: rgba(255, 255, 255, 0);
}
.swiper_container .swiper, .swiper_container .top-swiper, .top-swiper-container .swiper, .top-swiper-container .top-swiper {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  height: 30rem;
}
.swiper_container .swiper .swiper-slide, .swiper_container .top-swiper .swiper-slide, .top-swiper-container .swiper .swiper-slide, .top-swiper-container .top-swiper .swiper-slide {
  z-index: 2;
  text-align: center;
  font-size: 18px;
  height: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  color: white;
}
.swiper_container .swiper .swiper-slide.swiper-slide-active .inner, .swiper_container .top-swiper .swiper-slide.swiper-slide-active .inner, .top-swiper-container .swiper .swiper-slide.swiper-slide-active .inner, .top-swiper-container .top-swiper .swiper-slide.swiper-slide-active .inner {
  border: solid 0.75rem var(--bs-secondary);
  background-color: white;
}
.swiper_container .swiper .swiper-slide .inner, .swiper_container .top-swiper .swiper-slide .inner, .top-swiper-container .swiper .swiper-slide .inner, .top-swiper-container .top-swiper .swiper-slide .inner {
  padding: 1rem 0 1rem 0;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  transform-origin: center center;
  width: 20rem;
  height: 20rem;
}
.swiper_container .swiper .swiper-slide .inner img, .swiper_container .top-swiper .swiper-slide .inner img, .top-swiper-container .swiper .swiper-slide .inner img, .top-swiper-container .top-swiper .swiper-slide .inner img {
  max-height: 75%;
  max-width: 100%;
}
.swiper_container .swiper .swiper-slide .inner .text_container, .swiper_container .top-swiper .swiper-slide .inner .text_container, .top-swiper-container .swiper .swiper-slide .inner .text_container, .top-swiper-container .top-swiper .swiper-slide .inner .text_container {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25%;
  color: black;
}

.swiper_container {
  position: relative;
  padding: 0;
  height: 20rem;
}
.swiper_container .swiper {
  position: relative;
  top: -5rem;
  left: 0;
  width: 100%;
  display: flex !important;
  align-items: center;
  background-color: none;
}
.swiper_container .swiper .swiper-wrapper {
  height: 20rem;
  overflow: visible;
  background-color: #f9f9f9;
}
.swiper_container .swiper .swiper-wrapper .swiper-slide:not(.swiper-slide-active) .text_container {
  font-size: 20px;
}
.swiper_container .swiper .swiper-wrapper .text_container {
  font-size: 16px;
}
.swiper_container .swiper-button-prev, .swiper_container .swiper-button-next {
  width: 5rem;
  height: 5rem;
}
.swiper_container .swiper-button-prev::after, .swiper_container .swiper-button-next::after {
  background-image: url("../images/arrow_dark-033584382d81a99579e11b1ab402b511.svg");
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
}
.swiper_container .swiper-button-prev::after {
  transform-origin: center center;
  transform: translateX(1rem) rotate(180deg);
}
.swiper_container .swiper-button-next::after {
  transform: translateX(-1rem);
}

.swiper-pagination-bullet {
  background-color: #646464 !important;
  opacity: 1 !important;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--bs-secondary) !important;
}

.top-swiper-container {
  margin: auto;
  padding: 0;
  width: 100%;
  max-width: 80rem;
  height: 40vw;
  max-height: 40rem;
}
@media (max-width: 1200px) {
  .top-swiper-container {
    height: 50vw;
  }
}
.top-swiper-container .top-swiper {
  height: 100%;
  background-color: #404040;
}
.top-swiper-container .top-swiper .swiper-slide {
  height: 100%;
}
.top-swiper-container .top-swiper .swiper-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.top-swiper-container .top-swiper .swiper-button-prev::after {
  transform: translateX(3rem) rotate(180deg);
}
.top-swiper-container .top-swiper .swiper-button-next::after {
  transform: translateX(-3rem);
}

header {
  background-color: #2A2E2C;
  padding: 1rem 0;
  display: flex;
  align-items: center;
}
header .navbar-collapse {
  flex-grow: inherit;
}
@media (max-width: 992px) {
  header {
    padding: 1rem 2rem;
  }
  header .logo .navbar-brand {
    display: block;
    max-width: 256px;
    width: 100%;
  }
  header .logo .navbar-brand img {
    width: 100%;
  }
  header .logo .slogan {
    font-size: 14px !important;
  }
}
header .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5); /* Bordure blanche semi-transparente */
}
header .navbar-toggler-icon {
  filter: invert(1); /* Inversion des couleurs (utile pour passer du noir au blanc) */
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .container .logo {
  padding-right: 1rem;
  flex: 1;
}
header .container .logo .navbar-brand {
  display: block;
  max-width: 334px;
  width: 100%;
}
header .container .logo .navbar-brand img {
  width: 100%;
  margin-bottom: 0.5rem;
}
header .container .logo .slogan {
  line-height: 1.2rem;
  font-size: 18px;
  color: var(--bs-light);
}
header .container li {
  display: flex;
  align-items: center;
}
header .nav-link {
  color: var(--bs-light);
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 500;
}

footer {
  background-color: #2A2E2C;
  padding-top: 6rem;
  padding-bottom: 4rem;
}
footer .top_footer {
  margin-bottom: 5rem;
  gap: 1rem;
}
@media (max-width: 768px) {
  footer .top_footer {
    flex-direction: column;
  }
}
footer .top_footer .logo_container {
  width: 25%;
}
footer .top_footer .logo_container img {
  max-width: 20.875rem;
  width: 100%;
}
@media (max-width: 1200px) {
  footer .top_footer .logo_container {
    width: 50%;
  }
}
@media (max-width: 768px) {
  footer .top_footer .logo_container {
    width: 100%;
    margin-bottom: 2rem;
  }
}
footer .top_footer .info_container {
  width: 75%;
}
footer .top_footer .info_container > div {
  width: 100%;
}
footer .top_footer .info_container > div > div {
  width: 33%;
  justify-content: center;
}
@media (max-width: 1200px) {
  footer .top_footer .info_container {
    width: 50%;
    justify-content: center;
  }
  footer .top_footer .info_container > div {
    width: fit-content;
    flex-direction: column;
  }
  footer .top_footer .info_container > div > div {
    width: 100%;
    justify-content: start;
  }
}
@media (max-width: 768px) {
  footer .top_footer .info_container {
    width: 100% !important;
    justify-content: start;
  }
  footer .top_footer .info_container > div > div {
    width: 100%;
    margin-bottom: 2rem;
  }
}
footer p {
  font-size: 15px;
  margin-bottom: 0;
  line-height: 1rem;
}
footer .color_gray {
  color: #888888;
}

.top_slider_section {
  background-image: url("../images/gradient_background-b2abe2eacdc717e44f1c2bb37d7bfa21.svg");
  background-size: cover;
  background-color: #141716;
}

.pdf_button:hover img {
  filter: invert(1);
}

.btn.btn-primary.btn-sm.dropdown-toggle {
  padding: 1rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn.btn-primary.btn-sm.dropdown-toggle::after {
  margin: 0;
}

.action-btns .btn {
  font-size: 16px;
  padding: 0.5rem 1rem;
}

.custom_form {
  max-width: 640px;
  width: 100%;
}
.custom_form .option_types_container {
  padding: 2rem;
  border: 1px solid #e5e5e5;
  background-color: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 15px;
  margin-bottom: 2rem;
}
.custom_form .option_types_container #product_type_form_optionTypes, .custom_form .option_types_container #product_type_form_excludedTiles {
  min-height: 5rem;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 1rem;
}
.custom_form .option_types_container #product_type_form_optionTypes > div, .custom_form .option_types_container #product_type_form_excludedTiles > div {
  display: flex;
  align-items: center;
}

/*# sourceMappingURL=app.output.css.map */
