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: #5287f6;
  --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: #5287f6;
  --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: 41%;
  top: 41%;
  margin: 0;
  width: auto;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  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 {
  flex: 1 1 min(50%, 260px);
  align-self: center;
  min-width: 260px;
  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);
  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%;
  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;
  color: #333;
}

#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: 24px;
  transform: translatey(3px);
  color: var(--background-color);
}

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

#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: 26px;
  }

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

@keyframes blink {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.comments {
  padding: 15px;
  background-color: #fff;
}

.comments__title {
  margin: 30px 0;
  font-size: 35px;
  font-weight: 700;
}

.comments__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comment {
  padding: 20px 0;
}

.comment:not(:last-of-type) {
  border-bottom: 1px solid #ebebeb;
}

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

.comment__ava {
  display: block;
  margin-right: 10px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.comment__heading {
  margin: 0;
  font-size: 21px;
}

.comment__content {
  padding-left: 60px;
  font-size: 20px;
}

.comment__content > p {
  margin: 0;
  font-size: 18px;
}

.comment__content > p + .comment__img {
  margin-top: 10px;
  border-radius: 8px;
}

.comment__img {
  display: inline-block;
  max-height: 300px;
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.comment__link {
  font-weight: 700;
  color: #B73537;
  font-size: 18px;
}

/* @tailwind base; */

.relative {
  position: relative;
}

.clear-both {
  clear: both;
}

.m-0 {
  margin: 0px;
}

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

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

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

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

.mr-3 {
  margin-right: 0.75rem;
}

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

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

.flex {
  display: flex;
}

.table {
  display: table;
}

.hidden {
  display: none;
}

.h-24 {
  height: 6rem;
}

.h-9 {
  height: 2.25rem;
}

.h-full {
  height: 100%;
}

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

.w-24 {
  width: 6rem;
}

.w-9 {
  width: 2.25rem;
}

.w-full {
  width: 100%;
}

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

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

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

.justify-center {
  justify-content: center;
}

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

.overflow-hidden {
  overflow: hidden;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.border {
  border-width: 1px;
}

.border-2 {
  border-width: 2px;
}

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

.border-dashed {
  border-style: dashed;
}

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

.border-rose-600 {
  --tw-border-opacity: 1;
  border-color: rgb(225 29 72 / var(--tw-border-opacity));
}

.border-slate-700 {
  --tw-border-opacity: 1;
  border-color: rgb(51 65 85 / var(--tw-border-opacity));
}

.bg-rose-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 205 211 / var(--tw-bg-opacity));
}

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

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

.p-4 {
  padding: 1rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

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

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

.font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

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

.uppercase {
  text-transform: uppercase;
}

.leading-tight {
  line-height: 1.25;
}

.text-primary {
  color: var(--color-primary);
}

.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);
}

.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);
}

:root {
  --color-primary: rgb(190 18 60);
  --color-alternative: rgb(87 87 87);
  /* --color-secondary: ; */
  /* --color-alert: ; */
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 360px;
  font-size: 18px;
}

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

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

.hl-accent {
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(190 18 60 / var(--tw-text-opacity));
}

.hl-orange {
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(245 158 11 / var(--tw-text-opacity));
}

.hl-second {
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(3 105 161 / var(--tw-text-opacity));
}

.main-text {
  text-align: justify;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.stats-list {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .stats-list {
    justify-content: center;
  }
}

.stats-list > li {
  display: flex;
  align-items: center;
}

.stats-list > li p {
  margin: 0px;
  font-weight: 600;
}

.stats-list__wrapper {
  margin-right: 1rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
}

@media not all and (min-width: 768px) {
  .stats-list__wrapper {
    width: 9rem;
  }
}

.circle {
  display: flex;
  height: 8rem;
  width: 8rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border-width: 8px;
  border-style: solid;
  border-color: var(--color-primary);
  background-color: var(--color-alternative);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1 !important;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.circle.medium {
  height: 6rem;
  width: 6rem;
  border-color: var(--color-alternative);
  background-color: var(--color-primary);
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.circle.small {
  height: 5rem;
  width: 5rem;
  border-color: var(--color-alternative);
  background-color: var(--color-primary);
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.styled-list {
  counter-reset: index;
  margin: 0 auto 16px;
  padding: 0;
  max-width: 460px;
}

.styled-list > li {
  counter-increment: index;
  display: flex;
  align-items: center;
  padding: 12px 0;
  box-sizing: border-box;
}

.styled-list > li::before {
  content: counters(index, ".", decimal-leading-zero);
  font-size: 1.5rem;
  text-align: right;
  font-weight: bold;
  min-width: 50px;
  padding-right: 12px;
  font-variant-numeric: tabular-nums;
  align-self: flex-start;
  background-image: linear-gradient(to bottom, #a90b30, rgb(245 158 11));
  background-attachment: fixed;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.styled-list > li + li {
  border-top: 2px solid rgb(51 65 85 / 40%);
}

.styled-list2 {
  margin-bottom: 1rem;
}

.styled-list2 > li {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
  border-radius: 0.375rem;
  padding: 1rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

@media (min-width: 640px) {
  .styled-list2 > li {
    max-width: 70%;
  }
}

.styled-list2 > li {
  background-image: linear-gradient(to bottom, rgb(185 28 28), rgb(3 105 161) );
  background-attachment: fixed;
}

.possibility-list {
  /* @apply */
}

.possibility-list > li {
  position: relative;
  display: flex;
  align-items: center;
}

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

.possibility-list > li::before {
  margin-right: 0.5rem;
  display: inline-block;
  height: 2rem;
  width: 2rem;
  flex-shrink: 0;
  content: "";
  background: url("../images/checkmark.svg") no-repeat center / contain;
}

.footer-order {
  text-align: center;
  padding: 0 0 20px 0;
}

.footer-order__btn {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  padding: 15px 25px;
  background-color: #B73537;
  border: 1px solid transparent;
  border-radius: 50px;
  font-size: 21px;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.footer-order__btn:focus,
.footer-order__btn:hover {
  background-color: #707070;
}

mark {
  --color1: springgreen;
  /* --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);
  }
}

@media not all and (min-width: 768px) {
  .max-md\:flex-wrap {
    flex-wrap: wrap;
  }
}

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

  .sm\:float-left {
    float: left;
  }

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

  .sm\:max-h-\[300px\] {
    max-height: 300px;
  }

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

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

  .sm\:basis-1\/2 {
    flex-basis: 50%;
  }

  .sm\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

@media (min-width: 768px) {
  .md\:basis-1\/3 {
    flex-basis: 33.333333%;
  }
}