/* colors definitions */
:root {
  --color-main-dark: #2865a3;
  --color-main: #69c;
  --color-main-light: #80b4e8;
  --color-main-lightest: #c2e1ff;
  --color-secondary-dark: #666;
  --color-secondary: #999;
  --color-secondary-light: #ccc;
  --color-secondary-lightest: #eee;
  --color-black: #000;
  --color-black-light: #333;
  --color-white: #fff;
  --color-red: #c00;
}

/* main */
a,
textarea,
select,
input,
button,
label,
li {
  position: relative;
}

a:focus,
textarea:focus,
select:focus,
input:focus,
button:focus,
label:focus,
li:focus {
  outline: none;
}

a:focus-visible,
textarea:focus-visible,
select:focus-visible,
input:focus-visible,
button:focus-visible,
label:focus-visible,
li:focus-visible {
  outline: 2px solid var(--color-main);
}

a:focus-visible::before,
textarea:focus-visible::before,
select:focus-visible::before,
input:focus-visible::before,
button:focus-visible::before,
label:focus-visible::after,
li:focus-visible::before {
  content: ' ';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: var(--color-main);
  animation-name: floatInAndFade;
  animation-duration: 750ms;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.form .hiddenValue,
.undisplayedEmpty:empty {
  display: none;
}

[data-marker-empty=''],
.undisplayed {
  display: none !important;
}

.disabled {
  opacity: .2;
}

.clickable {
  cursor: pointer;
}

.error {
  color: var(--color-red) !important;
}

input[id^=gui] {
  display: none;
}

label {
  cursor: pointer;
  user-select: none;
}

#lid {
  position: fixed;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .6);
  z-index: 250;
}

#hourglass {
  display: none;
}

#hourglass.hourglass {
  position: fixed;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  z-index: 300;
}

#hourglass.hourglass::after {
  content: ' ';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: inline-block;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  animation-name: hourglass;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
}

.fontSizeXS {
  font-size: .8em;
}

.fontSizeS {
  font-size: .9em;
}

.fontSizeM {
  font-size: 1.2em;
}

.fontSizeL {
  font-size: 1.5em;
}

.fontSizeXL {
  font-size: 2em;
}

a.skipLink {
  position: absolute;
  top: -40px;
  left: 0;
}

a.skipLink:focus {
  top: 0;
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 10px;
}

a.skipLink:focus-visible {
  outline: none;
}

nav ul {
  display: inline-block;
  list-style: unset;
  padding-inline: unset;
  margin-block: unset;
}

nav ul > li {
  display: inline-block;
  text-align: left;
}

/* box */
.jaggedEdges {
  display: block;
  height: 0;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 50%),
  linear-gradient(-135deg, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 50%),
  linear-gradient(45deg, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 50%),
  linear-gradient(-45deg, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 50%);
  background-position: top center, top center, bottom center, bottom center;
  background-size: 20px 20px, 20px 20px, 20px 20px, 20px 20px;
  background-repeat: repeat-x;
  overflow: hidden;
}

.jaggedEdges > section {
  display: block;
  padding: 40px 15px;
  opacity: 0;
}

.paddedLight {
  padding: 7px;
}

.paddedNormal {
  padding: 15px;
}

.paddedHeavy {
  padding: 45px;
}

.noPaddingTop {
  padding-top: 0;
}

.flatLine {
  display: inline-block;
  width: 100%;
  height: 1px;
}

.buttons {
  padding: 15px 15px 0 15px;
  text-align: center;
}

/* elements */
.scrollable,
.scrollable section {
  position: relative;
}

.scrollable .scrollableContent {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  scroll-snap-type: x mandatory;
}

@media (hover: none) {
  .scrollable .scrollableContent {
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .scrollable .scrollableContent::-webkit-scrollbar {
    display: none;
  }
}

.scrollable .scrollableContent > div {
  display: inline-block;
  white-space: nowrap;
}

.scrollable .scrollableContent > div > * {
  scroll-snap-align: start;
}

.scrollable .scrollableContent > div * {
  white-space: initial;
}

.scrollable .previous,
.scrollable .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

.scrollable.overloaded .previous,
.scrollable.overloaded .next {
  display: inline-block;
}

.scrollable .previous,
.scrollable .next {
}

.scrollable .previous img,
.scrollable .next img {
  padding: 10px;
  filter: invert(66%) sepia(18%) saturate(1125%) hue-rotate(172deg) brightness(85%) contrast(86%); /* main */
}

.scrollable .previous:hover img,
.scrollable .next:hover img {
  filter: invert(34%) sepia(14%) saturate(2906%) hue-rotate(171deg) brightness(97%) contrast(89%); /* main dark */
  transition: 200ms filter linear;
}

.scrollable .previous {
  left: 7px;
}

.scrollable .next {
  right: 7px;
}

.gallery {
  position: relative;
  display: inline-block;
  width: 100%;
  border-top: 1px solid var(--color-secondary-lightest);
  border-bottom: 1px solid var(--color-secondary-lightest);
  text-align: center;
}

.gallery > section article {
  display: inline-block;
  width: 150px;
  padding-left: 10px;
  cursor: pointer;
}

.gallery > section article:first-child {
  width: 175px;
  padding-left: 35px;
}

.gallery > section article:last-child {
  width: 185px;
  padding-right: 35px;
}

.gallery > section img:hover {
  transform: scale(1.05);
  transition: 200ms transform linear;
}

.scrollable.overloaded .previous:before,
.scrollable.overloaded .next:before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .7);
}

#enlargedImg {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: inline-block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50%;
  background-color: rgba(0, 0, 0, .8);
  z-index: 200;
}

#enlargedImgNaviPrevious,
#enlargedImgNaviNext {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 90px;
  height: 90px;
  background-repeat: no-repeat;
  background-position: 50%;
  z-index: 201;
  filter: invert(66%) sepia(18%) saturate(1125%) hue-rotate(172deg) brightness(85%) contrast(86%); /* main */
}

#enlargedImgNaviPrevious:hover,
#enlargedImgNaviNext:hover {
  filter: invert(71%) sepia(19%) saturate(981%) hue-rotate(175deg) brightness(94%) contrast(93%); /* main light */
}

#enlargedImgNaviPrevious {
  left: 0;
  background-image: url('/img/layout/arr_wide_left.svg');
}

#enlargedImgNaviNext {
  right: 0;
  background-image: url('/img/layout/arr_wide_right.svg');
}

.googleMap {
  padding: 0;
}

/* form */
textarea,
input[type=date],
input[type=search],
input[type=email],
input[type=number],
input[type=text],
input[type=password] {
  height: 40px;
  padding: 10px 15px;
  border: 1px solid var(--color-secondary);
  border-radius: 3px;
  font-size: 1em;
}

textarea {
  height: 120px;
}

textarea:focus,
input:focus {
  background-color: var(--color-main-lightest);
}

input::-ms-input-placeholder {
  color: var(--color-secondary-light);
}

input::placeholder {
  color: var(--color-secondary-light);
}

input.missing::-ms-input-placeholder {
  color: var(--color-red);
}

input.missing::placeholder {
  color: var(--color-red);
}

