img-comparison-slider {
  --divider-width: 2px;
    --divider-color: #c0c0c0;
    --default-handle-opacity: 0.3;
  visibility: hidden;
  display: inline-block;
}

img-comparison-slider [slot='second'] {
  display: none;
}

img-comparison-slider.rendered {
  visibility: inherit;
}

img-comparison-slider.rendered [slot='second'] {
  display: unset;
}

.custom-animated-handle {
  transition: transform 0.2s;
  animation: magnifyBtns 2s infinite ease-in;
}

.slider-with-animated-handle:hover .custom-animated-handle {
  transform: scale(1.2);
  animation-play-state: paused;
}

@keyframes magnifyBtns {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

img-comparison-slider figure figcaption {
  /* @apply tw-absolute */
}

img-comparison-slider .before figcaption,
img-comparison-slider .after figcaption {
    background: #fff;
    border: 1px solid #c0c0c0;
    border-radius: 12px;
    color: #2e3452;
    opacity: 0.8;
    padding: 12px !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    line-height: 100%;
  }

img-comparison-slider .before figcaption {
  left: 12px;
}

img-comparison-slider .after figcaption {
  right: 12px;
}

html {
  scroll-behavior: smooth !important;
}

#order .shadow {
  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: var(--color-primary);
  --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: var(--color-primary);
  --grad-direction: to bottom right;
  --form-gap: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 40px 0;
  border-radius: var(--border-radius);
  padding: 24px;
  background-color: #fff;
  gap: 32px 64px;
  box-sizing: border-box;
}

#order .order__left {
  position: relative;
  display: flex;
  flex: 1 1 min(40%, 210px);
  border-radius: var(--border-radius);
  padding: 8px;
  background: linear-gradient(var(--grad-direction), var(--grad-from), var(--grad-to));
  background-color: var(--background-color);
  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: 48%;
  top: 48%;
  margin: 0;
  width: auto;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  text-align: center;
  color: #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}

#order .order__sale {
  position: absolute;
  left: 15px;
  top: 15px;
  width: 90px;
  height: 90px;
  animation: magnifyRotate 4s linear infinite;
}

@keyframes magnifyRotate {
  0%, 100% {
    transform: scale(0.95) rotate(-5deg);
  }

  50% {
    transform: scale(1.1) rotate(25deg);

  }
}

#order .order__sale-img {
  width: 100%;
  height: 100%;
  fill: rgb(125, 0, 0);
}

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

#order .order__right {
  flex: 1 1 min(50%, 260px);
  align-self: center;
/*  min-width: 260px;*/
  box-sizing: inherit;
  width: 100%;
}

#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);
  box-sizing: inherit;
}

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

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

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

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

#order .prod-left__pad b {
  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;
  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.5);
}

#order .form__field {
  box-sizing: inherit;
  display: block;
  border: 1px solid var(--background-color);
  border-radius: var(--form-radius);
  padding: 8px 16px;
  width: 100%;
  height: auto;
  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::placeholder {
  color: transparent;
}

#order .form__field:-moz-placeholder-shown ~ .form__label {
  top: calc(var(--form-gap) * 1.5);
  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.5);
  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 {
  box-shadow: none;
}

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

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

#order .form__btn {
  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;
  transition-property: color, background-color, border-color;
  transition-duration: 0.3s;
  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 {
  box-sizing: inherit;
  display: flex;
  justify-content: center;
  gap: 16px;
}

#order .prices__column {
  box-sizing: inherit;
  display: flex;
  flex-direction: column;
  width: 50%;
}

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

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

#order .prices__price {
  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;
  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;
  }
}

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

.comment-avatar {
  margin-top: 8px;
  margin-right: 20px;
  border-radius: 50%;
  height: 35px;
}

@media (max-width: 1024px) {
  .comment-avatar {
    margin-right: 10px;
  }
}

.comment-top-row {
  display: flex;
  margin-bottom: 10px;
}

.comment-author {
  padding-bottom: 5px;
  font-weight: 500;
  font-size: 16px;
  color: rgb(36, 36, 36);
}

@media (max-width: 1024px) {
  .comment-author {
    font-size: 15px;
  }
}

