html {
  scroll-behavior: smooth !important;
}

#order .shadow {
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
}

#ribbon path {
  fill: var(--ribbon-color);
}

#ribbon rect {
  fill: var(--ribbon-dark-color);
}

#order .order {
  --background-color: #2e89d3;
  --border-radius: 32px;
  --form-radius: calc(var(--border-radius) / 4);
  --font-size: 18px;
  --ribbon-size: 150px;
  --ribbon-color: rgb(175, 0, 0);
  --ribbon-dark-color: rgb(125, 0, 0);
  --grad-from: rgb(220, 220, 220);
  --grad-to: #2e89d3;
  --grad-direction: to bottom right;
  --form-gap: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 40px 0;
  border-radius: var(--border-radius);
  padding: 24px;
  background-color: #fff;
  gap: 32px 64px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#order .order__left {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 min(40%, 210px);
          flex: 1 1 min(40%, 210px);
  border-radius: var(--border-radius);
  padding: 8px;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--grad-direction)), color-stop(var(--grad-from)), to(var(--grad-to)));
  background: linear-gradient(var(--grad-direction), var(--grad-from), var(--grad-to));
  background-color: var(--background-color);
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

#order .order__inner {
  position: absolute;
  left: -17px;
  top: -17px;
  width: var(--ribbon-size);
  height: var(--ribbon-size);
}

#order .order__ribbon {
  width: 100%;
  height: 100%;
}

#order .order__discount {
  position: absolute;
  left: 40%;
  top: 40%;
  margin: 0;
  width: auto;
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  color: #fff;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

#order .order__product {
  display: block;
  margin-top: auto;
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
  max-height: 450px;
  -o-object-fit: contain;
     object-fit: contain;
}

#order .order__right {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 min(50%, 260px);
          flex: 1 1 min(50%, 260px);
  -ms-flex-item-align: center;
      align-self: center;

  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

#order .order__prices {
  margin: 0;
  margin-bottom: var(--form-gap);
  border-bottom: 1px solid #d5d5d5;
  padding: 0;
  padding-bottom: var(--form-gap);
}

#order .order__form {
  margin-bottom: var(--form-gap);
  border-bottom: 1px solid #d5d5d5;
  padding-bottom: var(--form-gap);
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

#order .order__prod-left {
  margin: 0;
  padding: 0;
}

#order .prod-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: calc(var(--font-size) - 2px);
  text-align: center;
}

#order .prod-left__text {
  margin-right: 6px;
}

#order .prod-left__pad {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  border-radius: 5px;
  padding: 8px 8px 6px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1;
  color: #fff;
/*  background-color: var(--background-color);*/
  background-color: #b51111;
}

#order .prod-left__pad b {
  -webkit-animation: 1s ease-in-out infinite blink;
          animation: 1s ease-in-out infinite blink;
}

#order .prod-left__pad--low {
  color: #fff;
  background-color: #b51111;
}

#order .form {
  width: 100%;
  font-family: inherit;
}

#order .form__group {
  position: relative;
  margin-bottom: calc(var(--form-gap) / 2);
  padding: var(--form-gap) 0 0;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  max-width: 320px;
  margin-right: auto;
  margin-left: auto;
}

#order .form__group:last-of-type {
  margin-bottom: calc(var(--form-gap) * 1.3);
}

#order .form__field {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  display: block;
  border: 1px solid var(--background-color);
  border-radius: var(--form-radius);
  padding: 8px 16px;
  width: 100%;
  font-family: inherit;
  font-size: var(--font-size);
  line-height: 1;
  text-align: left;
  outline: none;
}

#order .form__field::-moz-placeholder {
  color: transparent;
}

#order .form__field:-ms-input-placeholder {
  color: transparent;
}

#order .form__field::-webkit-input-placeholder {
  color: transparent;
}

#order .form__field::-ms-input-placeholder {
  color: transparent;
}

#order .form__field::placeholder {
  color: transparent;
}