select {
  position: relative;
  padding: 6px 40px 6px 10px;
  border: 1px solid var(--color-secondary);
  border-radius: 3px;
  background-color: transparent;
  font-size: 1em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.select {
  position: relative;
  display: inline-block;
  background-color: var(--color-white);
  border-radius: 4px;
}

.select::before {
  content: ' ';
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  width: 30px;
  height: 100%;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
  background-color: var(--color-main);
  background-repeat: no-repeat;
  background-position: 50%;
  background-image: url('/img/layout/arr_down.svg');
}

select {
  color: var(--color-black-light);
}

select option {
  color: var(--color-black-light);
  background-color: var(--color-white);
}

.btn,
button {
  display: inline-block;
  padding: 15px 25px;
  border-width: 0;
  border-radius: 3px;
  color: var(--color-white);
  background-color: var(--color-main);
  font-size: .8em;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover,
button:hover {
  color: var(--color-black);
  background-color: var(--color-main-lightest);
  transition: 200ms background-color linear,
  200ms color linear;
}

.btnCircle {
  display: inline-block;
  padding: 10px;
  border-radius: 50%;
  background-color: var(--color-main);
  text-decoration: none;
}

.btnCircle:hover {
  background-color: var(--color-main-dark);
  transition: 200ms background-color linear;
}

.withBtn .value {
  display: flex;
}

.withBtn .value *:first-child {
  margin-right: 10px;
}

.withBtn .value .btn {
  height: 40px;
  padding: 10px 25px;
  line-height: 1.5em;
}

.form section {
  margin-bottom: 15px;
}

.form .h2 {
  padding: 15px;
  margin-bottom: 15px;
  color: var(--color-black-light);
  background-color: var(--color-secondary-light);
}

.form section .h2 {
  margin-bottom: 0;
}

.form .h2 div {
  position: relative;
}

/*
.form .h2 div::after {
  content: 'rozwiń';
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  height: 100%;
  padding: 15px 45px 15px 15px;
  margin: -15px -15px 0 0;
  color: var(--color-white);
  background-color: var(--color-secondary-dark);
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
  background-image: url('/img/layout/arr_light_down.svg');
  cursor: pointer;
}

.form .h2 div:last-child::after {
  content: 'zwiń';
  background-image: url('/img/layout/arr_light_up.svg');
}
*/

.form .expandable + section {
  display: none;
}

.form input[type='checkbox']:checked + .expandable {
  margin-bottom: 0;
}

.form input[type='checkbox']:checked + .expandable + section {
  display: block;
}

.form input[type='checkbox'].elevated {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 10px;
  height: 1px;
}

.expander {
  position: relative;
}

.form .expander label {
  display: block;
  padding: 15px;
  margin: -15px;
  font-size: 1em;
  color: var(--color-black-light);
  cursor: default;
}

.expander label::before {
  content: 'rozwiń';
  background-image: url('/img/layout/arr_light_down.svg');
  box-sizing: border-box;
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  height: 100%;
  padding: 15px 45px 15px 15px;
  color: var(--color-white);
  background-color: var(--color-secondary-dark);
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
  cursor: pointer;
}

input[type='checkbox']:checked + * .expander label::before {
  content: 'zwiń';
  background-image: url('/img/layout/arr_light_up.svg');
}

.form .neutral,
.form .optional,
.form .obligatory {
  max-width: 600px;
  padding: 15px 15px 0 15px;
  margin: 0 auto;
}

.form .missingAlert,
.form .errorAlert,
.form .duplicatedAlert,
.form .misrepeatedAlert {
  display: none;
}

.form .missing .missingAlert,
.form .error .errorAlert,
.form .duplicated .duplicatedAlert,
.form .misrepeated .misrepeatedAlert {
  display: block;
  color: var(--color-red);
  font-size: .9em;
  padding-bottom: 5px;
}

.form label {
  display: block;
}

.form .neutral,
.form label,
.form .label {
  font-size: .9em;
  color: var(--color-secondary);
}

.form .value {
  position: relative;
}

.form label,
.form .label,
.form .value {
  padding-bottom: 5px;
}

.form .obligatory label::after,
.form .obligatory .label::after {
  content: ' (wymagane)';
}

.form .obligatory label.elementList::after {
  content: '';
}

.form textarea,
.form .select,
.form select,
.form input[type=date],
.form input[type=search],
.form input[type=email],
.form input[type=number],
.form input[type=text],
.form input[type=password] {
  width: 100%;
}

.form .select::before {
  width: 40px;
  background-color: var(--color-secondary);
}

.form .select {
  margin-bottom: 10px;
}

.form select {
  height: 40px;
  padding: 10px 40px 10px 15px;
}

.form .neutral ol,
.form .neutral ul {
  padding-inline-start: 20px;
}

.btnWhite,
.form .btn,
.form button {
  padding: 14px 24px;
  border: 1px solid var(--color-secondary);
  color: var(--color-black-light);
  background-color: var(--color-white);
  font-size: .8em;
}

.btnWhite:hover,
.form .btn:hover,
.form button:hover {
  color: var(--color-black);
  background-color: var(--color-main-lightest);
  transition: 200ms background-color linear,
  200ms color linear;
}

.form p {
  margin: 15px;
}

/* positioning */
.fLeft {
  float: left;
}

.fRight {
  float: right;
}

.vAlignedTop {
  position: absolute;
  top: 0;
}

.vAlignedBottom {
  position: absolute;
  bottom: 0;
}

.vAlignedMiddle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.hAlignedLeft {
  position: absolute;
  left: 0;
}

.hAlignedRight {
  position: absolute;
  right: 0;
}

.hAlignedMiddle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.alignedMiddle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.tLeft {
  text-align: left;
}

.tCenter {
  text-align: center;
}

.tRight {
  text-align: right;
}

.tJustified {
  text-align: justify;
}

/* balloon */
.balloon {
  position: absolute;
  display: inline-block;
  width: 110px;
  height: 125px;
  opacity: 1;
}

.balloon.float {
  opacity: .1;
  transition: 500ms top ease-out,
  500ms opacity linear;
}

.balloon span {
  transform: translateX(-50%);
  display: inline-block;
  padding: 15px 5px 5px 5px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid var(--color-main);
  font-size: .8em;
  color: var(--color-black-light);
  background-color: var(--color-main-lightest);
  text-align: center;
  z-index: 110;
}

.balloon span::before,
.balloon span::after {
  content: ' ';
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 15px solid var(--color-main-lightest);
}

.balloon span::before {
  bottom: -15px;
  border-left-width: 9px;
  border-right-width: 9px;
  border-top: 16px solid var(--color-main);
}

.balloon .cart {
  cursor: pointer;
}

/* colors */
.bckClrMain {
  color: var(--color-white);
  background-color: var(--color-main);
}

.bckClrMainLightest {
  color: var(--color-white);
  background-color: var(--color-main-lightest);
}

.bckClrSecondaryLight {
  color: var(--color-black-light);
  background-color: var(--color-secondary-light);
}

.bckClrSecondaryLightest {
  color: var(--color-black-light);
  background-color: var(--color-secondary-lightest);
}

.bckClrBlack {
  background-color: var(--color-black);
}

.bckClrWhite {
  color: var(--color-black);
  background-color: var(--color-white);
}

.brdClrBlack {
  border: 1px solid var(--color-black);
}

.colorMain img {
  filter: invert(66%) sepia(18%) saturate(1125%) hue-rotate(172deg) brightness(85%) contrast(86%); /* main */
}

.colorMain:hover img {
  filter: invert(34%) sepia(14%) saturate(2906%) hue-rotate(171deg) brightness(97%) contrast(89%); /* main dark */
  transition: 200ms filter linear;
}

.colorSecondary img {
  filter: invert(73%) sepia(0%) saturate(1352%) hue-rotate(168deg) brightness(83%) contrast(96%); /* secondary */
}

.colorSecondary:hover img {
  filter: invert(100%) sepia(0%) saturate(2%) hue-rotate(271deg) brightness(112%) contrast(100%); /* white */
  transition: 200ms filter linear;
}

.colorSecondaryDark img {
  filter: invert(39%) sepia(0%) saturate(1538%) hue-rotate(268deg) brightness(97%) contrast(83%); /* secondary dark */
}

.colorSecondaryDark:hover img {
  filter: invert(100%) sepia(0%) saturate(2%) hue-rotate(271deg) brightness(112%) contrast(100%); /* white */
  transition: 200ms filter linear;
}

.gradientDoubleSide {
  background: -moz-linear-gradient(left, rgba(102, 153, 204, 0.2) 0%, rgba(102, 153, 204, 1) 10%, rgba(102, 153, 204, 1) 50%, rgba(102, 153, 204, 1) 90%, rgba(102, 153, 204, 0.2) 100%);
  background: -webkit-linear-gradient(left, rgba(102, 153, 204, 0.2) 0%, rgba(102, 153, 204, 1) 10%, rgba(102, 153, 204, 1) 50%, rgba(102, 153, 204, 1) 90%, rgba(102, 153, 204, 0.2) 100%);
  background: linear-gradient(to right, rgba(102, 153, 204, 0.2) 0%, rgba(102, 153, 204, 1) 10%, rgba(102, 153, 204, 1) 50%, rgba(102, 153, 204, 1) 90%, rgba(102, 153, 204, 0.2) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#336699cc', endColorstr='#336699cc', GradientType=1);
}

/* animations */
@keyframes bounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes hourglass {
  0% {
    width: 50px;
    height: 50px;
    background-color: var(--color-main-lightest);
    opacity: .9;
  }
  5% {
    width: 150px;
    height: 150px;
    background-color: var(--color-main);
    opacity: 1;
  }
  50% {
    width: 50px;
    height: 50px;
    background-color: var(--color-main-lightest);
    opacity: .9;
  }
  55% {
    width: 250px;
    height: 250px;
    background-color: var(--color-main);
    opacity: 1;
  }
  100% {
    width: 50px;
    height: 50px;
    background-color: var(--color-main-lightest);
    opacity: .9;
  }
}

@keyframes floatInAndFade {
  0% {
    bottom: -25px;
    width: 20px;
    height: 20px;
    opacity: 1;
  }
  100% {
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
  }
}

body {
  background-color: var(--color-white);
  font-size: 16px;
}

body,
input,
select,
textarea,
button {
  font-family: Myriad, Arial, Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif;
}

p,
td,
h1,
h2,
h3,
h4,
h5,
.h2,
.h3,
.h4,
.h5 {
  font-weight: normal;
  margin: 0;
  font-size: 1em;
}

a {
  color: var(--color-main-dark);
  text-decoration: underline;
  cursor: pointer;
}

a:hover {
  color: var(--color-main-lightest);
  text-decoration: none;
  transition: 200ms color linear;
}

form,
img {
  padding: 0;
  border-width: 0;
}

.btnBig {
  display: block;
  max-width: 640px;
  width: 100%;
  height: 60px;
  padding: 10px;
  border-bottom: 1px dotted var(--color-secondary);
  border-radius: 0;
  margin: 5px auto 15px auto;
  background-color: var(--color-main-lightest);
  color: var(--color-main-dark);
  font-size: 1.2em;
  font-weight: bold;
  box-shadow: 5px 5px 3px var(--color-secondary-light);
}

.btnBig:hover {
  background-color: var(--color-main-light);
  border-bottom-color: var(--color-secondary-dark);
  box-shadow: 1px 1px 1px var(--color-secondary-light);
}

a.colorMainDarkLight {
  display: inline-block;
  text-decoration: none;
  filter: invert(34%) sepia(14%) saturate(2906%) hue-rotate(171deg) brightness(97%) contrast(89%); /* main dark */
}

a.colorMainDarkLight:hover {
  filter: invert(71%) sepia(19%) saturate(981%) hue-rotate(175deg) brightness(94%) contrast(93%); /* main light */
  transition: 200ms filter linear;
}

a.scaling:hover {
  transform: scale(1.05);
  transition: 200ms transform linear;
}

/* sekcje */
section.w660 {
  max-width: 660px;
}

section.scaledDouble,
section.scaledTriple,
section.scaledQuadruple {
  margin: 0 auto;
  text-align: center;
}

section.scaledDouble > * {
  display: inline-block;
  width: 44%;
  margin: 15px 2%;
}

section.scaledTriple > * {
  display: inline-block;
  width: 29%;
  margin: 15px 1%;
}

section.scaledQuadruple > * {
  display: inline-block;
  width: 20%;
  margin: 15px 2%;
}

section.scaledDouble a > img,
section.scaledTriple a > img,
section.scaledQuadruple a > img {
  max-width: 100%;
}

section.tableDouble,
section.tableTriple {
  display: table;
  margin: 0 -15px;
  text-align: center;
}

section.tableDouble > * {
  display: inline-block;
  width: 50%;
  padding: 15px;
}

@media screen and (max-width: 736px) {
  section.tableDouble > * {
    width: 100%;
  }
}

section.tableTriple > * {
  display: inline-block;
  width: 360px;
  padding: 15px;
}

section.tableDouble a > img,
section.tableTriple a > img {
  max-width: 100%;
}

body {
  margin: 0;
}

body * {
  box-sizing: border-box;
}

body > section {
  background-color: var(--color-white);
}

body > section > header,
body > section > main,
body > section > footer {
  margin: 0 auto;
  max-width: 1080px;
  color: var(--color-black-light);
  font-size: 16px;
}

body > section > footer {
  color: var(--color-secondary);
  background-color: var(--color-black-light);
}

/* accessibility */
.panelAccessibility {
  padding: 5px 18px 0 0;
}

.panelAccessibility label {
  float: left;
  margin: 0 0 0 4px;
}

.panelAccessibility label:first-child {
  margin: 0 10px 0 0;
}

.panelAccessibility label img {
  display: block;
  width: 30px;
  height: 30px;
}

#guiAccessibilitySize2:checked ~ section > header #guiLogin:checked ~ .panelLogin {
  height: 370px;
}

#guiAccessibilitySize3:checked ~ section > header #guiLogin:checked ~ .panelLogin {
  height: 400px;
}

#guiAccessibilitySize2:checked ~ section > header #guiAccount:checked ~ .panelLogin {
  height: 200px;
}

#guiAccessibilitySize3:checked ~ section > header #guiAccount:checked ~ .panelLogin {
  height: 220px;
}

#guiAccessibilitySize2:checked ~ section .form select,
#guiAccessibilitySize3:checked ~ section .form select {
  padding-top: 0;
  padding-bottom: 0;
}

#guiAccessibilitySize2:checked ~ section .cart article .quantity span.quantity {
  position: relative;
  top: -3px;
  padding-top: 7px;
}

#guiAccessibilitySize3:checked ~ section .cart article .quantity {
  padding-left: 80px;
}

#guiAccessibilitySize3:checked ~ section .cart article .quantity span.quantity {
  position: relative;
  top: -5px;
  padding-top: 5px;
  padding-left: 10px;
}

#guiAccessibilitySize3:checked ~ section .cart article .quantity a:after {
  font-size: 2em;
}

#guiAccessibilitySize2:checked ~ section #panelCart .quantity {
  height: 30px;
  min-width: 30px;
}

#guiAccessibilitySize3:checked ~ section #panelCart .quantity {
  height: 35px;
  min-width: 35px;
}

@media screen and (max-width: 600px) {
  .panelAccessibility label:first-child {
    margin: 0;
  }

  section > header label[for='guiAccessibilitySize1'],
  section > header label[for='guiAccessibilitySize2'],
  section > header label[for='guiAccessibilitySize3'] {
    display: none;
  }
}

@media screen and (min-width: 601px) {
  #guiAccessibilityContrast:checked ~ #guiAccessibilitySize1:checked ~ section > header label[for='guiAccessibilitySize1'],
  #guiAccessibilityContrast:checked ~ #guiAccessibilitySize2:checked ~ section > header label[for='guiAccessibilitySize2'],
  #guiAccessibilityContrast:checked ~ #guiAccessibilitySize3:checked ~ section > header label[for='guiAccessibilitySize3'] {
    background-color: var(--color-white);
  }

  #guiAccessibilitySize1:checked ~ section > header label[for='guiAccessibilitySize1'],
  #guiAccessibilitySize2:checked ~ section > header label[for='guiAccessibilitySize2'],
  #guiAccessibilitySize3:checked ~ section > header label[for='guiAccessibilitySize3'] {
    background-color: var(--color-black);
  }

  #guiAccessibilitySize1:checked ~ section > header label[for='guiAccessibilitySize1'] img,
  #guiAccessibilitySize2:checked ~ section > header label[for='guiAccessibilitySize2'] img,
  #guiAccessibilitySize3:checked ~ section > header label[for='guiAccessibilitySize3'] img {
    filter: invert(100%) hue-rotate(180deg) brightness(1.2);
  }

  #guiAccessibilitySize1:checked ~ section > header,
  #guiAccessibilitySize1:checked ~ section > main,
  #guiAccessibilitySize1:checked ~ section > footer {
    font-size: 16px;
  }

  #guiAccessibilitySize2:checked ~ section > header,
  #guiAccessibilitySize2:checked ~ section > main,
  #guiAccessibilitySize2:checked ~ section > footer {
    font-size: 24px;
  }

  #guiAccessibilitySize3:checked ~ section > header,
  #guiAccessibilitySize3:checked ~ section > main,
  #guiAccessibilitySize3:checked ~ section > footer {
    font-size: 32px;
  }

  #guiAccessibilitySize2:checked ~ section > main > .list article > .cover div {
    padding-top: 25px;
  }

  #guiAccessibilitySize3:checked ~ section > main > .list article > .cover div {
    padding-top: 10px;
  }

  #guiAccessibilitySize2:checked ~ section > main > .list article .h2 {
    height: 40px;
  }

  #guiAccessibilitySize2:checked ~ section > main > .list article .h4 {
    height: 20px;
  }

  #guiAccessibilitySize3:checked ~ section > main > .list article .h4 {
    height: 24px;
  }
}

@media screen and (min-width: 737px) {
  #guiAccessibilitySize2:checked ~ section > header .bottom nav .menu,
  #guiAccessibilitySize3:checked ~ section > header .bottom nav .menu {
    display: block;
    position: unset;
  }
}

#guiAccessibilityContrast:checked ~ section {
  --color-main-dark: #fe0;
  --color-main: #fe0;
  --color-main-light: #000;
  --color-main-lightest: #000;
  --color-secondary-dark: #fe0;
  --color-secondary: #fe0;
  --color-secondary-light: #333;
  --color-secondary-lightest: #000;
  --color-black: #fe0;
  --color-black-light: #fe0;
  --color-white: #000;
  --color-red: #c00;
}

#guiAccessibilityContrast:checked ~ section > header .btnSearch img,
#guiAccessibilityContrast:checked ~ section > header .panelAccessibility label[for^='gui'] {
  filter: invert(100%) hue-rotate(180deg) brightness(1.2);
}

#guiAccessibilityContrast:checked ~ section > header label[for='guiAccessibilityContrast'] {
  background-color: var(--color-black-light);
}

#guiAccessibilityContrast:checked ~ section > footer,
#guiAccessibilityContrast:checked ~ section #newsletter {
  color: var(--color-secondary-lightest);
}

#guiAccessibilityContrast:checked ~ section > header #hints a,
#guiAccessibilityContrast:checked ~ section > header .bottom nav .menu a:hover,
#guiAccessibilityContrast:checked ~ section > header .bottom nav .menu .collapsible .subMenu a {
  color: var(--color-black);
}

