@font-face {
  font-family: suisse;
  font-display: auto;
  src: url(../fonts/suisseintl-regular.otf);
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: suisse;
  font-display: auto;
  src: url(../fonts/suisseintl-regularit.otf);
  font-style: italic;
  font-weight: 400;
}

@font-face {
  font-family: suisse;
  font-display: auto;
  src: url(../fonts/suisseintl-book.otf);
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: suisse;
  font-display: auto;
  src: url(../fonts/suisseintl-bookit.otf);
  font-style: italic;
  font-weight: 500;
}

@font-face {
  font-family: suisse;
  font-display: auto;
  src: url(../fonts/suisseintl-medium.otf);
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: suisse;
  font-display: auto;
  src: url(../fonts/suisseintl-mediumit.otf);
  font-style: italic;
  font-weight: 600;
}

/* Variables */
* {
  /* -webkit-font-smoothing: antialiased; */
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  --gray: rgb(178, 178, 178);
  --lightgray: rgb(220, 220, 220);
  --blue: rgb(1, 2, 255);
  --red: rgb(255, 0, 0);
  --xsmallText: 12px;
  --xsmallLeading: 1.5;
  --smallText: 16px;
  --smallLeading: 1.38;
  --bigText: 22px;
  --bigLeading: 1.2;
}

.gray {
  color: var(--gray)
}

.bgGray {
  color: #fff;
  background-color: var(--gray)
}

.red {
  color: var(--red);
  background-color: #fff;
}

.bgRed {
  background-color: var(--red)
}

.blue {
  color: var(--blue);
  background-color: #fff;
}

.bgBlue {
  color: #fff;
  background-color: var(--blue)
}

.bgBlack {
  background-color: #000;
  color: #fff;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  max-width: 2000px;
  margin: 0 auto;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

em {
  font-style: italic;
}

.nowrap{
  white-space: nowrap;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: inherit
}

a:hover {
  color: var(--gray);
}


body,
input,
button {
  font-family: suisse;
  font-size: var(--bigText);
  font-weight: 400;
  line-height: var(--bigLeading);
}

p {
  margin-bottom: 21px;
  letter-spacing: 0.05px;
}

p strong {
  font-weight: 500;
}

.tpl-default main p {
  font-size: var(--smallText);
  line-height: var(--smallLeading);
}

.tpl-default main p .red {
  font-size: var(--bigText);
  line-height: var(--bigLeading);
}

u {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

button {
  appearance: none;
  border: 0;
  color: var(--blue);
  background-color: #fff;
  padding: 0;
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  color: var(--gray);
}

button.btnIcon {
  background-color: transparent;
}

.tpl-home button:disabled,
button#add-to-basket-btn:disabled {
  color: var(--red)
}


body:not(.tpl-product) main {
  padding: 100px 40px 0;
}

.tpl-default main {
  padding: 92px 40px 0 !important;
  max-width: 640px;
}


.tpl-default h2,
.tpl-default h3 {
  font-size: var(--bigText);
  line-height: var(--bigLeading);
}

.tpl-default h2 {
  margin-bottom: 0.88em;
}

.tpl-default h3 {
  margin-top: 1.36em;
}

/* Header — Menu */
header {
  display: flex;
  justify-content: stretch;
  /* align-items: center; */
  align-items: flex-start;
  /* height: 64px; */
  min-height: 64px;
  font-size: var(--headingtext);
  line-height: var(--heading-line-height);
  position: fixed;
  width: 100%;
  box-sizing: border-box;
  left: 0;
  padding: 0 40px;
  z-index: 1;
  /* padding: 0 calc(50% - 1000px); */
  padding: 19px calc(50% - 1000px);
}

header nav {
  flex: 1 1 auto;
  display: flex;
  column-gap: 90px;
  padding: 0 40px;
}

header:hover {
  background-color: #fff;
}


nav a.active,
nav .active>a,
nav span.active {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  text-decoration-style: solid;
}

nav a:hover {
  color: var(--gray)
}

nav #cart.full a {
  color: var(--blue)
}

nav #cart.full.active a {
  text-decoration-color: var(--blue);
}

#puce {
  color: #ffffff00;
  font-weight: 700;
  font-size: var(--smallText);
  background-color: var(--blue);
  display: inline-block;
  height: 10px;
  width: 10px;
  padding: 0px;
  border-radius: 100px;
  vertical-align: text-top;
  margin: 0 12px 0 2px;
  position: absolute;
  display: none;
}

