:root {
    --main-shadow : 0 0px 7px rgba(0, 0, 0, 0.15);
}
  


body {
    margin: 0;
    padding: 0;
    height: 100%;
}

.row-flex{
    display: flex;
    flex-direction: row;
}

.heading {
  text-align: center;
  margin: 1em;
  font-size: 1.2em;
}



/* -------------------- flipbook ------------------*/

.catalog-viewer {
    width: min(98vw, 1760px);
    margin: 8px auto 20px auto;
    padding: 0 8px 10px 8px;
    box-sizing: border-box;
    --catalog-page-width: 480px;
    --catalog-page-height: 680px;
}

.flipbook-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    min-height: 320px;
    padding: 0 56px;
    box-sizing: border-box;
}

.catalog-zoom-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    flex: 0 0 auto;
}

.catalog-zoom-controls--floating {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 30;
    flex-direction: column;
}

.catalog-page-btn {
    min-width: 44px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #0f172a;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
}

.catalog-page-btn:hover {
    background: #ffffff;
    transform: scale(1.06);
}

.catalog-page-btn svg {
    display: block;
    width: 24px;
    height: 24px;
}

.catalog-zoom-value {
    display: none;
}

.flipbook-viewport {
    width: 100%;
    min-height: 320px;
    overflow: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 10px 0;
    box-sizing: border-box;
}

.flipbook-viewport.is-zoomed {
    justify-content: flex-start;
    align-items: flex-start;
}

.flipbook-stage {
    min-width: 100%;
    min-height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.flipbook-stage.is-zoomed {
    width: max-content;
    min-width: max-content;
    height: max-content;
    min-height: max-content;
    justify-content: flex-start;
}

#flipbook {
    width: 960px;
    height: 680px;
    background: none;
}

.catalog-viewer[data-catalog-layout="landscape"] .flipbook-container {
    padding: 0 44px;
}

.catalog-viewer[data-catalog-layout="landscape"] #flipbook {
    max-width: none;
}

.catalog-viewer[data-catalog-layout="square"] .flipbook-container {
    padding: 0 56px;
}

.turn-page-wrapper  {
    box-shadow: var(--main-shadow);
}

@media (max-width: 1024px) {
  #flipbook {
    box-shadow: var(--main-shadow);
  }
}


.nav-arrow {
    position: fixed;
    top: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
    z-index: 30;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;  
    transition:  transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    margin-top: -22px;

}

.arrow-left {
    left: 12px;
}

.arrow-right {
    right: 12px;
}

.nav-arrow:hover {
    transform: scale(1.1);
    background: #fff;
}

.nav-arrow svg {
  position: absolute;
  width: 24px;
  z-index: 9;
  transition:
  transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
  opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.arrow-left .arr-1 {
  transform: translateX(0px);
  opacity: 100%;
}

.arrow-left .arr-2 {
  transform: translateX(40px);
  opacity: 0%;
}

.arrow-left:hover .arr-1 {
  transform: translateX(-40px);
  opacity: 0%;
}

.arrow-left:hover .arr-2 {
  transform: translateX(0px);
  opacity: 100%;
}

.arrow-right .arr-1 {
  transform: translateX(0px);
  opacity: 100%;
}

.arrow-right .arr-2 {
  transform: translateX(-40px);
  opacity: 0%;
}

.arrow-right:hover .arr-1 {
  transform: translateX(40px);
  opacity: 0%;
}

.arrow-right:hover .arr-2 {
  transform: translateX(0px);
  opacity: 100%;
}



.catalog-viewer:fullscreen {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 14px 14px 18px 14px;
    background: #f4f4f4;
    overflow: hidden;
}

.catalog-viewer:fullscreen .flipbook-container {
    height: 100%;
    min-height: 0;
    padding: 0 64px;
}

.catalog-viewer:-webkit-full-screen {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 14px 14px 18px 14px;
    background: #f4f4f4;
    overflow: hidden;
}

.catalog-viewer:-webkit-full-screen .flipbook-container {
    height: 100%;
    min-height: 0;
    padding: 0 64px;
}

@media (max-width: 1024px) {
  .catalog-viewer {
    width: 100%;
    padding: 0 0 12px 0;
  }
}

@media (max-width: 600px) {
  .flipbook-container {
    padding: 0 40px;
    min-height: 230px;
  }

  .flipbook-viewport {
    min-height: 230px;
  }

  .catalog-viewer[data-catalog-layout="landscape"] .flipbook-container {
    padding: 0 30px;
  }

  .catalog-zoom-controls {
    gap: 6px;
  }

  .catalog-zoom-controls--floating {
    right: 12px;
    bottom: 12px;
  }

  .catalog-page-btn {
    min-width: 36px;
    width: 36px;
    height: 36px;
  }

  .catalog-page-btn svg {
    width: 20px;
    height: 20px;
  }

  .nav-arrow {
    width: 36px;
    height: 36px;
    font-size: 22px;
    margin-top: -18px;
  }
}



/*------------- pop ups-------------*/



.close-popup {
    position: absolute; 
    top: 12px;
    right: 12px; 
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}




/*------------- pop up produits -------------*/

#popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

#popup>div {
    position: relative;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    width:80%;
    display: flex;
    gap: 30px;
    align-items: center;
}