#guiAccessibilityContrast:checked ~ section > header .bottom nav .menu .collapsible a:hover {
  color: var(--color-white);
}

@media screen and (max-width: 736px) {
  #guiAccessibilityContrast:checked ~ section > header .bottom nav .menu a:hover,
  #guiAccessibilityContrast:checked ~ section > header .bottom nav .menu .subMenu a:hover {
    color: var(--color-white);
  }

  #guiAccessibilityContrast:checked ~ section > header .bottom nav .menu .subMenu a {
    color: var(--color-black);
  }
}

#guiAccessibilityContrast:checked ~ section > header > .jaggedEdges {
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 50%),
  linear-gradient(-135deg, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 50%),
  linear-gradient(45deg, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 50%),
  linear-gradient(-45deg, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 50%);
}

#guiAccessibilityContrast:checked ~ section > header .middle input[type='search'] {
  background-color: var(--color-white);
}

#guiAccessibilityContrast:checked ~ section .select::before,
#guiAccessibilityContrast:checked ~ section > header .bottom nav .menu .subMenu label,
#guiAccessibilityContrast:checked ~ section > header .bottom nav .menu .collapsible .subMenu label {
  background-blend-mode: difference;
}

/* header */
body > section > header {
  padding-top: 17px;
  margin-bottom: 25px;
}

body > section > header .top {
  position: relative;
  height: 101px;
  margin: 0 7px;
}

body > section > header .top .vContainer > * {
  float: left;
  margin-left: 20px;
}

body > section > header .top .vContainer > *:first-child {
  margin-left: 0;
}

body > section > header .top .vContainer a,
body > section > header .top .vContainer label {
  position: relative;
  text-decoration: none;
  font-size: .8em;
}

body > section > header .top .vContainer a > span:last-child,
body > section > header .top .vContainer label > span:last-child {
  position: relative;
  top: -15px;
  display: inline-block;
  padding-left: 5px;
  color: var(--color-black);
}

body > section > header .top > a > img {
  float: left;
}

@media screen and (max-width: 600px) {
  body > section > header .top > a {
    width: 40%;
  }
}

@media screen and (max-width: 970px) {
  body > section > header .top {
    height: 40px;
  }

  body > section > header .top > a > img {
    width: 100%;
    max-width: 280px;
    margin-left: 10px;
  }

  body > section > header .top .vContainer {
    padding-right: 10px;
  }

  body > section > header .top .vContainer > * {
    margin-left: 14px;
  }

  body > section > header .top .vContainer a span:last-child,
  body > section > header .top .vContainer label span:last-child {
    display: none;
  }
}

@media screen and (min-width: 971px) and (max-width: 1096px) {
  body > section > header .top > a {
    width: 45%;
    height: 101px;
  }

  body > section > header .top > a > img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 371px;
    width: 100%;
  }
}

@media screen and (min-width: 1097px) {
  body > section > header .top > a > img {
    height: 101px;
  }
}

body > section > header .middle {
  position: relative;
  height: 45px;
  width: 90%;
  max-width: 450px;
  margin: 15px auto;
}

body > section > header .middle .btnSearch {
  width: 40px;
  height: 40px;
}

body > section > header .middle input:checked ~ .gradientDoubleSide,
body > section > header .middle input:checked ~ label,
body > section > header .middle input[type='search'],
body > section > header .middle button.btnSearch {
  opacity: 0;
  visibility: hidden;
}

body > section > header .middle input[type='search'] {
  height: 40px;
  width: 100%;
  padding-right: 40px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  margin-top: 3px;
  color: var(--color-black-light);
}

body > section > header .middle button.btnSearch {
  margin-top: 3px;
}

body > section > header .middle input:checked ~ input[type='search'],
body > section > header .middle input:checked ~ button.btnSearch {
  visibility: visible;
  opacity: 1;
  transition: 500ms opacity ease-in;
}

body > section > header .middle #hints {
  position: absolute;
  top: 43px;
  left: 0;
  display: inline-block;
  width: 96%;
  border-right: 1px solid var(--color-secondary);
  border-left: 1px solid var(--color-secondary);
  border-bottom: 1px solid var(--color-secondary);
  background-color: var(--color-white);
  z-index: 210;
}

body > section > header .middle #hints a {
  position: relative;
  float: left;
  clear: left;
  display: inline-block;
  width: 100%;
  padding: 7px 15px 7px 40px;
  text-decoration: none;
  color: var(--color-black-light);
  transition: 200ms color linear,
  200ms background-color linear;
}

body > section > header .middle #hints a img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 7px;
  display: inline-block;
  width: 26px;
  height: 26px;
  filter: invert(39%) sepia(0%) saturate(1538%) hue-rotate(268deg) brightness(97%) contrast(83%); /* secondary dark */
  transition: 200ms filter linear;
}

body > section > header .middle #hints a:first-child {
  border-top-width: 0;
}

body > section > header .middle #hints a:hover {
  color: var(--color-main-light);
}

body > section > header .middle #hints a:hover img {
  filter: invert(71%) sepia(19%) saturate(981%) hue-rotate(175deg) brightness(94%) contrast(93%); /* main light */
}

body > section > header .middle #hints a.selected {
  background-color: var(--color-main-lightest);
}

body > section > header .middle #hints ~ form input[type='search'] {
  border-bottom-left-radius: 0;
}

/* header menu */
body > section > header .bottom {
  margin: 0 7px 7px 7px;
}

body > section > header .bottom nav {
  position: relative;
  margin: 0 -7px;
  color: var(--color-white);
}

body > section > header .bottom nav > ul.menuPicture > li > a {
  display: inline-block;
  margin-left: 10px;
  text-decoration: none;
}

body > section > header .bottom nav > ul.menuPicture > li:first-child > a {
  margin-left: 7px;
}

body > section > header .bottom nav > ul.menuPicture > li > a:hover picture img {
  animation-name: bounce;
  animation-duration: 500ms;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
}

body > section > header .bottom nav .menu .subMenu ul li {
  width: 100%;
}

@media screen and (max-width: 736px) {
  body > section > header .bottom nav {
    font-weight: bold;
  }

  body > section > header .bottom nav > label {
    position: absolute;
    right: 7px;
    top: 10px;
  }

  body > section > header .bottom nav input:checked ~ label img:first-child,
  body > section > header .bottom nav > label img:last-child {
    display: none;
  }

  body > section > header .bottom nav input:checked ~ label img:last-child {
    display: inline;
  }

  body > section > header .bottom nav input:checked ~ ul.menu,
  body > section > header .bottom nav input:checked ~ ul.menu > li,
  body > section > header .bottom nav input:checked ~ ul.menu > li.collapsible > ul,
  body > section > header .bottom nav input:checked ~ ul.menu > li.collapsible > ul > li {
    display: block;
  }

  body > section > header .bottom nav .menu {
    display: none;
    text-transform: uppercase;
  }

  body > section > header .bottom nav input:checked ~ .menu {
    position: absolute;
    top: 67px;
    left: 0;
    display: inline-block;
    width: 100%;
    z-index: 201;
  }

  body > section > header .bottom nav input:checked ~ .menu::after {
    content: ' ';
    display: inline-block;
    width: 100%;
    height: 60px;
    background: -moz-linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6000000', endColorstr='#00000000', GradientType=0);
  }

  body > section > header .bottom nav .menu a {
    display: inline-block;
    width: 100%;
    padding: 12px 30px;
    border-bottom: 1px solid var(--color-main-dark);
    color: var(--color-white);
    background-color: var(--color-main);
    text-decoration: none;
    font-weight: bold;
  }

  body > section > header .bottom nav .menu .subMenu label {
    display: inline-block;
    width: 100%;
    padding: 12px 30px;
    border-bottom: 1px solid var(--color-main-dark);
    background-color: var(--color-main);
    background-image: url('/img/layout/arr_light_down.svg');
    background-repeat: no-repeat;
    background-position: 7px 50%;
  }

  body > section > header .bottom nav .menu .subMenu input:checked ~ label {
    background-color: var(--color-main-dark);
    background-image: url('/img/layout/arr_light_up.svg');
    border-bottom: 1px solid var(--color-white);
    border-top: 1px solid var(--color-white);
    margin-top: -1px;
  }

  body > section > header .bottom nav .menu .subMenu ul {
    display: none;
  }

  body > section > header .bottom nav .menu .subMenu input:checked ~ ul {
    display: inline-block;
    width: 100%;
  }

  body > section > header .bottom nav .menu .subMenu ul li a {
    border-bottom: 1px solid var(--color-white);
    background-color: var(--color-main-light);
  }

  body > section > header .bottom nav .menu .subMenu label:hover,
  body > section > header .bottom nav .menu .subMenu ul li a:hover,
  body > section > header .bottom nav .menu a:hover {
    background-color: var(--color-main-dark);
    transition: 200ms background-color linear;
  }
}

@media screen and (min-width: 737px) and (max-width: 1096px) {
  body > section > header .bottom {
    position: relative;
    z-index: 100;
  }

  body > section > header .bottom nav .menu {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: .9em;
  }

  body > section > header .bottom nav > label {
    position: absolute;
    right: 7px;
    top: 18px;
    width: 22px;
  }

  body > section > header .bottom nav input:checked ~ label img:first-child,
  body > section > header .bottom nav > label img:last-child {
    display: none;
  }

  body > section > header .bottom nav input:checked ~ label img:last-child {
    display: inline;
  }

  body > section > header .bottom nav > label img {
    width: 100%;
  }

  body > section > header .bottom nav .menu > li,
  body > section > header .bottom nav .menu > a {
    position: relative;
    float: left;
    padding: 5px 8px;
    border-bottom-color: transparent;
  }

  body > section > header .bottom nav .menu .collapsible {
    display: none;
  }

  body > section > header .bottom nav .menu .subMenu a:hover,
  body > section > header .bottom nav .menu a:hover {
    color: var(--color-main-light);
    transition: 200ms color linear,
    200ms border-bottom-color linear;
  }

  body > section > header .bottom nav .menu > a:hover {
    border-bottom: 1px solid var(--color-main-light);
  }

  body > section > header .bottom nav .menu a {
    color: var(--color-black);
    text-decoration: none;
  }

  body > section > header .bottom nav .menu > .subMenu label {
    color: var(--color-black);
  }

  body > section > header .bottom nav .menu .subMenu ul {
    display: none;
  }

  body > section > header .bottom nav .menu > .subMenu:hover::before {
    content: ' ';
    display: inline-block;
    width: 100%;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
  }

  body > section > header .bottom nav .menu > .subMenu:focus-visible ul,
  body > section > header .bottom nav .menu > .subMenu:focus-within ul,
  body > section > header .bottom nav .menu > .subMenu:hover ul {
    position: absolute;
    left: -10px;
    display: inline-block;
    padding: 0 40px 5px 10px;
    border-left: 1px solid var(--color-secondary-lightest);
    border-right: 1px solid var(--color-secondary-lightest);
    border-bottom: 1px solid var(--color-secondary-lightest);
    margin-top: 30px;
    background-color: var(--color-white);
    z-index: 203;
  }

  body > section > header .bottom nav .menu .subMenu ul li a {
    display: inline-block;
    width: 100%;
    padding: 10px 5px;
    border-bottom: 1px solid var(--color-secondary-light);
    white-space: nowrap;
  }

  body > section > header .bottom nav .menu .subMenu ul li:last-child a {
    border-width: 0;
  }

  body > section > header .bottom nav input:checked ~ .menu .collapsible {
    position: absolute;
    top: 35px;
    right: -40px;
    display: inline-block;
    width: 250px;
    padding: 0;
    border-width: 0;
    z-index: 202;
  }

  body > section > header .bottom nav .menu .collapsible ul,
  body > section > header .bottom nav .menu .collapsible ul li {
    display: block;
  }

  body > section > header .bottom nav .menu .collapsible ul li a {
    display: inline-block;
    width: 100%;
    padding: 12px 30px;
    border-bottom: 1px solid var(--color-main-dark);
    color: var(--color-white);
    background-color: var(--color-main);
    text-decoration: none;
  }

  body > section > header .bottom nav .menu .collapsible .subMenu label {
    display: inline-block;
    width: 100%;
    padding: 12px 30px;
    border-bottom: 1px solid var(--color-main-dark);
    background-color: var(--color-main);
    background-image: url('/img/layout/arr_light_down.svg');
    background-repeat: no-repeat;
    background-position: 7px 50%;
  }

  body > section > header .bottom nav .menu .collapsible .subMenu input:checked ~ label {
    background-color: var(--color-main-dark);
    background-image: url('/img/layout/arr_light_up.svg');
    border-bottom: 1px solid var(--color-white);
    border-top: 1px solid var(--color-white);
    margin-top: -1px;
  }

  body > section > header .bottom nav .menu .collapsible .subMenu ul {
    display: none;
  }

  body > section > header .bottom nav .menu .collapsible .subMenu input:checked ~ ul {
    display: inline-block;
    width: 100%;
  }

  body > section > header .bottom nav .menu .collapsible .subMenu ul li a {
    border-bottom: 1px solid var(--color-white);
    background-color: var(--color-main-light);
  }

  body > section > header .bottom nav .menu .collapsible .subMenu label:hover,
  body > section > header .bottom nav .menu .collapsible .subMenu ul li a:hover,
  body > section > header .bottom nav .menu .collapsible ul li a:hover {
    background-color: var(--color-main-dark);
    transition: 200ms background-color linear;
  }

  body > section > header .bottom nav .menu .subMenu label.clickable {
    cursor: default;
  }

  body > section > header .bottom nav .menu .collapsible .subMenu label.clickable {
    cursor: pointer;
  }
}

