.swiper {
  margin: -40px 0 20px;
  padding-top: 40px !important;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

.swiper .swiper-slide {
  width: auto;
  pointer-events: none;
}

.swiper img {
  display: block !important;
  margin: 0 !important;
  width: 250px;
  height: 250px;
  pointer-events: none;
}

.swiper__win-arrow {
  --tw-text-opacity: 1;
  position: absolute;
  left: 50%;
  top: 40px;
  z-index: 50;
  width: 90px;
  height: 60px;
  color: rgb(220 38 38 / var(--tw-text-opacity));
  fill: currentcolor;
  transform: translateX(-50%);
}

@keyframes bounceArr {
  0%,
  100% {
    transform: translateX(-50%) translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }

  50% {
    transform: translateX(-50%);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

.anim--arrow-bounce {
  animation: bounceArr 1s infinite;
}

.p-gift {
  margin-bottom: 40px;
  font-family: inherit;
}

.p-gift__title {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 1.9rem;
  text-align: center;
}

.p-gift__highlight {
  font-weight: 700;
  text-transform: uppercase;
}

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

.p-gift__btn {
  display: inline-block;
  border: none;
  border-radius: 9999px;
  padding: 15px 20px;
  box-shadow: 0 0 0 0 rgb(224, 62, 82);
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: #fff;
  background-color: rgb(224, 62, 82);
  background-image: linear-gradient(
    0deg,
    rgb(224, 62, 82),
    rgba(224, 62, 82, 0.6)
  );
  animation: 3s linear infinite pulse-red;
  cursor: pointer;
}

.p-gift__btn:disabled {
  cursor: not-allowed;
}

.p-gift__btn--win {
  box-shadow: 0 0 0 0 rgb(224, 62, 82);
  background-image: linear-gradient(
    0deg,
    rgb(95, 139, 130),
    rgba(95, 139, 130, 0.6)
  );
  background-color: rgb(95, 139, 130);
  animation: 1.4s linear infinite pulse-win;
}

.product-block {
  display: none;
}

@keyframes pulse-red {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    transform: scale(0.95);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    transform: scale(1);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    transform: scale(0.95);
  }
}

@keyframes pulse-win {
  0% {
    box-shadow: 0 0 0 0 rgba(95, 139, 130, 0.7);
    transform: scale(0.95);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    transform: scale(1);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    transform: scale(0.95);
  }
}

.spinner-border {
  --bs-spinner-width: 1em;
  --bs-spinner-height: 1em;
  --bs-spinner-vertical-align: -0.100em;
  --bs-spinner-border-width: 0.25em;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-border;
  display: inline-block;
  vertical-align: var(--bs-spinner-vertical-align);
  border: var(--bs-spinner-border-width) solid currentcolor;
  border-right-color: transparent;
  border-radius: 50%;
  width: var(--bs-spinner-width);
  height: var(--bs-spinner-height);
  animation: var(--bs-spinner-animation-speed) linear infinite
    var(--bs-spinner-animation-name);
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border {
    --bs-spinner-animation-speed: 1.5s;
  }
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

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: #216087;
  --border-radius: 0.375rem;
  --form-radius: calc(var(--border-radius));
  --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: #216087;
  --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: 40%;
  top: 40%;
  margin: 0;
  width: auto;
  font-weight: 700;
  font-size: 30px;
  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: calc(var(--form-gap) * 2);
  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.4);
}

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

/*
! tailwindcss v3.3.2 | 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-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;
}

/*
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:  ;
}

.container {
  width: 100%;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

.visible {
  visibility: visible;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.-inset-1 {
  inset: -0.25rem;
}

.clear-both {
  clear: both;
}

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

.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.-mt-6 {
  margin-top: -1.5rem;
}

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

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

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

.mt-2 {
  margin-top: 0.5rem;
}

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

.flex {
  display: flex;
}

.hidden {
  display: none;
}

.h-full {
  height: 100%;
}

.w-11\/12 {
  width: 91.666667%;
}

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

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

.flex-col {
  flex-direction: column;
}

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

.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}

.overflow-hidden {
  overflow: hidden;
}

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

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

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

.border-sitetheme {
  --tw-border-opacity: 1;
  border-color: rgb(33 96 135 / var(--tw-border-opacity));
}

.bg-sitetheme {
  --tw-bg-opacity: 1;
  background-color: rgb(33 96 135 / var(--tw-bg-opacity));
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-slate-600 {
  --tw-gradient-from: #475569 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(71 85 105 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-slate-800 {
  --tw-gradient-from: #1e293b var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(30 41 59 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-sitetheme {
  --tw-gradient-to: #216087 var(--tw-gradient-to-position);
}

.to-sky-800 {
  --tw-gradient-to: #075985 var(--tw-gradient-to-position);
}

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

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-7 {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.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-\[14px\] {
  font-size: 14px !important;
}

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

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

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

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

.uppercase {
  text-transform: uppercase;
}

.leading-none {
  line-height: 1;
}

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

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

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

.text-sitetheme {
  --tw-text-opacity: 1;
  color: rgb(33 96 135 / var(--tw-text-opacity));
}

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

.opacity-25 {
  opacity: 0.25;
}

.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-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px 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-slate-800 {
  --tw-shadow-color: #1e293b;
  --tw-shadow: var(--tw-shadow-colored);
}

.ring-1 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.ring-4 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.ring-gray-900\/5 {
  --tw-ring-color: rgb(17 24 39 / 0.05);
}

.ring-slate-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(30 41 59 / var(--tw-ring-opacity));
}

.blur {
  --tw-blur: blur(8px);
  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);
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-1000 {
  transition-duration: 1000ms;
}

body {
  min-width: 360px;
}

.hl-accent {
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(33 96 135 / var(--tw-text-opacity));
}

.hl-second {
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(225 29 72 / var(--tw-text-opacity));
}

.ingr {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  overflow: hidden;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 640px) {
  .ingr {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.ingr__item {
  display: flex;
  width: 215px;
  flex-shrink: 0;
  flex-grow: 1;
  flex-basis: auto;
}

.ingr__wrap {
  position: relative;
  width: 100%;
}

.ingr__layer {
  position: absolute;
  inset: -0.25rem;
  border-radius: 0.5rem;
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
  --tw-gradient-from: #e11d48 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(225 29 72 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  --tw-gradient-to: #216087 var(--tw-gradient-to-position);
  opacity: 0.25;
  --tw-blur: blur(8px);
  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);
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 1000ms;
}

.ingr__content {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
}

.ingr__content > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

.ingr__content {
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding: 1rem;
  text-align: center;
  line-height: 1;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-color: rgb(17 24 39 / 0.05);
}

.ingr__img {
  height: 7rem;
  width: 7rem;
  flex-shrink: 0;
  border-radius: 9999px;
  -o-object-fit: contain;
     object-fit: contain;
}

.ingr__title {
  font-weight: 700;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(30 41 59 / var(--tw-text-opacity));
}

.comments__heading {
  margin-bottom: 2rem;
  font-size: 1.875rem;
  line-height: 2.25rem;
  text-transform: uppercase;
}

.comments__list {
  padding-left: 1rem;
  padding-right: 1rem;
}

.comment:not(:last-child) {
  margin-bottom: 1.5rem;
  border-bottom-width: 1px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgb(203 213 225 / var(--tw-border-opacity));
  padding-bottom: 1.5rem;
}

.comment__top {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.comment__top h3 {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
}

.comment__ava {
  margin-right: 0.5rem;
  height: 3.5rem;
  width: 3.5rem;
  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);
}

.comment__stars {
  margin-bottom: 0.5rem;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
}

.comment__stars > svg {
  margin-right: 0.25rem;
  height: 1rem;
  width: 1rem;
}

.star {
  fill: #ffc107;
}

.comment__stars > span {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.comment__content {
  margin-left: 4rem;
}

.comment__content > p ~ img {
  margin-top: 0.5rem;
  max-height: 15rem;
  border-radius: 0.375rem;
  --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-shadow-color: rgb(33 96 135 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.comment__link {
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(225 29 72 / var(--tw-text-opacity));
}

@media screen and (max-width: 768px) {
  .container-toggle {
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .container-toggle > .list-footer {
    flex-grow: 1;
  }

  .container-about-footer .container {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  footer .about-list {
    position: static;
    order: 3;
  }

  footer .footer-social-networks ul {
    justify-content: unset;
  }

  footer .partners {
    width: auto;
    justify-content: unset;
  }
}

.ingred__list {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  counter-reset: ingred;
}

.ingred__item {
  position: relative;
  flex-grow: 1;
  border-radius: 0.375rem;
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
  --tw-gradient-from: #1e293b var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(30 41 59 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  --tw-gradient-to: #216087 var(--tw-gradient-to-position);
  padding: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

@media (min-width: 640px) {
  .ingred__item {
    flex-basis: calc(50% - 1rem);
  }
}

.ingred__item::before {
  counter-increment: ingred;
  content: counter(ingred);
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 6rem;
  line-height: 1
}

.ingred__img {
  margin-bottom: 1rem;
  height: 8rem;
  width: 8rem;
  border-radius: 0.375rem;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity));
}

.ingred__title {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
}

.ingred__descr {
  color: rgb(255 255 255 / 0.8);
}

.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: 30px;
}

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

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

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

.hover\:text-sitetheme:hover {
  --tw-text-opacity: 1;
  color: rgb(33 96 135 / var(--tw-text-opacity));
}

.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}

.group:hover .group-hover\:duration-200 {
  transition-duration: 200ms;
}

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

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

  .sm\:-my-6 {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

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

  .sm\:w-1\/2 {
    width: 50%;
  }

  .sm\:w-\[420px\] {
    width: 420px;
  }

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

  .sm\:basis-\[200px\] {
    flex-basis: 200px;
  }

  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:gap-6 {
    gap: 1.5rem;
  }

  .sm\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}