#order .form__field:-moz-placeholder-shown ~ .form__label {
  top: calc(var(--form-gap) * 1.3);
  left: 1rem;
  font-size: var(--font-size);
  color: rgba(0, 0, 0, 0.5);
  cursor: text;
}

#order .form__field:-ms-input-placeholder ~ .form__label {
  top: calc(var(--form-gap) * 1.3);
  left: 1rem;
  font-size: var(--font-size);
  color: rgba(0, 0, 0, 0.5);
  cursor: text;
}

#order .form__field:placeholder-shown ~ .form__label {
  top: calc(var(--form-gap) * 1.3);
  left: 1rem;
  font-size: var(--font-size);
  color: rgba(0, 0, 0, 0.5);
  cursor: text;
}

#order .form__field:focus ~ .form__label {
  position: absolute;
  top: 0;
  left: 0.5rem;
  display: block;
  font-size: 0.8rem;
  color: #333;
}

#order .form__field:required, #order .form__field:invalid {
  -webkit-box-shadow: none;
          box-shadow: none;
}

#order .form__label {
  position: absolute;
  top: 0;
  left: 0.5rem;
  display: block;
  font-family: inherit;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-weight: 700;
  font-size: 0.8rem;
  color: #333;
}

#order .form__label > span {
  color: var(--grad-to);
}

#order .form__btn {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  display: block;
  margin-right: auto;
  margin-left: auto;
  border-radius: var(--form-radius);
  padding: 10px 16px;
  width: 100%;
  max-width: 320px;
  font-weight: 700;
  font-size: var(--font-size);
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff;
  background-color: var(--background-color);
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-transition-property: color, background-color, border-color;
  transition-property: color, background-color, border-color;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}

#order .form__btn:hover, #order .form__btn:focus {
  color: var(--background-color);
  background-color: #fff;
  border-color: currentColor;
}

#order .prices {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}

#order .prices__column {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
}

#order .prices__column.old {
  opacity: 0.7;
}

#order .prices__title {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  margin: 0;
  margin-bottom: 4px;
  padding: 0;
  font-weight: 700;
  font-size: 22px;
  text-align: center;
}

#order .prices__price {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  margin: 0;
  margin-top: auto;
  padding: 0;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
}

#order .prices__price--new {
  font-weight: 700;
  font-size: 28px;
  -webkit-transform: translatey(3px);
          transform: translatey(3px);
}

#order .prices__price--old {
  font-size: 24px;
}

#order .prices__price--old > span {
  text-decoration: line-through;
  text-decoration-color: #b61717;
  text-decoration-thickness: 3px;
}

@media screen and (min-width: 576px) {
  #order .prices__price--new {
    font-size: 34px;
  }

  #order .prices__price--old {
    font-size: 28px;
  }
}

@-webkit-keyframes blink {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes blink {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#comments.comments {
  /* @apply my-6; */
}

#comments .comments__title {
  /* @apply text-2xl font-bold mb-6 uppercase; */
}

#comments .comments__list {
  margin-left: 0;
  margin-bottom: 1.5rem;
}

#comments .comment {
  /* padding-top: 1rem; */
  padding-top: 0;
}

#comments .comment:not(:last-child) {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ced6e0;
}

#comments .comment__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.5rem;
}

#comments .comment__wrap {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

#comments .comment__img {
  display: block;
  border: 2px solid #ced6e0;
  border-radius: 100%;
  width: 48px;
  height: 48px;
}

#comments .comment__title {
  /* @apply text-lg leading-none font-bold mb-1; */
  font-weight: 700;
}

#comments .comment__date {
  /* @apply text-sm leading-none text-zinc-500; */
  color: #2e89d3;
  font-size: 0.75em;
  line-height: 1.2;
  font-weight: 500;
}

@media screen and (min-width: 520px) {
  #comments .comment__date::before {
    content: "·";
    display: inline-block;
    font-weight: 900;
    margin-left: .25rem;
    margin-right: .25rem;
  }

  #comments .comment__title {
    display: inline-block;
  }
  #comments .comment__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  #comments .comment__body {
    /* @apply ml-20; */
    margin-left: 4rem;
  }
}