@media screen and (min-width: 1097px) {
  body > section > header .bottom {
    position: relative;
    z-index: 100;
  }

  body > section > header .bottom nav .menu {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: .9em;
  }

  body > section > header .bottom nav > label {
    display: none;
  }

  body > section > header .bottom nav .menu .collapsible > ul > li,
  body > section > header .bottom nav .menu > li,
  body > section > header .bottom nav .menu > a {
    position: relative;
    float: left;
    padding: 5px 6px;
    border-bottom: 1px solid transparent;
  }

  body > section > header .bottom nav .menu > .collapsible {
    padding: 0;
    border-width: 0;
  }

  body > section > header .bottom nav .menu a:hover {
    color: var(--color-main-light);
    transition: 200ms color linear,
    200ms border-bottom-color linear;
  }

  body > section > header .bottom nav .menu .collapsible > a:hover,
  body > section > header .bottom nav .menu > a:hover {
    border-bottom: 1px solid var(--color-main-light);
  }

  body > section > header .bottom nav .menu a {
    color: var(--color-black);
    text-decoration: none;
  }

  body > section > header .bottom nav .menu .subMenu label {
    color: var(--color-black);
  }

  body > section > header .bottom nav .menu .subMenu ul {
    display: none;
  }

  body > section > header .bottom nav .menu .subMenu:hover::before {
    content: ' ';
    display: inline-block;
    width: 100%;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
  }

  body > section > header .bottom nav .menu .subMenu:focus-visible ul,
  body > section > header .bottom nav .menu .subMenu:focus-within ul,
  body > section > header .bottom nav .menu .subMenu:hover ul {
    position: absolute;
    left: -10px;
    display: inline-block;
    padding: 0 40px 5px 10px;
    border-left: 1px solid var(--color-secondary-lightest);
    border-right: 1px solid var(--color-secondary-lightest);
    border-bottom: 1px solid var(--color-secondary-lightest);
    margin-top: 30px;
    background-color: var(--color-white);
  }

  body > section > header .bottom nav .menu .subMenu.alignedRight:focus-visible ul,
  body > section > header .bottom nav .menu .subMenu.alignedRight:focus-within ul,
  body > section > header .bottom nav .menu .subMenu.alignedRight:hover ul {
    left: unset;
    right: 0;
  }

  body > section > header .bottom nav .menu .subMenu ul li a {
    display: block;
    padding: 10px 5px;
    border-bottom: 1px solid var(--color-secondary-light);
    white-space: nowrap;
  }

  body > section > header .bottom nav .menu .subMenu ul li:last-child a {
    border-width: 0;
  }

  body > section > header .bottom nav .menu .subMenu label.clickable {
    cursor: default;
  }
}

body > section > header #panelCart {
  position: relative;
}

body > section > header #panelCart .quantity:empty,
body > section > header #panelCart .price:empty {
  display: none;
}

body > section > header #panelCart .quantity,
body > section > header #panelCart .price {
  position: absolute;
  left: 15px;
  bottom: 0;
  display: inline-block;
  height: 23px;
  min-width: 23px;
  padding: 4px;
  background-color: var(--color-secondary-dark);
  color: var(--color-white);
  border-radius: 50%;
  text-align: center;
  opacity: .8;
}

body > section > header #panelCart .price {
  display: none;
}

body > section > header #panelCart:hover .quantity {
  opacity: 1;
}

body > section > header .bottomForeignRights {
  margin: 0 7px 7px 7px;
}

body > section > header .bottomForeignRights nav {
  margin-top: 15px;
  text-align: right;
  font-size: .9em;
}

body > section > header .bottomForeignRights nav a {
  padding: 5px 8px;
  border-bottom-color: transparent;
  color: var(--color-black);
  text-decoration: none;
}

body > section > header .bottomForeignRights nav a:hover {
  color: var(--color-main-light);
  border-bottom: 1px solid var(--color-main-light);
  transition: 200ms color linear,
  200ms border-bottom-color linear;
}

/* footer */
footer {
  padding: 35px 0 50px 0;
  color: var(--color-secondary);
  text-align: center;
}

footer a {
  text-decoration: none;
}

footer nav {
  display: inline-block;
  max-width: 800px;
  padding: 0 15px;
  line-height: 1.5em;
}

footer nav a {
  white-space: nowrap;
  color: var(--color-secondary-light);
}

footer nav a:hover {
  text-decoration: underline;
  color: var(--color-main-lightest);
}

footer section,
footer nav.socialLinks {
  padding: 20px 15px 0 15px;
  line-height: 1.2em;
}

footer nav.socialLinks li {
  margin: 0 5px;
}

footer nav ul li::after {
  content: ' | ';
}

footer nav.socialLinks ul li::after,
footer nav ul li:last-child::after {
  content: '';
}

/* cart */
body > section > header #guiMiniCart:checked ~ #miniCart {
  height: 200px;
  transition: 500ms height ease-in;
}

body > section > header #guiMiniCart:checked ~ #miniCart.opened {
  height: auto;
}

body > section > header #guiMiniCart:checked ~ #miniCart > section {
  opacity: 1;
  transition: 300ms 200ms opacity linear;
}

#miniCart.cart > section {
  padding: 40px 0;
}

.cart > section {
  text-align: center;
}

.cart .totalPrice {
  padding: 15px;
  background-color: var(--color-main);
  color: var(--color-white);
}

.cart .infoDeliveryFree {
  padding: 15px;
  background-color: var(--color-secondary);
  color: var(--color-white);
  font-size: .8em;
}

.cart .infoDeliveryFree:empty {
  display: none;
}

#miniCart.cart .totalPrice,
#miniCart.cart .infoDeliveryFree {
  margin: 0 15px;
}

.cart article {
  display: inline-block;
  width: 360px;
  padding: 15px 15px 0 15px;
  font-size: .8em;
  text-align: initial;
}

.cart article::after {
  content: ' ';
  display: inline-block;
  width: 100%;
}

@media screen and (max-width: 736px) {
  .cart article::after {
    content: ' ';
    display: inline-block;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid var(--color-secondary-light);
    background-color: var(--color-secondary);
    margin-top: 15px;
    overflow: hidden;
  }

  .cart article:last-child::after {
    display: none;
  }
}

@media screen and (min-width: 737px) and (max-width: 1096px) {
  .cart article:nth-last-child(2n - 1):first-child::after,
  .cart article:nth-last-child(2n - 1):first-child ~ article::after,
  .cart article:nth-last-child(2n):first-child::after,
  .cart article:nth-last-child(2n):first-child ~ article::after {
    content: ' ';
    display: inline-block;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid var(--color-secondary-light);
    background-color: var(--color-secondary);
    margin-top: 15px;
    overflow: hidden;
  }

  .cart article:nth-last-child(2n):first-child:nth-last-child(2)::after,
  .cart article:nth-last-child(2n - 1):first-child ~ article:last-child::after,
  .cart article:nth-last-child(2n):first-child ~ article:nth-last-child(2)::after,
  .cart article:nth-last-child(2n):first-child ~ article:last-child::after {
    display: none;
  }
}

@media screen and (min-width: 1097px) {
  .cart article:nth-last-child(3n - 2):first-child::after,
  .cart article:nth-last-child(3n - 2):first-child ~ article::after,
  .cart article:nth-last-child(3n - 1):first-child::after,
  .cart article:nth-last-child(3n - 1):first-child ~ article::after,
  .cart article:nth-last-child(3n):first-child::after,
  .cart article:nth-last-child(3n):first-child ~ article::after {
    content: ' ';
    display: inline-block;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid var(--color-secondary-light);
    background-color: var(--color-secondary);
    margin-top: 15px;
    overflow: hidden;
  }

  .cart article:nth-last-child(2n):first-child:nth-last-child(2)::after,
  .cart article:nth-last-child(3n):first-child:nth-last-child(3)::after,
  .cart article:nth-last-child(3n - 2):first-child ~ article:last-child::after,
  .cart article:nth-last-child(3n - 1):first-child ~ article:nth-last-child(2)::after,
  .cart article:nth-last-child(3n - 1):first-child ~ article:last-child::after,
  .cart article:nth-last-child(3n):first-child ~ article:nth-last-child(3)::after,
  .cart article:nth-last-child(3n):first-child ~ article:nth-last-child(2)::after,
  .cart article:nth-last-child(3n):first-child ~ article:last-child::after {
    display: none;
  }
}

.cart article:last-child:first-child::after {
  display: none;
}

.cart article > .cover {
  position: relative;
  float: left;
  display: inline-block;
  width: 92px;
  padding: 5px;
  border: 1px solid var(--color-secondary);
  margin-right: 7px;
  background-color: var(--color-white);
}

#cart.cart article > .cover {
  padding: 0 6px;
  border-width: 0;
  background-color: transparent;
}

.cart article > .cover img.cover {
  display: block;
}

.cart article > .cover img.label {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 80%;
}

#cart.cart article > .cover img.label {
  top: 0;
  right: 6px;
}

.cart article .h2 {
  display: inline-block;
  width: 231px;
  padding-bottom: 15px;
}

.cart article .h2 a {
  color: var(--color-black-light);
  text-decoration: none;
  font-weight: bold;
}

.cart article .h2 a:hover {
  color: var(--color-main);
}

.cart article .price {
  display: inline-block;
  padding-bottom: 15px;
}

.cart article .price span.priceOld {
  display: inline-block;
  padding-right: 5px;
  border-right: 1px solid var(--color-secondary-dark);
  margin-right: 5px;
  color: var(--color-secondary-dark);
  text-decoration: line-through;
}

.cart article .price span.priceOld:empty {
  display: none;
}

.cart article .price span.priceCurrent {
  padding: 0;
  border-width: 0;
  margin: 0;
  color: var(--color-black-light);
  text-decoration: none;
}

.cart article .price span.priceHistoricalLowest {
  display: inline-block;
  padding-top: 5px;
  color: var(--color-secondary-dark);
  font-size: .9em;
}

.cart article .quantity {
  padding-left: 99px;
  user-select: none;
}

.cart article .quantity span.quantity {
  display: inline-block;
  width: 50px;
  height: 35px;
  padding: 10px 15px;
  border-top: 1px solid var(--color-secondary);
  border-bottom: 1px solid var(--color-secondary);
  background-color: var(--color-white);
  text-align: center;
  cursor: default;
}

.cart article .quantity span.quantity:first-child {
  border: 1px solid var(--color-secondary);
}

.cart article .quantity a {
  position: relative;
  display: inline-block;
  height: 35px;
  padding: 10px 15px;
  text-decoration: none;
  color: var(--color-white);
  background-color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
}

.cart article .quantity a::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 3em;
}

.cart article .quantity a.decrease {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.cart article .quantity a.increase {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.cart article .quantity a.decrease:hover,
.cart article .quantity a.increase:hover {
  color: var(--color-black);
  background-color: var(--color-main-lightest);
  transition: 200ms background-color linear,
  200ms color linear;
}

.cart article .quantity a.clear:hover {
  color: var(--color-main-lightest);
  transition: 200ms color linear;
}

.cart article .quantity a.decrease::after {
  content: '\2212';
}

.cart article .quantity a.increase::after {
  content: '+';
}

.cart article .quantity a.clear {
  color: var(--color-secondary-dark);
  background-color: transparent;
  border-color: transparent;
}

.cart article .quantity a.clear::after {
  content: '\2A2F';
}

#cart.cart .buttons {
  display: none;
}

.panelVoucher {
  padding: 15px;
  background-color: var(--color-main-light);
  text-align: center;
}

.panelVoucher label {
  display: block;
  margin-bottom: 15px;
}

.panelVoucher div {
  margin-bottom: 15px;
}

.panelVoucher div:last-child {
  margin-bottom: 0;
}

.panelVoucher input {
  width: 90%;
  max-width: 450px;
  margin-bottom: 15px;
}

.panelVoucher a {
  color: var(--color-black-light);
  font-size: .8em;
}

.panelVoucher a:hover {
  color: var(--color-white);
}

#buttonsOrder.buttonsVoucher {
  text-align: center;
}

#buttonsOrder .btnVoucher,
#buttonsOrder.buttonsVoucher .btnOrder {
  display: none;
}

#buttonsOrder.buttonsVoucher .btnVoucher {
  display: inline-block;
}

form[name='formShopFinalize'] .obligatory {
  padding: 15px 0 0 0;
}

form[name='formShopFinalize'] .optional .value {
  padding-bottom: 0;
}

form label.checkbox,
form label.radio {
  display: inline-block;
  position: relative;
  padding: 3px 0 3px 22px;
}

form label.checkbox input[type='checkbox'],
form label.radio input[type='radio'] {
  display: none;
}

form label.checkbox::before,
form label.radio::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 3px;
  border: 1px solid var(--color-secondary);
  background-color: var(--color-white);
}

form label.radio::before {
  border-radius: 50%;
}