#catalogue,
#end {
  display: flex;
  column-gap: 45px;
}

nav #catalogue {
  flex: 1 1 auto;
}

.swiper,
#vscroll {
  position: fixed !important;
  top: 0;
  left: 0;
  /* overflow-y: scroll; */
  /* scroll-snap-type: y mandatory;
  scroll-behavior: auto; */
  width: 100%;
  margin: 34px 0 0;
  height: calc(100% - 71px);
  padding: 15.75vh calc(50% - 1000px);
  z-index: -1 !important;
  max-height: 1150px;
}

#vscroll article,
.swiper article {
  scroll-snap-align: center;
  scroll-snap-stop: always;
  margin: calc(51vh / 16) auto;
  max-width: 2000px;
  display: flex;
  height: calc(100vh * (36/70));
  padding: 0 40px;
  justify-content: center;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--smallText);
}

.swiper::-webkit-scrollbar,
#vscroll::-webkit-scrollbar {
  display: none;
  /* masque la scrollbar pour Chrome, Safari et Opera */
}

.swiper a {
  height: 100%;
}

#vscroll img,
.swiper img {
  width: auto;
  height: 28vw;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.15s;
  cursor: pointer;
}


.gallery img {
  height: calc(100vh - 128px);
  max-width: 100%;
  object-fit: contain;
}

.tpl-home #data-info {
  padding: 0 40px;
  padding: 0 calc(50% - 1000px);

}

.tpl-home #data-info>div {
  padding: 0 40px;
}

#data-info {
  height: 64px;
  padding: 14px 40px 34px;
  position: fixed;
  left: 0;
  width: 100%;
  bottom: 0px;
  font-size: var(--headingtext);
  padding: 34px 40px 24px;
  box-sizing: border-box;
}

.tpl-home #data-info {
  bottom: max(calc(100vh - 1150px - 70px), 0px);
  overflow: hidden;
}

.tpl-product .variant-line,
.tpl-home .variant-line,
#priceBloc form {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 0.5rem);
}



.tpl-product .variant-line,
.tpl-home .variant-line {
  border-bottom: 1px solid var(--lightgray);
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex: 0 1 66%;
  min-height: 31px;
  line-height: 1.3;
  padding: 5px 3px 4px;
}

.tpl-product .variant-line:last-of-type,
.tpl-home .variant-line:last-of-type {
  border-bottom: 0px;
}

.tpl-product .variant-line:first-of-type,
.tpl-home .variant-line:first-of-type {
  margin-top: -3px;
}

.tpl-home .variants *:last-child>span {
  border-bottom: 0;
}


#priceBloc {
  text-align: right;
  max-width: 640px;
  padding-right: 50px;
}
#priceBloc.multiple {
  width: 800px;
  max-width: 100vw;
}

/* Product */

html.tpl-product {
  scroll-snap-type: y mandatory;
  scroll-behavior: auto;
}

.tpl-product header {
  background-color: #fff;
}



/*  */

.gallery,
#solothumb {
  height: calc(100vh - 128px);
  overflow: hidden;
  position: absolute !important;
  top: 64px;
  left: 40px;
  width: calc(100% - 80px);
}

.gallery {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 1s;
}

.gallery.show {
  opacity: 1 !important;
  transition-property: opacity;
  transition-duration: 1s;
}

#solothumb {
  display: flex;
  align-content: center;
  justify-content: center;
  object-fit: contain;
}

.gallery img,
#solothumb img,
.gallery .audio-card,
.gallery video {
  height: calc(100vh - 128px);
  max-width: calc(100% - 35vw);
  object-fit: contain;
}

.gallery .audio-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.gallery .audio-card::after {
  content: "";
  background-color: blue;
  width: 100%;
  aspect-ratio: 4/3;
  display: block;
  position: absolute;
  z-index: -1;
  overflow: hidden;
  max-height: 100%;
}

.gallery .audio-card figure {
  height: 0;
  width: 60px;
  padding-top: 60px;
  cursor: pointer;
}

.gallery .audio-card figure::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  translate: -50% -50%;
  background-color: #fff;
  clip-path: polygon(10% 0%, 100% 50%, 10% 100%);
  cursor: pointer;
  z-index: 2;
}

