/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
::before,
::after {
  --tw-content: "";
}

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

* {
  box-sizing: border-box;
}

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

abbr:where([title]) {
  text-decoration: underline dotted;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: inherit;
  text-decoration: inherit;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp,
pre {
  font-size: 1em; /* 4 */
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
  border: 0;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

:-moz-focusring {
  outline: auto;
}

:-moz-ui-invalid {
  box-shadow: none;
}

progress {
  vertical-align: baseline;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

summary {
  display: list-item;
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

dialog {
  padding: 0;
}

textarea {
  resize: vertical;
}

button,
[role=button] {
  cursor: pointer;
}

:disabled {
  cursor: default;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

img,
video {
  /* disable max-width solves bug img-export/propagation > nested-img-bigger */
  max-width: 100%;
  height: auto;
}

[hidden] {
  display: none;
}

* {
  text-underline-offset: 0.134em;
}

/* fonts definitions */
@font-face {
  font-family: "Gabarito";
  font-style: normal;
  src: url(../fonts/arial-narrow.ttf);
}
@font-face {
  font-family: "Gabarito";
  font-style: normal;
  font-weight: 500;
  src: url(../fonts/arial-narrow-bold.ttf);
}
@font-face {
  font-family: "Gotham";
  src: url(../fonts/gotham-bold.ttf);
}
@font-face {
  font-family: "Gotham";
  font-weight: 100;
  src: url(../fonts/gotham-book.otf);
}
@font-face {
  font-family: "Arial Narrow";
  font-weight: 100;
  src: url(../fonts/arial-narrow.ttf);
}
:root {
  /* responsive margins / paddings */
  --margin-sm: 16px;
  --margin-md: 32px;
  --max-width:1900px;
}

* {
  --min-screen-size: 430;
  --max-screen-size: 1440;
  --interpolate-diff: calc(var(--max-font-size) - var(--min-font-size));
  --interpolate: clamp(calc(var(--min-font-size) * 1px), calc((var(--min-font-size) * 1px) + var(--interpolate-diff) * ((100vw - calc(var(--min-screen-size) * 1px)) / (var(--max-screen-size) - var(--min-screen-size)))), calc(var(--max-font-size) * 1px));
}

html {
  height: 100%;
  font-size: 16px;
}

body {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  color: #fff;
  font-family: "Gabarito";
  line-height: normal;
  letter-spacing: 0px;
  background-color: #1C3474;
  overflow: auto;
  background-image: url(../assets/bg.jpg);
  background-size: cover;
  background-position: center 0;
}

/* text utility classes */
a > object {
  pointer-events: none;
}

.title1 {
  --min-font-size: 28;
  --max-font-size: 36;
  font-size: var(--interpolate);
  font-family: "Gotham";
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0px;
  text-transform: uppercase;
}

.subtitle1 {
  --min-font-size: 20;
  --max-font-size: 24;
  font-size: var(--interpolate);
  font-weight: 100;
  font-family: "Gotham";
  text-transform: uppercase;
}

.title2 {
  --min-font-size: 28;
  --max-font-size: 36;
  font-size: var(--interpolate);
  font-family: "Gotham";
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0px;
  text-transform: uppercase;
}

.text1 {
  --min-font-size: 16;
  --max-font-size: 18;
  font-size: var(--interpolate);
  font-family: "Gabarito";
  font-weight: 600;
  letter-spacing: 0px;
}

.title3 {
  --min-font-size: 27;
  --max-font-size: 48;
  font-size: var(--interpolate);
  line-height: 1;
}

.subtitle2 {
  --min-font-size: 20;
  --max-font-size: 24;
  font-size: var(--interpolate);
  font-weight: 400;
  line-height: 1;
  font-family: "Gotham";
  text-transform: uppercase;
}

.text2 {
  --min-font-size: 17;
  --max-font-size: 18;
  font-size: var(--interpolate);
  font-weight: 400;
  line-height: 1.111;
}

.link {
  color: #022866;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.link2 {
  text-decoration: underline;
}

.link-no-underline {
  color: #022866;
  text-underline-offset: 3px;
}
.link-no-underline:hover {
  text-decoration: underline;
}

/* section utility classes */
.section {
  display: flex;
  flex-direction: column;
  background-position: top left;
  background-size: auto auto;
  background-repeat: no-repeat;
  padding: 0 84px 24px 84px;
}
@media (max-width: 1060px) {
  .section {
    padding: 0 24px;
  }
}

/* ui objects utility classes */
.card1 {
  border-radius: 50%;
}

.btn-orange {
  width: 51px;
  height: 51px;
  background-color: #FFDF5A;
  padding: 14px;
  border-radius: 50%;
}

.card-white1 {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 16px 12px;
}

.card2 {
  width: 246px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #e5decb;
}

.card-form {
  width: calc(100% - 32px);
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 47px;
  border: 1px solid #e5decb;
  border-radius: 0;
  color: #1B2D5A;
}
@media (max-width: 691px) {
  .card-form {
    padding: 30px 12px;
  }
}

.card3 {
  background-color: #D80E32;
  padding: 6px 11px;
  border-radius: 40px;
}

.card-white3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #fff;
  padding: 16px;
}

.card-brown {
  background-color: #FFDF5A;
  border-radius: 10px;
  padding: 10px 11px 9px 10px;
}

.input {
  width: 100px;
  border-radius: 4.8px;
}

.circle1 {
  padding: 0 6px;
  border-radius: 50%;
}

/* button hover utility classes */
.hover-bright:hover {
  filter: brightness(1.1);
}

.hover-bright2:hover {
  filter: brightness(1.23);
}

.hover-dark:hover {
  filter: brightness(0.85);
}

.hover-zoom:hover {
  scale: 1.05;
}

.card-cart {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  flex-shrink: 0;
  font-size: 18px;
  background-color: #fff;
  padding: 22px 22px 21px 22px;
  border-radius: 0;
  border: 1px solid #1B2D5A;
}
.card-cart-row-img {
  display: flex;
  gap: 16px;
  align-items: center;
}
.card-cart-row-img-text {
  font-weight: 600;
}
.card-cart .card-cart-subtitle {
  margin-top: 1px;
  font-family: "Gotham";
  text-transform: uppercase;
}
.card-cart .section-cart-img {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #B5BCD9;
}
.card-cart .card-cart-col {
  margin-top: 1px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
}
.card-cart .card-cart-line {
  margin-top: 0;
  width: unset;
  border-top: 1px solid #8e8e8e;
}
.card-cart .section-cart-row-total2 {
  font-weight: 600;
  color: #1B2D5A;
}
.card-cart .section-cart-row-total2 .section-cart-row-text1 {
  color: #1B2D5A;
}
.card-cart .btn1 {
  margin-top: 1px;
  justify-content: center;
  font-size: unset;
  line-height: unset;
  text-align: center;
}

/* footer-a */
.footer-a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
  --min-font-size: 16;
  --max-font-size: 18;
  font-size: var(--interpolate);
  font-weight: 500;
  color: #fff;
}
.footer-a .footer-col1 {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  background-color: #1B2D5A;
  border-top: 1px solid #fff;
}
.footer-a .footer-col1 .footer-col2 {
  padding-bottom: 24px;
  padding-top: 44px;
  gap: 24px;
  text-align: left;
  background-color: #1B2D5A;
  align-items: center;
}
@media (max-width: 1060px) {
  .footer-a .footer-col1 .footer-col2 {
    padding-top: 24px;
  }
}
.footer-a .footer-col1 .footer-col2 .footer-row-bottom1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  width: 100%;
}
@media (max-width: 1060px) {
  .footer-a .footer-col1 .footer-col2 .footer-row-bottom1 {
    flex-direction: column;
    gap: 20px;
  }
}
.footer-a .footer-col1 .footer-col2 .footer-row-bottom1 .footer-row-right1 {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-a .footer-col1 .footer-col2 .footer-row-bottom1 .footer-row-right1 .footer-instagram1 {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.footer-a .footer-col1 .footer-col2 .footer-row-bottom1 .footer-row-right1 .footer-graphic1 {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.footer-a .footer-illustration-tree {
  position: absolute;
  top: -459px;
  right: 0;
  width: 397px;
}
.footer-a .footer-head {
  position: absolute;
  top: -69px;
  right: 6%;
  width: 273px;
}
.footer-a .footer-bottle1 {
  position: absolute;
  top: -207px;
  left: 1%;
  width: 236px;
}
@media (max-width: 1060px) {
  .footer-a .footer-illustration-tree {
    display: none;
  }
  .footer-a .footer-head {
    transform: scale(0.73);
    top: -5px;
    right: -26px;
  }
  .footer-a .footer-bottle1 {
    transform: scale(0.73);
    top: -107px;
    left: -30px;
  }
}
.footer-a .row-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 23px;
  border-bottom: 1px solid #fff;
  max-width: var(--max-width);
  width: 100%;
}
@media (max-width: 1060px) {
  .footer-a .row-main {
    display: none;
  }
}
.footer-a .row-main .row-logo {
  width: 104px;
  flex-shrink: 0;
}
.footer-a .row-main .footer-items-top {
  display: flex;
  align-items: center;
  column-gap: 20px;
  row-gap: 20px;
  padding: 8px 24px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.footer-a .row-main .row-row-right1 {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-a .row-main-mobile {
  max-width: 300px;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1060px) {
  .footer-a .row-main-mobile {
    display: none;
  }
}
@media (max-width: 1060px) {
  .footer-a .row-main-mobile {
    display: flex;
  }
}
.footer-a .row-main-mobile .footer-items-top {
  flex-direction: column;
  gap: 20px;
}
.footer-a .row-main-mobile .row-logo {
  width: 152px;
}

.header-link:hover {
  text-decoration: underline;
}

.row-icon {
  width: 46px;
  flex-shrink: 0;
}

.icon-sm {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.footer-abus-alcool {
  text-align: center;
  background-color: #fff;
  padding: 24px 84px;
  color: #1B2D5A;
  text-transform: uppercase;
}

/* header-sm */
.header-sm {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: normal;
  text-align: left;
  background-color: #FFDF5A;
  padding: 12px 84px;
}
.header-sm .header-sm-items {
  display: flex;
  align-items: center;
  gap: 16px;
  --min-font-size: 16;
  --max-font-size: 18;
  font-size: var(--interpolate);
  font-weight: 500;
  padding: 0 27px;
}

.logo {
  width: 105px;
  flex-shrink: 0;
}

/* header-lnk-right */
.header-lnk-right {
  height: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  transform: scale(1.2);
}

.lnk-account-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.title-a {
  font-size: 36px;
  line-height: 1;
  font-family: "Gotham";
  text-transform: uppercase;
}

/* label-stock */
.label-stock {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #fff;
  padding: 6px;
  border-radius: 40px;
}
.label-stock .label-stock-circle {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  background-color: #db3000;
}
.label-stock .label-stock-text {
  text-transform: uppercase;
}

/* card-product-group-desc */
.card-product-group-desc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.card-product-group-desc .card-shop-desc {
  align-self: stretch;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.111;
  text-align: left;
}

.card-shop-label-pts {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.231;
  text-align: center;
  background-color: #D80E32;
  padding: 6px 12px;
  border-radius: 40px;
}

/* quantity-toggle */
.quantity-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-grow: 1;
  background-color: #fff;
  padding: 13px 8px;
  border: 1px solid #022866;
  border-radius: 40px;
}

.quantity-toggle-btn {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.shopping-cart-solid {
  width: 24px;
  height: 24px;
}

.card-shop-img {
  margin: -1px -1px 0 -1px;
  width: 246px;
  max-width: none;
  flex-shrink: 0;
}

/* group-input-a */
.btn-a {
  display: flex;
  justify-content: center;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0px;
  text-align: center;
  background-color: #FFDF5A;
  padding: 22px 44px;
  border-radius: 8px;
  --min-font-size: 17;
  --max-font-size: 18;
  font-size: var(--interpolate);
}
.btn-a-error {
  color: #fff;
  background-color: #E73939;
}
.btn-a-success {
  color: #064C11;
  background-color: #8CDF1E;
}
.btn-a-disabled {
  color: #8E8E8E;
  background-color: #F4F4F4;
  pointer-events: none;
}

/* row-c */
.row-c {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.row-c .row-row-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.row-c .row-row-left .row-group-left {
  position: relative;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.row-c .row-row-right2 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.circle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

/* group-input-b */
.group-input-b {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.group-input-b .group-input-cta-header1 {
  color: #8e8e8e;
}

/* ariane */
.ariane {
  color: #fff;
  display: flex;
  align-items: center;
  column-gap: 24px;
  --min-font-size: 16;
  --max-font-size: 20;
  font-size: var(--interpolate);
  font-weight: 500;
  text-align: center;
  padding: 0 84px;
  width: calc(100% - 32px);
  row-gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.ariane .link-no-underline {
  color: #fff;
}
.ariane .ariane-arrow {
  margin-left: 1px;
  width: 8px;
  height: 12px;
  flex-shrink: 0;
}
@media (max-width: 800px) {
  .ariane {
    column-gap: 16px;
    margin-bottom: 20px;
  }
}

.pagination {
  margin: 0 auto;
  margin-top: 50px;
  width: 90%;
  max-width: 408px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #212121;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 130px;
}
.pagination .pagination-btn-left {
  rotate: 180deg;
}
.pagination .pagination-btn-left .pagination-btn-graphic {
  rotate: -180deg;
}
.pagination .pagination-btn-right .pagination-btn-graphic {
  rotate: 180deg;
}

/* card-a */
.card-a {
  width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-shrink: 0;
  background-color: #fff;
  padding: 20px 8px;
  border: 1px solid #022866;
  border-radius: 8px;
}

.card-icon-plus-circle-outline {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* btn-b */
.btn-b {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-grow: 1;
  font-style: normal;
  letter-spacing: 0px;
  text-align: left;
  background-color: #FFDF5A;
  padding: 21px 11px;
  border-radius: 8px;
}

.btn-icon-shopping-cart-solid {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* row-d */
.row-d {
  display: flex;
  align-items: center;
  gap: 8px;
  --min-font-size: 16;
  --max-font-size: 18;
  font-size: var(--interpolate);
  font-weight: 400;
  line-height: 1.111;
}

.title-b {
  --min-font-size: 37;
  --max-font-size: 52;
  font-size: var(--interpolate);
  font-weight: 500;
  line-height: 1;
  text-align: left;
  font-family: "Gotham";
}

.line-a {
  height: 0;
  flex-shrink: 0;
}

.subtitle-recapitulatif {
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  text-align: left;
}

/* section-cart-row */
.section-cart-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.section-cart-row .section-cart-row-text1 {
  color: #8e8e8e;
  text-align: left;
}
.section-cart-row .section-cart-row-text2 {
  text-align: center;
}

.line-b {
  margin-top: -1px;
  width: 257px;
  height: 0;
  flex-shrink: 0;
  border-top: 1px solid #fff;
}

.btn-c {
  display: flex;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0px;
  text-align: left;
  background-color: #FFDF5A;
  padding: 22px 44px;
  border-radius: 8px;
  align-items: center;
}

.casanis {
  --min-font-size: 16;
  --max-font-size: 18;
  font-size: var(--interpolate);
  font-weight: 400;
  line-height: 1.111;
}

/* pagination-btn */
.pagination-btn {
  transform-origin: 50% 50%;
  background-color: #fff;
  padding: 11px 14px;
  border: 1px solid #e5decb;
  border-radius: 8px;
}
.pagination-btn .pagination-btn-graphic {
  transform-origin: 50% 50%;
  width: 7px;
  height: 13px;
}

/* pagination-list */
.pagination-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.pagination-list-btn {
  width: 37px;
  height: 37px;
  display: flex;
  flex-shrink: 0;
  font-style: normal;
  letter-spacing: 0px;
  text-align: left;
  background-color: #fff;
  padding: 9px 14px;
  border: 1px solid #e5decb;
  border-radius: 8px;
  cursor: pointer;
}
.pagination-list-btn:hover {
  filter: brightness(0.9);
}
.pagination-list-btn.active {
  font-weight: 600;
  background-color: #FFDF5A;
  padding: 10px 15px;
  border-left: unset;
  border-top: unset;
  border-right: unset;
  border-bottom: unset;
}

.text-d {
  flex-grow: 1;
}

/* frame */
.frame {
  background-color: #022866;
  padding: 5px 4px 4px 4px;
  border: 1px solid #022866;
  border-radius: 4px;
}
.frame .frame-graphic {
  width: 13px;
  height: 13px;
}

.btn-svg object {
  pointer-events: none;
}

.bg-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 85px;
  background-color: rgba(48, 22, 13, 0.25);
  z-index: 11;
  display: none;
}

.card-notif-cart {
  position: fixed;
  z-index: 99;
  top: 93px;
  right: 84px;
  width: 363px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #022866;
  font-size: 18px;
  font-weight: 600;
  background-color: #fff;
  padding: 23px;
  border: 1px solid #e5decb;
}
.card-notif-cart .card-notif-cart-row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.111;
  text-align: left;
}
.card-notif-cart .card-notif-cart-row-top .card-notif-cart-row-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.card-notif-cart .card-notif-cart-row-top .card-notif-cart-row-left .card-notif-cart-checkmark {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-color: #8cdf1e;
  padding-top: 7px;
  padding-bottom: 7px;
}
.card-notif-cart .card-notif-cart-row-top .card-notif-cart-row-left .card-notif-cart-checkmark .card-notif-cart-checkmark-graphic {
  width: 7px;
  height: 6px;
}
.card-notif-cart .card-notif-cart-row-top .btn-close-notif {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  text-align: unset;
  background-color: #dcdae2;
  padding: 11px 10px 11px 11px;
  border-radius: 50%;
}
.card-notif-cart .card-notif-cart-row-top .btn-close-notif .btn-close-notif-icon {
  width: 9px;
  height: 9px;
}
.card-notif-cart .card-notif-cart-row {
  display: flex;
  align-items: center;
  gap: 21px;
}
.card-notif-cart .card-notif-cart-row .card-notif-img {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #B5BCD9;
  flex-shrink: 0;
}
.card-notif-cart .card-notif-cart-row .card-notif-cart-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex-grow: 1;
}
.card-notif-cart .card-notif-cart-row .card-notif-cart-col .card-notif-cart-desc {
  align-self: stretch;
  line-height: 1.111;
  text-align: left;
}
.card-notif-cart .card-notif-cart-row .card-notif-cart-col .card-notif-cart-10-points {
  font-weight: unset;
}
.card-notif-cart .card-notif-cart-col-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 500;
  line-height: normal;
}
.card-notif-cart .card-notif-cart-col-bottom .btn-d {
  display: flex;
  justify-content: center;
  font-style: normal;
  letter-spacing: 0px;
  text-align: center;
  padding: 0 43px;
  border-radius: 8px;
}
.card-notif-cart .card-notif-cart-col-bottom .btn-goto-cart {
  padding-top: 15px;
  padding-bottom: 15px;
  border: 1px solid #022866;
}
.card-notif-cart .card-notif-cart-col-bottom .btn-order {
  background-color: #FFDF5A;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media (max-width: 1060px) {
  .card-notif-cart {
    bottom: 12px;
    width: calc(100% - 32px);
    left: 50%;
    translate: -50% 0;
    right: unset;
    top: unset;
  }
}

/** breakpoints (margin / paddings) **/
@media screen and (max-width: 1280px) {
  .header-sm {
    padding-inline: var(--margin-md);
  }
  .header-sm .header-sm-items {
    padding-inline: 0;
  }
  .header-a {
    padding-inline: var(--margin-md);
  }
  .header-a .header-items1 {
    padding-inline: 34px;
  }
  .section-cart {
    padding-inline: var(--margin-sm);
  }
}
@media screen and (max-width: 576px) {
  .header-sm {
    padding-inline: var(--margin-sm);
  }
  .header-a {
    padding-inline: var(--margin-sm);
  }
}
.header-a {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  text-align: left;
  background-color: #1B2D5A;
  padding: 12px 84px;
  color: #fff;
  height: 84px;
}
.header-a .header-items1 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 8px;
  column-gap: 16px;
  flex-grow: 1;
  font-size: 16px;
  font-weight: 500;
  padding: 0 21px;
}
@media (min-width: 1630px) {
  .header-a .header-items1 {
    column-gap: 32px;
  }
}
@media (min-width: 1730px) {
  .header-a .header-items1 {
    column-gap: 50px;
  }
}
.header-a .header-items1 a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
.header-a .logo:hover {
  transform: scale(0.9);
}
.header-a .header-right {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 500;
  flex-shrink: 0;
}
.header-a .header-right a > object {
  pointer-events: none;
}
.header-a .header-right a:hover {
  filter: brightness(1.3);
}
.header-a .header-right a:hover p {
  text-decoration: underline;
}
@media (max-width: 1060px) {
  .header-a {
    display: none;
  }
}

.header-mobile {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  background-color: #1B2D5A;
  padding: 12px 16px;
  color: #fff;
  height: 84px;
}
@media (min-width: 1060px) {
  .header-mobile {
    display: none;
  }
}
.header-mobile .header-mobile-col-left {
  margin-top: -1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  cursor: pointer;
}
.header-mobile .header-mobile-col-left > object {
  pointer-events: none;
}
.header-mobile .header-mobile-col-left .header-mobile-col-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.header-mobile .header-mobile-col-left .header-mobile-col-top .header-mobile-line {
  width: 24px;
  height: 0;
  flex-shrink: 0;
  border-top: 2px solid #fff;
}
.header-mobile .header-mobile-btn-close {
  display: none;
}
.header-mobile .header-mobile-logo {
  width: 105px;
  flex-shrink: 0;
}
.header-mobile .header-mobile-col-right {
  height: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.header-mobile .header-mobile-col-right .header-mobile-shopping-cart-solid {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.header-mobile-content {
  background-color: #1B2D5A;
  padding: 36px 16px;
  position: fixed;
  top: 83px;
  z-index: 9;
  width: 100%;
  height: calc(100% - 83px);
  display: flex;
  flex-direction: column;
  left: -100%;
  transition: left 0.4s;
  color: #fff;
  background-image: url(../assets/bg.jpg);
  background-size: cover;
  background-position: center -200px;
}
.header-mobile-content a.separator {
  margin-top: 32px;
}
.header-mobile-content .btn-c {
  align-self: start;
  color: #fff;
  background-color: #1B2D5A;
  justify-content: center;
  gap: 10px;
  align-self: unset;
  border: 1px solid #FFF;
}
.header-mobile-content .btn-c.active, .header-mobile-content .btn-c:hover {
  background-color: #FFDF5A;
  border: 1px solid #FFDF5A;
  color: #1B2D5A;
}
.header-mobile-content .header-mobile-content-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  flex-grow: 1;
  justify-content: center;
}
.header-mobile-content .header-mobile-content-links a {
  --min-font-size: 24;
  --max-font-size: 28;
  font-size: var(--interpolate);
}
.header-mobile-content .header-mobile-content-links a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
.header-mobile-content .header-mobile-content-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  margin-top: auto;
}

.group-input-a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.group-input-a .group-input-input {
  font-style: normal;
  letter-spacing: 0px;
  text-align: left;
  color: #022866;
  font-weight: 500;
}
.group-input-a .group-input-input::placeholder {
  color: #8e8e8e;
}
.group-input-a .group-input-input-pwd {
  padding-right: 54px;
}
.group-input-a .pwd-icon {
  position: absolute;
  right: 23px;
  top: 50%;
  translate: 0;
  cursor: pointer;
}
.group-input-a.error input {
  color: #E73939;
  border: 1px solid #E73939;
}

.input-light {
  padding: 17px 22px;
  border-radius: 8px;
  border: 1px solid #DCDCDC;
}
.input-light:focus {
  border: 1px solid #022866;
}

.select {
  background-color: #f4f4f4;
  padding: 17px 22px;
  border-radius: 8px;
  width: 100%;
  background-image: url(../assets/icons/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: right 23px center;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: #8E8E8E;
}
.select option {
  color: #022866;
}

.card-signup-sections-item {
  margin-top: 1px;
  width: 100%;
  height: 29px;
  flex-grow: 1;
  padding: 0 9px 8px 9px;
  border-bottom: 4px solid #8e8e8e;
}
.card-signup-sections-item.active {
  margin-top: 0;
  height: 30px;
  color: #022866;
  border-bottom: 4px solid #022866;
}

input:focus {
  outline: none;
  border: 2px solid #022866;
}

input[type=radio]:active {
  border: 2px solid #FDBA00;
  background-color: unset;
}

.group-radio label {
  display: flex;
  gap: 8px;
  align-items: center;
}

input[type=radio] {
  display: none;
}

.fake-radio {
  border: 2px solid #022866;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  accent-color: #FDBA00;
  position: relative;
}
.fake-radio .circle {
  width: 14px;
  height: 14px;
  position: absolute;
  top: 4.2px;
  left: 4px;
  background-color: #FDBA00;
  display: none;
}

input[type=radio]:checked + label .fake-radio {
  border: 2px solid #FFDF5A;
}
input[type=radio]:checked + label .fake-radio .circle {
  display: block;
}

.row-checkbox {
  width: 100%;
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  font-weight: 400;
  line-height: 1.111;
}
.row-checkbox input[type=checkbox] {
  width: 22px;
  height: 22px;
  accent-color: #022866;
  flex-shrink: 0;
}
.row-checkbox label {
  margin-top: -1px;
}

.zone-upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  background-color: rgba(2, 40, 102, 0.2);
  padding: 25px 35px 26px 35px;
  border: 2px dashed #022866;
  border-radius: 20px;
  min-height: 150px;
}
.zone-upload input[type=file] {
  display: none;
}
.zone-upload .zone-upload-before {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 100%;
  cursor: pointer;
}
.zone-upload .zone-upload-before .zone-upload-top-row {
  margin-left: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.zone-upload .zone-upload-before .zone-upload-top-row .zone-upload-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.zone-upload .zone-upload-before .zone-upload-btn {
  margin-left: 1px;
  display: flex;
  font-size: 16px;
  font-style: normal;
  text-decoration: underline;
  text-transform: uppercase;
  letter-spacing: 0px;
  text-align: left;
  padding: 11px 23px;
  border: 1px solid #022866;
  border-radius: 40px;
  pointer-events: none;
}
.zone-upload .zone-upload-after {
  display: none;
  margin-top: 6px;
  width: 100%;
}
.zone-upload .zone-upload-after-row {
  display: flex;
  justify-content: space-between;
}
.zone-upload .zone-upload-after-row .btn-close {
  padding: 10px;
  margin-right: -10px;
}
.zone-upload .zone-upload-after-row .btn-close > object {
  pointer-events: none;
}
.zone-upload .zone-upload-after-row .zone-upload-filename {
  margin-top: 3px;
}

body {
  gap: 130px;
  padding-top: 129px;
}
body .card-signup-info {
  margin: 0 auto;
  max-width: 622px;
  gap: 32px;
  align-self: center;
  text-align: center;
}
body .card-signup-info .card-signup-info-col-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
  line-height: 1;
}
body .card-signup-info .card-signup-info-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8e8e8e;
  font-size: 18px;
  font-weight: 500;
  padding-top: 4px;
}
body .card-signup-info .form-info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  gap: 24px;
  row-gap: 24px;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
}
body .card-signup-info .form-info .group-input-email {
  width: 100%;
}
body .footer1 .footer-group1 .footer-group2 .footer-ellipse1 {
  top: 7%;
}

/** breakpoints (margin / paddings) **/
@media screen and (max-width: 1280px) {
  body .card-signup-info .form-info .group-input-birthdate .group-input-cta-header2 {
    padding-inline: var(--margin-sm);
  }
  body .card-signup-info .form-info .group-input-tel .group-input-cta-header2 {
    padding-inline: var(--margin-sm);
  }
}

/*# sourceMappingURL=forgot-pwd.css.map */