form input[type='checkbox']:checked + label.checkbox::before,
form input[type='radio']:checked + label.radio::before {
  background-color: var(--color-main-light);
}

#userTypeI:checked ~ section label[for='userTypeI']::before,
#userTypeC:checked ~ section label[for='userTypeC']::before,
#userTypeL:checked ~ section label[for='userTypeL']::before,
#invoiceAddressY:checked ~ section label[for='invoiceAddressY']::before,
#invoiceAddressN:checked ~ section label[for='invoiceAddressN']::before {
  background-color: var(--color-main-light);
}

form > *[data-form-type],
form > * > *[data-form-type],
form input[id='userTypeI']:checked ~ .expandable + *[data-form-type~='i'],
form input[id='userTypeC']:checked ~ .expandable + *[data-form-type~='c'],
form input[id='userTypeL']:checked ~ .expandable + *[data-form-type~='l'] {
  display: none;
}

form input[id='userTypeI']:checked ~ input[type='checkbox']:checked + .expandable + *[data-form-type~='i'],
form input[id='userTypeC']:checked ~ input[type='checkbox']:checked + .expandable + *[data-form-type~='c'],
form input[id='userTypeL']:checked ~ input[type='checkbox']:checked + .expandable + *[data-form-type~='l'],
form input[id='userTypeI']:checked ~ *[data-form-type~='i'],
form input[id='userTypeC']:checked ~ *[data-form-type~='c'],
form input[id='userTypeL']:checked ~ *[data-form-type~='l'],
form input[id='userTypeI']:checked ~ * > *[data-form-type~='i'],
form input[id='userTypeC']:checked ~ * > *[data-form-type~='c'],
form input[id='userTypeL']:checked ~ * > *[data-form-type~='l'] {
  display: block;
}

form > *[data-form-type] > *[data-form-invoice-address] {
  display: none !important;
}

form input[id='invoiceAddressX']:checked ~ *[data-form-invoice-address~='x'],
form input[id='invoiceAddressX']:checked ~ * > *[data-form-invoice-address~='x'],
form input[id='invoiceAddressY']:checked ~ *[data-form-invoice-address~='y'],
form input[id='invoiceAddressY']:checked ~ * > *[data-form-invoice-address~='y'],
form input[id='invoiceAddressN']:checked ~ *[data-form-invoice-address~='n'],
form input[id='invoiceAddressN']:checked ~ * > *[data-form-invoice-address~='n'] {
  display: block !important;
}

/* delivery and payment */
.payments .infoEProducts {
  display: none;
}

.payments.infoEProducts .infoEProducts {
  display: block;
}

.delivery,
.payment {
  position: relative;
  width: 100%;
}

.delivery input[type='radio'],
.payment input[type='radio'] {
  visibility: hidden;
  position: absolute;
}

.delivery label,
.payment label {
  position: relative;
  display: inline-block;
  width: 100%;
  min-height: 66px;
  padding: 8px 15px;
}

.delivery label:hover,
.payment label:hover {
  background-color: var(--color-secondary-lightest);
}

.delivery input[type='radio']:checked ~ label,
.payment input[type='radio']:checked ~ label {
  color: var(--color-black-light);
  background-color: var(--color-main-lightest);
}

.delivery label img,
.payment label img {
  position: absolute;
  top: 8px;
  left: 15px;
  display: inline-block;
  width: 50px;
  height: 50px;
}

.delivery label .name,
.payment label .name,
.delivery label .description,
.payment label .description {
  display: inline-block;
  width: 100%;
  padding-left: 60px;
}

.delivery label .name,
.payment label .name {
  font-weight: bold;
  padding-bottom: 5px;
}

.delivery label .description,
.payment label .description {
  font-size: .9em;
}

#collection_points_pp_pni label {
  position: relative;
  display: block;
  padding: 0 15px 15px 45px;
}

#collection_points_pp_pni label input {
  position: absolute;
  top: 0;
  left: 15px;
}

#collection_points_pp_pni label > span {
  display: block;
}

#collection_points_inpost.hiddenValue {
  display: none;
}

#collection_points_inpost.hiddenWidget {
  height: auto;
}

#collection_points_inpost inpost-geowidget {
  display: none;
}

#collection_points_inpost .optional:empty ~ inpost-geowidget {
  display: inline-block;
  width: 100%;
  height: 450px;
}

form[name='formShopFinalize'] .agreementEProducts .obligatory {
  padding: 13px;
  border: 2px solid var(--color-main);
}

form[name='formAdvanceDeliveryEProduct'] label,
.agreementEProducts label {
  position: relative;
  display: block;
  padding-left: 20px;
  margin-top: 15px;
  color: var(--color-black-light);
}

form[name='formAdvanceDeliveryEProduct'] label input[type='radio'],
.agreementEProducts label input[type='radio'] {
  position: absolute;
  top: 2px;
  left: 0;
  margin: 0;
}

/* login panel */
body > section > header .panelLogin div {
  position: relative;
}

body > section > header .panelLogin div label {
  top: 0;
}

body > section > header .panelLogin div label img {
  width: 20px;
  height: 20px;
}

.panelLogin input[type='text'],
.panelLogin input[type='password'] {
  width: 100%;
  max-width: 450px;
  margin-top: 10px;
}

.panelLogin button,
.panelLogin .btn,
.panelLogin section form > label {
  display: inline-block;
  border-width: 0;
  margin-top: 10px;
}

body > section > header .panelLogin section form > label {
  color: var(--color-main);
  text-decoration: underline;
}

body > section > header .panelLogin section form > label:hover {
  text-decoration: none;
  color: var(--color-main-light);
  transition: 200ms color linear;
}

body > section > header #guiLogin:checked ~ .panelLogin {
  height: 340px;
  transition: 500ms height ease-in;
}

body > section > header #guiLogin:checked ~ .panelLogin > section {
  opacity: 1;
  transition: 300ms 200ms opacity linear;
}

body > section > header .panelLogin .password {
  display: none;
}

body > section > header #guiLogin:checked ~ #guiPassword:checked ~ .panelLogin {
  height: 210px;
  transition: 300ms height ease-in;
}

body > section > header #guiPassword:checked ~ .panelLogin form > label,
body > section > header #guiPassword:checked ~ .panelLogin input[type='password'],
body > section > header #guiPassword:checked ~ .panelLogin div,
body > section > header #guiPassword:checked ~ .panelLogin button,
body > section > header #guiPassword:checked ~ .panelLogin .btn {
  display: none;
}

body > section > header #guiPassword:checked ~ .panelLogin .password {
  display: inline-block;
}

body > section > header #guiPassword:checked ~ .panelLogin div.loginAndPassword,
body > section > header #guiPassword:checked ~ .panelLogin div.password {
  display: block;
}

body > section > header #guiAccount:checked ~ .panelLogin {
  height: 180px;
  transition: 500ms height ease-in;
}

body > section > header #guiAccount:checked ~ .panelLogin > section {
  opacity: 1;
  transition: 300ms 200ms opacity linear;
}

/* main */
main {
  clear: both;
}

@media screen and (max-width: 557px) {
  main {
    min-height: calc(100vh - 228px - 284px);
  }
}

@media screen and (min-width: 558px) and (max-width: 736px) {
  main {
    min-height: calc(100vh - 228px - 260px);
  }
}

@media screen and (min-width: 737px) {
  main {
    min-height: calc(100vh - 289px - 260px);
  }
}

main > section {
  padding-bottom: 15px;
}

main > section.lineTop {
  padding-top: 25px;
  border-top: 1px solid var(--color-secondary);
}

main > section.lineTop ~ .lineTop {
  border-top-width: 0;
}

main > section.lineBottom {
  border-bottom: 1px solid var(--color-secondary);
  margin-bottom: 15px;
}

main > section > header {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 25px 0;
  color: var(--color-white);
  background-color: inherit;
  font-size: 1.6em;
  font-weight: bold;
  text-align: center;
}

main > section > header::before {
  content: ' ';
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  height: 1px;
  width: 100%;
  background-color: var(--color-secondary-dark);
}

main > section > header span {
  position: relative;
  padding: 0 20px;
  background-color: inherit;
}

main > section > header span a {
  text-decoration: none;
  color: var(--color-secondary-dark);
}

main > section > header span a:hover {
  color: var(--color-main);
}

main h1 {
  padding: 0 15px 0 15px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--color-secondary-dark);
}

/* flipBook */
#flipBookGallery {
  margin: 0 0 20px 0;
}

.flipBookPlaceholder {
  width: 100%;
  height: 650px;
  margin: 0 0 20px 0;
  border-width: 0;
  background-color: #eee;
  border-radius: 10px;
}

.flipBook {
  width: 100%;
  height: 650px;
  margin: 0 0 20px 0;
  border-width: 0;
  overflow: hidden;
  background-color: #eee;
  border-radius: 10px;
}

.flipBook:fullscreen {
  border-radius: 0;
}

/* floater */
.floater {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 260;
}

/* board */
.board {
  max-width: 850px;
  padding: 13px;
  border: 2px solid var(--color-main);
}

.board .btn {
  margin: 10px 0 0 0;
}

.board label {
  display: block;
  margin-top: 5px;
}

@media screen and (max-width: 1097px) {
  .board {
    width: 95%;
  }
}

/* slider */
#slider {
  position: relative;
  display: block;
  overflow: hidden;
}

#slider > section {
  position: absolute;
  display: inline-block;
  width: 100%;
  white-space: nowrap;
}

#slider.dragging > section * {
  cursor: grabbing;
}

#slider .slide {
  display: inline-block;
  scroll-snap-align: start;
}

#slider .slide > picture > img {
  display: inline-block;
  width: 100%;
}

@media screen and (max-width: 736px) {
  #slider {
    padding-bottom: 22.22%;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }

  #slider::-webkit-scrollbar {
    display: none;
  }
}

@media screen and (min-width: 737px) {
  #slider {
    padding-bottom: 32.41%;
  }
}

.sliderNavigation {
  display: block;
  height: 14px;
  margin-top: 5px;
  text-align: center;
}

.sliderNavigation a {
  display: inline-block;
  width: 60px;
  height: 14px;
  border: 5px solid var(--color-white);
  background-color: var(--color-secondary-light);
}

.sliderNavigation a.selected {
  background-color: var(--color-secondary-dark);
}

/* newsletter */
#newsletter {
  background-color: var(--color-main);
}

#newsletter > header::before {
  background-color: var(--color-white);
}

#newsletter a {
  color: var(--color-white);
}

#newsletter a:hover {
  color: var(--color-main-lightest);
}

#newsletter input[type='email'] {
  width: 90%;
  max-width: 400px;
  margin-bottom: 10px;
}

#newsletter button {
  margin-bottom: 10px;
}

/* text content */
.menuContent {
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
  text-align: center;
}

.menuContent .btn {
  margin: 0 15px 15px 0;
}

.menuContent:empty {
  display: none;
}

.textContent > article {
  padding: 15px;
  line-height: 1.4em;
}

.textContent > article .thumbs {
  display: inline-block;
  width: 100%;
  padding: 15px 0;
  border-top: 1px solid var(--color-secondary-light);
  border-bottom: 1px solid var(--color-secondary-light);
  margin: 15px 0;
  text-align: center;
}

.textContent > article .thumbs img {
  padding: 7px;
  cursor: pointer;
}

.textContent > article .thumbs img:hover {
  transform: scale(1.05);
  transition: 200ms transform linear;
}

.textContent > article .h2 {
  font-size: 2em;
}

.textContent > article .h3 {
  font-size: 1.5em;
}

.textContent > article .h4 {
  font-size: 1.2em;
}

/* posts FB */
#postsFacebook {
  padding-bottom: 0;
  background-color: var(--color-white);
}

#postsFacebook > header::before,
#postsFacebook > header span {
  color: var(--color-secondary-dark);
}

section ~ #postsFacebook > header::before {
  background-color: var(--color-secondary-dark);
}

#postsFacebook > span {
  display: block;
  text-align: center;
}

#postsFacebook > span .fb_iframe_widget {
  margin-bottom: 30px;
  vertical-align: top;
}

#postsFacebook > span .fb_iframe_widget:nth-child(2n + 1) {
  margin-right: 30px;
}

@media screen and (max-width: 1046px) {
  #postsFacebook > span .fb_iframe_widget {
    margin: 0 15px 20px 15px !important;
  }
}

@media screen and (max-width: 1000px) {
  #postsFacebook > span .fb_iframe_widget {
    margin: 0 0 10px 0 !important;
  }
}

/* promo */
#promosList {
  background-color: var(--color-white);
}

#promosList > header::before,
#promosList > header span {
  color: var(--color-secondary-dark);
}

#promosList > header a {
  color: var(--color-white);
}

#promosList > header a:hover {
  color: var(--color-black);
}

#promosList article a {
  display: inline-block;
  width: 100%;
  padding: 15px 25px;
  text-decoration: none;
}

#promosList article a header .date {
  color: var(--color-secondary);
  font-size: .8em;
}

#promosList article a header .h2 {
  padding: 5px 0 15px 0;
  color: var(--color-black);
  font-size: 1.3em;
  font-weight: bold;
}

#promosList article a .content {
  color: var(--color-black-light);
}

