/* c99e64 : is the main color of the logo */
@font-face {
  font-family: RedHatDisplay-Regular;
  src: url("../fonts/RedHatDisplay-Regular.ttf");
}
@font-face {
  font-family: RedHatDisplay-Bold;
  src: url("../fonts/RedHatDisplay-Bold.ttf");
}
body,
html {
  margin: 0;
  padding: 0;
  font-family: RedHatDisplay-Regular;
  font-weight: 100;
  color: #10284a;
  background-color: #ffffff;
  font-size: 18px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

html.prevent-scroll {
  overflow: hidden;
}

header {
  background-color: #d5d8e1;
  color: #10284a;
}
header .menu .active a {
  padding-bottom: 4px;
  border-bottom: 2px solid #10284a;
}
header .dev-mode {
  background-color: #f28f8f;
  color: #bd1616;
  font-size: 0.8rem;
  text-align: center;
  padding: 5px;
  font-weight: bold;
}
header .hamburger {
  padding: 0 !important;
}

footer {
  background-color: #e4be8b;
  color: #10284a;
}
footer a {
  text-decoration: underline;
}
footer a:hover {
  cursor: pointer;
}

/* Text & form */
.font-bold, b {
  font-family: RedHatDisplay-Bold;
}

.button {
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.25s;
  background-color: #c99e64;
  color: #ffffff;
}
.button:disabled {
  opacity: 0.5;
}
.button:not(:disabled):hover {
  cursor: pointer;
  opacity: 0.7;
}

input, textarea, select {
  border: 1px solid #c99e64;
  outline: none;
  padding: 10px 20px;
  border-radius: 5px;
  resize: none;
}

.accept-cgv-content a {
  text-decoration: underline;
}
.accept-cgv-content a:hover {
  cursor: pointer;
}

/* Banner cookie */
#bannerCookie {
  background-color: #d5d8e1;
  border: 2px solid #231F20;
  padding: 20px 30px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  font-size: 0.8rem;
  max-width: 600px;
  z-index: 100;
}
#bannerCookie h1 {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1rem;
}
#bannerCookie .banner__button {
  display: inline-block;
  padding: 5px 10px;
  margin-top: 10px;
  border: 2px solid #231F20;
}
#bannerCookie .banner__button.banner__button--accept {
  background-color: #231F20;
  color: #ffffff;
}
#bannerCookie .banner__button.banner__button--accept:hover {
  opacity: 0.8;
}
#bannerCookie .banner__button:hover {
  background-color: #231F20;
  color: #ffffff;
  cursor: pointer;
}
#bannerCookie a {
  text-decoration: underline;
}

/* Alert */
.alert {
  display: inline-block;
  border-radius: 5px;
  padding: 10px 20px;
}
.alert.alert--success {
  color: #15b84e;
  background-color: #79f1ad;
}
.alert.alert--error {
  color: #bd1616;
  background-color: #f28f8f;
}

/* Popup */
#popup-cart {
  display: none;
  position: fixed;
  bottom: 20px;
  border-radius: 5px;
  padding: 10px 20px;
  color: #ffffff;
  background-color: #231F20;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
}

.cart-resume {
  border-bottom: 1px solid #d5d8e1;
}

input[type=number]::-webkit-inner-spin-button {
  opacity: 1;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
}
.modal .modal_container {
  position: relative;
  background-color: #ffffff;
  border-radius: 5px;
  padding: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: fit-content;
  margin: 0 auto;
}

/*# sourceMappingURL=style-frontend.css.map */
