#three-d-container.three-d-container {
  position: relative;
  margin: 30px auto 90px;
  border-radius: 3px;
  width: 300px;
  height: 300px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 40px rgba(0, 0, 0, 0.2) inset;
  -ms-perspective: 1000px;
  -o-perspective: 1000px;
  perspective: 1000px;
}

#three-d-container .three-d-cube {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translateZ(-150px);
  transform-style: preserve-3d;
  transition: transform 1s;
}

#three-d-container .three-d-cube .three-d-item {
  position: absolute;
  display: block;
  margin: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  border-radius: 5px;
}

#three-d-container .three-d-cube .three-d-item img {
  /* display: block; */
  /* margin: 0; */
  /* width: 100%; */
  /* height: 100%; */
}

#three-d-container .three-d-item:nth-child(1) {
  transform: rotateY(0deg) translateZ(150px);
  background-color: rgb(192, 54, 54)
}

#three-d-container .three-d-item:nth-child(2) {
  transform: rotateX(180deg) translateZ(150px);
  background-color: rgb(169, 33, 169);
}

#three-d-container .three-d-item:nth-child(3) {
  transform: rotateY(90deg) translateZ(150px);
  background-color: rgb(135, 59, 207);
}

#three-d-container .three-d-item:nth-child(4) {
  transform: rotateY(-90deg) translateZ(150px);
  background-color: rgb(15, 138, 35);
}

#three-d-container .three-d-item:nth-child(5) {
  transform: rotateX(90deg) translateZ(150px);
  background-color: rgb(238, 162, 40);
}

#three-d-container .three-d-item:nth-child(6) {
  transform: rotateX(-90deg) translateZ(150px);
  background-color: rgb(55 145 226);
}

#three-d-container .a:checked ~ .three-d-cube {
  transform: translateZ(-150px) rotateY(0deg);
}

#three-d-container .b:checked ~ .three-d-cube {
  transform: translateZ(-150px) rotateX(-180deg);
}

#three-d-container .c:checked ~ .three-d-cube {
  transform: translateZ(-150px) rotateY(-90deg);
}

#three-d-container .d:checked ~ .three-d-cube {
  transform: translateZ(-150px) rotateY(90deg);
}

#three-d-container .e:checked ~ .three-d-cube {
  transform: translateZ(-150px) rotateX(-90deg);
}

#three-d-container .f:checked ~ .three-d-cube {
  transform: translateZ(-150px) rotateX(90deg);
}

#three-d-container .three-d-bullet {
  /* float: left; */
  /* margin: 350px 10px 0 0; */
  display: none;
}

#three-d-container .three-d-bullet:first-child {
  margin: 350px 10px 0 88px;
}

#three-d-container .three-d-cube .three-d-item {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.three-d-item img {
  display: block;
  margin: 0 auto 10px;
  border-radius: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  width: 90px;
  height: 90px;
  background-color: #fff;
}

.three-d-item h3 {
  text-shadow: 0 0 2px #fff;
  line-height: 1.2;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  justify-self: center;
  margin: 0 auto 10px !important;
}

.three-d-item p {
  margin: 0;
  color: #fff;
  line-height: 1.2;
  font-size: 17px;
  text-align: center;
}

.three-d-container .three-d-menu {
  position: absolute;
  top: calc(100% + 30px);
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
}

#three-d-section .three-d-title {
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
}

.three-d-label {
  box-sizing: content-box;
  display: block;
  line-height: 1;
  width: 15px;
  text-align: center;
  height: 15px;
  padding: 10px;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  border: 2px solid currentColor;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in, border-color 0.3s ease-in-out;
}

.three-d-label:nth-child(1) {
  color: rgb(192, 54, 54);
}

.three-d-label:nth-child(2) {
  color: rgb(169, 33, 169);
}

.three-d-label:nth-child(3) {
  color: rgb(135, 59, 207);
}

.three-d-label:nth-child(4) {
  color: rgb(15, 138, 35);
}

.three-d-label:nth-child(5) {
  color: rgb(238, 162, 40);
}

.three-d-label:nth-child(6) {
  color: rgb(55 145 226);
}

.three-d-label:nth-child(1):hover,
.three-d-label:nth-child(1):focus {
  background-color: rgb(192, 54, 54);
  color: #fff;
}

.three-d-label:nth-child(2):hover,
.three-d-label:nth-child(2):focus {
  background-color: rgb(169, 33, 169);
  color: #fff;
}

.three-d-label:nth-child(3):hover,
.three-d-label:nth-child(3):focus {
  background-color: rgb(135, 59, 207);
  color: #fff;
}

.three-d-label:nth-child(4):hover,
.three-d-label:nth-child(4):focus {
  background-color: rgb(15, 138, 35);
  color: #fff;
}