#promosList article a:hover {
  background-color: var(--color-secondary-lightest);
  transition: 200ms background-color linear;
}

/* layer video */
#layerYoutubeVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .8);
  z-index: 250;
}

#layerYoutubeVideo > section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

#layerYoutubeVideo > section > iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 80%;
  height: 80%;
}

/* list */
main > .list {
  background-color: var(--color-white);
  text-align: center;
}

main > .list p {
  margin: 15px;
  text-align: center;
}

main > .list article {
  display: inline-block;
  width: 360px;
  padding: 0 45px;
  text-align: center;
}

@media screen and (max-width: 736px) {
  main > .list article::after {
    content: ' ';
    display: inline-block;
    width: 100%;
    height: 40px;
    border-bottom: 1px solid var(--color-secondary-light);
    margin-bottom: 25px;
  }

  main > .list article:last-child::after {
    display: none;
  }
}

@media screen and (min-width: 737px) and (max-width: 1096px) {
  main > .list article.fixed:nth-last-child(2n - 1):first-child::after,
  main > .list article.fixed:nth-last-child(2n - 1):first-child ~ article::after,
  main > .list article.fixed:nth-last-child(2n):first-child::after,
  main > .list article.fixed:nth-last-child(2n):first-child ~ article::after {
    content: ' ';
    display: inline-block;
    width: 100%;
    height: 40px;
    border-bottom: 1px solid var(--color-secondary-light);
    margin-bottom: 25px;
  }

  main > .list article.fixed:nth-last-child(2n):first-child:nth-last-child(2)::after,
  main > .list article.fixed:nth-last-child(2n - 1):first-child ~ article.fixed:last-child::after,
  main > .list article.fixed:nth-last-child(2n):first-child ~ article.fixed:nth-last-child(2)::after,
  main > .list article.fixed:nth-last-child(2n):first-child ~ article.fixed:last-child::after {
    display: none;
  }
}

@media screen and (min-width: 1097px) {
  main > .list article.fixed:nth-last-child(3n - 2):first-child::after,
  main > .list article.fixed:nth-last-child(3n - 2):first-child ~ article.fixed::after,
  main > .list article.fixed:nth-last-child(3n - 1):first-child::after,
  main > .list article.fixed:nth-last-child(3n - 1):first-child ~ article.fixed::after,
  main > .list article.fixed:nth-last-child(3n):first-child::after,
  main > .list article.fixed:nth-last-child(3n):first-child ~ article.fixed::after {
    content: ' ';
    display: inline-block;
    width: 100%;
    height: 40px;
    border-bottom: 1px solid var(--color-secondary-light);
    margin-bottom: 25px;
  }

  main > .list article.fixed:nth-last-child(2n):first-child:nth-last-child(2)::after,
  main > .list article.fixed:nth-last-child(3n):first-child:nth-last-child(3)::after,
  main > .list article.fixed:nth-last-child(3n - 2):first-child ~ article.fixed:last-child::after,
  main > .list article.fixed:nth-last-child(3n - 1):first-child ~ article.fixed:nth-last-child(2)::after,
  main > .list article.fixed:nth-last-child(3n - 1):first-child ~ article.fixed:last-child::after,
  main > .list article.fixed:nth-last-child(3n):first-child ~ article.fixed:nth-last-child(3)::after,
  main > .list article.fixed:nth-last-child(3n):first-child ~ article.fixed:nth-last-child(2)::after,
  main > .list article.fixed:nth-last-child(3n):first-child ~ article.fixed:last-child::after {
    display: none;
  }
}

@media screen and (min-width: 737px) and (max-width: 1096px) {
  main > .list article.filterable:nth-last-of-type(2n - 1):first-of-type::after,
  main > .list article.filterable:nth-last-of-type(2n - 1):first-of-type ~ article::after,
  main > .list article.filterable:nth-last-of-type(2n):first-of-type::after,
  main > .list article.filterable:nth-last-of-type(2n):first-of-type ~ article::after {
    content: ' ';
    display: inline-block;
    width: 100%;
    height: 40px;
    border-bottom: 1px solid var(--color-secondary-light);
    margin-bottom: 25px;
  }

  main > .list article.filterable:nth-last-of-type(2n):first-of-type:nth-last-of-type(2)::after,
  main > .list article.filterable:nth-last-of-type(2n - 1):first-of-type ~ article.filterable:last-of-type::after,
  main > .list article.filterable:nth-last-of-type(2n):first-of-type ~ article.filterable:nth-last-of-type(2)::after,
  main > .list article.filterable:nth-last-of-type(2n):first-of-type ~ article.filterable:last-of-type::after {
    display: none;
  }
}

@media screen and (min-width: 1097px) {
  main > .list article.filterable:nth-last-of-type(3n - 2):first-of-type::after,
  main > .list article.filterable:nth-last-of-type(3n - 2):first-of-type ~ article.filterable::after,
  main > .list article.filterable:nth-last-of-type(3n - 1):first-of-type::after,
  main > .list article.filterable:nth-last-of-type(3n - 1):first-of-type ~ article.filterable::after,
  main > .list article.filterable:nth-last-of-type(3n):first-of-type::after,
  main > .list article.filterable:nth-last-of-type(3n):first-of-type ~ article.filterable::after {
    content: ' ';
    display: inline-block;
    width: 100%;
    height: 40px;
    border-bottom: 1px solid var(--color-secondary-light);
    margin-bottom: 25px;
  }

  main > .list article.filterable:nth-last-of-type(2n):first-of-type:nth-last-of-type(2)::after,
  main > .list article.filterable:nth-last-of-type(3n):first-of-type:nth-last-of-type(3)::after,
  main > .list article.filterable:nth-last-of-type(3n - 2):first-of-type ~ article.filterable:last-of-type::after,
  main > .list article.filterable:nth-last-of-type(3n - 1):first-of-type ~ article.filterable:nth-last-of-type(2)::after,
  main > .list article.filterable:nth-last-of-type(3n - 1):first-of-type ~ article.filterable:last-of-type::after,
  main > .list article.filterable:nth-last-of-type(3n):first-of-type ~ article.filterable:nth-last-of-type(3)::after,
  main > .list article.filterable:nth-last-of-type(3n):first-of-type ~ article.filterable:nth-last-of-type(2)::after,
  main > .list article.filterable:nth-last-of-type(3n):first-of-type ~ article.filterable:last-of-type::after {
    display: none;
  }
}

main > .list article:last-child:first-child::after {
  display: none;
}

main > .list .scrollableContent article {
  padding: 0 45px;
  margin-bottom: 20px;
}

main > .list .scrollableContent article::after {
  display: none !important;
}

main > .list article > .cover {
  position: relative;
  display: inline-block;
  min-height: 100px;
  margin: 15px 0;
}

main > .list article > .cover img.cover {
  display: block;
}

main > .list article > .cover img.label {
  position: absolute;
  top: 0;
  right: 0;
}

main > .list article > .cover div {
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-block;
  width: 150px;
  height: 100px;
  padding: 55px 0 0 10px;
  font-size: 2.3em;
  color: var(--color-white);
  text-align: left;
  background-repeat: no-repeat;
  background-position: 0;
  background-image: url('/img/layout/bck_percentage.svg');
}

main > .list article > .cover div:empty {
  left: initial;
  bottom: initial;
  right: 0;
  top: 0;
  width: 124px;
  height: 57px;
  background-image: url('/img/layout/bck_damaged.svg');
}

main > .list article > .cover:hover {
  transform: scale(1.05);
  transition: 200ms transform linear;
}

main > .list article .h3,
main > .list article .h4 {
  padding-bottom: 15px;
}

main > .list article .h2 {
  padding-bottom: 5px;
  font-weight: bold;
}

main > .list .scrollableContent article .h2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 55px;
  overflow: hidden;
}

@media screen and (min-width: 737px) {
  main > .list article .h2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 55px;
    font-weight: bold;
    overflow: hidden;
  }
}

main > .list article .h2 a {
  color: var(--color-black);
  text-decoration: none;
  font-size: 1.4em;
}

main > .list article .h2 a:hover {
  color: var(--color-main);
}

main > .list article .h3,
main > .list article .h4 {
  font-size: .8em;
}

@media screen and (min-width: 737px) {
  main > .list article .h4 {
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    height: 16px;
    overflow: hidden;
  }
}

main > .list article .h3 span::after,
main > .list article .h4 span::after {
  content: ', ';
}

main > .list article .h3 span:last-child::after,
main > .list article .h4 span:last-child::after {
  display: none;
}

main > .list article .h3 a,
main > .list article .h4 a {
  color: var(--color-secondary-dark);
  text-decoration: none;
}

main > .list article .h3 a:hover,
main > .list article .h4 a:hover {
  color: var(--color-black);
  text-decoration: underline;
}

main > .list article .price {
  padding-top: 15px;
}

main > .list article .price span:first-child {
  display: inline-block;
  padding-right: 10px;
  border-right: 1px solid var(--color-secondary);
  margin-right: 10px;
  color: var(--color-secondary);
  text-decoration: line-through;
}

main > .list article .price span:first-child:empty {
  display: none;
}

main > .list article .price span:last-child {
  padding: 0;
  border-width: 0;
  margin: 0;
  color: var(--color-black-light);
  text-decoration: none;
}

main > .list article .unavailable,
main > .list article .preorder {
  display: inline-block;
  max-width: 100%;
  padding: 15px;
  border-width: 0;
  border-radius: 3px;
  background-color: var(--color-secondary-light);
  cursor: not-allowed;
  font-size: .8em;
}

main > .list article .unavailable {
  padding: 15px 25px;
}

main > .list > article label.btnWishList {
  display: none;
}

.formWishListConfig ~ main > .list > article label.btnWishList {
  display: inline-block;
}

.list.listMini header span {
  color: var(--color-secondary-dark);
  font-size: .8em;
}

.list.listMini article {
  width: 180px;
  padding: 0 15px;
  margin-bottom: 0;
}

.list.listMini article::after {
  display: none;
}

.list.listMini .scrollableContent article {
  width: 160px;
  padding: 0 0 0 10px;
}

.list.listMini .scrollableContent article:first-child {
  width: 175px;
  padding-left: 25px;
}

.list.listMini .scrollableContent article:last-child {
  width: 185px;
  padding-right: 25px;
}

.listForeignRights .details {
  font-size: .8em;
  padding-bottom: 5px;
  color: var(--color-secondary);
}

.listForeignRights .details span {
  color: var(--color-black-light);
  font-weight: bold;
}

.listForeignRights .description {
  position: relative;
  max-height: 300px;
  padding-top: 10px;
  text-align: left;
  overflow: hidden;
}

.listForeignRights .description::after {
  content: ' ';
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 50px;
  background: -moz-linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  background: -webkit-linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
}

@media screen and (min-width: 737px) {
  main > .listForeignRights article {
    width: 100%;
  }

  main > .listForeignRights article::after {
    display: inline-block !important;
  }

  main > .listForeignRights article:last-child::after {
    display: none !important;
  }

  main > .listForeignRights article > .cover {
    float: left;
    padding: 0 15px;
    margin-top: 0;
  }

  main > .listForeignRights article .h2,
  main > .listForeignRights article .h4 {
    display: block;
    -webkit-line-clamp: none;
    -webkit-box-orient: initial;
    height: auto;
    padding: 0;
    text-align: left;
  }

  main > .listForeignRights article .h2 {
    padding-bottom: 5px;
  }

  main > .listForeignRights .details {
    text-align: left;
  }
}

main > .listVideos article,
main > .listAuthors article {
  padding: 20px 15px 0 15px;
  text-align: initial;
}

main > .listVideos article::after,
main > .listAuthors article::after {
  display: none;
}

main > .listVideos article a,
main > .listAuthors article a {
  position: relative;
  display: inline-block;
  width: 100%;
  text-decoration: none;
  color: var(--color-secondary-dark);
}

main > .listVideos article a {
  height: 50px;
}

main > .listVideos article a:hover,
main > .listAuthors article a:hover {
  color: var(--color-main-light);
}

main > .listVideos article a img,
main > .listAuthors article a img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

main > .listVideos article a img[src$='svg'],
main > .listAuthors article a img[src$='svg'] {
  filter: invert(73%) sepia(0%) saturate(1352%) hue-rotate(168deg) brightness(83%) contrast(96%); /* secondary */
}

main > .listVideos article a:hover img[src$='svg'],
main > .listAuthors article a:hover img[src$='svg'] {
  filter: invert(71%) sepia(19%) saturate(981%) hue-rotate(175deg) brightness(94%) contrast(93%); /* main light */
  transition: 200ms filter linear;
}

main > .listVideos article a > span,
main > .listAuthors article a span {
  padding-left: 15px;
}

main > .listVideos article a > span span {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}

/* list modifiers */
.panelListModifiers > header {
  background-color: var(--color-secondary-dark);
}

.panelListModifiers > header::before {
  background-color: var(--color-white);
}

.panelListModifiers > header a {
  color: var(--color-white);
}

.panelListModifiers .modifierSearcher,
.panelListModifiers .modifiersTabs {
  text-align: center;
  background-color: var(--color-secondary-dark);
}

.panelListModifiers .modifiersTabs label {
  display: inline-block;
  padding: 15px 50px;
  border-width: 0;
  border-radius: 3px;
  margin: 0 5px 10px 5px;
  color: var(--color-black);
  background-color: var(--color-white);
  font-size: .8em;
  font-weight: bold;
}