@media (max-width: 1024px) {
  #popup>div {
    flex-direction: column ;
  }
}

#popupImage{
  max-width: 220px;
  max-height: 220px;
}


#popupDescription {
    font-size: 16px;
    color: #444;
    margin: 20px 0;
}


#popupCharacteristics {
    margin-bottom: 10px;
    color: #333;
}

#popupCharacteristics p {
    font-size: 16px;
}

.popupChar {
    font-weight: bold;
    margin:0;
}

#refpopup{
    margin: 0 10px;
}


.popupCharVal {
    margin-left: 10px;
    padding: 5px;
    border-radius: 6px;
}


#popupQuantity {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}

#popupQuantity div button {
    border: none;
    background: none;
    font-size: 18px;
    cursor: pointer;
    margin: 3px;
}

#popupQuantity input {
    padding: 10px;
    appearance: none;
    border: none;
    border-bottom: #000 1px solid;
    width: fit-content;
    max-width: 20%;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

#minia_img{
    margin:20px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    max-width: 200px;
}

#minia_img >.active_minia {
    max-height: 55px;
    max-width: 55px;
    opacity: 1;
}

#minia_img >.passive_minia {
    max-height: 45px;
    max-width: 45px;
    opacity: 0.5;
}
.miniatures_images_popup {
  transition: transform 0.2s, opacity 0.2s
}

.miniatures_images_popup:hover {
  opacity: 1;
  transform: scale(1.18);
}
/*------------- panier -------------*/
#cartCount {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}



#popupPanier {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#popupPanier>div {
    position: relative;
    background: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 90%;
    text-align: center;
}

@media (max-width: 1024px) {
  #popup>div {
    flex-direction: column ;
    max-width: 400px;
  }
}




#popupPanier table th ,#popupPanier table td {

    padding:8px; 
    text-align:center;
}

#popupPanier table button {
    border: none;
    background: none;
    font-size: 18px;
    cursor: pointer;
    margin: 3px;
}

.cart-product-link {
    color: #000;
    font: inherit;
    text-decoration: none;
    text-underline-offset: 3px;
}

.cart-product-link:hover,
.cart-product-link:focus {
    text-decoration-thickness: 2px;
}

.cart-interior-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 10px 0 0 0;
    color: #111;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cart-interior-link:hover,
.cart-interior-link:focus {
    text-decoration-thickness: 2px;
}

.cart-option-row {
    display: flex;
    align-items: center;
    text-align: left;
}

.cart-option-label {
    font-size: 14px;
    font-weight: 600;
    color: #1f1f1f;
}

.cart-action-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.cart-tariff-summary {
    margin: 0 0 18px 0;
    padding: 14px 16px;
    border: 1px solid #d9e6d7;
    border-radius: 12px;
    background: #f7fbf5;
    text-align: left;
}

.cart-tariff-summary-title {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #203621;
}

.cart-tariff-summary-body {
    display: grid;
    gap: 8px;
}

.cart-tariff-summary-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    font-size: 13px;
    color: #263326;
}

.cart-tariff-summary-row strong {
    font-size: 14px;
}

.cart-tariff-summary-row[data-state="ok"] .cart-tariff-summary-value {
    color: #0b6b35;
    font-weight: 700;
}

.cart-tariff-summary-row[data-state="warn"] .cart-tariff-summary-value {
    color: #a44b00;
    font-weight: 700;
}

.cart-tariff-summary-footnote {
    margin: 10px 0 0 0;
    font-size: 12px;
    color: #556455;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
    margin: 10px;
}

.toggle-switch input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    pointer-events: none;
}