.gallery .audio-card figure.stop::after {
  clip-path: polygon(42% 0%, 42% 100%, 18% 100%, 18% 0%, 82% 0%, 82% 100%, 58% 100%, 58% 0%);
}

.gallery .audio-card figure:hover::after {
  opacity: 0.5;
}

.gallery img {
  counter-increment: carousel-cell;
  max-height: 1094px;
}


#caption {
  position: absolute;
  left: 40px;
  left: max(40px, calc(50% - 1000px) + 40px);
  top: 50%;
  height: auto;
  width: 150px;
  z-index: -1;
  color: var(--red);
  font-size: var(--xsmallText);
  line-height: var(--xsmallLeading);
  font-weight: 600;
  translate: 0 -50%;
  min-height: 50px;
}

/* cell number */
#counter {
  position: absolute;
  top: min(575px, 50%);
  right: 40px;
  right: max(40px, calc(50% - 1000px + 40px));
  width: 70px;
  height: 20px;
  text-align: right;
  translate: 0 -50%;
  font-size: var(--smallText);
}

.flickity-page-dots {
  position: fixed;
  top: 50%;
  right: 22px;
  width: 70px;
  height: 20px;
  margin-left: 0;
  pointer-events: none;
}

.flickity-page-dots:before {
  font-size: var(--smallText);
  content: "/";
  z-index: 1000000;
  left: 14px;
  position: relative;
  top: 3px;
}

.flickity-page-dots .flickity-page-dot {
  counter-increment: carousel-cell;
  position: absolute;
  left: 0;
  margin: 0;
  opacity: 1;
  border-radius: 0;
}

.flickity-page-dots .flickity-page-dot:before {
  content: counter(carousel-cell);
  background-color: #fff;
  color: #000;
  text-align: right;
}

.flickity-page-dots .flickity-page-dot,
.flickity-page-dots .flickity-page-dot:before,
.flickity-page-dots .flickity-page-dot:after {
  float: left;
  width: 30px;
  height: 20px;
  font-size: var(--smallText);
}

.flickity-page-dots .flickity-page-dot.is-selected {
  z-index: 1;
}

.flickity-page-dots .flickity-page-dot:last-child:after {
  content: counter(carousel-cell);
  position: absolute;
  top: 0;
  color: #000;
  right: -40px;
  text-align: left;
}

.flickity-page-dots .flickity-page-dot:last-child {
  position: relative;
}

.tpl-product #data-info {
  padding: 0px 40px 22px;
  transition: 0.2s ease-out height;
  z-index: 1;
  position: static;
  top: auto;
  height: calc(100vh - 64px);
}

.tpl-product #data-info,
#data-info.open,
#data-info.open #item-title {
  background-color: #fff;
}

#item-title {
  position: sticky;
  top: 0px;
  min-height: 64px;
  padding: 15px 0 22px;
  cursor: pointer;
  display: flex;
  column-gap: 25px;
}

.tpl-home #item-title {
  z-index: 1;
  padding: 15px 0 22px;
}

.tpl-home .open #item-title {
  padding: 32px 0 20px;
}

.tpl-product #item-title {
  background-color: #fff;
}

.bloc-titre {
  display: block;
  width: 100%;
}

.tpl-product .bloc-titre {
  width: calc(100% - 160px);
  max-width: 100%;
}

.tpl-product .open .bloc-titre {
  width: 100%;
}

.fullname {
  display: inline-block;
  white-space: pre;
}

.bloc-titre>* {
  margin: 0 17px 0 0;
}

.bloc-titre:after {
  content: '…';
  display: inline-block;
  margin-left: 0px;
}

#data-info:hover .item-name::after,
.open .bloc-titre::after {
  content: none;
}

.open .bloc-titre:hover {
  color: var(--gray);

}

#plusInfos {
  position: absolute;
  cursor: pointer;
  bottom: 25px;
  right: max(00px, calc(50% - 1000px + 40px));
  font-size: var(--smallText);
  z-index: 1;
}

#plusInfos {
  position: absolute;
  right: 0;
}

#plusInfos:hover {
  color: var(--gray);
}

.longs {
  display: none;
}

.open .longs,
.item-title:hover .longs {
  display: initial;
}

.open #plusInfos span:nth-child(2),
#plusInfos span:nth-child(1) {
  display: block;
}

.open #plusInfos span:nth-child(1),
#plusInfos span:nth-child(2) {
  display: none;
}