.panelListModifiers .modifierSearcher label {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 600px;
  padding: 0 15px;
  margin-bottom: 15px;
}

.panelListModifiers .modifierSearcher label::before {
  content: ' ';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: var(--color-secondary);
  background-repeat: no-repeat;
  background-position: 50%;
  background-image: url('/img/layout/fig_funnel.svg');
}

.panelListModifiers .modifierSearcher label input[type='search'] {
  width: 100%;
  padding-right: 40px;
}

.panelListModifiers .modifiersButtons {
  display: none;
}

.panelListModifiers #guiModifySorter:checked ~ .modifiersButtons,
.panelListModifiers #guiModifyFilter:checked ~ .modifiersButtons {
  clear: both;
  display: inline-block;
  width: 100%;
  padding: 0 15px 15px 15px;
  border-bottom: 1px solid var(--color-secondary);
  text-align: center;
}

.panelListModifiers .modifiersButtons label {
  border: 1px solid var(--color-secondary);
}

.panelListModifiers #guiModifySorter:checked ~ .modifiersButtons label:last-child,
.panelListModifiers #guiModifyFilter:checked ~ .modifiersButtons label:first-child {
  display: none;
}

.panelListModifiers #guiModifySorter:checked ~ .modifiersTabs label[for='guiModifySorter'],
.panelListModifiers #guiModifyFilter:checked ~ .modifiersTabs label[for='guiModifyFilter'] {
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.panelListModifiers #guiModifySorter:checked ~ .modifiersTabs label[for='guiModifySorter']::after,
.panelListModifiers #guiModifyFilter:checked ~ .modifiersTabs label[for='guiModifyFilter']::after {
  content: ' ';
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-block;
  width: 18px;
  height: 18px;
  background-size: 18px;
  background-image: url('/img/layout/btn_close.svg');
  filter: invert(42%) sepia(0%) saturate(0%) hue-rotate(97deg) brightness(92%) contrast(88%); /* secondary */
}

.panelListModifiers .modifierSorter,
.panelListModifiers .modifierFilter {
  display: none;
}

.panelListModifiers #guiModifySorter:checked ~ .modifierSorter,
.panelListModifiers #guiModifyFilter:checked ~ .modifierFilter {
  display: block;
  padding: 20px 45px 0 45px;
}

.panelListModifiers .modifierSorter section,
.panelListModifiers .modifierFilter section {
  float: left;
  display: inline-block;
  width: 50%;
}

.panelListModifiers .modifierSorter label,
.panelListModifiers .modifierFilter label {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-left: 20px;
  margin: 0 auto 20px auto;
  font-size: .8em;
}

.panelListModifiers .modifierFilter label input,
.panelListModifiers .modifierSorter label input {
  display: none;
}

.panelListModifiers .modifierFilter label span,
.panelListModifiers .modifierSorter label span {
  content: ' ';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 1px solid var(--color-secondary);
  border-radius: 3px;
}

.panelListModifiers .modifierFilter label input[type='radio'] ~ span,
.panelListModifiers .modifierSorter label span {
  border-radius: 50%;
}

.panelListModifiers .modifierFilter label input:checked ~ span,
.panelListModifiers .modifierSorter label input:checked ~ span {
  background-color: var(--color-main-light);
}

.panelListModifiers .modifierSorter span:empty,
.panelListModifiers .modifierFilter span:empty {
  display: block;
  clear: both;
}

.limiter {
  padding: 10px 0;
  background-color: var(--color-secondary-lightest);
  text-align: center;
  font-size: .9em;
}

.limiter .select {
  margin-left: 10px;
}

.panelListPagination {
  padding: 10px 0;
  margin-top: 20px;
  background-color: var(--color-secondary-lightest);
  text-align: center;
  font-size: .9em;
}

.panelListPagination a {
  display: inline-block;
}

.panelListPagination a.inactive {
  cursor: not-allowed;
}

.panelListPagination a img {
  height: 20px;
  margin-bottom: -5px;
  filter: invert(66%) sepia(18%) saturate(1125%) hue-rotate(172deg) brightness(85%) contrast(86%); /* main */
}

.panelListPagination a.inactive img {
  filter: invert(73%) sepia(0%) saturate(1352%) hue-rotate(168deg) brightness(83%) contrast(96%); /* secondary */
}

/* author page */
.author {
  display: inline-block;
  width: 100%;
}

.author > article {
  padding: 20px 15px 0 15px;
  text-align: center;
}

.author > article .h2 {
  font-size: 1.4em;
  font-weight: bold;
  text-align: initial;
}

.author > article .h3 {
  color: var(--color-secondary);
  text-align: initial;
}

.author > article .h3::before {
  content: '(';
}

.author > article .h3::after {
  content: ')';
}

.author > article .h3:empty {
  display: none;
}

.author > article > img {
  display: inline-block;
  width: 200px;
  height: 200px;
  margin-top: 15px;
  border-radius: 50%;
}

.author > article > img[src$='svg'] {
  filter: invert(73%) sepia(0%) saturate(1352%) hue-rotate(168deg) brightness(83%) contrast(96%); /* secondary */
}

.author > article > .biography {
  display: inline-block;
  width: 100%;
  padding-top: 20px;
  text-align: initial;
}

.author > article > .biography img {
  max-width: 100%;
}

@media screen and (min-width: 1097px) {
  .author > article > img {
    float: left;
    margin: 20px 55px 0 55px;
  }

  .author > article > .biography {
    width: 740px;
  }
}

/* product page */
.product > article {
  text-align: center;
}

.product > article .coverPrimary,
.product > article .coverSecondary {
  display: inline-block;
  min-height: 100px;
  margin: 15px 0;
  text-align: center;
}

.product > article .coverPrimary span,
.product > article .coverSecondary span {
  position: relative;
  display: inline-block;
}

.product > article .coverPrimary img.cover,
.product > article .coverSecondary img.cover {
  display: inline-block;
  cursor: pointer;
}

.product > article .coverPrimary img.label,
.product > article .coverSecondary img.label {
  position: absolute;
  top: 0;
  right: 0;
}

.product > article .coverPrimary div,
.product > article .coverSecondary div {
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-block;
  width: 150px;
  height: 100px;
  padding: 55px 0 0 10px;
  font-size: 2.3em;
  color: var(--color-white);
  text-align: left;
  background-repeat: no-repeat;
  background-position: 0;
  background-image: url('/img/layout/bck_percentage.svg');
}

.product > article .coverPrimary div:empty,
.product > article .coverSecondary div:empty {
  left: initial;
  bottom: initial;
  top: 0;
  right: 0;
  width: 124px;
  height: 57px;
  background-image: url('/img/layout/bck_damaged.svg');
}

.product > article h1,
.product > article .h4 {
  padding: 15px 15px 0 15px;
}

.product > article h1 {
  padding-bottom: 10px;
  color: var(--color-black);
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
}

.product > article h1 a:hover {
  color: var(--color-main);
}

.product > article .h4 {
  padding-top: 5px;
  font-size: .8em;
  color: var(--color-secondary);
}

.product > article .h4 span::after {
  content: ', ';
}

.product > article .h4 span:last-child::after {
  display: none;
}

.product > article .h4 a {
  color: var(--color-secondary-dark);
  text-decoration: none;
  font-weight: bold;
}

.product > article .h4 a:hover {
  color: var(--color-black);
  text-decoration: underline;
}

.product > article .price {
  padding: 15px 15px 0 15px;
}

.product > article .price span.priceOld {
  display: inline-block;
  padding-right: 10px;
  border-right: 1px solid var(--color-secondary);
  margin-right: 10px;
  color: var(--color-secondary);
  text-decoration: line-through;
}

.product > article .price span.priceOld:empty {
  display: none;
  padding: 0;
  border-width: 0;
  margin: 0;
}

.product > article .price span.priceCurrent {
  padding: 0;
  border-width: 0;
  margin: 0;
  color: var(--color-black-light);
  text-decoration: none;
}

.product > article .price span.priceHistoricalLowest {
  display: inline-block;
  width: 100%;
  padding-top: 5px;
  color: var(--color-secondary);
  font-size: .8em;
}

.product > article .unavailable,
.product > article .preorder {
  display: inline-block;
  max-width: 100%;
  padding: 15px;
  border-width: 0;
  border-radius: 3px;
  background-color: var(--color-secondary-light);
  cursor: not-allowed;
  font-size: .8em;
}

.product > article .unavailable {
  padding: 15px 25px;
}

.product > article .preorderDate {
  padding: 15px 15px 0 15px;
  color: var(--color-red);
  font-size: .8em;
}

.product > article a.detailsPnp {
  display: none;
}

.product > article .price ~ a.detailsPnp {
  display: inline-block;
  margin-top: 15px;
  font-size: .8em;
  color: var(--color-main);
}

.product > article a.detailsPnp:hover {
  color: var(--color-main-light);
}

.product > article .otherEditions {
  padding: 0;
  margin-top: 15px;
  font-size: .8em;
  color: var(--color-secondary-dark);
  text-align: left;
}

.product > article .otherEditions > span {
  display: inline-block;
  width: 100%;
  padding: 10px;
}

.product > article .otherEditions a {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 15px 15px 15px 40px;
  border-bottom: 1px solid var(--color-secondary-lightest);
  text-decoration: none;
  color: var(--color-black-light);
  font-size: inherit;
  transition: 200ms color linear;
}

.product > article .otherEditions a:hover {
  color: var(--color-main-light);
}

.product > article .otherEditions a strong {
  padding-left: 10px;
}

.product > article .otherEditions a img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 7px;
  display: inline-block;
  width: 26px;
  height: 26px;
  filter: invert(39%) sepia(0%) saturate(1538%) hue-rotate(268deg) brightness(97%) contrast(83%); /* secondary dark */
  transition: 200ms filter linear;
}

.product > article .otherEditions a:hover img {
  filter: invert(71%) sepia(19%) saturate(981%) hue-rotate(175deg) brightness(94%) contrast(93%); /* main light */
}

.product > article .externalShopsLinks {
  padding: 15px;
  margin-top: 15px;
  font-size: .8em;
  color: var(--color-secondary-dark);
  background-color: var(--color-secondary-lightest);
}

.product > article .externalShopsLinks > div {
  display: inline-block;
}

.product > article .externalShopsLinks > div:first-child {
  display: inline;
}

.product > article .externalShopsLinks > div:first-child::before {
  content: '\A';
  white-space: pre;
}

.product > article .externalShopsLinks a {
  display: inline-block;
  padding: 15px;
  border: 1px solid var(--color-secondary-dark);
  border-radius: 3px;
  margin: 15px 5px 0 5px;
  font-size: .9em;
  font-weight: bold;
  color: var(--color-white);
  background-color: var(--color-secondary);
  text-decoration: none;
}

.product > article .externalShopsLinks a:hover {
  color: var(--color-black);
  background-color: var(--color-main-lightest);
  transition: 200ms background-color linear,
  200ms color linear;
}

main > .list > article label.btnWishList,
.product > article label.btnWishList {
  padding: 5px 25px;
  margin-top: 15px;
  background-color: var(--color-white);
  border: 1px solid var(--color-secondary-dark);
  color: var(--color-secondary-dark);
}

main > .list > article label.btnWishList:hover,
.product > article label.btnWishList:hover {
  color: var(--color-black);
  background-color: var(--color-main-lightest);
  transition: 200ms background-color linear,
  200ms color linear;
}

main > .list > article label.btnWishList #guiWishlist:checked ~ span:first-of-type,
main > .list > article label.btnWishList #guiWishlist ~ span:last-of-type,
.product > article label.btnWishList #guiWishlist:checked ~ span:first-of-type,
.product > article label.btnWishList #guiWishlist ~ span:last-of-type {
  display: none;
}

main > .list > article label.btnWishList #guiWishlist:checked ~ span:last-of-type,
.product > article label.btnWishList #guiWishlist:checked ~ span:last-of-type {
  display: inline-block;
}

.product > article .gallery {
  height: 140px;
  margin-top: 15px;
}

.product > article .gallery > section {
  height: 140px;
  padding: 20px 0;
}

.product > article .description {
  padding: 15px 15px 0 15px;
  color: var(--color-secondary-dark);
  text-align: initial;
}

.product > article .description img {
  max-width: 100%;
}

.product > article .videoName,
.product > article .embeddedDocumentName {
  width: 100%;
  padding: 15px 15px 5px 15px;
  margin-bottom: -10px;
  font-weight: bold;
}

.product > article .videoName:empty,
.product > article .embeddedDocumentName:empty {
  display: none;
}

.product > article .video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin-top: 15px;
}

.product > article .video > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.product > article .embeddedDocument {
  margin-top: 15px;
}

.product > article .details {
  padding: 15px 15px 0 15px;
  color: var(--color-black-light);
  font-size: .8em;
}

.product > article .details span:nth-child(3n + 1) {
  color: var(--color-secondary);
}

.product > article .details span:nth-child(3n + 2) {
  font-weight: bold;
}

.product > article .details span a {
  color: var(--color-black-light);
  text-decoration: none;
}

.product > article .details span a:hover {
  color: var(--color-main-light);
}

