* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  box-sizing: border-box;
  list-style: none;
  transition: all .3s ease;
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  width: 100%;
}

:root {
  --primary: #ff5588;
  --primary-1: #ff558811;
  --primary-2: #ff558822;
  --primary-3: #ff558833;
  --primary-4: #ff558844;
  --primary-5: #ff558855;

  --pprimary: #cc4466;
  --pprimary-1: #cc446611;
  --pprimary-2: #cc446622;
  --pprimary-3: #cc446633;
  --pprimary-4: #cc446644;
  --pprimary-5: #cc446655;

  --secondary: #f4cd84;
  --secondary-1: #f4cd8411;
  --secondary-2: #f4cd8422;
  --secondary-3: #f4cd8433;
  --secondary-4: #f4cd8444;
  --secondary-5: #f4cd8455;

  --ssecondary: #e2941e;
  --ssecondary-1: #e2941e11;
  --ssecondary-2: #e2941e22;
  --ssecondary-3: #e2941e33;
  --ssecondary-4: #e2941e44;
  --ssecondary-5: #e2941e55;

  --text-img: #fafafa;
  --text-color: #333;

  --shadow-1: #0001;
  --shadow-2: #0002;

  --bg: linear-gradient(to top right, #feddd8 30%, #ffe7df 70%, #ffd7d5 100%);
  --bg2: linear-gradient(to top right, #feddd833 30%, #ffe7dfaa 70%, #ffd7d566 100%);
}

.loadder {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linen;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  visibility: visible;
  opacity: 1;
  pointer-events: unset;
  transition: all .3s;
}

.loadder.active {
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}

.loadder>div {
  position: relative;
  text-align: center;
}

.specialVariant {
  display: flex;
  align-items: center;
  padding: 3px 10px 3px 5px;
  border: solid 2px #0003;
  border-radius: 20px;
  max-width: max-content;
  font-size: 12px;
  color: #555;
  margin: -5px 0 15px;
}

.specialVariant span {
  width: 15px;
  height: 15px;
  min-width: 15px;
  min-height: 15px;
  border-radius: 50%;
  margin-right: 5px;
}

.loadder span {
  display: inline-block;
  color: var(--ssecondary);
  position: absolute;
  bottom: 10px;
  transform: translate(-50%, -50%);
  transition: all .3s;
  animation: opa 1.5s ease-in-out infinite;
  width: 100%;
}

@keyframes opa {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@media screen and (max-width: 600px) {
  .loadder span {
    bottom: -5px;
  }
}

.loadder img {
  display: block;
  width: 90%;
  opacity: .2;
}

.pri {
  color: var(--primary);
}

.sec {
  color: var(--secondary);
}

.ppri {
  color: var(--pprimary);
}

.ssec {
  color: var(--ssecondary);
}

html,
body {
  height: 100%;
  width: 100%;
}

.lighter {
  font-weight: bold;
  font-family: Po02;
}

.info,
label {
  font-size: 14px;
  color: var(--text-color);
  font-family: Po02;
  font-weight: bold;
}

.bold {
  font-family: Po01;
  font-weight: bold;
  color: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Po01;
}

p.info {
  margin: 5px 0 15px;
}

/* Pour les formulaires */

label {
  font-weight: bold;
  display: inline-block;
  margin-bottom: 3px;
  font-size: 14px;
}

form .entry {
  display: flex;
  align-items: center;
  gap: 10px;
  border: solid 2px #ccc;
  border-radius: 10px;
  font-weight: bold;
  padding: 5px 10px;
  transition: border-color 0.3s;
}

.entry .icons {
  opacity: 0.7;
}

.inputGroup {
  margin-bottom: 15px;
}

form input,
form select,
form textarea {
  border: none;
  outline: none;
  font-family: Po01;
  border-left: 2px solid #0003;
  padding: 0 10px;
  width: 100%;
  background: transparent;
  font-size: 16px;
}

form input:-webkit-autofill,
form input:-webkit-autofill:hover,
form input:-webkit-autofill:focus,
form input:-webkit-autofill:active,
form textarea:-webkit-autofill,
form textarea:-webkit-autofill:hover,
form textarea:-webkit-autofill:focus,
form textarea:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
  -webkit-text-fill-color: var(--text-color) !important;
}

form .entry:focus-within {
  border-color: var(--ssecondary);
}

form .entry:focus-within .icons {
  opacity: 1;
}

form .entry:focus-within input {
  border-color: #000;
}

.btns {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  align-items: center;
  justify-content: space-between;
}

.prev,
.next {
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  font-family: Po01;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 16px;
}

.next {
  background: var(--primary);
  color: white;
  border: 2px solid var(--primary-5);
}

.next:hover {
  opacity: 0.9;
  transform: translateX(-2px);
}

.prev {
  background: #f0f0f0;
  color: var(--text-color);
  border: 2px solid #ddd;
}

.prev:hover {
  background: #e8e8e8;
  transform: translateX(2px);
}


label {
  font-weight: bold;
  display: inline-block;
  margin-bottom: 3px;
  font-size: 14px;
}

form .entry {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 0;
  border: none;
}

.entry .icons {
  opacity: 0.5;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.inputGroup {
  margin-bottom: 15px;
}

form input,
form select,
form textarea {
  border: none;
  outline: none;
  font-family: Po01;
  font-size: 16px;
  width: 100%;
  font-size: 16px;
  font-family: Po01;
  color: #000;
  background: #fff3;
  padding: 10px 15px;
  backdrop-filter: blur(10px);
  border-radius: 5px;
  border: solid 2px #fffa;
  outline: none;
}

form textarea {
  resize: none;
  width: 100%;
  height: 150px;
} 

.popups.vb form .entry {
  margin-bottom: 10px;
}

.popups form :where(input, select, textarea) {
  box-shadow: 0 1px 50px #0001;
}

form input {
  padding-right: 40px;
}

form .entry:focus-within input {
  border-color: #fff;
  box-shadow: 0 1px 5px #00000010;
}

form input[type=password] {
  font-family: Po03;
  font-weight: bold;
  letter-spacing: 3px;
}

.forgotPass:hover {
  text-decoration: underline;
}

.forgotPass {
  transition: all .3s;
  cursor: pointer;
  color: #000;
  font-family: Po01;
}

.prev,
.next {
  font-family: Po02;
  align-items: center;
  text-align: center;
  justify-content: center;
}

button.next {
  width: 100%;
}

.next.forgotPass {
  text-decoration: none;
}

.next.v2 {
  background: var(--primary);
  border: 2px solid var(--primary-5);
}

.product-info-section li {
  list-style: disc;
  margin-left: 20px;
}

.next.v3 {
  background: transparent;
  border: solid 1px #000;
  border-radius: 10px;
  color: var(--text-color);
  background: #0001;
}

.next {
  display: inline-flex;
  background: #000;
  border: 2px solid #000;
  color: white;
  opacity: .9;
  box-shadow: 0 1px 10px #0001;
}

.next:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.prev {
  background: #fff;
  color: var(--text-color);
  border: 2px solid #fff;
  width: max-content;
}

.prev.v2 {
  background: var(--ssecondary) !important;
  border-color: var(--ssecondary);
  opacity: .8;
}

.prev:hover {
  background: #e8e8e8;
  transform: translateY(-2px);
}

.prev.v2:hover {
  background: var(--ssecondary);
  opacity: 1;
}

button img {
  width: 30px !important;
  height: auto !important;
}

.deco_citation {
  display: inline-block;
  border: dotted 1px var(--ssecondary);
  padding: 10px;
  border-radius: 5px;
  margin-top: 5px;
}

/* Fin formulaires */

.eyes {
  cursor: pointer;
}

.popups,
.loads {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #0008;
  backdrop-filter: blur(5px);
  padding: 50px 5%;
  display: flex;
  align-items: end;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  z-index: 4;
}

.loads {
  background: #0006;
  backdrop-filter: blur(3px);
  text-align: center;
  justify-content: center;
  align-items: center;
}

.popups.active,
.loads.active {
  opacity: 1;
  visibility: visible;
}

.popups .popup,
.loads>div {
  background: radial-gradient(circle at 50% 25%, #fffe 10%, #efefcc);
  border-radius: 15px;
  box-shadow: 0 5px 50px var(--shadow-2);
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}

.popups .popup {
  max-height: 100%;
  overflow: hidden;
}

.popups.addProducts .popup, .popups.addCat .popup {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  max-width: 1000px;
}

.addProducts form section {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  overflow: hidden;
}

.addProducts form {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  overflow: hidden;
}

.flexible > div:not(.descript) {
  width: 100%;
  max-width: 350px;
}

.flexible .descript textarea {
  height: 300px;
}

.flexible > div {
  overflow-y: auto;
}

.flexible .descript {
  width: 100%;
  min-width: 350px;
}

.flexible {
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: 100%;
  flex: 1;
  height: 100%;
  overflow: hidden;
}

.connectAccessKey, .connectAccessPass {
  font-family: 'Po2';
  margin: 0 0 10px;
  cursor: pointer;
  font-weight: lighter;
  font-size: 14px;
  display: block;
  padding: 8px 20px;
  border-radius: 5px;
  background: #aaf2;
  border: solid 1px #aae;
  /* color: #55f; */
}

.loads>div {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 20px;
  text-align: center;
  justify-content: center;
  margin: 0;
}

.loads.loaddingProcess2 {
  align-items: end;
  background: #0003;
}

.loads.loaddingProcess2>div {
  text-align: left;
  justify-content: left;
  padding: 10px 30px;
}

.loads img {
  width: 80px;
}

.loaddingProcess2 img {
  width: 50px;
}

.popups .popup .messageNotif {
  margin: 20px 0 10px;
}

.popups .popup .btns {
  justify-content: start;
}

.hr {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  text-align: center;
  padding: 25px 0;
  color: var(--text-color);
  font-size: 12px;
}

.hr hr {
  height: 1px;
  border: 0;
  background: #000a;
  border-radius: 10px;
  width: 100%;
}

.hr span {
  display: inline-block;
  padding: 0 10px;
}

.popups h2 {
  display: flex;
  align-items: start;
  gap: 10px;
}

.popups h2>span.mio {
  padding: 8px;
  box-shadow: 0 1px 30px#0001;
  cursor: pointer;
  border-radius: 50%;
  background: #0001;
}

#qr_passKey {
  display: block;
  width: 100px;
  height: 100px;
  object-fit: contain;
  box-shadow: 0 1px 20px #0001;
  border-radius: 10px;
  margin: 0 auto;
  border: solid 1px #000;
}

.passKeyBox .part2.active {
  display: none;
}

.passKeyBox .popup {
  max-width: 450px;
  margin: 0;
}

.tox-promotion, .tox-statusbar__branding {
  display: none;
}