#comments .comment__stars {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  font-size: 0;
}

/* #comments .comment__stars > svg {
  @apply w-3 h-3 block;
  color: #d80e2d;
  fill: currentColor;
} */

#comments .comment__content > p {
  /* @apply text-base; */
}

#comments .comment__content a {
  color: #ffc048;
  font-weight: 700;
}

#comments .comment__content > img {
  /* @apply block rounded-md shadow-sm max-w-full max-h-60; */
  display: block;
  border-radius: 0.5rem;
  max-height: 15rem;
  max-width: 100%;
}

#comments .comment__content > p + img {
  /* @apply mt-2; */
  margin-top: 0.5rem;
}

#comments .comment__content > p:first-child:first-letter {
  color: inherit;
  float: none;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  padding-top: inherit;
  padding-right: inherit;
  padding-left: inherit;
}

.comments__btn {
    font-family: PTSans-Bold,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: #d80e2d;
    border: 1px solid #d80e2d;
    border-radius: 3px;
    padding: 8px 16px;
    display: inline-block;
    -webkit-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}

.comments__btn:hover,
.comments__btn:focus {
  color: #d80e2d;
  background: #fff;
}

.comment__footer {
  margin-top: 8px;
}

.comment__btn {
  padding: 2px 7px;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 9999px;
  color: #2a2e2e;
  cursor: pointer;
  -webkit-transition: border-color 0.3s ease-in-out, border 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out, border 0.3s ease-in-out;
}

.comment__btn:not(:last-child) {
  margin-right: 5px;
}

.comment__btn:hover,
.comment__btn:focus {
  border: 1px solid currentColor;
}

.comment__btn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 700;
  font-size: 13px;
  color: inherit !important;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.comment__btn span::before {
  content: '';
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 4px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transition: -webkit-filter 0.3s ease-in-out;
  transition: -webkit-filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
}

.comment__like span::before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='25' height='26' fill='none' viewBox='0 0 25 26'%3e%3cpath fill='black' d='M24.2 9.916a3.323 3.323 0 0 0-2.187-1.3 3.446 3.446 0 0 0-.532-.038h-5.536V5.014c0-2.443-2.016-4.43-4.495-4.43a1.02 1.02 0 0 0-.93.596L5.883 11.46a.991.991 0 0 0-.088.407V24.43a1.01 1.01 0 0 0 1.018 1.003h13.099c.792 0 1.558-.277 2.161-.782a3.275 3.275 0 0 0 1.138-2.01l1.6-10.28a3.23 3.23 0 0 0-.613-2.444Zm-1.402 2.14-1.6 10.28a1.3 1.3 0 0 1-1.285 1.089H7.833V12.079l4.243-9.408c1.053.274 1.832 1.22 1.832 2.343v4.568c0 .554.456 1.004 1.019 1.004h6.57a1.294 1.294 0 0 1 1.061.521c.207.275.291.613.24.95Z'/%3e%3cpath fill='black' d='M6.813 23.426H3.336a1.292 1.292 0 0 1-1.299-1.28V14.15c0-.706.583-1.28 1.3-1.28h3.476c.563 0 1.019-.45 1.019-1.004s-.456-1.004-1.019-1.004H3.336C1.496 10.863 0 12.338 0 14.151v7.994c0 1.813 1.497 3.288 3.336 3.288h3.477a1.01 1.01 0 0 0 1.019-1.003c0-.555-.456-1.004-1.019-1.004Z'/%3e%3c/svg%3e");
}

.comment__like--plus {
  color: #2faa10;
  border-color: currentColor;
  cursor: auto;
}

.comment__dislike--minus {
  color: #d94f70;
  border-color: currentColor;
  cursor: auto;
}

.comment__like--plus span::before {
  color: #2faa10;
  -webkit-filter: brightness(0) saturate(100%) invert(71%) sepia(84%) saturate(4960%) hue-rotate(74deg) brightness(95%) contrast(87%);
          filter: brightness(0) saturate(100%) invert(71%) sepia(84%) saturate(4960%) hue-rotate(74deg) brightness(95%) contrast(87%);
}