.toggle-switch-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: #ddd;
    border-radius: 20px;
    box-shadow: inset 0 0 0 2px #ccc;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.toggle-switch-handle {
    position: absolute;
    top: 2.5px;
    left: 2.5px;
    width: 15px;
    height: 15px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.toggle-switch input[type="checkbox"]:checked + .toggle-switch-background {
    background-color: #05c46b;
    box-shadow: inset 0 0 0 2px #04b360;
}

.toggle-switch input[type="checkbox"]:checked + .toggle-switch-background .toggle-switch-handle {
    transform: translateX(20px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), 0 0 0 3px rgba(5, 196, 107, 0.35);
}

#popupInterior {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1100;
}

#popupInteriorCard {
    position: relative;
    background: #fff;
    padding: 22px 26px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: min(920px, 92vw);
    max-height: 88vh;
    overflow: auto;
    text-align: left;
}

.interior-popup-head {
    margin-bottom: 14px;
}

.interior-popup-head p {
    margin: 8px 0 0 0;
    color: #555;
}

#interiorPopupList {
    display: grid;
    gap: 12px;
}

.interior-loading {
    margin: 0;
    color: #555;
}

.interior-variation-row {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    background: #fafafa;
}

.interior-variation-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    flex: 0 0 92px;
}

.interior-variation-image {
    display: block;
    max-width: 90px;
    max-height: 90px;
    object-fit: cover;
    border-radius: 10px;
    background: #f0f0f0;
    border: 1px solid #e3e3e3;
}

.interior-variation-image--empty {
    background: #f3f3f3;
}

.interior-variation-main {
    min-width: 0;
}

.interior-variation-title {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
}

.interior-variation-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    font-size: 13px;
    color: #666;
}

.interior-variation-actions {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.interior-qty-label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
    color: #444;
}

.interior-qty-input {
    width: 84px;
    padding: 9px 10px;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    font: inherit;
    text-align: center;
    background: #fff;
}

.interior-add-button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

@media (max-width: 1024px) {
  .interior-variation-row {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .interior-variation-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .interior-variation-image-wrap,
  .interior-variation-image {
    width: 72px;
    height: 72px;
  }
}

@media (max-width: 600px) {
  #popupInteriorCard {
    width: min(94vw, 94vw);
    padding: 18px 16px;
    max-height: 90vh;
  }

  .interior-variation-row {
    padding: 12px;
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .interior-variation-actions {
    grid-column: 1 / -1;
  }

  .interior-variation-image-wrap,
  .interior-variation-image {
    width: 64px;
    height: 64px;
  }
}




#mdp-section-panier>div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding:2em;
}


/* --------------------- input ------------------------------*/






.field {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  border-radius: 25px;
  padding: 0.6em;
  margin-bottom: 1em;
  border: none;
  box-shadow: inset 0px 1px 6px rgba(150, 150, 150, 0.5);
}

.input-icon {
  height: 1.3em;
  width: 1.3em;
  fill: black;
}

.input-field {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  color: #000000;
}



/* --------------------- mdp ------------------------------*/



@media (min-width: 200px) {
  #mdp-section-panier>div>button{
    margin:0 auto ;
    min-width: 300px;
    max-width: 500px;
    }
    #mdp-section-panier>div .field{
    margin:0 auto  1em auto;
    min-width: 300px;
    max-width: 500px;
    }
}

/* --------------------- checkbox ------------------------------*/


.check_container {
  cursor: pointer;
  margin: auto 0;
}

.check_container input {
  display: none;
}

.check_container svg {
  overflow: visible;
}

.check_container path {
  fill: none;
  stroke: black;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dasharray 0.5s ease, stroke-dashoffset 0.5s ease;
  stroke-dasharray: 241 9999999;
  stroke-dashoffset: 0;
}

.check_container input:checked ~ svg path {
  stroke-dasharray: 70.5096664428711 9999999;
  stroke-dashoffset: -262.2723388671875;
}

/* --------------------- adresses ------------------------------*/

#adress_liv, #menuLivAdress{
    display: none;
}

#menu_adress{
    margin-bottom:3% ;
    flex-direction: row;
    justify-content: space-around;
}

#menu_adress .span_menuadr{
    cursor:default;
}

.all_menuadress{
    padding:5px;
    cursor: pointer;
}

.active_menuadress{
    padding:5px;
    border-radius: 5%;
    cursor:default;
    border: 1px solid #000;
}