.swiper .swiper-slide-prev,
.swiper .swiper-slide-prev img,
#vscroll article.prev,
#vscroll article.prev img {
  cursor: url(../icon/top.svg) 30 40, n-resize;
  transition-property: cursor;
  transition-delay: 1s;
}

.swiper .swiper-slide-next,
.swiper .swiper-slide-next img,
#vscroll article.next,
#vscroll article.next img {
  cursor: url(../icon/bottom.svg) 30 40, s-resize;
  transition-property: cursor;
  transition-delay: 1s;
}

#data-info select {
  appearance: none;
  font-size: var(--bigText);
  background-color: var(--gray);
  color: #fff;
  border: 0;
  border-radius: 0;
  padding: 2px 5px 3px;
  outline: none;
}

#data-info select[data-value*="p"] {
  background-color: var(--blue);
  color: #fff;
}

#data-info.open {
  height: calc(100vh - 63px);
  overflow-y: scroll;
}

.footnote-ref {
  vertical-align: super;
  font-weight: 600;
  font-size: 9px;
  margin-left: 1px;
}

.footnotes {
  display: block;
  width: 100%;
  justify-content: left;
  display: flex;
  padding-left: 117px;
  margin-bottom: 22px;
  margin-top: 23px;
}

.footnotes hr {
  display: none;
}

.footnotes ol {
  width: 480px;
  max-width: 100%;
  font-size: var(--xsmallText);
  line-height: var(--xsmallLeading);
  font-weight: 600;
  counter-reset: note;
}

.footnotes ol li {
  display: flex;
  column-gap: 17px;
}

.footnotes p {
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 0;
  letter-spacing: 0.1px;
}

.footnotes ol li:before {
  content: counter(note) " ";
  counter-increment: note;
  font-feature-settings: "onum";
  width: 0px;
}

.footnote-backref {
  display: none;
}

.tpl-home #data-info.open {
  max-height: calc(50vh);
}


#data-info.open #item-content {
  opacity: 1;
  transition: opacity 0.15s ease-out;
  transition-delay: 0.2s;

  padding-bottom: 20px;
}

.tpl-home #data-info.open #item-content {
  max-width: 640px;

}

.tpl-home #data-info.open {
  height: auto;
}

.tpl-product #data-info.open #item-content {
  /* padding-bottom: calc(100vh - 190px); */
  opacity: 1;
}

.tpl-product #data-info #item-content::-webkit-scrollbar {
  width: 0;
}

.tpl-product #data-info #item-content {
  height: calc(100% - 43px);
  overflow: hidden scroll;
  /* padding-bottom: calc(100vh - 170px); */
  scrollbar-width: 0;
}

.tpl-product #data-info #item-content {
  scroll-behavior: smooth;
}

.tpl-product #data-info #item-content #contentTxt {
  max-width: 640px;
  flex: 0 1 640px;
  overflow: hidden;
}

.tpl-product #data-info #item-content #illustrations {
  flex: 0 1 274px;
  overflow: hidden;
  position: sticky !important;
  top: 0px;
}

.tpl-product #data-info #item-content #illustrations figure {
  margin: 0 24px 10px 0;
}

.tpl-product #data-info #item-content #illustrations figcaption {
  padding-left: 0.75em;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
}

.captiontxt {
  display: none;
}

#illustrations.zoomed {
  overflow: visible !important;
}

#illustrations.zoomed img,
#illustrations.zoomed figcaption {
  /* opacity: 0; */
}

#illustrations figure.zoom img {
  transform: scale(3);
  transform-origin: 100% 0%;
  opacity: 1;
}

.zoom .captiontxt {
  display: inline;
}

#contentdesc,
#colophon {
  font-size: var(--smallText);
  line-height: var(--smallLeading);
}

.tpl-home #contentdesc p:last-of-type {
  margin-bottom: 0;
}

#colophon {
  max-width: 640px;
}

.tpl-product #contentdesc {
  display: flex;
  justify-content: space-between;
}

/* Panier */
#cgv-check {
  font-size: var(--bigText);
  line-height: var(--bigLeading);
  color: var(--blue)
}

#cgv-check a {
  color: var(--blue);
}

#cgv-check a:hover {
  color: var(--gray);
}

input[type="checkbox"] {
  background-color: #fff;
  appearance: none;
  border: 1px solid var(--blue);
  height: 18px;
  width: 18px;
  vertical-align: bottom;
  border-radius: 1px;
  margin: 0px 2px 6px 0px;
}