.three-d-label:nth-child(5):hover,
.three-d-label:nth-child(5):focus {
  background-color: rgb(238, 162, 40);
  color: #fff;
}

.three-d-label:nth-child(6):hover,
.three-d-label:nth-child(6):focus {
  background-color: rgb(55 145 226);
  color: #fff;
}

.three-d-label:hover,
.three-d-label:focus {
  background-color: currentColor;
  color: #fff;
}

@font-face {
  font-family: "iconset";

  src: url('../fonts/iconset.eot?t=1684345805976');

  /* IE9*/

  src: url('../fonts/iconset.eot?t=1684345805976#iefix') format('embedded-opentype'), /* IE6-IE8 */
  url("../fonts/iconset.woff2?t=1684345805976") format("woff2"),
  url("../fonts/iconset.woff?t=1684345805976") format("woff"),
  url('../fonts/iconset.ttf?t=1684345805976') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/
  url('../fonts/iconset.svg?t=1684345805976#iconset') format('svg');

  /* iOS 4.1- */
}

[class^="iconset-"], [class*=" iconset-"] {
  font-family: 'iconset' !important;
  font-size:16px;
  font-style:normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.iconset-calendar:before {
  content: "\ea01";
}

.iconset-checkmark:before {
  content: "\ea02";
}

.iconset-checkmark2:before {
  content: "\ea03";
}

.iconset-danger:before {
  content: "\ea04";
}

.iconset-delivery-fast:before {
  content: "\ea05";
}

.iconset-delivery:before {
  content: "\ea06";
}

.iconset-dots:before {
  content: "\ea07";
}

.iconset-eye:before {
  content: "\ea08";
}

.iconset-info:before {
  content: "\ea09";
}

.iconset-question-int:before {
  content: "\ea0a";
}

.iconset-quotation:before {
  content: "\ea0b";
}

.iconset-star-half:before {
  content: "\ea0c";
}

.iconset-star:before {
  content: "\ea0d";
}

.iconset-success:before {
  content: "\ea0e";
}

.iconset-thumb-up:before {
  content: "\ea0f";
}

.iconset-time:before {
  content: "\ea10";
}

.iconset-warning:before {
  content: "\ea11";
}

.iconset-world:before {
  content: "\ea12";
}

/* @tailwind base; */

.visible {
  visibility: visible;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.float-left {
  float: left;
}

.clear-both {
  clear: both;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-4 {
  margin-bottom: 1rem;
}

.\!mb-0 {
  margin-bottom: 0px !important;
}

.\!mb-8 {
  margin-bottom: 2rem !important;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-\[16px\] {
  margin-bottom: 16px;
}

.\!mb-4 {
  margin-bottom: 1rem !important;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

.hidden {
  display: none;
}

.\!h-full {
  height: 100% !important;
}

.h-24 {
  height: 6rem;
}

.w-auto {
  width: auto;
}

.w-24 {
  width: 6rem;
}

.\!max-w-\[320px\] {
  max-width: 320px !important;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-grow {
  flex-grow: 1;
}

.basis-2\/3 {
  flex-basis: 66.666667%;
}

.basis-4\/5 {
  flex-basis: 80%;
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.self-center {
  align-self: center;
}

.overflow-hidden {
  overflow: hidden;
}

.rounded-full {
  border-radius: 9999px;
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.p-4 {
  padding: 1rem;
}

.\!p-0 {
  padding: 0px !important;
}

.p-\[16px\] {
  padding: 16px;
}

.text-center {
  text-align: center;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.\!text-\[14px\] {
  font-size: 14px !important;
}

.uppercase {
  text-transform: uppercase;
}

.\!leading-tight {
  line-height: 1.25 !important;
}

.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

body {
  min-width: 360px;
}

.hl-accent {
  font-weight: 700;
  color: rgb(231, 75, 24);
}

.hl-second {
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(2 132 199 / var(--tw-text-opacity));
}

img {
  display: block;
  max-width: 100%;
}

img:not([src]):not([srcset]) {
  visibility: hidden;
}

.question {
  margin-bottom: 1.5rem !important;
  display: flex;
  align-items: center;
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
  padding: 0.75rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.question > svg {
  margin-right: 1rem;
  box-sizing: content-box;
  height: 2rem;
  width: 2rem;
  flex-shrink: 0;
  align-self: flex-start;
  border-radius: 9999px;
  border-width: 2px;
  border-style: solid;
  border-color: currentColor;
  padding: 0.5rem;
}

.answer {
  margin-bottom: 1.5rem !important;
}

.answer > img {
  float: left;
  margin-right: 1rem;
  margin-bottom: 1rem;
  height: 6rem;
  width: 6rem;
  border-radius: 9999px;
  -o-object-fit: cover;
     object-fit: cover;
}

.ingridients {
  margin-bottom: 4rem !important;
}

.ingridients__list {
  display: flex;
  list-style-type: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.ingridients__item {
  width: 28rem;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .ingridients__item {
    width: 32rem;
  }
}

.ingridients__img {
  margin-left: auto;
  margin-right: auto;
  display: block;
  height: 12rem;
  width: 12rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.ingridients__title {
  flex-grow: 1;
  text-align: center;
}

.ingridients__descr {
  margin-bottom: 0px !important;
  flex-grow: 1;
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / var(--tw-text-opacity));
}

.benefits {
  list-style-type: none;
}

.benefits > li {
  display: flex;
}

.benefits > li:not(:last-child) {
  margin-bottom: 1.5rem !important;
}

.benefits > li > p {
  margin-bottom: 0px;
}

.benefits > li > svg {
  margin-right: 1rem;
  height: 3rem;
  width: 3rem;
  flex-shrink: 0;
  vertical-align: middle;
}

.highlight {
  display: flex;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 20px;
  color: #fff;
  background-color: var(--channel-color-a);
}

.highlight__img-wrap,
.highlight__wrapper {
  flex-grow: 1;
  width: 50%;
}

.highlight__wrapper {
  padding: 30px;
}

h2.highlight__title {
  color: #fff;
}

.highlight__descr {
  font-style: italic;
  margin-bottom: 0 !important;
}

.highlight__img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-figure {
  margin: 0 auto 30px;
  max-width: 65%;
}

.p-figure__img {
  margin-bottom: 10px;
  border-radius: 20px;
  width: 100%;
  max-width: 100%;
}

.p-figure__title {
  text-align: center;
}

.p-article__ava {
  --size: 38px;
  display: inline-block;
  vertical-align: bottom;
  margin-right: 5px;
  border: 2px solid var(--common-color-y);
  border-radius: 50%;
  width: var(--size);
  height: var(--size);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
  transform: translateY(3px);
}

.p-article__speech {
  font-weight: 700;
  color: var(--common-color-y);
  text-transform: uppercase;
  letter-spacing: -0.045em;
}

h2.p-article__subtitle {
  width: 100%;
  font-weight: 700;
  font-size: 1.6rem;
}

.dm20-leaf-indice-items {
  margin-bottom: 0 !important;
}

.dm20-leaf-indice-item {
  padding-left: 30px;
  font-weight: 600;
  font-size: 1.4rem;
}

.p-article__gallery {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.p-article__gallery-img {
  flex: 1 1 auto;
  width: 50%;
  max-height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-article__img {
  margin-right: auto;
  margin-left: auto;
  max-height: 320px;
}

.p-article__img-animated {
  animation: 6s linear infinite Scale;
}

.p-article__highlight {
  font-weight: 700;
  color: var(--common-color-y);
}

.indice-articolo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
}

.highlight-text {
  margin: 30px 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 20px 0;
}

.p-speech {
  /* max-width: 80%; */
  padding: 16px;
  border-radius: 20px;
  font-weight: 700;
  font-style: italic;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 0 5px 2px #ff1978;
}

.p-speech--special {
  padding: 0;
}

.problems-list {
  margin: 0px !important;
  margin-bottom: 1.5rem;
  display: flex;
  list-style-type: none;
  flex-wrap: wrap;
  align-content: space-evenly;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.problems-list > li {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 9999px;
  border-width: 3px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgb(129 140 248 / var(--tw-border-opacity));
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  text-align: center;
}

.problems-list > li::before {
  content: "\ea04";
  font-family: "iconset";
  flex-shrink: 0;
  font-size: 26px;
  line-height: 1;
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity))
}

.problems-list > li:not(:last-child) {
  /* @apply mb-3; */
}

@media (min-width: 640px) {
  .sm\:float-left {
    float: left;
  }

  .sm\:mr-4 {
    margin-right: 1rem;
  }

  .sm\:max-w-\[80\%\] {
    max-width: 80%;
  }
}

@media (min-width: 768px) {
  .md\:float-right {
    float: right;
  }

  .md\:ml-10 {
    margin-left: 2.5rem;
  }

  .md\:mr-0 {
    margin-right: 0px;
  }

  .md\:flex {
    display: flex;
  }

  .md\:h-full {
    height: 100%;
  }

  .md\:w-full {
    width: 100%;
  }

  .md\:basis-\[320px\] {
    flex-basis: 320px;
  }

  .md\:basis-1\/5 {
    flex-basis: 20%;
  }

  .md\:flex-nowrap {
    flex-wrap: nowrap;
  }

  .md\:self-center {
    align-self: center;
  }

  .md\:rounded-none {
    border-radius: 0px;
  }

  .md\:p-0 {
    padding: 0px;
  }
}