/* --------------------- compte client ------------------------------*/

.account-panel {
  display: none;
  position: fixed;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.58);
  z-index: 1100;
  padding: 18px;
  box-sizing: border-box;
}

.account-dialog {
  position: relative;
  width: min(94vw, 760px);
  max-height: 92vh;
  overflow: auto;
  background: #fff;
  color: #111;
  border-radius: 8px;
  box-sizing: border-box;
  padding: 24px 30px;
  box-shadow: rgba(0, 0, 0, 0.28) 0 10px 32px;
}

.account-dialog[data-view="login"],
.account-dialog[data-view="forgot"],
.account-dialog[data-view="reset"],
.account-dialog[data-view="verify"] {
  width: min(94vw, 360px);
}

.account-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.account-edit-icon-button {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #111;
  cursor: pointer;
  z-index: 2;
}

.account-edit-icon-button:hover,
.account-edit-icon-button:focus-visible {
  background: #f0f0f0;
}

.account-edit-icon {
  display: block;
  width: 24px;
  height: 24px;
}

.account-title {
  text-align: center;
  margin: 8px 0 24px 0;
  font-size: 28px;
  font-weight: 800;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

.account-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
}

.account-register-form {
  gap: 16px;
}

.account-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.account-grid-wide {
  grid-column: 1 / -1;
}

.account-input {
  width: 100%;
  min-height: 43px;
  border-radius: 8px;
  border: 1px solid #c8c8c8;
  outline: 0;
  box-sizing: border-box;
  padding: 11px 14px;
  color: #111;
  background: #fff;
}

.account-input:focus {
  border-color: #008080;
  box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.14);
}

.account-password-field {
  position: relative;
  width: 100%;
}

.account-password-field .account-input {
  padding-right: 48px;
}

.account-password-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #333;
  cursor: pointer;
}

.account-password-toggle:hover,
.account-password-toggle:focus-visible {
  background: #f0f0f0;
}

.account-password-icon {
  width: 22px;
  height: 22px;
  display: block;
}

.account-password-icon-hide,
.account-password-toggle[data-visible="true"] .account-password-icon-show {
  display: none;
}

.account-password-toggle[data-visible="true"] .account-password-icon-hide {
  display: block;
}

.account-page-link {
  margin: -4px 0 0 0;
  text-align: right;
}

.account-link-button,
.account-inline-link {
  border: 0;
  background: transparent;
  padding: 0;
  color: #000;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 800;
}

.account-link-button {
  color: #747474;
  font-size: 10px;
}

.account-form-btn,
.account-secondary-btn {
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 8px;
  border: 0;
  outline: 0;
  background: #008080;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  box-shadow: rgba(0, 0, 0, 0.22) 0 3px 8px;
}

.account-form-btn:active,
.account-secondary-btn:active {
  box-shadow: none;
}

.account-secondary-btn {
  background: #111;
  margin-top: 12px;
}

.account-switch-label {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin: 0;
  font-size: 12px;
  color: #747474;
}

.account-inline-link {
  margin-left: 4px;
  font-size: 12px;
}

.account-buttons-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 18px;
  gap: 12px;
}

.account-social-button {
  border-radius: 8px;
  box-sizing: border-box;
  padding: 10px 15px;
  box-shadow: rgba(0, 0, 0, 0.12) 0 8px 22px 0, rgba(0, 0, 0, 0.06) 0 0 0 1px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  gap: 7px;
}

.account-apple-button {
  background: #000;
  color: #fff;
  border: 2px solid #000;
}

.account-google-button {
  background: #fff;
  color: #111;
  border: 2px solid #747474;
}

.account-social-icon {
  font-size: 18px;
}

.account-section-title {
  margin: 4px 0 0 0;
  font-weight: 800;
  color: #111;
}

.account-same-address {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  font-size: 13px;
}

.account-dashboard {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.account-dashboard-intro {
  margin: 0;
  color: #4a4a4a;
  text-align: center;
}

.account-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.account-dashboard-grid > div,
.account-address-block {
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 12px;
  box-sizing: border-box;
}

.account-dashboard-label {
  display: block;
  color: #6a6a6a;
  font-size: 12px;
  margin-bottom: 4px;
}

.account-address-block p:last-child {
  white-space: pre-line;
  margin: 6px 0 0 0;
}

.account-quotes-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.account-quote-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 12px;
  box-sizing: border-box;
}