input[type="checkbox"]:checked {
  background-color: blue;
  border: 1px double var(--blue);
}

input[type="checkbox"]:checked::before {
  content: " ";
  background-color: #fff;
  mask-image: url(../icon/bouton-plus.svg);
  mask-position: 50% 50%;
  mask-repeat: no-repeat;
  mask-size: 200%;
  border-radius: 1px;
  position: absolute;
  width: 16px;
  height: 16px;
  margin: 0px;
  overflow: hidden;
  rotate: 45deg;
  margin: 0px;
}

.tpl-product input[type="checkbox"],
.tpl-home input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border-radius: 15px;
  margin: 6px 10px 6px 0px;
}

.tpl-product input[type="checkbox"]:checked,
.tpl-home input[type="checkbox"]:checked {
  border: 3px double var(--blue);
}

.tpl-product input[type="checkbox"]::before,
.tpl-home input[type="checkbox"]::before {
  content: none;
}

.tpl-product input[type="checkbox"]:disabled,
.tpl-home input[type="checkbox"]:disabled {
  border-color: var(--gray);
  background-color: var(--gray)
}

.tpl-product .outofstock input[type="checkbox"],
.tpl-home .outofstock input[type="checkbox"] {
  opacity: 0;
}

.tpl-product .outofstock,
.tpl-home .outofstock {
  color: var(--gray);
  padding: 0 0px;
}

.variant-line input[type='checkbox'] {
  display: none;
}

.variant-line input[type="checkbox"]+label {
  cursor: pointer;
}

.variant-line.selected,
.variant-line.selected .blue {
  background-color: blue !important;
  color: #fff;
}

.variant-line.incart,
.variant-line.incart .blue {
  background-color: transparent !important;
  color: var(--gray);
}

.blue.cart-link {
  background-color: transparent;
  margin: 30px 7px 0 0;
  display: inline-block;
}
form .blue.cart-link {
  margin: 0px 7px 0 0;
}

.tpl-cart table {
  background-color: #fff;
  color: #000;
  font-size: var(--smallText);
  line-height: var(--smallLeading);
  font-weight: 500;
}

.tpl-cart table td,
.tpl-cart table th {
  padding: 0 6px;
}

.tpl-cart table thead th {
  padding: 0 6px 6px;
}

.tpl-cart table thead th label:hover {
  opacity: 0.5;
  cursor: pointer;
}

.tpl-cart table tbody tr td,
.tpl-cart table tfoot tr td {
  height: min(36px);
  vertical-align: middle;
}

.tpl-cart table tfoot tr td {
  vertical-align: top;
  padding: 7px 6px 6px 7px;
}

#tableWrapper {
  width: 100%;
  max-width: 640px;
}

#tableWrapper form {
  margin-left: 4px;
}


.tpl-cart td:nth-child(3) {
  width: 100px;
}

#panelActionBtn {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: start;
}

#panelActionBtn>* {
  flex: 0 0 50%;
  text-align: left;
}

#panelActionBtn form label,
#panelActionBtn form button {
  margin-bottom: 1em;
  display: inline-block;
}

#panelActionBtn form label {
  text-indent: -25px;
}

.black #accept-cgv{
  background-color: #000;
  border-color: #000;
}
.black #dlsgv{
  color: #000;
}

.tpl-cart table a {
  color: #000
}

.tpl-cart a#dlsgv {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.tpl-cart input[type="checkbox"]:checked+a {
  color: var(--gray) !important;
}

.tpl-cart input[type="checkbox"]:checked+a:hover {
  color: var(--blue) !important;
}

.tpl-cart #accept-cgv {
  margin: 1xp 5px 1px 0;
}

.tpl-cart #accept-cgv:hover {
  border-color: var(--gray);
  cursor: pointer;
}

.tpl-cart #accept-cgv:hover:checked {
  border-color: var(--blue);
}

.tpl-cart input[name="shipping_region"] {
  margin-left: 2px;
}

.tpl-cart td {
  border-bottom: #000 1px solid;
}


input[type="radio"] {
  appearance: none;
}

input[type="radio"]::before {
  content: " ";
  display: inline-block;
  vertical-align: middle;
  width: 19px;
  height: 19px;
  border-radius: 22px;
  border: 1px solid #fff;
  /* background-image: url(../icon/bouton-moins.svg); */
  /* background-position: 50%; */
  background-color: transparent;
}