.comment-author-and-date {
  margin-top: 7px;
  margin-right: 15px;
}

p.comment-content-value {
  margin-top: -22px;
  margin-left: 55px;
}

.comments {
  margin-bottom: 40px;
}

.comments__title {
  margin-bottom: 20px;
  font-size: 2rem;
}

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

.comment__top {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.comment__avatar {
  margin-right: 15px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.comment__info {
  margin-right: auto;
}

.comment__author {
  font-weight: 700;
  font-size: 18px;
  white-space: nowrap;
}

.comment__time {
  margin-top: auto;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  white-space: nowrap;
  color: #666;
}

.comment__text {
  margin: 0;
}

.comment__stars {
  display: flex;
}

.comment__stars > .star {
  margin-right: 7px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: rgb(245, 195, 16);
}

.comment__stars > .star--empty {
  fill: #c7c7c7;
}

.comment__rating {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
}

.comment__content {
  font-size: 17px;
  color: #333;
}

.comment__text ~ .comment__img {
  margin-top: 10px;

}

.comment__img {
  max-height: 200px;
  margin-top: 10px;
}

.comment .comment__link {
  position: relative;
  font-weight: 700;
  text-decoration: none;
  color: rgb(224, 62, 82);
}

.comment .comment__link::before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(100% + 2px);
    width: 100%;
    height: 1px;
    background-color: rgb(224, 62, 82);
  }

.comment__footer {
  margin-top: 16px;
}

.comment__btn {
  padding: 2px 7px;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 9999px;
  color: #2a2e2e;
  cursor: pointer;
  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: flex;
  align-items: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 13px;
  color: inherit !important;
  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;
  transition: 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;
  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;
  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 {
  filter: brightness(0) saturate(100%) invert(71%) sepia(84%) saturate(4960%) hue-rotate(74deg) brightness(95%) contrast(87%);
  transition: filter 0.3s ease-in-out;
}

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

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

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

.deal-wheel-section {
  margin-left: auto;
  margin-right: auto;
  margin-top: 3rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  overflow: hidden;
}

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

  .deal-wheel-section {
    flex-wrap: wrap;
  }
}

.deal-wheel-content {
  align-self: center;
  text-align: center;
}

.deal-wheel-title {
  margin-bottom: 2.25rem;
}

@keyframes tw-pulse {

  50% {
    opacity: .5;
  }
}

.deal-wheel-title {
  animation: tw-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
}

.deal-wheel-subtitle {
  margin-bottom: 2.5rem;
  text-align: center;
}

.deal-wheel-btn {
  border-radius: 1rem;
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / var(--tw-bg-opacity));
  padding: 1rem;
  font-size: 18px !important;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1 !important;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  border: 2px solid rgb(22 163 74);
}

#dealWheel img {
  margin-bottom: 0px !important;
  border: 0 none;
}

.deal-wheel {
  --size: clamp(250px, 80vmin, 700px);
  --lg-hs: 0 3%;
  --lg-stop: 50%;
  --lg: linear-gradient(hsl(var(--lg-hs) 0%) 0 var(--lg-stop), hsl(var(--lg-hs) 20%) var(--lg-stop) 100%);

  position: relative;
  display: grid;
  align-items: center;
  grid-gap: calc(var(--size) / 20);
  grid-template-areas: "spinner" "trigger";
  font-size: calc(var(--size) / 21);
}

.deal-wheel > * {
  grid-area: spinner;
}

.deal-wheel__images img,
.ticker img {
  display: block;
  height: auto;
  max-width: 100%;
  margin-bottom: 0 !important;
}

.spinner {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-areas: "spinner";
  margin: 0 !important;
  border-radius: 50%;
  padding: 0;
  width: var(--size);
  height: var(--size);
  max-width: 529px;
  max-height: 529px;
  background: none !important;
  transform: rotate(calc(var(--rotate, 25) * 1deg));
}

.spinner * {
  grid-area: spinner;
}