.comment__dislike--minus span::before {
  color: #d94f70;
  -webkit-filter: brightness(0) saturate(100%) invert(45%) sepia(47%) saturate(1658%) hue-rotate(313deg) brightness(88%) contrast(92%);
          filter: brightness(0) saturate(100%) invert(45%) sepia(47%) saturate(1658%) hue-rotate(313deg) brightness(88%) contrast(92%);
}

.comment__dislike span::before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' fill='none' viewBox='0 0 26 26'%3e%3cpath fill='black' d='M1.147 16.015a3.323 3.323 0 0 0 2.186 1.301c.176.027.356.039.533.037H9.4v3.565c0 2.442 2.017 4.43 4.496 4.43.402 0 .767-.234.93-.596l4.636-10.279a.991.991 0 0 0 .088-.408V1.504C19.55.95 19.094.5 18.531.5H5.433c-.79 0-1.557.277-2.16.783a3.274 3.274 0 0 0-1.138 2.01l-1.6 10.28a3.23 3.23 0 0 0 .612 2.443Zm1.402-2.14 1.6-10.28a1.3 1.3 0 0 1 1.284-1.088h12.081v11.345l-4.244 9.409c-1.053-.274-1.832-1.22-1.832-2.343V16.35a1.01 1.01 0 0 0-1.018-1.004H3.849a1.294 1.294 0 0 1-1.061-.521 1.257 1.257 0 0 1-.239-.95Z'/%3e%3cpath fill='black' d='M18.533 2.506h3.477c.717 0 1.3.574 1.3 1.28v7.995c0 .705-.583 1.28-1.3 1.28h-3.477c-.562 0-1.018.45-1.018 1.004s.456 1.003 1.018 1.003h3.477c1.84 0 3.337-1.475 3.337-3.287V3.786c0-1.813-1.497-3.288-3.337-3.288h-3.477c-.562 0-1.018.45-1.018 1.004a1.01 1.01 0 0 0 1.018 1.004Z'/%3e%3c/svg%3e");
}

.comment__like:hover span::before,
.comment__like:focus span::before {
  -webkit-filter: brightness(0) saturate(100%) invert(71%) sepia(84%) saturate(4960%) hue-rotate(74deg) brightness(95%) contrast(87%);
          filter: brightness(0) saturate(100%) invert(71%) sepia(84%) saturate(4960%) hue-rotate(74deg) brightness(95%) contrast(87%);
  -webkit-transition: -webkit-filter 0.3s ease-in-out;
  transition: -webkit-filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
}

.comment__dislike:hover span::before,
.comment__dislike:focus span::before {
  -webkit-filter: brightness(0) saturate(100%) invert(45%) sepia(47%) saturate(1658%) hue-rotate(313deg) brightness(88%) contrast(92%);
          filter: brightness(0) saturate(100%) invert(45%) sepia(47%) saturate(1658%) hue-rotate(313deg) brightness(88%) contrast(92%);
  -webkit-transition: -webkit-filter 0.3s ease-in-out;
  transition: -webkit-filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
}

.comment__like:hover,
.comment__like:focus {
  color: #2faa10;
}

.comment__dislike:hover,
.comment__dislike:focus {
  color: #d94f70;
}

.hl-accent {
  font-weight: 700;
  color: var(--color-primary);
}

.hl-secondary {
  font-weight: 700;
  color: var(--color-secondary);
    -webkit-background-clip: text;
            background-clip: text;
}

/* lotteri */

.lotteri {
  margin-bottom: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  --_color: rgb(16, 123, 211);
  --_color-rgb: 16,123,211;
}

