@keyframes border_anim {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
/* makes sizing simpler */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* remove default spacing */
/* force styling of type through styling, rather than elements */
* {
  margin: 0;
  padding: 0;
  font: inherit;
}
/* dark mode user-agent-styles */
/* improves punctuation in supported browsers */
html {
  color-scheme: dark light;
  hanging-punctuation: first last;
}
/* min body height */
body {
  min-height: 100svh;
  position: relative;
}
body > main {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
/* responsive images/videos */
img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}
/* Improved heading in supported browsers */
h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}
/* improve readability with max-width on paragraphs and lists */
/* prevent orphans in supported browsers */
p,
li {
  max-width: 65ch;
  text-wrap: pretty;
}
html {
  font-size: 16px;
}
body {
  color: #000000;
  font-family: 'Kanit', 'Lexend', 'Open Sans', sans-serif;
  font-size: 16px;
  margin: 0px;
  background: #ffffff;
  overflow: hidden;
  overflow-y: scroll;
}
h1,
h2,
h3,
h4,
h5 {
  color: #000000;
  text-transform: uppercase;
  margin-bottom: 22.5px;
  font-weight: bold;
}
.titre_container {
  margin-bottom: 22.5px;
}
.titre_container h1,
.titre_container h2,
.titre_container h3,
.titre_container h4,
.titre_container h5 {
  margin-bottom: 0px;
}
a,
a:link,
a:visited {
  transition: all 400ms;
  color: #8fcc40;
  text-decoration: none;
}
a.a--block,
a:link.a--block,
a:visited.a--block {
  display: block;
}
a.a--inline-block,
a:link.a--inline-block,
a:visited.a--inline-block {
  display: inline-block;
}
a.a--border-btn,
a:link.a--border-btn,
a:visited.a--border-btn {
  border-bottom: 1px solid #8fcc40;
  padding: 5px 0;
}
a:hover,
a:link:hover,
a:visited:hover {
  transition: all 400ms;
  color: #a7d768;
}
a.btn,
a.btn:link,
a.btn:visited,
button {
  background-color: #8fcc40;
  color: #1b3068;
  margin: 0px;
  max-width: max-content;
}
a.btn:hover,
a.btn:link:hover,
a.btn:visited:hover,
button:hover {
  background-color: #a7d768;
  color: #264390;
}
p {
  display: block;
  margin-bottom: 15px;
}
p:last-of-type {
  margin-bottom: 30px;
}
input,
select {
  height: 30px;
}
body main section {
  padding: 15px;
}
@media only screen and (min-width: 992px) {
  body main section {
    padding: 45px;
  }
}
@media only screen and (min-width: 992px) {
  body main header.site_header {
    padding: 0px 45px;
  }
}
h1 {
  font-size: 2em;
}
h2 {
  font-size: 1.8em;
}
h3 {
  font-size: 1.5em;
  text-transform: none !important;
  color: #000000;
}
h4 {
  font-size: 1.2em;
  text-transform: none !important;
  color: #000000;
}
@media only screen and (min-width: 992px) {
  .banner-mb {
    display: none;
  }
}
label {
  width: 100%;
  display: inline-block;
  margin-bottom: 10px;
}
label.loading::after {
  content: '';
  position: absolute;
  top: 5px;
  right: 5px;
  /*margin-top: -30px;*/
  /*margin-left: -30px;*/
  width: 5px;
  height: 5px;
  border-radius: 50px;
  border: 4px solid #b4b4b4;
  border-top-color: #8fcc40;
  animation: loading 500ms linear infinite;
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
label span {
  font-family: 'Kanit', 'Lexend', 'Open Sans', sans-serif;
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
  color: #b4b4b4;
}
label span.no_margin_bottom {
  margin-bottom: 0px;
}
.requiredField {
  color: #8d1b1b;
}
a.btn,
a.btn:link,
a.btn:visited,
button {
  color: #1b3068;
  background: #8fcc40;
  font-family: 'Kanit', 'Lexend', 'Open Sans', sans-serif;
  font-size: 14px;
  border: 1px solid #1b3068;
  border-radius: 4px;
  margin-bottom: 1px;
  transition: all 400ms;
  cursor: pointer;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  padding: 15px 30px;
  justify-content: space-between;
  gap: 1rem;
}
a.btn:hover,
a.btn:link:hover,
a.btn:visited:hover,
button:hover {
  color: #264390;
  background: #a7d768;
}
.groupe-input.required:after {
  content: '*';
  position: absolute;
  top: 3px;
  right: 9px;
  color: #8d1b1b;
  font-weight: bold;
  font-size: 24px;
}
.required-explanation {
  color: #8d1b1b;
  margin-bottom: 15px;
}
.required-explanation__asterisk {
  font-weight: bold;
  font-size: 24px;
}
input[type=text],
input[type=url],
input[type=email],
input[type=password],
input[type=tel],
input[type=number],
input[type=time],
input[type=date],
input[type=datetime-local],
textarea,
select {
  color: #2a2a2a;
  font-family: 'Kanit', 'Lexend', 'Open Sans', sans-serif;
  font-size: 14px;
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 1px solid #b4b4b4;
  border-radius: 4px;
  padding: 30px 15px;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */
  margin-bottom: 1px;
  width: 100%;
  transition: all 400ms;
  position: relative;
}
input[type=text]:focus,
input[type=url]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=time]:focus,
input[type=date]:focus,
input[type=datetime-local]:focus,
textarea:focus,
select:focus {
  border-color: #8fcc40;
}
input[type=text]:disabled,
input[type=url]:disabled,
input[type=email]:disabled,
input[type=password]:disabled,
input[type=tel]:disabled,
input[type=number]:disabled,
input[type=time]:disabled,
input[type=date]:disabled,
input[type=datetime-local]:disabled,
textarea:disabled,
select:disabled {
  cursor: not-allowed;
}
input[type=text]::placeholder,
input[type=url]::placeholder,
input[type=email]::placeholder,
input[type=password]::placeholder,
input[type=tel]::placeholder,
input[type=number]::placeholder,
input[type=time]::placeholder,
input[type=date]::placeholder,
input[type=datetime-local]::placeholder,
textarea::placeholder,
select::placeholder {
  color: #000000;
  font-weight: bold;
  text-transform: uppercase;
}
select option[value=""] {
  background-color: #b4b4b4;
  font-weight: bold;
}
.form-group-el {
  padding: 15px;
  margin-bottom: 15px;
  background-color: #f4f4f4;
}
.form-group-el > span {
  font-weight: bold;
  padding: 0px 15px 15px 0px;
  display: block;
}
.form-group-el__content {
  padding: 30px;
}
.form-group-el__content__inline {
  display: flex;
  flex-wrap: wrap;
}
.group-link a {
  text-decoration: none;
  color: #ffffff;
}
.group-link a:hover {
  color: #a7d768;
}
.groupe-switch {
  position: relative;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 100%;
  /* Rounded sliders */
}
.groupe-switch.round .switch {
  border-radius: 34px;
}
.groupe-switch.round .switch:before {
  border-radius: 50%;
}
.groupe-switch input {
  display: none;
}
.groupe-switch .switch {
  cursor: pointer;
  background-color: #b4b4b4;
  -webkit-transition: .4s;
  transition: .4s;
  width: 50px;
  height: 20px;
  margin: 0px;
  position: relative;
}
.groupe-switch .switch:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  left: 3px;
  bottom: 2.5px;
  background-color: #ffffff;
  -webkit-transition: .4s;
  transition: .4s;
}
.groupe-switch input:checked + .switch {
  background-color: #8fcc40;
}
.groupe-switch input:focus + .switch {
  box-shadow: 0 0 1px #8fcc40;
}
.groupe-switch input:checked + .switch:before {
  -webkit-transform: translateX(30px);
  -ms-transform: translateX(30px);
  transform: translateX(30px);
}
.groupe-checkbox {
  cursor: pointer;
  position: relative;
}
.groupe-checkbox.disabled {
  cursor: not-allowed;
}
.groupe-checkbox--w100 {
  width: 100%;
}
.groupe-checkbox input {
  display: none;
}
.groupe-checkbox input:checked + span {
  /*color: @color-main;*/
}
.groupe-checkbox input:checked + span:before {
  color: #8fcc40 !important;
  border-color: #8fcc40 !important;
}
.groupe-checkbox input:checked + span:after {
  color: #8fcc40;
  border-color: #8fcc40;
}
.groupe-checkbox span {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 0px;
}
.groupe-checkbox span.checkbox {
  text-transform: capitalize;
  font-weight: bold;
}
.groupe-checkbox span.checkbox:not([position]):before {
  font: var(--fa-font-regular);
  content: '\f00c';
  font-weight: 900;
  color: #ffffff;
  background: #ffffff;
  border: 1px solid #b4b4b4;
  border-radius: 4px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.groupe-checkbox span.checkbox[position=top],
.groupe-checkbox span.checkbox[position=top-center] {
  display: block;
}
.groupe-checkbox span.checkbox[position=top]:after,
.groupe-checkbox span.checkbox[position=top-center]:after {
  font: var(--fa-font-regular);
  content: '\f00c';
  font-weight: 900;
  color: #ffffff;
  background: #ffffff;
  border: 1px solid #b4b4b4;
  border-radius: 4px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
}
.groupe-checkbox span.checkbox[position=top-center] {
  text-align: center;
}
.groupe-checkbox span.checkbox[position=top-center]:after {
  margin: 5px auto 0 auto;
}
.groupe-checkbox__no_text {
  display: flex;
  justify-content: center;
}
.groupe-checkbox__no_text span {
  margin-bottom: 0px;
}
.groupe-radio {
  cursor: pointer;
  position: relative;
}
.groupe-radio input {
  display: none;
}
.groupe-radio input:checked + span {
  color: #8fcc40;
}
.groupe-radio input:checked + span:before {
  color: #8fcc40;
  border-color: #8fcc40;
}
.groupe-radio span {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.groupe-radio span:before {
  font: var(--fa-font-regular);
  content: '\f111';
  font-weight: 900;
  color: #ffffff;
  background: #ffffff;
  border: 1px solid #b4b4b4;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.groupe-input {
  position: relative;
}
.groupe-input--suffix input {
  padding-right: 30px;
}
.groupe-input__suffix {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  background: transparent;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.groupe-input__monnaitaire {
  text-align: right;
}
.groupe-input-recherche_with_title {
  display: flex;
  justify-content: space-between;
}
.groupe-input-recherche_without_title {
  display: flex;
  justify-content: center;
  gap: 5px;
}
.groupe-input-recherche_without_title_input_container {
  position: relative;
}
.groupe-input-recherche_btn_infos {
  display: flex;
}
table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  border-radius: 0.375rem;
  background-color: #ffffff;
  /*margin-top: 1.5rem;*/
}
table tr {
  border-bottom: 1px solid #e2e8f0;
}
table th,
table td {
  padding: 15px 22.5px;
  text-align: left;
  vertical-align: top;
}
table th.boolean,
table td.boolean {
  width: 91px;
}
table th.money,
table td.money {
  min-width: 105px;
}
table th.action_btns,
table td.action_btns {
  display: flex;
  gap: 5px;
  justify-content: end;
}
table th {
  padding-top: 22.5px;
  font-weight: 700;
  position: relative;
}
table th::first-letter {
  text-transform: capitalize;
}
table tbody tr:hover {
  background-color: #ffffff;
}
.table_column__boolean_true {
  font-size: 1.5em;
  color: #45a239;
}
.table_column__boolean_false {
  font-size: 1.5em;
  color: #b90606;
}
.pager {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
}
.pager__pages a {
  color: #000000;
  padding: 0.75rem 1rem;
  margin-bottom: 0.25rem;
  margin-right: 0.25rem;
  border-radius: 0.375rem;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  text-transform: capitalize;
  font-size: 0.875rem;
}
.pager__pages a.active,
.pager__pages a:hover {
  background-color: #ffffff;
  cursor: pointer;
}
.pager__other {
  display: flex;
  align-items: end;
}
.modal {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  overflow: hidden;
}
.modal_overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: rgba(117, 171, 46, 0.7);
  z-index: 990;
}
.modal_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.modal_container_card {
  background-color: #ffffff;
  z-index: 991;
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  /*overflow: hidden;*/
}
.modal_container_card_content {
  width: 100%;
  padding: 15px;
  position: relative;
}
.modal_container_card_header {
  width: 100%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  background-color: #fcfcfc;
  border-bottom: 1px solid #ffffff;
  border-radius: 10px;
}
.modal_container_card_header__close {
  cursor: pointer;
}
.modal_second_level {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  overflow: hidden;
}
.modal_second_level_overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: rgba(117, 171, 46, 0.7);
  z-index: 992;
}
.modal_second_level_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.modal_second_level_container_card {
  background-color: #ffffff;
  z-index: 993;
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  /*overflow: hidden;*/
}
.modal_second_level_container_card_content {
  width: 100%;
  padding: 15px;
  position: relative;
}
.modal_second_level_container_card_header {
  width: 100%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  background-color: #fcfcfc;
  border-bottom: 1px solid #ffffff;
  border-radius: 10px;
}
.modal_second_level_container_card_header__close {
  cursor: pointer;
}
.modal_third_level {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  overflow: hidden;
}
.modal_third_level_overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: rgba(117, 171, 46, 0.7);
  z-index: 994;
}
.modal_third_level_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.modal_third_level_container_card {
  background-color: #ffffff;
  z-index: 995;
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  /*overflow: hidden;*/
}
.modal_third_level_container_card_content {
  width: 100%;
  padding: 15px;
  position: relative;
}
.modal_third_level_container_card_header {
  width: 100%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  background-color: #fcfcfc;
  border-bottom: 1px solid #ffffff;
  border-radius: 10px;
}
.modal_third_level_container_card_header__close {
  cursor: pointer;
}
.modal_confirmation {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  overflow: hidden;
}
.modal_confirmation_overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: rgba(117, 171, 46, 0.7);
  z-index: 998;
}
.modal_confirmation_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.modal_confirmation_container_card {
  background-color: #ffffff;
  z-index: 999;
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  /*overflow: hidden;*/
}
.modal_confirmation_container_card_content {
  width: 100%;
  padding: 15px;
  position: relative;
}
.modal_confirmation_container_card_header {
  width: 100%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  background-color: #fcfcfc;
  border-bottom: 1px solid #ffffff;
  border-radius: 10px;
}
.modal_confirmation_container_card_header__close {
  cursor: pointer;
}
.modal_confirmation_container_card_footer_action_btns {
  display: flex;
  gap: 5px;
  margin: 10px;
}
.btn-close {
  position: relative;
  width: 40px;
  height: 40px;
  border: 4px solid #8fcc40;
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 0.4s ease-in;
}
.btn-close:hover {
  border-color: #b90606;
}
.btn-close:hover span {
  background: #b90606;
}
.btn-close span {
  content: "";
  background: #8fcc40;
  position: absolute;
  transition: all 0.4s ease-in-out;
}
.btn-close span:nth-child(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 4px;
  height: 24px;
  border-radius: 2px;
}
.btn-close span:nth-child(2) {
  top: 50%;
  left: 50%;
  width: 4px;
  height: 24px;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.btn-infos {
  position: relative;
}
.btn-infos .information {
  position: relative;
  width: 25px;
  height: 25px;
  border: 2px solid #8fcc40;
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 0.4s ease-in;
}
.btn-infos .information:hover {
  border-color: #1971b4;
}
.btn-infos .information:hover span {
  background: #1971b4;
}
.btn-infos .information span {
  content: "";
  background: #8fcc40;
  position: absolute;
  transition: all 0.4s ease-in-out;
}
.btn-infos .information span:nth-child(1) {
  transform: translateX(-50%);
  left: 50%;
  border-radius: 50%;
  width: 3px;
  height: 3px;
  top: 3px;
}
.btn-infos .information span:nth-child(2) {
  transform: translateX(-50%);
  left: 50%;
  top: 7px;
  width: 2px;
  height: 9px;
  border-radius: 2px;
}
.btn-infos.is-clicked:hover,
.btn-infos.is-clicked:hover .information {
  border-color: #b90606;
}
.btn-infos.is-clicked:hover span,
.btn-infos.is-clicked:hover .information span {
  background: #b90606;
}
.btn-infos.is-clicked span:nth-child(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 2px;
  height: 12px;
  border-radius: 2px;
}
.btn-infos.is-clicked span:nth-child(2) {
  top: 50%;
  left: 50%;
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.btn-infos .dialog {
  padding: 5px 15px;
  border: 4px solid #8fcc40;
  border-radius: 10px;
  position: absolute;
  left: -47.5px;
  /*top: @out-top-start;*/
  bottom: 175%;
  opacity: 0;
  /*width: 200px;*/
  background: #fcfcfc;
  display: none;
}
.btn-infos .dialog:before {
  content: "";
  border: 4px solid #8fcc40;
  border-top: none;
  border-right: none;
  background: #fcfcfc;
  width: 15px;
  height: 15px;
  display: block;
  position: absolute;
  transform: rotate(-45deg);
  bottom: -12px;
  left: 47px;
}
.btn-infos .dialog p {
  font-weight: 600;
}
.btn-infos .dialog.out {
  animation: btnInfosOutAnimation forwards .6s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
  -webkit-animation: btnInfosOutAnimation forwards .6s;
  -webkit-animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: btnInfosOutAnimation forwards .6s;
  -moz-animation-iteration-count: 1;
  -moz-transform-origin: 50% 50%;
  -o-animation: btnInfosOutAnimation forwards .6s;
  -o-animation-iteration-count: 1;
  -o-transform-origin: 50% 50%;
  -ms-animation: btnInfosOutAnimation forwards .6s;
  -ms-animation-iteration-count: 1;
  -ms-transform-origin: 50% 50%;
}
.btn-infos .dialog.in {
  z-index: 999;
  animation: btnInfosInAnimation forwards .6s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
  -webkit-animation: btnInfosInAnimation forwards .6s;
  -webkit-animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: btnInfosInAnimation forwards .6s;
  -moz-animation-iteration-count: 1;
  -moz-transform-origin: 50% 50%;
  -o-animation: btnInfosInAnimation forwards .6s;
  -o-animation-iteration-count: 1;
  -o-transform-origin: 50% 50%;
  -ms-animation: btnInfosInAnimation forwards .6s;
  -ms-animation-iteration-count: 1;
  -ms-transform-origin: 50% 50%;
  display: block;
}
@keyframes btnInfosOutAnimation {
  0% {
    opacity: 1;
    transform: scaleX(1) scaleY(1);
    left: -47.5px;
    top: -80px;
  }
  25% {
    opacity: 1;
    transform: scaleX(0.95) scaleY(0.95);
    left: -47.5px;
    top: -80px;
  }
  50% {
    opacity: 1;
    transform: scaleX(1.1) scaleY(1.1);
    left: -47.5px;
    top: -80px;
  }
  100% {
    opacity: 0;
    transform: scaleX(0.3) scaleY(0.3);
    left: -70px;
    top: -15px;
  }
}
@-moz-keyframes btnInfosOutAnimation {
  0% {
    opacity: 1;
    transform: scaleX(1) scaleY(1);
    left: -47.5px;
    top: -80px;
  }
  25% {
    opacity: 1;
    transform: scaleX(0.95) scaleY(0.95);
    left: -47.5px;
    top: -80px;
  }
  50% {
    opacity: 1;
    transform: scaleX(1.1) scaleY(1.1);
    left: -47.5px;
    top: -80px;
  }
  100% {
    opacity: 0;
    transform: scaleX(0.3) scaleY(0.3);
    left: -70px;
    top: -15px;
  }
}
@-webkit-keyframes btnInfosOutAnimation {
  0% {
    opacity: 1;
    transform: scaleX(1) scaleY(1);
    left: -47.5px;
    top: -80px;
  }
  25% {
    opacity: 1;
    transform: scaleX(0.95) scaleY(0.95);
    left: -47.5px;
    top: -80px;
  }
  50% {
    opacity: 1;
    transform: scaleX(1.1) scaleY(1.1);
    left: -47.5px;
    top: -80px;
  }
  100% {
    opacity: 0;
    transform: scaleX(0.3) scaleY(0.3);
    left: -70px;
    top: -15px;
  }
}
@-o-keyframes btnInfosOutAnimation {
  0% {
    opacity: 1;
    transform: scaleX(1) scaleY(1);
    left: -47.5px;
    top: -80px;
  }
  25% {
    opacity: 1;
    transform: scaleX(0.95) scaleY(0.95);
    left: -47.5px;
    top: -80px;
  }
  50% {
    opacity: 1;
    transform: scaleX(1.1) scaleY(1.1);
    left: -47.5px;
    top: -80px;
  }
  100% {
    opacity: 0;
    transform: scaleX(0.3) scaleY(0.3);
    left: -15px;
    top: -15px;
  }
}
@-ms-keyframes btnInfosOutAnimation {
  0% {
    opacity: 1;
    transform: scaleX(1) scaleY(1);
    left: -47.5px;
    top: -80px;
  }
  25% {
    opacity: 1;
    transform: scaleX(0.95) scaleY(0.95);
    left: -47.5px;
    top: -80px;
  }
  50% {
    opacity: 1;
    transform: scaleX(1.1) scaleY(1.1);
    left: -47.5px;
    top: -80px;
  }
  100% {
    opacity: 0;
    transform: scaleX(0.3) scaleY(0.3);
    left: -70px;
    top: -15px;
  }
}
@keyframes btnInfosInAnimation {
  0% {
    opacity: 0;
    transform: scaleX(0.3) scaleY(0.3);
  }
  25% {
    opacity: 1;
    transform: scaleX(1.1) scaleY(1.1);
  }
  50% {
    opacity: 1;
    transform: scaleX(0.95) scaleY(0.95);
  }
  100% {
    opacity: 1;
    transform: scaleX(1) scaleY(1);
  }
}
@-moz-keyframes btnInfosInAnimation {
  0% {
    opacity: 0;
    transform: scaleX(0.3) scaleY(0.3);
  }
  25% {
    opacity: 1;
    transform: scaleX(1.1) scaleY(1.1);
  }
  50% {
    opacity: 1;
    transform: scaleX(0.95) scaleY(0.95);
  }
  100% {
    opacity: 1;
    transform: scaleX(1) scaleY(1);
  }
}
@-webkit-keyframes btnInfosInAnimation {
  0% {
    opacity: 0;
    transform: scaleX(0.3) scaleY(0.3);
  }
  25% {
    opacity: 1;
    transform: scaleX(1.1) scaleY(1.1);
  }
  50% {
    opacity: 1;
    transform: scaleX(0.95) scaleY(0.95);
  }
  100% {
    opacity: 1;
    transform: scaleX(1) scaleY(1);
  }
}
@-o-keyframes btnInfosInAnimation {
  0% {
    opacity: 0;
    transform: scaleX(0.3) scaleY(0.3);
  }
  25% {
    opacity: 1;
    transform: scaleX(1.1) scaleY(1.1);
  }
  50% {
    opacity: 1;
    transform: scaleX(0.95) scaleY(0.95);
  }
  100% {
    opacity: 1;
    transform: scaleX(1) scaleY(1);
  }
}
@-ms-keyframes btnInfosInAnimation {
  0% {
    opacity: 0;
    transform: scaleX(0.3) scaleY(0.3);
  }
  25% {
    opacity: 1;
    transform: scaleX(1.1) scaleY(1.1);
  }
  50% {
    opacity: 1;
    transform: scaleX(0.95) scaleY(0.95);
  }
  100% {
    opacity: 1;
    transform: scaleX(1) scaleY(1);
  }
}
body a.btn-edit,
body a.btn-edit:link,
body a.btn-edit:visited,
.btn-edit {
  background-color: #b98d06;
  border-radius: 0.75rem;
  transition: all 400ms;
}
body a.btn-edit:hover,
body a.btn-edit:link:hover,
body a.btn-edit:visited:hover,
.btn-edit:hover {
  background-color: #eab308;
}
.btn-create {
  background-color: #45a239;
  border-radius: 0.75rem;
  transition: all 400ms;
}
.btn-create:hover {
  background-color: #5bc04e;
}
.btn-delete {
  background-color: #b90606;
  border-radius: 0.75rem;
  transition: all 400ms;
}
.btn-delete:hover {
  background-color: #ea0808;
}
.btn-export {
  background-color: #1971b4;
  border-radius: 0.75rem;
  transition: all 400ms;
}
.btn-export:hover {
  background: #208de0;
}
.btn-confirm {
  background-color: #b90606;
}
.btn-confirm:hover {
  background-color: #ea0808;
}
.tabs_links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  border: 1px solid #cbcbcb;
  background-color: #f1f1f1;
}
.tabs_links > * {
  background-color: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 15px;
  transition: 0.3s;
}
.tabs_links > *:hover {
  background-color: #d8d8d8;
}
.tabs_links > *.active {
  background-color: #cbcbcb;
}
.tabs_content {
  /*min-width: 900px;*/
  display: block;
  opacity: 1;
  transition: all 400ms;
}
.tabs_content.loading {
  opacity: 0;
}
.tabs_content h2 {
  margin: 30px 0px;
}
.accordeon {
  border-radius: 8px;
  /*overflow: hidden;*/
}
.accordeon_item {
  width: 100%;
  /*overflow: hidden;*/
}
.accordeon_item label {
  margin: 0px;
}
.accordeon_item input.accordeon_item_chk {
  display: none;
}
.accordeon_item input.accordeon_item_chk ~ .accordeon_item_content {
  display: none;
}
.accordeon_item input.accordeon_item_chk:checked + .accordeon_item_label {
  background: #cbcbcb;
}
.accordeon_item input.accordeon_item_chk:checked + .accordeon_item_label::after {
  transform: rotate(90deg);
}
.accordeon_item input.accordeon_item_chk:checked ~ .accordeon_item_content {
  display: block;
  max-height: 100vh;
  padding: 1em;
  border: 1px solid #cbcbcb;
}
.accordeon_item_label {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  background: #f1f1f1;
  font-weight: bold;
  cursor: pointer;
  /* Icon */
}
.accordeon_item_label:hover {
  background: #d8d8d8;
}
.accordeon_item_label::after {
  content: "\276F";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all .35s;
}
.accordeon_item_content {
  max-height: 0;
  padding: 0 1em;
  background: #ffffff;
  transition: all .35s;
}
.accordeon_item:last-child .accordeon_item_content {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.section_filtre {
  display: block;
  margin-bottom: 15px;
}
.section_filtre label {
  margin-bottom: 0px;
  width: auto;
}
.section_filtre_search {
  display: flex;
  justify-content: space-between;
}
.section_filtre_additional {
  display: flex;
  gap: 15px;
}
.section_filtre_top_actions_container {
  display: flex;
  justify-content: space-between;
}
.section_filtre_top_actions_container_left {
  display: flex;
  gap: 15px;
  align-items: end;
}
.section_filtre_top_actions_container_right {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  align-items: end;
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  padding-right: 15px;
  display: none;
}
.slick-slide:last-of-type {
  padding-right: 0px;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.slick-slider .nextArrowBtn,
.slick-slider .prevArrowBtn {
  position: absolute;
  z-index: 1000;
  color: #8fcc40;
  font-size: 32px;
  cursor: pointer;
  transition: color 0.3s linear, color 0.3s linear;
}
.slick-slider .nextArrowBtn:hover,
.slick-slider .prevArrowBtn:hover {
  color: #a7d768;
}
.slick-slider .nextArrowBtn {
  top: calc(50% - 16px);
  right: calc(-19px);
}
.slick-slider .prevArrowBtn {
  top: calc(50% - 16px);
  left: calc(-19px);
}
/* masonry grid */
.masonry-grid__sizer {
  width: calc(100% / 5);
  display: none;
}
.masonry-grid__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  padding: 30px 0px;
}
.masonry-grid__gallery {
  max-width: 100%;
}
.masonry-grid__gallery:after {
  content: '';
  display: block;
  clear: both;
}
.masonry-grid__gallery__item {
  width: calc(100% / 5);
  float: left;
  padding: 2px;
}
.masonry-grid__gallery__item > img {
  width: 100%;
  height: 100%;
}
.masonry-grid__gallery__item__w2 {
  width: calc(200% / 5);
}
.masonry-grid__gallery__item__w3 {
  width: calc(300% / 5);
}
.masonry-grid__gallery__item__w4 {
  width: calc(400% / 5);
}
body::after {
  content: '';
  position: absolute;
  top: 0px;
  z-index: 97;
  background-color: #000000;
  height: 100%;
  width: 100%;
  transition: 0.4s;
  opacity: 0;
  visibility: hidden;
}
body.mobile-nav-is-toggled::after {
  opacity: 0.75;
  visibility: visible;
}
@media only screen and (min-width: 992px) {
  body.home {
    background-color: #ffffff !important;
    background-image: url("../images/bg-header.png") !important;
    background-position: 0px 95px !important;
    background-repeat: no-repeat !important;
  }
}
.site_header {
  position: relative;
  width: 100%;
  z-index: 99;
}
@media only screen and (min-width: 992px) {
  .site_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.site_header__logo {
  width: 100%;
  position: relative;
  z-index: 99;
  padding: 30px 45px;
  background-color: #ffffff;
}
.site_header__logo img {
  max-width: 100%;
}
@media only screen and (min-width: 992px) {
  .site_header__logo {
    width: auto;
    background-color: transparent;
  }
}
.site_header__menu {
  text-transform: uppercase;
  position: relative;
  z-index: 98;
}
.site_header__menu ul {
  list-style: none;
}
.site_header__menu a {
  color: #1b3068;
}
.site_header__menu a:hover {
  color: #1b3068;
}
.site_header__menu__desktop {
  display: none;
  position: relative;
}
.site_header__menu__desktop > ul {
  display: flex;
}
.site_header__menu__desktop > ul > li {
  list-style: none;
  display: inline-block;
  position: relative;
}
.site_header__menu__desktop > ul > li::before {
  content: '';
  display: block;
  height: 3px;
  background-color: #8fcc40;
  position: absolute;
  top: 0px;
  width: 0%;
  transition: all ease-in-out 250ms;
}
.site_header__menu__desktop > ul > li a {
  display: flex;
  align-items: center;
  padding: 0px 15px;
  height: 100%;
  transition: background-color 0.3s linear, color 0.3s linear;
}
.site_header__menu__desktop > ul > li > a {
  color: #1b3068;
  font-weight: bold;
}
.site_header__menu__desktop > ul > li > ul {
  visibility: hidden;
  width: 100%;
  position: absolute;
  background-color: #1b3068;
}
.site_header__menu__desktop > ul > li > ul a {
  padding: 15px;
  text-transform: lowercase;
  display: block;
  background-color: #1b3068;
  color: #ffffff;
  position: relative;
}
.site_header__menu__desktop > ul > li > ul a > span {
  position: relative;
}
.site_header__menu__desktop > ul > li > ul a > span::after {
  content: '';
  display: block;
  height: 2px;
  background-color: #8fcc40;
  position: absolute;
  bottom: -3px;
  width: 0%;
  transition: all ease-in-out 250ms;
}
.site_header__menu__desktop > ul > li > ul a::first-letter {
  text-transform: capitalize;
}
.site_header__menu__desktop > ul > li > ul a:hover {
  background-color: #1b3068;
  color: #ffffff;
}
.site_header__menu__desktop > ul > li > ul a:hover > span::after {
  width: 100%;
}
.site_header__menu__desktop > ul > li:hover::before {
  width: 100%;
}
.site_header__menu__desktop > ul > li:hover > ul {
  visibility: visible;
}
.site_header__menu__desktop > ul > li:hover > a {
  color: #1b3068;
}
@media only screen and (min-width: 992px) {
  .site_header__menu__desktop {
    display: block;
  }
}
.site_header__menu__mobile {
  position: relative;
}
.site_header__menu__mobile__header {
  position: relative;
  padding: 30px 15px;
  display: flex;
  justify-content: right;
  background-color: #1b3068;
  z-index: 98;
  width: 100%;
}
.site_header__menu__mobile__header__hamburgler {
  width: 20px;
  height: 15px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.site_header__menu__mobile__header__hamburgler > span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffffff;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.site_header__menu__mobile__header__hamburgler > span:nth-child(1) {
  top: 0px;
}
.site_header__menu__mobile__header__hamburgler > span:nth-child(2),
.site_header__menu__mobile__header__hamburgler > span:nth-child(3) {
  top: 6px;
}
.site_header__menu__mobile__header__hamburgler > span:nth-child(4) {
  top: 12px;
}
.site_header__menu__mobile__header__hamburgler.open > span:nth-child(1),
.site_header__menu__mobile__header__hamburgler.open > span:nth-child(4) {
  top: 6px;
  width: 0%;
  left: 50%;
}
.site_header__menu__mobile__header__hamburgler.open > span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.site_header__menu__mobile__header__hamburgler.open > span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.site_header__menu__mobile__nav {
  display: flex;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  transition: 0.45s;
  transform: translateY(-200%);
  z-index: 97;
  position: absolute;
}
.site_header__menu__mobile__nav > ul {
  flex: 0 0 100%;
  background-color: #ffffff;
}
.site_header__menu__mobile__nav > ul > li:not(:last-child) {
  border-bottom: solid 1px #1b3068;
}
.site_header__menu__mobile__nav > ul > li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site_header__menu__mobile__nav > ul > li a:hover > div {
  color: #8fcc40;
}
.site_header__menu__mobile__nav > ul > li a > div {
  padding: 15px;
  background-color: #ffffff;
  color: #1b3068;
  font-size: 1rem;
  line-height: 1.5em;
  font-weight: bold;
}
.site_header__menu__mobile__nav > ul > li a > div.link-arrow {
  background-color: #8fcc40;
  color: #ffffff;
}
.site_header__menu__mobile__nav > ul > li a > div.link-arrow:hover {
  background-color: #a7d768;
}
.site_header__menu__mobile__nav > ul > li a.nav-back-link > div.link-arrow {
  flex-grow: 1;
}
.site_header__menu__mobile__nav__expandable__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  background-color: #ffffff;
  transition: 0.3s;
  visibility: hidden;
}
.site_header__menu__mobile__nav__expandable__content > li:not(:last-child) {
  border-bottom: solid 1px #1b3068;
}
.site_header__menu__mobile__nav__expandable__content > li > a {
  background-color: #ffffff;
}
.site_header__menu__mobile__nav__expandable__content > li > a.nav-back-link {
  background-color: #8fcc40;
  color: #ffffff;
}
.site_header__menu__mobile__nav__expandable__content > li > a.nav-back-link:hover {
  background-color: #a7d768;
}
.site_header__menu__mobile__nav__expandable.expanded .site_header__menu__mobile__nav__expandable__content {
  transform: translateX(0);
  visibility: visible;
}
.site_header__menu__mobile__nav.toggled {
  transform: translateY(0);
}
@media only screen and (min-width: 992px) {
  .site_header__menu__mobile {
    display: none;
  }
}
.site_header .menu-link-phone {
  position: relative;
  margin-left: 1em;
}
.site_header .menu-link-phone::before {
  content: '';
  display: none;
}
.site_header .menu-link-phone > a > .menu_prefix-icon {
  padding: 15px;
  border-radius: calc(2em + 15px);
  left: -0.5em;
  z-index: 200;
  font-size: 2rem;
  width: 2em;
  height: 2em;
  text-align: center;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.site_header .menu-link-phone > a > .menu_label {
  padding: 5px 30px;
  border-radius: 0px 46px 46px 0px;
}
.site_header .menu-link-submission {
  position: relative;
  margin-left: 1em;
}
.site_header .menu-link-submission::before {
  content: '';
  display: none;
}
.site_header .menu-link-submission > a {
  color: #ffffff !important;
  display: flex;
  align-items: center;
}
.site_header .menu-link-submission > a > .menu_prefix-icon {
  background-color: #1b3068;
  padding: 15px;
  border-radius: calc(2em + 15px);
  left: -0.75em;
  z-index: 200;
  font-size: 2em;
  width: 2em;
  height: 2em;
  text-align: center;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.site_header .menu-link-submission > a > .menu_label {
  background-color: #1b3068;
  padding: 5px 30px;
  border-radius: 0px 46px 46px 0px;
}
.site_header .menu-link-submission:hover > a > .menu_prefix-icon,
.site_header .menu-link-submission:hover > a > .menu_label {
  background-color: #264390;
}
.site-footer {
  width: 100%;
  margin-top: auto;
  position: relative;
}
.site-footer__app {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.site-footer__app a {
  color: #00125b;
}
.site-footer__app a:hover {
  color: #264390;
}
.site-footer__app__socials {
  display: flex;
  gap: 5px;
}
.site-footer__app__menu {
  margin-bottom: 30px;
}
.site-footer__app__menu > ul {
  display: flex;
  gap: 30px;
  flex-direction: column;
  margin: auto;
}
.site-footer__app__menu > ul > li > a {
  text-transform: uppercase;
  font-weight: bold;
}
.site-footer__app__menu > ul ul {
  margin-top: 15px;
}
.site-footer__app__menu > ul li {
  list-style: none;
  text-align: center;
}
.site-footer__app__menu:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.site-footer__app .financeit {
  margin-top: 42px;
  display: block;
}
.site-footer__app #cookies-configuration-link {
  cursor: pointer;
}
.site-footer__app > div:nth-child(2) {
  margin-top: 30px;
}
.site-footer__app > div:nth-child(2) .site-footer__app__socials a {
  margin: 0 auto 24px auto;
}
@media only screen and (min-width: 992px) {
  .site-footer__app {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  .site-footer__app > div:nth-child(1) {
    margin-bottom: 26px;
    width: 18%;
  }
  .site-footer__app > div:nth-child(2) {
    margin-top: 0px;
  }
  .site-footer__app > div:nth-child(2) > div {
    display: flex;
  }
  .site-footer__app > div:nth-child(2) > div p {
    margin: 0 20px 15px 20px;
  }
  .site-footer__app > div:nth-child(2) .site-footer__app__socials a {
    margin: 0 20px 15px 20px;
  }
  .site-footer__app > div:nth-child(3) {
    flex: 1;
  }
  .site-footer__app__menu {
    margin-bottom: 45px;
  }
  .site-footer__app__menu > ul {
    flex-direction: row;
    justify-content: space-evenly;
    margin: unset;
  }
  .site-footer__app__menu:nth-child(2) {
    flex-direction: row;
  }
}
@media only screen and (min-width: 1400px) {
  .site-footer__app {
    align-items: flex-start;
    flex-wrap: nowrap;
  }
  .site-footer__app > div:nth-child(1) {
    width: unset;
  }
  .site-footer__app > div:nth-child(2) > div {
    display: unset;
  }
  .site-footer__app > div:nth-child(3) {
    flex: unset;
  }
  .site-footer__app__menu > ul {
    justify-content: flex-start;
  }
}
.site-footer__copyright {
  text-align: center;
  font-size: 12px;
  color: #b4b4b4;
  position: relative;
}
.site-footer__copyright a {
  text-decoration: none;
  color: #1b3068;
}
.site-footer__copyright a:hover {
  color: #264390;
}
.flash-message {
  font-weight: normal;
  position: relative;
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 3px solid transparent;
  border-radius: .25rem;
}
.flash-message__success {
  color: #288d1b;
  background-color: #ddfad9;
  border-color: #288d1b;
}
.flash-message__danger,
.flash-message__error {
  color: #8d1b1b;
  background-color: #f8d7da;
  border-color: #8d1b1b;
}
.flash-message__warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #856404;
}
.flash-message__infos {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #0c5460;
}
.apexcharts-toolbar {
  top: auto !important;
  right: 0px !important;
  bottom: 0px !important;
}
.validation_message li {
  color: #8d1b1b;
  margin-bottom: 15px;
  list-style: none;
}
section.google_map {
  height: 400px;
  padding: 0px !important;
  position: relative;
}
.header__hero__others {
  width: 100%;
  position: relative;
  display: flex;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.header__hero__others__content {
  background-color: #1b3068;
  width: 100%;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .header__hero__others__content {
    width: 30%;
  }
}
.header__hero__others__content h1 {
  color: #ffffff;
  margin: 0px;
}
.header__hero__others__content__bubble {
  width: 58%;
  position: absolute;
  top: -105px;
  right: -105px;
  max-width: max-content;
}
@media only screen and (min-width: 992px) {
  .header__hero__others__content {
    padding: 60px 30px;
    margin: auto 0px auto 240px;
  }
  .header__hero__others__content__bubble {
    width: 34%;
    min-width: 166px;
  }
}
.app.four-o-four main > section {
  margin: 0px auto;
}
.app.home .header__hero {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.app.home .header__hero__black {
  background-color: black;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
}
.app.home .header__hero__black__vendor {
  display: none;
}
@media only screen and (min-width: 992px) {
  .app.home .header__hero {
    height: 400px;
  }
  .app.home .header__hero__vendor {
    display: none;
  }
  .app.home .header__hero__black .content {
    justify-content: space-between;
  }
  .app.home .header__hero__black .content div:nth-child(1) {
    display: flex;
    align-items: center;
    position: unset;
    justify-content: space-between;
    margin-top: -33px;
  }
  .app.home .header__hero__black .content div:nth-child(2) {
    margin-top: -135px;
    width: 38%;
  }
  .app.home .header__hero__black__vendor {
    display: inline-block;
    margin-top: -84px;
    width: 35%;
  }
  .app.home .header__hero > .content {
    padding-top: 90px;
  }
}
@media only screen and (min-width: 1400px) {
  .app.home .header__hero__black .content div:nth-child(2) {
    width: unset;
    margin-top: -27%;
  }
  .app.home .header__hero__black__vendor {
    width: unset;
    margin-top: -210px;
    margin-right: 15px;
  }
}
.header__hero > .content,
.header__hero__black > .content {
  height: 100%;
}
.header__hero > .content > *,
.header__hero__black > .content > * {
  position: relative;
}
.header__hero > .content > * > p,
.header__hero__black > .content > * > p {
  color: white;
  font-size: 1.5em;
  margin-bottom: 0px;
}
@media only screen and (min-width: 992px) {
  .header__hero > .content,
  .header__hero__black > .content {
    display: flex;
    padding-bottom: 0px;
  }
  .header__hero > .content > *,
  .header__hero__black > .content > * {
    width: 50%;
  }
  .header__hero > .content > * > p,
  .header__hero__black > .content > * > p {
    margin-left: auto;
    width: 60%;
    margin-bottom: 30px;
  }
}
.what-you-looking-for {
  padding: 0px;
}
.what-you-looking-for h2 {
  color: #ffffff;
}
.what-you-looking-for > div:first-of-type {
  background-color: #00125b;
  color: #ffffff;
  padding: 15px;
}
.what-you-looking-for > div:last-of-type {
  display: flex;
  flex-direction: column;
}
.what-you-looking-for > div:last-of-type > div {
  padding: 15px;
  gap: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.what-you-looking-for > div:last-of-type > div .col-3 {
  min-width: 30px;
}
.what-you-looking-for > div:last-of-type > div:nth-child(odd) {
  background-color: #dae1f1;
}
.what-you-looking-for > div:last-of-type > div a {
  display: inline-block;
  font-size: 50px;
}
.what-you-looking-for > div:last-of-type > div p {
  margin-bottom: 0px;
}
@media only screen and (min-width: 992px) {
  .what-you-looking-for {
    display: flex;
  }
  .what-you-looking-for > div {
    display: flex;
    align-items: center;
    width: 50%;
  }
  .what-you-looking-for > div:first-of-type {
    padding: 45px;
  }
  .what-you-looking-for > div:last-of-type > div {
    padding: 45px;
  }
  .what-you-looking-for > div > * {
    width: 100%;
  }
}
.customize-your-product {
  padding: 0px;
}
.customize-your-product > div {
  padding: 15px;
}
.customize-your-product > div:last-of-type {
  background-color: #8fcc40;
  text-align: center;
}
.customize-your-product__pieces {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.customize-your-product__pieces > * {
  margin: 15px 7.5%;
}
@media only screen and (min-width: 992px) {
  .customize-your-product {
    display: flex;
  }
  .customize-your-product > div {
    width: 50%;
    padding: 45px;
    display: flex;
    align-items: center;
  }
  .customize-your-product > div:last-of-type {
    flex-direction: column;
  }
}
.what-you-looking-for a.btn,
.customize-your-product a.btn {
  display: inline-block;
}
.your-space-failing-you {
  background-image: url('../images/webp/home/espace-rangement.webp');
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #8fcc40;
  width: 100%;
  height: 573px;
  margin: auto;
}
.your-space-failing-you h3 {
  color: #8fcc40;
  text-align: center;
}
.your-space-failing-you i {
  font-size: 50px;
}
.app.about .header__hero__others .banner {
  display: none;
  width: 100%;
}
.app.about .section1__left .btn {
  max-width: max-content;
}
.app.about .section1__right {
  display: flex;
  position: relative;
  flex-direction: column-reverse;
  justify-content: center;
}
.app.about .section1__right__quote {
  padding: 30px;
  background-color: #00125b;
  color: #ffffff;
}
.app.about .section1__right__quote p {
  margin-bottom: 0px;
}
@media only screen and (min-width: 992px) {
  .app.about .header__hero__others .banner {
    display: block;
  }
  .app.about .header__hero__others__content {
    min-width: 424px;
    position: absolute;
    top: 10%;
    transform: translateY(10%);
  }
  .app.about .section1 {
    display: flex;
    background-color: #ffffff !important;
    background-image: url("../images/vague-header-arriere-plan.png") !important;
    background-position: 45px calc(100% - 45px) !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
  }
  .app.about .section1 > * {
    width: 50%;
    padding: 0px 45px;
  }
  .app.about .section1 a.btn {
    display: inline-block;
  }
  .app.about .section1__right {
    display: flex;
    position: relative;
    justify-content: center;
    flex-direction: row;
  }
  .app.about .section1__right__quote {
    width: 68%;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 84%;
  }
  .app.about .section1__right__quote > div {
    width: 40%;
    min-width: 160px;
    font-weight: bold;
    font-size: 1.5em;
  }
  .app.about .section1__right > div.album {
    width: 50%;
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .app.about .section2 {
    display: flex;
  }
  .app.about .section2 > * {
    width: 50%;
    padding: 0px 45px;
  }
}
@media only screen and (min-width: 1200px) {
  .app.about .header__hero__others__content {
    top: 28%;
    transform: translateY(28%);
  }
}
.app.realisations {
  /*
    .grid-container{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
        gap: 6px;
    }

    .grid-container div{
        width: 100%;
        height: 100%;
    }

    .grid-container div img{
        width: 100%;
        height: 100%;
    }

    .grid-container div:nth-child(2){
        grid-column-end: span 2;
    }

    .grid-container div:nth-child(3){
        grid-column-end: span 2;
    }

    .grid-container div:nth-child(5){
        grid-column-end: span 2;
    }

    
    .grid-container-2{
     
    }

    .grid-container-2 .row{
        display: flex;
        column-gap: 6px;
    }

    .grid-container-2 img{
        width: 100%;
        max-width: max-content;
        padding-bottom: 6px;
    }

    .grid-container-2 img:nth-child(2){
       
    }

    .grid-container-2 img:nth-child(3){

    }

    .grid-container-2 img:nth-child(5){

    }
    */
}
.app.realisations .header__hero__others .banner {
  display: none;
  width: 100%;
}
.app.realisations .masonry-grid__gallery {
  position: relative;
}
.app.realisations .masonry-grid__gallery .loading-ring {
  display: none;
}
.app.realisations .masonry-grid__gallery.loading .masonry-grid__gallery__item {
  display: none !important;
}
.app.realisations .masonry-grid__gallery.loading .loading-ring {
  display: block;
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0px auto;
}
.app.realisations .masonry-grid__gallery.loading .loading-ring > div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #8fcc40;
  border-radius: 50%;
  animation: loading-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #8fcc40 transparent transparent transparent;
}
.app.realisations .masonry-grid__gallery.loading .loading-ring > div:nth-child(1) {
  animation-delay: -0.45s;
}
.app.realisations .masonry-grid__gallery.loading .loading-ring > div:nth-child(2) {
  animation-delay: -0.3s;
}
.app.realisations .masonry-grid__gallery.loading .loading-ring > div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes loading-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.app.realisations .masonry-grid__gallery__item {
  display: none;
  position: absolute;
}
.app.realisations .masonry-grid__gallery.all .masonry-grid__gallery__item {
  display: block;
}
.app.realisations .masonry-grid__gallery.shed .masonry-grid__gallery__item.shed {
  display: block;
}
.app.realisations .masonry-grid__gallery.pavillon .masonry-grid__gallery__item.pavillon {
  display: block;
}
.app.realisations .masonry-grid__gallery.garage .masonry-grid__gallery__item.garage {
  display: block;
}
@media only screen and (min-width: 992px) {
  .app.realisations .header__hero__others .banner {
    display: block;
  }
  .app.realisations .header__hero__others__content {
    min-width: 424px;
    position: absolute;
    top: 10%;
    transform: translateY(10%);
  }
}
@media only screen and (min-width: 1200px) {
  .app.realisations .header__hero__others__content {
    top: 28%;
    transform: translateY(28%);
  }
}
.app.contact .header__hero__others .banner {
  display: none;
  width: 100%;
}
.app.contact .header__hero__others.soumission {
  background-image: url("../images/soumission/soumission-cabanon-mb.jpg") !important;
}
@media only screen and (min-width: 992px) {
  .app.contact .header__hero__others.soumission {
    background-image: url("../images/soumission/soumission-cabanon.jpg") !important;
  }
}
.app.contact .coordinates > * {
  display: block;
  margin-bottom: 15px;
}
.app.contact .contact_form__checkboxes {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media only screen and (min-width: 992px) {
  .app.contact .header__hero__others .banner {
    display: block;
  }
  .app.contact .header__hero__others__content {
    min-width: 424px;
    position: absolute;
    top: 10%;
    transform: translateY(10%);
  }
  .app.contact .layout-50-50 {
    display: flex;
    gap: 15px;
    justify-content: space-between;
  }
  .app.contact .layout-50-50 > * {
    width: 50%;
  }
}
@media only screen and (min-width: 1200px) {
  .app.contact .header__hero__others__content {
    top: 28%;
    transform: translateY(28%);
  }
}
.app.privacy-policy .header__hero__others {
  background-image: url("../images/realisations/cabanon-cour-arriere-mb.jpg") !important;
}
@media only screen and (min-width: 992px) {
  .app.privacy-policy .header__hero__others {
    background-image: url("../images/realisations/cabanon-cour-arriere.jpg") !important;
  }
}
.app.privacy-policy main > section {
  margin: 0px auto;
}
.app.privacy-policy main > section ul {
  list-style-position: inside;
  margin-bottom: 30px;
}
.app.privacy-policy main > section p,
.app.privacy-policy main > section li {
  max-width: 100ch;
}
.app.privacy-policy main > section .responsable {
  margin-bottom: 30px;
}
.app.privacy-policy main > section .responsable p {
  margin-bottom: 10px;
}
.app.privacy-policy .bold {
  font-weight: bold;
}
.app.sheds .header__hero__others .banner {
  display: none;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .app.sheds .header__hero__others .banner {
    display: block;
  }
  .app.sheds .header__hero__others__content {
    position: absolute;
    top: 10%;
    transform: translateY(10%);
  }
}
@media only screen and (min-width: 1200px) {
  .app.sheds .header__hero__others__content {
    top: 28%;
    transform: translateY(28%);
  }
}
.app.garages .header__hero__others .banner {
  display: none;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .app.garages .header__hero__others .banner {
    display: block;
  }
  .app.garages .header__hero__others__content {
    position: absolute;
    top: 10%;
    transform: translateY(10%);
  }
}
@media only screen and (min-width: 1200px) {
  .app.garages .header__hero__others__content {
    top: 28%;
    transform: translateY(28%);
  }
}
.app.pavillons .header__hero__others .banner {
  display: none;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .app.pavillons .header__hero__others .banner {
    display: block;
  }
  .app.pavillons .header__hero__others__content {
    position: absolute;
    top: 10%;
    transform: translateY(10%);
  }
}
@media only screen and (min-width: 1200px) {
  .app.pavillons .header__hero__others__content {
    top: 28%;
    transform: translateY(28%);
  }
}
.app.sheds .header__hero__others__content__bubble,
.app.garages .header__hero__others__content__bubble,
.app.pavillons .header__hero__others__content__bubble {
  display: none;
}
.app.sheds .section1 > div,
.app.garages .section1 > div,
.app.pavillons .section1 > div {
  padding: 0px 0px 45px 0px;
}
.app.sheds .section1 > div > *.section1__infos > img,
.app.garages .section1 > div > *.section1__infos > img,
.app.pavillons .section1 > div > *.section1__infos > img {
  padding: 15px 0px;
}
.app.sheds .section2,
.app.garages .section2,
.app.pavillons .section2 {
  background-color: #00125b;
  color: #ffffff;
}
.app.sheds .section2 h2,
.app.garages .section2 h2,
.app.pavillons .section2 h2 {
  color: #ffffff;
}
.app.sheds .section2 li,
.app.garages .section2 li,
.app.pavillons .section2 li {
  margin-left: 1em;
  margin-top: 10px;
  line-height: 1.4em;
}
.app.sheds .section2 li::marker,
.app.garages .section2 li::marker,
.app.pavillons .section2 li::marker {
  color: #8fcc40;
}
.app.sheds .section2 ul,
.app.garages .section2 ul,
.app.pavillons .section2 ul {
  padding-bottom: 15px;
}
.app.sheds .section3__part2__characteristic,
.app.garages .section3__part2__characteristic,
.app.pavillons .section3__part2__characteristic {
  display: flex;
  gap: 15px;
}
.app.sheds .section3__part2__characteristic > div:first-of-type,
.app.garages .section3__part2__characteristic > div:first-of-type,
.app.pavillons .section3__part2__characteristic > div:first-of-type {
  min-width: 105px;
  display: flex;
  justify-content: center;
  align-items: baseline;
}
.app.sheds .section4,
.app.garages .section4,
.app.pavillons .section4 {
  position: relative;
  padding: 0px;
}
.app.sheds .section4 .btn,
.app.garages .section4 .btn,
.app.pavillons .section4 .btn {
  display: inline-block;
  margin-bottom: 30px;
}
.app.sheds .section_slider > div,
.app.garages .section_slider > div,
.app.pavillons .section_slider > div {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.app.sheds .section_slider > div > *,
.app.garages .section_slider > div > *,
.app.pavillons .section_slider > div > * {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .app.sheds .section_slider > div,
  .app.garages .section_slider > div,
  .app.pavillons .section_slider > div {
    flex-wrap: nowrap;
  }
  .app.sheds .section_slider > div > *,
  .app.garages .section_slider > div > *,
  .app.pavillons .section_slider > div > * {
    width: 50%;
  }
}
@media only screen and (min-width: 992px) {
  .app.sheds .header__hero__others,
  .app.garages .header__hero__others,
  .app.pavillons .header__hero__others {
    margin-top: 0;
    flex-direction: column;
  }
  .app.sheds .header__hero__others .banner,
  .app.garages .header__hero__others .banner,
  .app.pavillons .header__hero__others .banner {
    order: 1;
  }
  .app.sheds .header__hero__others__content,
  .app.garages .header__hero__others__content,
  .app.pavillons .header__hero__others__content {
    width: 100%;
    min-width: 470px;
    left: 0%;
    top: 0%;
    transform: unset;
    margin: 0;
    padding: 26px 30px;
    position: unset;
  }
  .app.sheds .header__hero__others__content h1,
  .app.garages .header__hero__others__content h1,
  .app.pavillons .header__hero__others__content h1 {
    padding-right: 0;
  }
  .app.sheds .section1__image_right,
  .app.garages .section1__image_right,
  .app.pavillons .section1__image_right {
    flex-direction: row-reverse;
  }
  .app.sheds .section1 > div,
  .app.garages .section1 > div,
  .app.pavillons .section1 > div {
    padding: 0px 45px 45px 45px;
    display: flex;
    align-items: center;
  }
  .app.sheds .section1 > div > *,
  .app.garages .section1 > div > *,
  .app.pavillons .section1 > div > * {
    width: 50%;
  }
  .app.sheds .section1 > div > * a.btn,
  .app.garages .section1 > div > * a.btn,
  .app.pavillons .section1 > div > * a.btn {
    display: inline-block;
  }
  .app.sheds .section1 > div > *.section1__infos,
  .app.garages .section1 > div > *.section1__infos,
  .app.pavillons .section1 > div > *.section1__infos {
    padding: 15px 45px;
  }
  .app.sheds .section2,
  .app.garages .section2,
  .app.pavillons .section2 {
    display: flex;
  }
  .app.sheds .section2 ul,
  .app.garages .section2 ul,
  .app.pavillons .section2 ul {
    display: flex;
    flex-wrap: wrap;
  }
  .app.sheds .section2 ul > li,
  .app.garages .section2 ul > li,
  .app.pavillons .section2 ul > li {
    width: calc(50% - 1em);
    margin-top: 0;
  }
  .app.sheds .section2 > *,
  .app.garages .section2 > *,
  .app.pavillons .section2 > * {
    width: 50%;
  }
  .app.sheds .section3__part1,
  .app.garages .section3__part1,
  .app.pavillons .section3__part1,
  .app.sheds .section3__part2,
  .app.garages .section3__part2,
  .app.pavillons .section3__part2 {
    display: flex;
    gap: 15px;
  }
  .app.sheds .section3__part1 > *,
  .app.garages .section3__part1 > *,
  .app.pavillons .section3__part1 > *,
  .app.sheds .section3__part2 > *,
  .app.garages .section3__part2 > *,
  .app.pavillons .section3__part2 > * {
    width: 50%;
  }
  .app.sheds .section3__part2,
  .app.garages .section3__part2,
  .app.pavillons .section3__part2 {
    align-items: center;
  }
  .app.sheds .section4,
  .app.garages .section4,
  .app.pavillons .section4 {
    background-color: #dae1f1;
    display: flex;
    align-items: center;
  }
  .app.sheds .section4 .btn,
  .app.garages .section4 .btn,
  .app.pavillons .section4 .btn {
    margin-bottom: 0px;
  }
  .app.sheds .section4::before,
  .app.garages .section4::before,
  .app.pavillons .section4::before {
    content: "";
    background-color: #dae1f1;
    height: 75%;
    width: 100%;
    position: absolute;
    z-index: -1;
  }
  .app.sheds .section4 > section,
  .app.garages .section4 > section,
  .app.pavillons .section4 > section {
    display: flex;
    align-items: center;
  }
  .app.sheds .section4 > section > *,
  .app.garages .section4 > section > *,
  .app.pavillons .section4 > section > * {
    width: 50%;
  }
}
@media only screen and (min-width: 1700px) {
  .app.sheds .header__hero__others__content,
  .app.garages .header__hero__others__content,
  .app.pavillons .header__hero__others__content {
    width: 30%;
    position: absolute;
    top: 28%;
    transform: translateY(28%);
    margin: auto 0px auto 240px;
    padding: 60px 30px;
  }
  .app.sheds .header__hero__others__content__bubble,
  .app.garages .header__hero__others__content__bubble,
  .app.pavillons .header__hero__others__content__bubble {
    display: block;
  }
}
.cookies-action-wrapper {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  /* margin-top: 1rem; */
  gap: 1rem;
  flex-shrink: 0;
}
.cookies_popup p {
  text-align: left;
  color: white;
}
.cookies_popup li {
  font-size: 1rem;
}
.cookies-container {
  flex-direction: column;
  color: var(--black);
}
.cookies-modal {
  position: relative;
  z-index: 999999999999;
  background-color: #fff;
  padding: 32px;
  width: 100%;
  height: auto;
  max-width: 700px;
  box-shadow: 1px 2px 10px 3px rgba(0, 0, 0, 0.2);
  text-align: left;
}
.cookies-modal > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cookies-modal > div h1 {
  margin: 0;
  font-size: 1.3rem;
}
#cookies-modal-close-button {
  background-color: transparent;
  border: none;
  width: auto;
  cursor: pointer;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#cookies-modal-configuration-list {
  margin-top: 30px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  color: black;
  height: 80%;
}
.cookies-modal-list-item {
  width: 100%;
  position: relative;
  column-gap: 20px;
  display: grid;
  grid-template-columns: 3fr 1fr;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}
.cookies-modal-list-item:last-of-type {
  border-bottom: 0;
}
.cookies-toggle-heading {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5em;
  color: var(--black);
}
.cookies-modal-list-item-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookies-toggle-checkbox {
  display: none;
}
.cookies-toggle-label {
  flex-shrink: 0;
  width: 60px;
  height: 34px;
  background-color: #ccc;
  border-radius: 34px;
  display: block;
  cursor: pointer;
  position: relative;
  transition: background-color 0.4s;
  margin: 0 auto;
}
.cookies-toggle-checkbox:disabled ~ .cookies-toggle-label {
  cursor: not-allowed;
}
.cookies-toggle-checkbox:checked ~ .cookies-toggle-label {
  background-color: #8fcc40;
}
.cookies-toggle-label::before {
  border-radius: 50%;
  content: "";
  position: absolute;
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: transform 0.4s;
}
.cookies-toggle-checkbox:checked ~ .cookies-toggle-label::before {
  transform: translateX(26px);
}
.cookies-toggle-text {
  display: block;
  color: black;
}
.cookies-modal > button {
  margin: 25px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background-color: black;
  border-radius: 24px;
  border: none;
  color: #fff;
}
.cookies-banner-close {
  transition: transform 500ms ease-in-out;
  transform: translateY(100%);
}
.cookies-configuration-modal {
  transition: opacity 500ms ease-in-out;
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100vw;
  opacity: 1;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: 9999999999;
}
.cookies-modal-animate-open {
  transition: opacity 500ms ease-in-out;
  opacity: 1;
}
.cookies-modal-animate-close {
  transition: opacity 500ms ease-in-out;
  opacity: 0;
}
#cookies-consent-banner {
  display: none;
  padding: 1rem 2rem;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-box-shadow: 1px 2px 10px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 2px 10px 3px rgba(0, 0, 0, 0.2);
  background-color: #00125b;
  box-sizing: border-box;
  z-index: 999999999;
}
.cookies-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 20px;
}
@media (min-width: 1024px) {
  .cookies-action-wrapper {
    flex-direction: row;
    align-items: center;
  }
  .cookies-container {
    align-items: center;
    flex-direction: row;
  }
}
@media (min-width: 640px) {
  .cookies_popup .cookies-modal {
    width: 70%;
  }
}
@media (min-width: 420px) {
  .cookies_popup .cookies-modal {
    width: 100%;
  }
}
@media (max-width: 470px) {
  .cookies_popup li {
    font-size: 90%;
  }
}
.cookies_popup button {
  border-radius: 20px;
}
#cookies-configuration-button {
  box-sizing: border-box;
  cursor: pointer;
  color: black;
  background-color: #fff;
  border: 2px solid black;
  padding: 12px 32px;
  min-width: 165px;
}
#cookies-decline-button {
  box-sizing: border-box;
  cursor: pointer;
  color: #ca0b0f;
  background-color: #fff;
  border: 2px solid #ca0b0f;
  padding: 12px 32px;
  min-width: 165px;
}
#cookies-accept-button {
  box-sizing: border-box;
  cursor: pointer;
  color: #000;
  background-color: #8fcc40;
  padding: 12px 32px;
  min-width: 165px;
  border: 1px solid white;
}