.prize {
  display: flex;
  align-items: center;
  padding: 0 calc(var(--size) / 6) 0 calc(var(--size) / 20);
  width: 50%;
  height: 50%;
  font-size: 0;
  transform: rotate(var(--rotate));
  transform-origin: center right;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.ticker {
  max-width: 528px;
  transform: rotate(calc(var(--rotate, 25) * 1deg));
  transition-duration: 4.5s;
  pointer-events: none;
}

.ticker.slow {
  animation: rotate 120s linear infinite;
}

.is-spinning .spinner {
  transition: transform 8s cubic-bezier(0.1, -0.01, 0, 1);
}

.is-spinning .ticker {
  transition: transform 8s cubic-bezier(0.1, -0.01, 0, 1);
}

.ticker {
  transition-duration: 4.5s;
  pointer-events: none;
}

.deal-wheel {
  max-width: 529px;
  max-height: 529px;
  pointer-events: none;
}

@media (max-width: 1300px) {
  .deal-wheel {
    max-width: 484px;
    max-height: 484px;
  }

  .spinner {
    max-width: 484px;
    max-height: 484px;
  }
}

@media (max-width: 767px) {
  .deal-wheel {
    right: 0;
    top: 100%;
    max-width: 300px;
    max-height: 300px;
    position: static;
  }

  .spinner {
    max-width: 300px;
    max-height: 300px;
  }

  .deal-wheel__images {
    max-width: 300px;
    max-height: 300px;
  }

  .ticker {
    max-width: 300px;
    max-height: 300px;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ! tailwindcss v3.3.3 | MIT License | https://tailwindcss.com */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

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

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

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
*/

html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  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"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

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

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden] {
  display: none;
}

*, ::before, ::after {
  --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: rgb(59 130 246 / 0.5);
  --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 {
  --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: rgb(59 130 246 / 0.5);
  --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:  ;
}

/* lotteri */

.lotteri {
  clear: both;
  margin-bottom: 32px;
  display: flex;
  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;
}

.lotteri__container {
  position: relative;
  display: flex;
  gap: 16px;
  border-radius: 8px;
  border-width: 3px;
  border-style: dashed;
  --tw-border-opacity: 1;
  border-color: rgb(45 3 128 / var(--tw-border-opacity));
  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 {

    box-shadow: 0 0 4px 0 #2d038073;
  }

.lotteri__bg {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  background-image: url("../img/gifts-bg2.png");
  opacity: 0.1;
  --tw-grayscale: grayscale(100%);
  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;
  align-self: center;
}

.lotteri__heading {
  font-size: 70px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  --tw-text-opacity: 1;
  color: rgb(45 3 128 / var(--tw-text-opacity));
}

@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-bottom: 16px;
  margin-left: auto;
    margin-right: auto;
  max-height: 300px;
}

@media (min-width: 640px) {

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

.lotteri__item {
  position: relative;
/*  display: flex;*/
  align-items: center;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(46 45 44 / var(--tw-text-opacity));
}

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

.lotteri__item::before {
  margin-right: 6px;
  display: inline-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 */

.certificates-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.certificates-container.certificates-container--absolute {
  position: absolute;
  left: 50%;
  bottom: -50px;
  --tw-translate-x: -50%;
  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));
}

.certificates-container.certificates-container--form {
  position: absolute;
  right: 8px;
  bottom: 8px;
  gap: 8px;
}

.certificates-container > img {
  pointer-events: none;
  height: 100%;
  max-height: 80px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.certificates-container.certificates-container--form > img {
  max-height: 80px;
}

.tw-absolute {
  position: absolute;
}

.tw-relative {
  position: relative;
}

.tw-right-3 {
  right: 0.75rem;
}

.tw-top-3 {
  top: 0.75rem;
}

.tw-clear-both {
  clear: both;
}

.\!tw-m-0 {
  margin: 0px !important;
}

.\!tw-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.\!tw-my-\[42px\] {
  margin-top: 42px !important;
  margin-bottom: 42px !important;
}

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

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

.tw-mb-3 {
  margin-bottom: 0.75rem;
}

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

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

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

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

.tw-block {
  display: block;
}

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

.\!tw-h-20 {
  height: 5rem !important;
}

.tw-max-h-\[250px\] {
  max-height: 250px;
}

.\!tw-w-20 {
  width: 5rem !important;
}

.\!tw-w-full {
  width: 100% !important;
}

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

.tw-max-w-\[768px\] {
  max-width: 768px;
}

@keyframes tw-pulse {

  50% {
    opacity: .5;
  }
}

.tw-animate-pulse {
  animation: tw-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.tw-rounded-\[16px\] {
  border-radius: 16px;
}

.tw-rounded-xl {
  border-radius: 0.75rem;
}

.tw-border-\[3px\] {
  border-width: 3px;
}

.tw-border-solid {
  border-style: solid;
}

.tw-border-\[\#333\] {
  --tw-border-opacity: 1;
  border-color: rgb(51 51 51 / var(--tw-border-opacity));
}

.tw-border-primary {
  border-color: var(--color-primary);
}

.tw-bg-primary {
  background-color: var(--color-primary);
}

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

.tw-px-\[16px\] {
  padding-left: 16px;
  padding-right: 16px;
}

.tw-py-\[8px\] {
  padding-top: 8px;
  padding-bottom: 8px;
}

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

.tw-text-right {
  text-align: right;
}

.tw-text-\[19px\] {
  font-size: 19px;
}

.tw-text-\[20px\] {
  font-size: 20px;
}

.tw-text-\[22px\] {
  font-size: 22px;
}

.tw-font-bold {
  font-weight: 700;
}

.tw-font-extrabold {
  font-weight: 800;
}

.tw-uppercase {
  text-transform: uppercase;
}

.tw-italic {
  font-style: italic;
}

.\!tw-text-white {
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
}

.tw-text-red-600 {
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity));
}

.\!tw-no-underline {
  text-decoration-line: none !important;
}

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

.tw-outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.tw-transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

:root {
  --color-primary: #b02721ff;
  --color-primary-light: #13322b;
  --color-secondary: #ed6e00;
  --color-alternative: #12322bff;
  --color-alert: #ff0000;
}

*,
::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 {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

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

body {
  /* font-size: 18px; */
  min-width: 300px;
  overflow-x: hidden !important;
  /* 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; */
}

main {
  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;
}

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

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

.dg-question {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(6 78 59 / var(--tw-bg-opacity));
  padding: 0.5rem;
  font-weight: 700;
  line-height: 1.25;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

/* .dg-question::before {

} */

.dg-answer {
  margin-left: 0.5rem;
  border-left-width: 3px;
  border-color: var(--color-alternative);
  padding-left: 0.5rem;
}

.dg-ava {
  float: left;
  margin-right: 0.5rem !important;
  margin-bottom: 0.5rem !important;
  height: 4rem !important;
  width: 4rem !important;
  border-radius: 9999px;
}

.dg-ava-int {
  margin-right: 0.5rem !important;
  height: 4rem !important;
  width: 4rem !important;
  border-radius: 9999px;
}

.dg-question-wrap {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.signs-list {
  margin-bottom: 0px !important;
  list-style-type: none;
  counter-reset: signs;
}

.signs-list > li {
  position: relative;
  display: flex;
  align-items: center;
  line-height: 1.25;
  counter-increment: signs;
}

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

.signs-list > li::before {
  content: counter(signs);
  margin-right: 1rem;
  height: 2rem;
  width: 2rem;
  flex-shrink: 0;
  align-self: baseline;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(30 58 138 / var(--tw-bg-opacity));
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.dg-table {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dg-table__row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

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

@media (min-width: 768px) {

  .dg-table__row {
    gap: 2rem;
  }
}

.dg-table__row:not(:last-child) {
  border-bottom-width: 1px;
  border-style: solid;
  padding-bottom: 1rem;
}

.dg-table__col:nth-child(1) {
  width: 20%;
}

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

  .dg-table__col:nth-child(1) {
    width: 100%;
  }
}

.dg-table__col:nth-child(2), .dg-table__col:nth-child(3) {
  width: 40%;
  text-align: center;
}

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

  .dg-table__col:nth-child(2), .dg-table__col:nth-child(3) {
    width: calc(50% - 0.5rem);
  }
}

/* .dg-table__col:nth-child(2) .dg-table__content {
} */

.dg-table__adv {
  display: inline-block;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(134 239 172 / var(--tw-bg-opacity));
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 5px;
  padding-bottom: 5px;
  --tw-text-opacity: 1 !important;
  color: rgb(0 0 0 / var(--tw-text-opacity)) !important;
}

.dg-table__disadv {
  display: inline-block;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(248 113 113 / var(--tw-bg-opacity));
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 5px;
  padding-bottom: 5px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.dg-table__subtitle {
  margin: 0px !important;
}

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

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

.dg-table__content > p,
.dg-table__content > ul {
  margin-bottom: 0px !important;
  line-height: 1.1 !important;
}

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

  .dg-table__content > p,
.dg-table__content > ul {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.dg-table__title {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.dg-table__subtitle {
  font-weight: 700;
}

.dg-table__title {
  font-weight: 700;
}

.benefits-list {
  margin-bottom: 2rem;
  list-style-type: none !important;
}

.benefits-list > li {
  position: relative;
  margin-bottom: 0px;
  margin-left: 40px;
  padding: 12px;
}

.benefits-list > li::before {
  position: absolute;
  left: -40px;
  top: 9px;
  height: 32px;
  width: 32px;
  background-image: url("../img/checkmark.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  --tw-content: '';
  content: var(--tw-content);
      /* tw-bg-['url("../img/checkmark.png")'] */
}

.benefits-list > li:nth-child(odd) {
  border-radius: 16px;
  border-width: 1px;
}

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

mark {
  --color1: rgb(39 0 255 / 33%);
  /* --color2: springgreen; */
  --bg-height: 100%;

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

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

@keyframes scroll {
  0% {
    left: 0px;
  }
  100% {
    left: -1300px;
  }
}

.quotation {
  position: relative;
  margin-top: 24px;
  margin-bottom: 24px;
  transition: opacity 0.8s ease-in, transform 0.8s ease-in;
}

.quotation--image {
  margin-top: 32px;
  margin-bottom: 32px;
  gap: 16px;
}

@media (min-width: 640px) {

  .quotation--image {
    display: flex;
  }
}

/* &--anim-right {
    @apply tw-translate-x-[300px] tw-opacity-0 tw-scale-[0.2] tw-invisible;
  }

  &--anim-left {
    @apply tw-translate-x-[-300px] tw-opacity-0;
  } */

/* &&--visible {
    @apply tw-translate-x-0 tw-opacity-100 tw-scale-100 tw-visible;
  } */

.quotation__image {
  left: 44px;
  top: -24px;
  z-index: 2;
  height: 48px;
  width: 48px;
  flex-shrink: 0;
}

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

  .quotation__image {
    position: absolute;
  }
}

@media (min-width: 640px) {

  .quotation__image {
    height: 90px;
    width: 90px;
  }
}

.quotation__image > img {
  border-radius: 9999px;
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.quotation__image > a img {
  border-radius: 9999px;
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.quotation__wrap {
  position: relative;
  border-radius: 16px;
  --tw-bg-opacity: 1;
  background-color: rgb(245 247 247 / var(--tw-bg-opacity));
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 768px) {

  .quotation__wrap {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.quotation__wrap > p {
  margin-top: 0px;
  margin-bottom: 0px;
  -webkit-hyphens: auto;
          hyphens: auto;
  overflow-wrap: break-word;
  font-weight: 500;
}

.quotation__wrap > p:first-child::before {
        content: ",,";
        position: absolute;
        left: 16px;
        top: -12px;
        --tw-rotate: 180deg;
        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));
        font-size: 72px;
        font-style: normal;
        line-height: 1;
        letter-spacing: -6px;
      }

@media (min-width: 768px) {

  .quotation__wrap > p:first-child::before {
    left: 24px;
  }
}

.quotation__wrap > p:not(:last-child) {
  margin-bottom: 0.75rem;
}

.problems-list {
  margin: 0px;
  display: flex;
  list-style-type: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 0px;
}

.problems-list > li {
  margin: 0px;
  display: flex;
  width: calc(100% / 2 - 32px / 1);
  max-width: 160px;
  flex-direction: column;
  align-items: center;
  padding: 0px;
}

@media (min-width: 640px) {

  .problems-list > li {
    max-width: 270px;
  }
}

@media (min-width: 1024px) {

  .problems-list > li {
    width: calc(100% / 3 - 32px / 2);
  }
}

.problems-list > li > div {
  margin-bottom: 8px;
  margin-top: 0px;
  height: 128px;
  width: 128px;
  border-radius: 9999px;
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
  --tw-gradient-from: var(--color-primary) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  --tw-gradient-to: var(--color-secondary) var(--tw-gradient-to-position);
  padding: 3px;
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.problems-list > li > div > img {
  margin: 0px;
  height: 100%;
  width: 100%;
  border-radius: 9999px;
  -o-object-fit: cover;
     object-fit: cover;
}

.problems-list > li > div > a img {
  margin: 0px;
  height: 100%;
  width: 100%;
  border-radius: 9999px;
  -o-object-fit: cover;
     object-fit: cover;
}

.problems-list > li > span {
  margin-bottom: 0px;
  display: block;
  text-align: center;
  font-weight: 600;
  line-height: 1.25;
}

.simptoms-list {
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.simptoms-list > li {
  width: 100%;
  max-width: 120px;
}

@media (min-width: 640px) {

  .simptoms-list > li {
    max-width: 140px;
  }
}

.simptoms-list > li:hover > div {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.simptoms-list > li > div {
  margin-bottom: 8px;
  height: 100px;
  width: 100px;
  overflow: hidden;
  border-radius: 9999px;
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

@media (min-width: 640px) {

  .simptoms-list > li > div {
    height: 140px;
    width: 140px;
  }
}

.simptoms-list > li > div img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.simptoms-list > li > span {
  display: block;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
}

.heart-anim {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  width: 100%;
  max-width: 90%;
}

@media (min-width: 768px) {

  .heart-anim {
    float: right;
    margin-left: 16px;
    width: 33.333333% !important;
  }
}

.heart-anim {
  animation-name: anime;
	animation-duration: 300ms;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-timing-function: ease-in;
}

@keyframes anime {
	from {
		transform: scale(1);
	}
	to {
		transform: scale(0.95);
	}
}

.first-letter\:tw-uppercase::first-letter {
  text-transform: uppercase;
}

.hover\:\!tw-bg-white:hover {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity)) !important;
}

.hover\:\!tw-text-primary:hover {
  color: var(--color-primary) !important;
}

.focus\:\!tw-bg-white:focus {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity)) !important;
}

.focus\:\!tw-text-primary:focus {
  color: var(--color-primary) !important;
}

@media (min-width: 768px) {

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

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

  .md\:\!tw-w-1\/3 {
    width: 33.333333% !important;
  }

  .md\:\!tw-max-w-\[70\%\] {
    max-width: 70% !important;
  }

  .md\:tw-max-w-\[50\%\] {
    max-width: 50%;
  }
}




@media (max-width: 1100px) {
    #order .prices__title {
        padding: 0 30px;
    }
}

@media (max-width: 999px) {
    #order .prices__title {
        padding: 0 0px;
    }

    #order .order__product {
        margin-top: 108px;
    }

    .left-blok {
        display: none;
    }
}


@media (max-width: 770px) {
    #order .prices__title {
        padding: 0 30px;
    }
}

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





@media (max-width:500px) {
    .stamps__wrapper--abs {
        right: 114px;
    }

    .prod-img {
        max-height: 350px;
        max-width: 200px;
    }

    .stamps__wrapper--abs {
        bottom: -10px;
    }

    .lotteri__heading {
        color: var(--_color);
        font-size: 40px;
    }

    .comment__time {
        font-size: 11px;
    }

    .comment__avatar {
        width: 50px;
        height: 50px;
        object-fit: contain;
    }

    .comment__stars>.star {
        height: 18px;
        margin-right: 7px;
        width: 15px;
    }

    .comment__author {
        font-size: 15px;
    }

    .lotteri__item {
        font-size: 14px;
    }

    .p-compound__img-wrap {
        width: 85px;
    }

    .certificates-container.certificates-container--form>img {
        max-height: 62px;
    }
}