.product > article .downloads {
  padding: 15px 15px 0 15px;
}

.product > article .downloads a {
  margin-right: 10px;
}

.product > article .downloads a:last-child {
  margin-right: 0;
}

.product > article .downloads a img {
  filter: invert(73%) sepia(0%) saturate(1352%) hue-rotate(168deg) brightness(83%) contrast(96%); /* secondary */
}

.product > article .downloads a:hover img {
  filter: invert(100%) sepia(1%) saturate(4459%) hue-rotate(185deg) brightness(113%) contrast(60%); /* secondary light */
  transition: 200ms filter linear;
}

.product > article .downloads a.hoverAlpha img {
  filter: none;
}

.product > article .downloads a.hoverAlpha:hover img {
  filter: none;
  transition: 200ms opacity linear;
  opacity: .5;
}

.product > article .gameIcons {
  margin-bottom: 15px;
}

.product > article .gameIcons div {
  display: inline-block;
  width: 74px;
  height: 93px;
  padding-top: 53px;
  margin: 0 5px;
  font-weight: bold;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('/img/layout/bck_games_players.svg');
  color: var(--color-black);
  filter: invert(73%) sepia(0%) saturate(1352%) hue-rotate(168deg) brightness(83%) contrast(96%); /* secondary */
}

.product > article .gameIcons div:first-child {
  background-image: url('/img/layout/bck_games_age.svg');
}

.product > article .gameIcons div:last-child {
  background-image: url('/img/layout/bck_games_time.svg');
}

@media screen and (max-width: 736px) {
  .product > article {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
  }

  .product > article h1 {
    order: 1;
  }

  .product > article .h4 {
    order: 2;
  }

  .product > article > .coverPrimary {
    order: 3;
  }

  .product > article .coverSecondary {
    display: none;
  }

  .product > article .gameIcons {
    order: 4;
  }

  .product > article .panelShop {
    order: 5;
  }

  .product > article .gallery {
    order: 6;
  }

  .product > article .description {
    order: 7;
  }

  .product > article .videos {
    order: 8;
  }

  .product > article .embeddedDocumentName {
    order: 8;
  }

  .product > article .embeddedDocument {
    order: 9;
  }

  .product > article .details {
    order: 10;
  }

  .product > article .downloads {
    order: 11;
  }
}

@media screen and (min-width: 737px) and (max-width: 1096px) {
  .product > article {
    text-align: initial;
  }

  .product > article h1 {
    display: inline-block;
    width: 100%;
    padding: 40px 0 0 0;
    border-top: 1px solid var(--color-secondary-lightest);
    margin: 0 0 40px 0;
    font-size: 2em;
    text-align: center;
  }

  .product > article .h4,
  .product > article .gameIcons,
  .product > article .details,
  .product > article .downloads {
    display: inline-block;
    width: 50%;
    float: left;
    clear: left;
    text-align: center;
  }

  .product > article .gameIcons,
  .product > article .details,
  .product > article .downloads {
    border-top: 1px solid var(--color-secondary-lightest);
    margin-top: 15px;
  }

  .product > article .gameIcons {
    padding-top: 15px;
    margin-bottom: 0;
  }

  .product > article .h4:first-of-type {
    padding-top: 0;
  }

  .product > article .panelShop {
    display: inline-block;
    width: 50%;
    float: right;
    border-left: 1px solid var(--color-secondary-lightest);
    text-align: center;
  }

  .product > article .coverSecondary,
  .product > article .otherEditions,
  .product > article .externalShopsLinks {
    display: inline-block;
    width: 100%;
  }

  .product > article .otherEditions {
    border-top: 1px solid var(--color-secondary-lightest);
    margin-top: 15px;
  }

  .product > article .coverSecondary {
    margin-top: 0;
  }

  .product > article > .coverPrimary {
    display: none;
  }

  .product > article .description {
    clear: both;
  }
}

@media screen and (min-width: 1097px) {
  .product > article {
    text-align: initial;
  }

  .product > article h1 {
    display: inline-block;
    width: 100%;
    padding: 40px 0 0 0;
    border-top: 1px solid var(--color-secondary-lightest);
    margin: 0 0 40px 0;
    font-size: 2em;
    text-align: center;
  }

  .product > article .h4,
  .product > article .gameIcons,
  .product > article .details,
  .product > article .downloads {
    display: inline-block;
    width: 360px;
    float: left;
    clear: left;
    text-align: center;
  }

  .product > article .gameIcons,
  .product > article .details,
  .product > article .downloads {
    border-top: 1px solid var(--color-secondary-lightest);
    margin-top: 15px;
  }

  .product > article .gameIcons {
    padding-top: 15px;
    margin: 15px 0 0 0;
  }

  .product > article .h4:first-of-type {
    padding-top: 0;
  }

  .product > article .panelShop {
    display: inline-block;
    width: 360px;
    float: right;
    text-align: center;
  }

  .product > article .panelShop .infoAvailabilityEnd {
    padding-bottom: 15px;
    font-size: .8em;
    color: var(--color-red);
  }

  .product > article .coverPrimary,
  .product > article .otherEditions,
  .product > article .externalShopsLinks {
    display: inline-block;
    width: 360px;
  }

  .product > article .coverPrimary {
    border-left: 1px solid var(--color-secondary-lightest);
    border-right: 1px solid var(--color-secondary-lightest);
    margin-top: 0;
  }

  .product > article .coverSecondary {
    display: none;
  }

  .product > article .description {
    clear: both;
  }
}

.productForeignRights > article .countries {
  display: inline-block;
  width: 230px;
  margin: 30px auto 0 auto;
  border: 1px solid var(--color-secondary-dark);
  border-radius: 3px;
}

.productForeignRights > article .countries:first-child {
  margin-top: 0;
}

.productForeignRights > article .countries header {
  padding: 5px;
  background-color: var(--color-secondary-dark);
  color: var(--color-white);
  text-transform: uppercase;
}

.productForeignRights > article .countries div {
  padding-bottom: 5px;
  color: var(--color-secondary-dark);
  font-size: .9em;
}

.productForeignRights > article .countries div:first-child {
  padding-top: 15px;
}

.productForeignRights > article .countries div:last-child {
  padding-bottom: 15px;
}

.productForeignRights > article .videoName {
  display: none;
}

.productForeignRights > article .gameIcons div {
  background-image: url('/img/layout/bck_eng_games_players.svg');
}

.productForeignRights > article .gameIcons div:first-child {
  background-image: url('/img/layout/bck_eng_games_age.svg');
}

.productForeignRights > article .gameIcons div:last-child {
  background-image: url('/img/layout/bck_eng_games_time.svg');
}

.productForeignRights > article .contact {
  font-size: .9em;
}

.productForeignRights > article .countries ~ .contact {
  padding-top: 15px
}

@media screen and (min-width: 737px) {
  .productForeignRights > article .countries ~ .contact {
    margin-top: 15px;
    border-top: 1px solid var(--color-secondary-lightest);
  }
}

/* account */
#formAccount input[name='act'] ~ section .buttons button span {
  display: none;
}

#formAccount input[name='act'][value='create'] ~ section .buttons button span.create,
#formAccount input[name='act'][value='update'] ~ section .buttons button span.update,
#formAccount input[name='act'][value='order'] ~ section .buttons button span.order {
  display: inline-block;
}

#formAccount input[name='act'][value='order'] ~ section .buttons button {
  display: inline-block;
  color: var(--color-white);
  background-color: var(--color-main);
  border-width: 0;
}

#formAccount input[name='act'][value='order'] ~ section .buttons button:hover {
  color: var(--color-black-light);
  background-color: var(--color-main-lightest);
}

#formAccount .userType {
  display: none;
}

#formAccount #userTypeI:checked ~ section .userTypeI,
#formAccount #userTypeC:checked ~ section .userTypeC,
#formAccount #userTypeL:checked ~ section .userTypeL {
  display: inline-block;
}

/* settings */
form[name='formConfig'] .optional {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-secondary-light);
}

form[name='formConfig'] .optional:last-child {
  border-bottom-width: 0;
}

#menuAccount ~ #formAccount .buttons .create,
#menuAccount ~ #formAccount .agreementMailingReceiver,
#menuAccount ~ #formAccount .agreementRecommendations,
#menuAccount ~ #formAccount #formShopSect2 {
  display: none;
}

#menuAccount ~ #formAccount .buttons .update {
  display: inline-block;
}

/* wish list */
.formWishListConfig .optional .btn {
  float: left;
  margin-right: 15px;
}

/* e-products */
main > .list article .panelDownload {
  height: 95px;
  color: var(--color-secondary-dark);
  overflow: hidden;
}

main > .list article .panelDownload .btn {
  border: 1px solid var(--color-black);
  margin: 10px 10px 0 10px;
}

main > .list article .panelDownload .btnDownload {
  padding-right: 40px;
  background-image: url('/img/layout/ico_download.svg');
  background-repeat: no-repeat;
  background-position: right 15px center;
}

/* orders */
.listOrders article.order {
  width: 100%;
  padding: 15px;
  cursor: pointer;
}

.listOrders article.order::after {
  display: none !important;
}

.listOrders article.order:hover {
  background-color: var(--color-secondary-light);
  transition: 200ms background-color linear;
}

.listOrders article.order > section {
  display: inline-block;
  width: 360px;
  text-align: initial;
}

.listOrders article.order > section span:nth-child(3n + 1) {
  color: var(--color-secondary);
}

.listOrders article.order:hover > section span:nth-child(3n + 1) {
  color: var(--color-secondary-dark);
  transition: 200ms color linear;
}

.listOrders article.order:hover > section span:nth-child(3n + 2) {
  color: var(--color-black);
  transition: 200ms color linear;
}

.listOrders #orderDetails {
  margin-bottom: 40px;
}

.listOrders #orderDetails article {
  display: inline-block;
  width: 360px;
  padding: 15px 15px 0 15px;
  font-size: .8em;
  text-align: initial;
}

.listOrders #orderDetails article::after {
  height: 1px;
  margin: 15px 0 0 0;
}

.listOrders #orderDetails article > .cover {
  position: relative;
  float: left;
  display: inline-block;
  width: 80px;
  min-height: auto;
  padding: 0;
  margin: 0 7px 0 0;
}

.listOrders #orderDetails article > .cover img.cover {
  display: block;
}

.listOrders #orderDetails article > .cover img.label {
  position: absolute;
  top: 0;
  right: 0;
}

.listOrders #orderDetails article .h2 {
  display: inline-block;
  width: 243px;
  height: auto;
  padding: 0;
  font-size: .8em;
}

.listOrders #orderDetails article .h2 a {
  color: var(--color-black-light);
  text-decoration: none;
  font-weight: bold;
}

.listOrders #orderDetails article .h2 a:hover {
  color: var(--color-main);
}

.listOrders #orderDetails article .price {
  display: inline-block;
  padding: 15px 0 0 0;
  color: var(--color-black-light);
}

.listOrders #orderDetails article .price span {
  font-weight: bold;
}

/* toggler */
.toggler {
  position: relative;
  height: 52px;
  padding: 15px 15px 15px 65px;
  border: 1px solid var(--color-secondary-light);
}

.toggler::before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background-color: var(--color-secondary-dark);
  background-image: url('/img/layout/arr_light_down.svg');
  background-repeat: no-repeat;
  background-position: 50%;
  cursor: pointer;
}

.toggler.pressed::before {
  background-image: url('/img/layout/arr_light_up.svg');
}

.toggler + section {
  display: none;
}

.toggler.pressed + section {
  display: block;
}

/* employees */
main > .listCategoriesEmployees {
  text-align: justify;
}

main > .listCategoriesEmployees .h2 {
  padding: 15px;
  font-weight: bold;
}

main > .listCategoriesEmployees .toggler {
  margin: 0 15px 15px 15px;
}

main > .list .listEmployees article {
  display: block;
  width: 100%;
  min-height: 240px;
  padding: 0 15px 20px 15px;
}

main > .list .listEmployees article:first-child {
  margin-top: 40px;
}

main > .list .listEmployees article::after {
  content: ' ';
  display: inline-block !important;
  width: 100%;
  height: 40px;
  border-bottom: 1px solid var(--color-secondary-light);
  margin-bottom: 25px;
}

main > .list .listEmployees article:last-child::after {
  display: none !important;
}

main > .list .listEmployees article img {
  display: inline-block;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid var(--color-secondary-light);
  margin-bottom: 15px;
}

main > .list .listEmployees article .h2,
main > .list .listEmployees article .h3 {
  height: auto;
  padding: 0 0 5px 0;
  font-size: 1em;
}

main > .list .listEmployees article .h3 a {
  color: var(--color-main-dark);
  text-decoration: underline;
}

main > .list .listEmployees article .h3 a:hover {
  color: var(--color-main-lightest);
  text-decoration: none;
  transition: 200ms color linear;
}

main > .list .listEmployees article .description {
  display: inline-block;
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 1097px) {
  main > .list .listEmployees article img {
    float: left;
    margin: 0 55px;
  }

  main > .list .listEmployees article .description {
    text-align: left;
  }

  main > .list .listEmployees article:nth-child(even) img {
    float: right;
  }

  main > .list .listEmployees article:nth-child(even) .description {
    text-align: right;
  }

  main > .list .listEmployees article .description {
    width: 740px;
  }
}