.lotteri__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  border-radius: 8px;
  border-width: 3px;
  border-style: dashed;
  border-color: var(--_color);
  background-image: -webkit-gradient(linear, left bottom, right top, from(var(--tw-gradient-stops)));
  background-image: linear-gradient(to top right, var(--tw-gradient-stops));
  --tw-gradient-from: rgb(24 24 27 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(24 24 27 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-to-position: 40%;
  padding: 8px;
}

@media (min-width: 768px) {

  .lotteri__container {
    padding: 16px;
  }
}

.lotteri__container {

  -webkit-box-shadow: 0 0 4px 0 rgba(var(--_color-rgb), 0.45);

          box-shadow: 0 0 4px 0 rgba(var(--_color-rgb), 0.45);
}

.lotteri__bg {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  background-image: url("../img/gifts-bg.png");
  opacity: 0.1;
  --tw-grayscale: grayscale(100%);
  -webkit-filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
          filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.lotteri__content {
  position: relative;
/*  z-index: 30;*/
  -ms-flex-item-align: center;
      align-self: center;
  padding: 8px;
}

.lotteri__heading {
  font-size: 70px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  color: var(--_color);
}

@media not all and (min-width: 640px) {

  .lotteri__heading {
    text-align: center;
  }
}

.lotteri__subheading {
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.025em;
  --tw-text-opacity: 1;
  color: rgb(128 125 127 / var(--tw-text-opacity));
}

@media not all and (min-width: 640px) {

  .lotteri__subheading {
    text-align: center;
  }
}

@media (min-width: 640px) {

  .lotteri__subheading {
    margin-bottom: 48px;
  }
}

.lotteri__wrap {
  position: relative;
/*  z-index: 30;*/
}

@media not all and (min-width: 640px) {

  .lotteri__wrap {
    display: none;
  }
}

.lotteri__img {
  max-height: 350px;
}

.lotteri__img--mob {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  display: block;
  max-height: 300px;
}

@media (min-width: 640px) {

  .lotteri__img--mob {
    display: none;
  }
}

.lotteri__list {
  margin: 0px !important;
  padding: 0px !important;
}

.lotteri__item {
  position: relative;
  margin: 0px !important;
  display: -webkit-box;
  display: -ms-flexbox;
/*  display: flex;*/
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px !important;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(46 45 44 / var(--tw-text-opacity));
}

.lotteri__item:not(:last-child) {
  margin-bottom: 12px !important;
}

.lotteri__item::before {
  margin-right: 6px;
  display: block;
  height: 24px;
  width: 24px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  --tw-content: '';
  content: var(--tw-content);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='32.000244140625 59.15949630737305 455.9960632324219 401.6855163574219'%3e%3cg%3e%3cpath d='M239.987 460.841a10 10 0 0 1-7.343-3.213L34.657 243.463A10 10 0 0 1 42 226.675h95.3a10.006 10.006 0 0 1 7.548 3.439l66.168 76.124c7.151-15.286 20.994-40.738 45.286-71.752 35.912-45.85 102.71-113.281 216.994-174.153a10 10 0 0 1 10.85 16.712c-.436.341-44.5 35.041-95.212 98.6-46.672 58.49-108.714 154.13-139.243 277.6a10 10 0 0 1-9.707 7.6z' data-name='Check' fill='%2306d200' opacity='1' data-original='black'/%3e%3c/g%3e%3c/svg%3e");
}

/* certificates */

.stamps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.stamps--form {
  position: relative;
  min-height: 300px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          margin: 0 auto;
}

.stamps--form .stamps__inner {
  position: static;
}

.stamps--form .stamps__wrapper--abs {
  max-height: 80px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.stamps__inner {
  position: relative;
}

.stamps__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}

@media (min-width: 768px) {

  .stamps__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}

.stamps__wrapper > img {
  pointer-events: none;
  display: block;
  max-height: 90px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.stamps__wrapper--abs {
  position: absolute;
  bottom: 0px;
  right: 0px;
}

mark {
    --color1: springgreen;
    --bg-height: 100%;

    all: unset;
    background-image: -webkit-gradient(linear, left top, left bottom, from(var(--color1)), to(var(--color1)));
    background-image: linear-gradient(var(--color1), var(--color1));
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0 var(--bg-height);
    -webkit-animation: highlight 1500ms 1 ease-out;
            animation: highlight 1500ms 1 ease-out;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-play-state: paused;
            animation-play-state: paused;
  }

@-webkit-keyframes highlight {
    to {
      background-size: 100% var(--bg-height);
    }
  }

@keyframes highlight {
    to {
      background-size: 100% var(--bg-height);
    }
  }

.tw-block {
  display: block;
}

.tw-inline-block {
  display: inline-block;
}

.tw-max-h-\[350px\] {
  max-height: 350px;
      max-width: 200px;
}

.tw-max-w-full {
  max-width: 100%;
}

:root {
  --color-primary: #2e89d3;
  --color-secondary: #ffb62e;
  --color-alternative: #66c5cc;
  /* --color-alert: ; */
}

::-webkit-backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #3b82f680;
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
}

::-ms-backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #3b82f680;
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
}

*,
::backdrop,
:after,
:before {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #3b82f680;
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
}

*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

::before,
::after {
  --tw-content: "";
}

body {
  min-width: 300px;
/*  overflow-x: hidden;*/
}

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

strong,
b {
  font-weight: 700;
}

.lead-block {
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.15;
}

.risk-list {
  margin: 0px;
  margin-bottom: 24px;
  padding: 0px;
  padding-left: 24px;
}

.risk-list > li:not(:last-child) {
  margin-bottom: 0.25rem;
}

.ingr-list {
  margin-bottom: 16px;
  list-style-type: none;
}

.ingr-list > li {
  border-radius: 16px;
  padding: 12px;
}

.ingr-list > li:nth-child(odd) {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.ingr-list > li:nth-child(even) {
      /* @apply ; */
    }

.ingr-list > li:not(:last-child) {
  margin-bottom: 8px;
}

.ingr-list > li > h3 {
  font-size: 19px;
  color: var(--color-primary);
}

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

.ingr-list > li > p:not(:last-child) {
  margin-bottom: 8px;
}

.comments__heading {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 700;
}

.comments__list {
  margin-bottom: 24px;
}

.comments__item:not(:last-child) {
  margin-bottom: 12px;
  border-bottom-width: 1px;
  padding-bottom: 12px;
}

.comment__top {
  margin-bottom: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.comment__top picture {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.comment__top img {
  display: block;
  height: 48px;
  width: 48px;
  border-radius: 9999px;
  -o-object-fit: cover;
     object-fit: cover;
}

.comment__top h4 {
  font-size: 18px;
  font-weight: 600;
}

.comment__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.comment__time {
  font-size: 15px;
  font-style: italic;
  --tw-text-opacity: 1;
  color: rgb(83 83 83 / var(--tw-text-opacity));
}

/* @apply sm:tw-ml-[64px]; */

.comment__content p:not(:last-child) {
  margin-bottom: 12px;
}

.comment__content a {
  font-weight: 700;
  color: var(--color-primary);
}

.disc-list {
  margin-bottom: 16px;
  list-style-type: disc;
  padding-left: 24px;
}

.disc-list > li {
  list-style-type: disc;
}

.disc-list > li:not(:last-child) {
  margin-bottom: 8px;
}

@media screen and (min-width:1024px) {
  .sidebar {
    display: none;
  }
}

.dg-figure > figcaption {
    padding: 5px;
    background-color: #0c0e11;
    color: #fff;
    font-size: 15px !important;
  }

.dg-two-col {
  margin-top: 2.4rem;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dg-two-col__wrapper {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
    min-width: 260px;
  }

.dg-two-col__wrapper > div {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: #2e89d3;
      z-index: -1;
      -webkit-transform: rotate(-5deg) translate(-.5rem, -.7rem);
              transform: rotate(-5deg) translate(-.5rem, -.7rem);
      border-radius: 1rem;
      -webkit-box-shadow: 0 0 3px 0 rgb(0 0 0 /30%);
              box-shadow: 0 0 3px 0 rgb(0 0 0 /30%);
    }

.dg-two-col > p {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
    padding: 20px;
    font-style: italic;
  }

.dg-two-col img {
    display: block;
    border-radius: 1rem;
    -webkit-box-shadow: -0.15rem -0.2rem 0.5rem 0 rgb(0 0 0 / 30%);
            box-shadow: -0.15rem -0.2rem 0.5rem 0 rgb(0 0 0 / 30%);
  }

.section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.header__title {
  margin-bottom: 0 !important;
}

.content .dg-warn-list {
  list-style: none;
  margin-left: 0.5rem;
}

.content .dg-warn-list > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

  }

.content .dg-warn-list > li::before {
      content: url("../img/warning.svg");
      display: inline-block;
      vertical-align: middle;
      margin-right: 0.5rem;
      width: 1.5rem;
      height: 1.5rem;
      -ms-flex-negative: 0;
          flex-shrink: 0;
    }

.content .dg-warn-list > li:not(:last-child) {
      margin-bottom: 0.5rem;
    }

.product {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 70%;
}

.feedburner,
.widget--latest,
.widget--events {
  display: none;
}

@media screen and (min-width:576px) {
  .product {
    float: right;
    width: max(33%, 270px);
    max-width: 100%;
  }
}

.dg-special-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.dg-special-block__left {
    margin-right: 1rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }

.dg-special-block__left img {
      display: block;
      width: 5rem;
      height: 5rem;
      border-radius: 100%;
    }

.dg-special-block__top {
    color: #fff;
  }

.dg-special-block__top > h2 {
      font-weight: 700;
      font-size: 2.4rem;
      line-height: 1.2;
      color: #2e89d3;
    }

.dg-special-block__top > h5 {
      font-style: italic;
      color: rgb(235, 235, 235);
      margin-bottom: 1.4rem;
    }

.dg-special-block__top > span {
      position: relative;
      display: block;
      margin-bottom: 2rem;
      margin-left: -6rem;
      padding-bottom: 1rem;
      color: rgb(215, 215, 215);
    }

.dg-special-block__top > span::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        border-bottom: 3px solid #2e89d3;
        width: 33%;
        width: max(33%, 130px);
        height: 100%;
      }

.dg-special-block__list {
    margin-left: -6rem;
    color: rgb(235, 235, 235);
  }

.dg-special-block__list > li {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    }

.dg-special-block__list > li:not(:last-child) {
        margin-bottom: 0.7rem;
      }

.dg-special-block__list > li::before {
        content: url("../img/checkmark2.svg");
        display: inline-block;
        margin-right: 1rem;
        width: 1.3rem;
        height: 1.3rem;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        color: #fff;
      }

@media screen and (min-width: 769px) {
      .dg-special-block__left img {
        width: 10rem;
        height: 10rem;
      }
      .dg-special-block__top > span {
        margin-left: 0;
      }

    .dg-special-block__list {
      margin-left: -11rem;
    }
}

.is-mobile {
  display: block;
}

.is-desktop {
  display: none;
}

@media screen and (min-width: 1024px) {
  .is-desktop {
    display: block;
  }

  .is-mobile {
    display: none;
  }
  .widget--latest,
  .widget--events {
    display: block;
  }

  .navbar-custom {
    display: none;
  }

  .sidebar > .block.widget {
    margin-bottom: 0.5rem;
  }
    .dg-special-block__left {
      margin-right: 2rem;
    }

      .dg-special-block__left img {
        width: 14rem;
        height: 14rem;
      }

    .dg-special-block__list {
      margin-left: 0;
    }
}

@media (min-width: 768px) {

  .md\:tw-float-right {
    float: right;
  }

  .md\:tw-ml-\[16px\] {
    margin-left: 16px;
  }

  .md\:tw-w-\[360px\] {
    width: 360px;
  }
}


@media (max-width: 600px) {
    .lotteri__item {
        width: 80%;
    }
}

@media (max-width: 376px) {


    .lotteri__heading {
        font-size: 47px;
    }

   

    .lotteri__item {
        font-size: 12px;
    }
}