input[type="radio"]:checked::before {
  background-color: #fff;
}

/* Chrome, Safari, Edge */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


.number-input {
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  overflow: hidden;
}

.number-input input[type=number] {
  -moz-appearance: textfield;
  background: transparent;
  color: #000;
  border: none;
  text-align: center;
  width: 30px;
  padding: 0px;
  font-size: var(--smallText);
}

.number-input button {
  color: transparent;
  border: none;
  width: 26px;
  height: 36px;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  background-color: var(--blue);
}

.number-input button:hover {
  background-color: var(--gray);
}

.plus {
  /* background-image: url('../icon/bouton-plus.svg');
  background-size: 20px;
  background-position: 50%;
  background-repeat: no-repeat; */
  mask-image: url('../icon/bouton-plus.svg');
  mask-size: 21px;
  mask-position: 50%;
  mask-repeat: no-repeat;
}

.minus {
  /* background-image: url('../icon/bouton-moins.svg');
  background-size: 20px;
  background-position: 50%;
  background-repeat: no-repeat; */
  mask-image: url('../icon/bouton-moins.svg');
  mask-size: 21px;
  mask-position: 50%;
  mask-repeat: no-repeat;
}



.item-year,
.item-soustitre .long,
.item-complsoustitre .long {
  display: none;
}

.has-short .long,
.open .has-short .short {
  display: none;
}


.open .long {
  display: inline;
}

.long .fn {
  display: none;
}

.tpl-home .item-author {
  display: inline-flex;
  flex-wrap: wrap;
}


#data-info.open .item-soustitre,
#data-info.open .item-complsoustitre,
#data-info.open .item-author .fn,
#data-info.open .bloc-titre .fn,
#data-info.open .item-year,
.tpl-product #data-info:hover .fn,
.tpl-product #data-info:hover .item-year,
.tpl-product #data-info:hover .item-soustitre

/* .tpl-product #data-info:hover .item-complsoustitre  */
  {
  display: inline-block;
  display: inline;
  white-space: pre;
}

.bloc-titre .item-complsoustitre {
  margin: 0;
}

.bloc-titre .item-complsoustitre>u {
  margin: 0 1em 0 0;
}

.tpl-success #successWrapper {
  display: flex;
  column-gap: 30px;
  font-size: var(--smallText);
  line-height: var(--smallLeading);
}

.tpl-success .right section {
  width: auto;
}

.tpl-success .right h2 {
  max-width: 520px;
  text-align: center;
}

.tpl-success h2 {
  font-size: var(--bigText);
  line-height: var(--bigLeading);
  margin-bottom: 1em;
}

.tpl-success .label {
  width: 250px;
  display: inline-block;
  text-align: right;
  white-space: nowrap;
  margin-right: 1em;
}

.variant-price{
  white-space: nowrap;
}


.variant-line:not(.selected):hover {
  color: var(--gray);
  cursor: pointer;
}

.variant-line+.variant-line.bundle {
  border-top: 0px solid var(--lightgray);
  margin-top: 20px;
}

.variant-line span:first-child {
  text-align: left;
}

.variant-line.disabled {
  pointer-events: none;
  color: var(--gray);
}

.variant-line.outofstock {
  color: var(--gray);
  padding: 0 3px;
  pointer-events: none;
}

.gocart {
  opacity: 0;
}

.showcart .gocart {
  opacity: 1;

}

#shipping-form label {
    display: inline-flex;
    align-items: baseline;
}
#shipping-form label input{
    margin-right: 5px;
    cursor: pointer;
}

#msgnotif {
  margin-bottom: 32px;
}
#msgnotif p{
  margin-bottom: 0;
  color: red;
}

@media screen and (max-width: 1024px) {
  header nav {
    justify-content: space-between;
  }

  nav #catalogue {
    display: none;
  }
}

@media screen and (max-width: 125vh) {

  #caption,
  #counter {
    display: none;
  }

  .gallery img,
  #solothumb img {
    max-width: 100%;
  }

}