.account-quote-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  text-align: left;
}

.account-quote-info span {
  color: #6a6a6a;
  font-size: 12px;
}

.account-quote-link {
  flex-shrink: 0;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 8px;
  background: #008080;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.account-message {
  min-height: 18px;
  margin: 12px 0 0 0;
  text-align: center;
  font-size: 13px;
}

.account-message[data-type="error"] {
  color: #b00020;
}

.account-message[data-type="info"] {
  color: #006f6f;
}

.account-captcha-wrap {
    margin-top: 12px;
    width: 100%;
}

.catalog-captcha-slot {
    min-height: 78px;
}

.cart-captcha-step {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-captcha-inline-wrap {
    flex: 0 0 100%;
    width: 100%;
    margin-top: 0;
}

@media (max-width: 640px) {
  .account-dialog {
    padding: 22px 18px;
  }

  .account-form-grid,
  .account-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .account-quote-item {
    align-items: stretch;
    flex-direction: column;
  }
}



/*-----------------loader -----------*/

#end-section-panier{
    align-items: center;
    justify-content: center;
    padding: 10% 0;
    min-height: 250px;
}



#block-spinner{
    display:none;
    align-items: center;
    justify-content: center;
    width:70px;
    height:70px;
}

.spinner {
  position: absolute;
  width: 9px;
  height: 9px;
}

.spinner div {
  position: absolute;
  width: 50%;
  height: 150%;
  background: #000000;
  transform: rotate(calc(var(--rotation) * 1deg)) translate(0, calc(var(--translation) * 1%));
  animation: spinner-fzua35 1s calc(var(--delay) * 1s) infinite ease;
}

.spinner div:nth-child(1) {
  --delay: 0.1;
  --rotation: 36;
  --translation: 150;
}

.spinner div:nth-child(2) {
  --delay: 0.2;
  --rotation: 72;
  --translation: 150;
}

.spinner div:nth-child(3) {
  --delay: 0.3;
  --rotation: 108;
  --translation: 150;
}

.spinner div:nth-child(4) {
  --delay: 0.4;
  --rotation: 144;
  --translation: 150;
}

.spinner div:nth-child(5) {
  --delay: 0.5;
  --rotation: 180;
  --translation: 150;
}

.spinner div:nth-child(6) {
  --delay: 0.6;
  --rotation: 216;
  --translation: 150;
}

.spinner div:nth-child(7) {
  --delay: 0.7;
  --rotation: 252;
  --translation: 150;
}

.spinner div:nth-child(8) {
  --delay: 0.8;
  --rotation: 288;
  --translation: 150;
}

.spinner div:nth-child(9) {
  --delay: 0.9;
  --rotation: 324;
  --translation: 150;
}

.spinner div:nth-child(10) {
  --delay: 1;
  --rotation: 360;
  --translation: 150;
}

@keyframes spinner-fzua35 {
  0%, 10%, 20%, 30%, 50%, 60%, 70%, 80%, 90%, 100% {
    transform: rotate(calc(var(--rotation) * 1deg)) translate(0, calc(var(--translation) * 1%));
  }

  50% {
    transform: rotate(calc(var(--rotation) * 1deg)) translate(0, calc(var(--translation) * 1.5%));
  }
}

/*-----------------validation---------------*/


#validation-card {
  text-align: left;
  max-width: 400px;
  
}


.validation-header,.error-header {
  padding: 1.25rem 1rem 1rem 1rem;
}

#validation-card .validation-image {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  background-color: #e2feee;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  animation: animate .6s linear alternate-reverse infinite;
  transition: .6s ease;
}

#validation-card .validation-image svg {
  color: #0afa2a;
  width: 2rem;
  height: 2rem;
}

#validation-card .error-image {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  animation: animate .6s linear alternate-reverse infinite;
  transition: .6s ease;
}

#validation-card .error-image svg {
  color: #EF665B;
  width: 2rem;
  height: 2rem;
}

#validation-card .content {
  margin-top: 0.75rem;
  text-align: center;
}

.validation-header .title {
  color: #066e29;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5rem;
}

.error-header .title {
  color: #6e0617;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5rem;
}


#validation-card .message {
  margin-top: 0.8rem;
  color: #595b5f;
  font-size: 0.95rem;
  line-height: 1.3rem;
}

#validation-card .actions {
  margin: 1rem;
  display: flex;
  justify-content: center;
}


@keyframes animate {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.09);
  }
}