@media screen and (min-width: 751px) {
  /* .tpl-product .gallery img,
  .tpl-product .gallery .audio-card,
  .tpl-product .gallery video {
    cursor: pointer;
    cursor: url(../icon/next.svg) 20 20, pointer;
  } */

  #bottomMask {
    display: none;
  }

  .tpl-product section {
    height: calc(100vh - 64px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .tpl-product section#pictures {
    scroll-snap-align: start;
    max-height: 1158px;
  }

  .tpl-product section#textes {
    scroll-snap-align: end;
    overflow-y: scroll;
  }

  .flickity-prev-next-button.next {
    cursor: pointer;
    cursor: url(../icon/next.svg) 20 20, pointer;
  }

  .flickity-prev-next-button.previous {
    cursor: pointer;
    cursor: url(../icon/prev.svg) 20 20, pointer;
  }

  .flickity-prev-next-button {
    top: 0px;
    width: 40%;
    height: 100%;
    border-radius: 0;
    transform: translateY(0);
    background-color: transparent;
  }

  .flickity-prev-next-button:focus {
    outline: none;
    box-shadow: none;
  }

  .flickity-prev-next-button svg {
    display: none;
  }

  .flickity-prev-next-button:hover {
    background-color: transparent;
  }
}

@media screen and (max-width: 750px) {
  * {
    --xsmallText: 3.5vw;
    --xsmallLeading: 1.25;
    --smallText: 4vw;
    --smallLeading: 1.3;
    --bigText: 4vw;
    --bigLeading: 1.3;
  }

  html.tpl-product {
    scroll-behavior: smooth;
    scroll-padding-top: 68px;
  }

  body {
    font-weight: 500;
  }

  .tpl-home #data-info {
    bottom: max(calc(100vh - 1150px - 70px), 21px);
    overflow: hidden;
  }

  .item-name {
    display: block;
  }

  header {
    padding: 0 0px;
    font-weight: 500;
    height: 59px;
    top: 0px;
    background-color: #fff;
    align-items: center;
  }

  header nav {
    flex: 1 1 auto;
    display: flex;
    column-gap: auto;
    justify-content: space-between;
    align-items: end;
  }

  header nav {
    padding: 0 13px;
  }

  .carty {
    display: none;
    align-content: end;
  }
  .carty.show {
    display: block;
  }

  #item-title {
    padding: 10px 0;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }

  .tpl-product section#textes {
    margin-top: 31px;
  }



  .swiper,
  #vscroll {
    height: calc(100% - 118px);
    height: calc(100% - 129px);
    margin: 0;
    top: 50%;
    top: calc(50% - 6px);
    translate: 0 -50%;
    scroll-padding-block: 50%;
  }

  #vscroll article,
  .swiper article {
    padding: 0 0px;
    /* height: 75vw; */
    height: auto;
    margin: calc(75vw / 12) 0;
    margin: 31.5px 0;
    margin: 0;
  }


  #vscroll img,
  .swiper img {
    height: 75vw;
    width: 100%;
    object-fit: contain;
    margin: 29px 0;
  }

  body:not(.tpl-product) main {
    padding: 100px 13px 0 !important;
  }

  #data-info {
    height: 40px;
    padding: 0px 0px 0px;
  }

  input[type="checkbox"] {
    margin: 0px 2px 1px 0px;
  }

  .tpl-home #data-info>div,
  .tpl-product #data-info {
    padding: 0 13px 0px;
  }

  .gallery img:first-of-type {
    /* margin-top: calc(50vh - 37.5vw) !important; */
    margin-top: 59px !important;
  }


  #data-info:not(.open) .item-year {
    display: none;
  }

  .tpl-product #data-info {
    height: auto;
    overflow-y: initial;
  }

  .tpl-product .bloc-titre::after {
    content: none;
  }

  .nowrap {
    white-space: nowrap;
  }

  #item-title {
    column-gap: 10px;
    min-height: 40px;
    padding-top: 0px !important;
  }

  .tpl-product #priceBloc {
    padding-right: 0px;
    padding-bottom: 150px;
  }

  #item-content {
    height: auto !important;
    overflow: initial !important;
    padding: 0 0 50px;
  }


  .variant-line > :nth-child(2) {
      text-align: right !important;
      flex: 1 0 110px;
  }

  /* .tpl-product section {
    height: calc(100vh - 34px);
} */

  #prodnav a:nth-child(2) {
        display: inline-block;
        flex: 0 0 50px;
        text-align: right;
        color: #000;
  }

  .gallery,
  #solothumb {
    left: 0px;
    width: 100%;
    opacity: 1 !important;
    height: auto;
    overflow: initial;
    position: static !important;
  }


  .gallery img {
    height: auto;
    margin: 20px 0 !important;
    display: block;
  }

  #btnMobileMenu {
    cursor: pointer;
    align-content: end;
  }


  #bottomMask {
    position: fixed;
    bottom: 0px;
    padding: 9px 13px 10px;
    width: 100%;
    height: 59px;
    height: 70px;
    background-color: #fff;
  }


  #mobileMenu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background-color: #fff;
    display: none;
  }

  .footnotes {
    padding-left: 40px;
  }

  .footnotes ol {
    font-weight: 500;
  }

  #mobileMenu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: safe;
    height: 100%;
    row-gap: 23px;
    padding: 99px 0 0;
  }

  #mobileMenu ul li:last-child {
    margin-top: 53px
  }

  header nav .active {
    text-underline-offset: 4px;
  }

  #plusInfos {
    position: fixed;
    cursor: pointer;
    bottom: 8px;
    right: 8px;
    font-size: var(--smallText);
  }

  .tpl-success #successWrapper {
    display: block;
    margin-bottom: 150px;
  }

  .tpl-success .right section {
    width: 100%;
  }


  .tpl-success .right {
    margin-top: 2em;
  }

  .tpl-success .label {
    width: 130px;
    flex: 0 0 130px;
    white-space: normal;
    /* text-align: left; */
  }
  .tpl-success #successWrapper section > div {
    display: flex;

  }


  header nav {
    gap: 0;
  }

  #end {
    display: flex;
    column-gap: 10px;
  }

  .tpl-product .bloc-titre {
    width: 100%;
    flex-wrap: wrap;
    display: flex;
    /* position: sticky;
        top: 54px; */
    background-color: #fff;
    padding: 5px 0 0px;
    margin-bottom: 20px;
  }


  .tpl-product .bloc-titre>* {
    white-space: normal;
  }

  #data-info.open .longs,
  #data-info:not(.open):hover .longs,
  #data-info:not(.open):hover .item-year {
    display: none;
  }

  /* .tpl-home #data-info.open #item-content {
    padding-right: 0;
  } */

  /* .tpl-home .open .bloc-titre {
    display: inline-flex;
    width: 100%;
    flex-wrap: wrap;
  } */

  .tpl-home .open .bloc-titre:hover {
    color: initial;
  }

  .tpl-home .bloc-titre>.short {
    display: flex;
    flex-wrap: wrap;
  }

  .tpl-home .open #item-title {
    padding-bottom: 0px;
  }

  .tpl-home #item-title>a:first-of-type {
    width: calc(100% - 30px);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  u {
    text-underline-offset: 3px;
  }

  .tpl-product .variant-line:first-of-type,
  .tpl-home .variant-line:first-of-type {
    margin-top: -7px;
  }

  .tpl-product input[type="checkbox"],
  .tpl-home input[type="checkbox"] {
    width: 10px;
    height: 10px;
    border-radius: 15px;
    margin: 11px 5px 11px 0px;
  }

  .tpl-product #data-info.open #item-content {
    /* padding-bottom: calc(100vh - 120px); */
    padding-right: 0px
  }


  .gallery .audio-card {
    display: block;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 4/3;
    height: auto;
    margin: 20px 0 0px;
    padding: 0;
    max-width: 100% !important;
    position: relative;
  }

  .gallery .audio-card::after {
    top: 0;
  }

  .number-input button {
    width: 20px;
    height: 40px;
    mask-size: 18px;
  }

  .number-input input[type="number"] {
    width: 27px;
  }

  .tpl-cart table thead th:nth-child(2) {
    padding-left: 5px !important;
  }

  input[type="radio"]::before {
    width: 16px;
    height: 16px;
}
#checkout-btn{
  text-align: left;
}

.tpl-cart table tbody tr td, .tpl-cart table tfoot tr td {
    height: auto;
    line-height: 1.3;
    padding: 8px 6px;
}
.tpl-cart table tbody tr td .gray{
    display: block;
}

.tpl-cart table thead th {
    padding: 4px 6px 6px;
}

    body:not(.cart) #site-notification {
        max-width: 100%;
        left: 0 !important;
        translate: 0px -50%  !important;
        padding: 0 13px !important;
    }

    body:not(.cart) #site-notification-close {
    right: 13px !important; 
  }
}

@media screen and (min-height: 1220px) {

  .tpl-product #data-info #item-content {
    opacity: 0;
  }
}