/*swiper*/
@font-face {
  font-family: swiper-icons;
  src: url("");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(
    --swiper-wrapper-transition-timing-function,
    initial
  );
  box-sizing: content-box;
}

.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-slide,
swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-prev:after {
  content: "prev";
}

.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullet {
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 8px)
  );
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 8px)
  );
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  -ms-touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next + .swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

/*end swiper*/

[data-theme="today"] {
  --theme-color: #1a3166;
  --theme-color-light: #445783;
  --theme-color-lighter: #c2d0f0;
  --theme-color-dark: #152752;
  --theme-color-darker: #101d3d;
  --theme-color-darkest: #050a15;
}

[data-theme="today"] .c-story {
  --story-kicker-text: #aa3125;
  --story-kicker-bg: #aa3125;
}

@media (prefers-color-scheme: dark) {
  body:not([data-color-scheme*="light"]) [data-theme="today"] .c-story {
    --story-kicker-text: #db665a;
  }
}

[data-theme="today"][data-color-scheme*="dark"] .c-story,
[data-theme="today"].o-bg-dark .c-story {
  --story-kicker-text: #db665a;
}

[data-theme="today"] .c-header {
  --header-background: var(--theme-color);
}

[data-theme="today"] .c-header__channel {
  --channel-link: #fff;
}

[data-theme="today"][data-color-scheme*="dark"] .c-header {
  --header-background: var(--theme-color);
}

/*]]>*/

/*<![CDATA[*/
[data-theme="today"] {
  --theme-color: #1a3166;
  --theme-color-light: #445783;
  --theme-color-dark: #152752;
  --theme-color-darker: #101d3d;
  --theme-color-accent: #050a15;
}

[data-theme="red"] {
  --theme-color: #f2463d;
  --theme-color-light: #f78a85;
  --theme-color-lighter: #fccfcc;
  --theme-color-dark: #d4180e;
  --theme-color-darker: #8d1009;
  --theme-color-accent: #fc3d33;
}

/*]]>*/

/*<![CDATA[*/
:root {
  --outer-gutter: 15px;
  --grid-gutter: 1.5rem;
  /*--grid-divider-gutter: calc(calc(var(--grid-gutter) / 2) * -1);*/
  --font-serif-display: Georgia, Times, Times New Roman, serif;
  --font-serif-text: Georgia, Times, Times New Roman, serif;
  --font-sans-grotesk: system-ui, Arial, Helvetica Neue, Helvetica, sans-serif;
}

/*@media screen and (min-width: 992px) {*/
/*    :root {*/
/*        --outer-gutter: 1.5rem;*/
/*    }*/
/*}*/

@media screen and (min-width: 1200px) {
  :root {
    --outer-space: 18.05vw;
  }
}

@media screen and (min-width: 1600px) {
  :root {
    --outer-space: 260px;
  }
}

html:not([data-unsafe]) {
  --font-serif-display: "Serif Display", Georgia, Times, Times New Roman, serif;
  --font-serif-text: "Serif Text", Georgia, Times, Times New Roman, serif;
  --font-sans-grotesk: "Sans Grotesk", system-ui, Arial, Helvetica Neue,
    Helvetica, sans-serif;
}

:root,
[data-color-scheme*="light"] {
  --background-color: #fff;
  --background-color-inverse: #fff;
  --background-color-negative: #161616;
  --background-color-light: #f3f3f3;
  --background-color-muted-alpha: rgba(128, 128, 128, 0.5);
  --background-color-contrast: #f3f3f3;
  --background-color-dark: #0d0d0d;
  --background-color-gray: #f3f3f3;
  --background-color-gray-dark: #f3f3f3;
  --background-color-gray-darker: #0d0d0d;
  --background-faq: #f3f3f3;
  --background-color-darker: #bfbfbf;
  --background-color-reverse: #0d0d0d;
  --divider-color: #d9d9d9;
  --divider-color-light: #f3f3f3;
  --body-color: #0d0d0d;
  --body-color-inverse: #fff;
  --body-color-negative: #fff;
  --body-color-reverse: #fff;
  --body-secondary-color: #4d4d4d;
  --item-bg-inverse: #161616;
  --link-color: #2f58b7;
  --link-color-dark: #0d0d0d;
  --link-color-primary: #148be6;
  --link-heading-color: #0d0d0d;
  --icon-color: #0d0d0d;
  --nav-active-bg: #0d0d0d;
  --nav-active-bg-hover: #d9d9d9;
  --btn-default-color: #0d0d0d;
  --btn-default-label: #0d0d0d;
  --btn-primary-color: #148be6;
  --btn-primary-label: #fff;
  --btn-secondary-color: #0d0d0d;
  --btn-secondary-label: #fff;
  --btn-secondary-color-hover: #4d4d4d;
  --form-control-bg: #fff;
  --form-control-hover: #0d0d0d;
  --form-control-disabled: rgba(128, 128, 128, 0.3);
  --img-invert: invert(0);
  --global-shadow: 0.3rem 0.3rem 1rem 0 rgba(13, 13, 13, 0.2);
  --global-shadow-bottom: 0 0.3rem 0.3rem 0 rgba(13, 13, 13, 0.2);
  --kicker-bg: #808080;
  transition: all 0.35s ease-in-out;
}

.o-bg-dark {
  --divider-color: #4d4d4d;
  --img-invert: invert(0.8);
}

@media (prefers-color-scheme: dark) {
  body:not([data-model*="sponsor"]) :root {
    --background-color: #161616;
    --background-color-inverse: rgba(255, 255, 255, 0.1);
    --background-color-negative: #fff;
    --background-color-light: #4d4d4d;
    --background-color-muted-alpha: rgba(255, 255, 255, 0.5);
    --background-color-contrast: #161616;
    --background-color-gray: rgba(255, 255, 255, 0.1);
    --background-color-gray-dark: #2e2e2e;
    --background-color-gray-darker: #808080;
    --background-faq: rgba(255, 255, 255, 0.1);
    --background-color-darker: #3e3d3d;
    --background-color-reverse: #fff;
    --divider-color: #4d4d4d;
    --divider-color-light: #161616;
    --body-color: rgba(255, 255, 255, 0.87);
    --body-color-inverse: #0d0d0d;
    --body-color-negative: #4d4d4d;
    --body-color-reverse: #0d0d0d;
    --body-secondary-color: #d9d9d9;
    --item-bg-inverse: #fff;
    --link-color: #fff;
    --link-color-dark: #fff;
    --link-heading-color: #fff;
    --icon-color: #fff;
    --nav-active-bg: #fff;
    --nav-active-bg-hover: #4d4d4d;
    --title-border: #fff;
    --title-text: #fff;
    --btn-default-color: #fff;
    --btn-default-label: #fff;
    --btn-secondary-color: #fff;
    --btn-secondary-label: #0d0d0d;
    --btn-secondary-color-hover: #808080;
    --form-control-bg: rgba(255, 255, 255, 0.1);
    --form-control-hover: #fff;
    --form-control-disabled: rgba(13, 13, 13, 0.95);
    --img-invert: invert(0.8);
    --global-shadow: 0.3rem 0.3rem 1rem 0 #0d0d0d;
    --global-shadow-bottom: 0 0.3rem 0.3rem 0 #0d0d0d;
    --kicker-bg: #808080;
    transition: all 0.35s ease-in-out;
  }
}

body[data-color-scheme*="dark"]:not([data-model*="sponsor"]) {
  --background-color: #161616;
  --background-color-inverse: rgba(255, 255, 255, 0.1);
  --background-color-negative: #fff;
  --background-color-light: #4d4d4d;
  --background-color-muted-alpha: rgba(255, 255, 255, 0.5);
  --background-color-contrast: #161616;
  --background-color-gray: rgba(255, 255, 255, 0.1);
  --background-color-gray-dark: #2e2e2e;
  --background-color-gray-darker: #808080;
  --background-faq: rgba(255, 255, 255, 0.1);
  --background-color-darker: #3e3d3d;
  --background-color-reverse: #fff;
  --divider-color: #4d4d4d;
  --divider-color-light: #161616;
  --body-color: rgba(255, 255, 255, 0.87);
  --body-color-inverse: #0d0d0d;
  --body-color-negative: #4d4d4d;
  --body-color-reverse: #0d0d0d;
  --body-secondary-color: #d9d9d9;
  --item-bg-inverse: #fff;
  --link-color: #fff;
  --link-color-dark: #fff;
  --link-heading-color: #fff;
  --icon-color: #fff;
  --nav-active-bg: #fff;
  --nav-active-bg-hover: #4d4d4d;
  --title-border: #fff;
  --title-text: #fff;
  --btn-default-color: #fff;
  --btn-default-label: #fff;
  --btn-secondary-color: #fff;
  --btn-secondary-label: #0d0d0d;
  --btn-secondary-color-hover: #808080;
  --form-control-bg: rgba(255, 255, 255, 0.1);
  --form-control-hover: #fff;
  --form-control-disabled: rgba(13, 13, 13, 0.95);
  --form-select-icon: url("../images/1e061424aeb2944a7bf7a101a677970b457b49d7.svg");
  --img-invert: invert(0.8);
  --global-shadow: 0.3rem 0.3rem 1rem 0 #0d0d0d;
  --global-shadow-bottom: 0 0.3rem 0.3rem 0 #0d0d0d;
  --kicker-bg: #808080;
  transition: all 0.35s ease-in-out;
}

html,
body,
main {
  width: 100%;
}

html {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--background-color);
  color: var(--body-color);
  font-family: var(--font-sans-grotesk), sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*@media screen and (prefers-reduced-motion: no-preference) {*/
/*    html,*/
/*    body {*/
/*        scroll-behavior: smooth;*/
/*    }*/
/*}*/

*,
*:before,
*:after {
  box-sizing: inherit;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
}

a {
  outline: 0;
  color: var(--link-color);
}

::selection {
  background-color: var(--theme-color-lighter);
  color: #4d4d4d;
}

img,
object,
video {
  max-width: 100%;
  vertical-align: bottom;
}

figure {
  margin: 0;
}

textarea,
select,
input {
  position: relative;
  min-height: 48px;
  padding: var(--form-input-padding);
  border-width: 1px;
  border-style: solid;
  border-radius: 2px;
  border-color: var(--form-input-border);
  background-color: var(--form-input-bg);
  color: var(--form-input-color);
  transition: all 0.1s ease-in-out;
  font-family: var(--font-sans-grotesk), sans-serif;
  font-weight: 400;
  line-height: calc(1em + 4px);
  font-size: 1rem;
}

textarea:hover,
select:hover,
input:hover {
  --form-input-border: var(--form-control-hover);
}

textarea:active,
textarea:focus,
select:active,
select:focus,
input:active,
input:focus {
  --form-input-border: #148be6;
}

textarea:focus,
select:focus,
input:focus {
  --form-input-bg: var(--form-control-bg);
  outline: 0;
  outline-offset: 0;
}

textarea:disabled,
select:disabled,
input:disabled {
  --form-input-border: rgba(128, 128, 128, 0.3);
  --form-input-bg: var(--form-control-disabled);
  cursor: not-allowed;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.o-bg-base {
  background-color: var(--background-color);
}

.o-bg-dark {
  background-color: var(--background-color-dark);
}

.o-container {
  width: calc(100vw - var(--outer-space, 0));
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--outer-gutter);
}

body:not([data-homepage]) .o-page {
  padding-top: var(--outer-gutter);
  padding-bottom: var(--outer-gutter);
}

.o-page {
  padding-top: 0;
  padding-bottom: 0;
}

@media screen and (min-width: 740px) {
  .o-page {
    padding-top: var(--outer-gutter);
    padding-bottom: var(--outer-gutter);
  }
}

.l-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  /*gap: var(--grid-gutter);*/
}

/*@media screen and (min-width: 600px) {*/
/*    .l-grid--small .l-grid__item::after {*/
/*        position: absolute;*/
/*        content: '';*/
/*        display: block;*/
/*        top: 0;*/
/*        !*right: var(--grid-divider-gutter);*!*/
/*        width: 1px;*/
/*        height: 100%;*/
/*    }*/
/*}*/

.l-grid--small {
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (min-width: 600px) {
  .l-grid--small {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 992px) {
  .l-grid--small {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (min-width: 740px) {
  .l-grid--small .l-grid__item:nth-of-type(-n + 4)::before {
    display: none;
  }
}

@media screen and (max-width: 740px) {
  .l-grid--small .l-grid__item:nth-of-type(2n)::after {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  .l-grid--small .l-grid__item:nth-of-type(4n)::after {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .l-grid--small .l-grid__item:nth-of-type(n + 2)::before {
    position: absolute;
    content: "";
    display: block;
    /*top: var(--grid-divider-gutter);*/
    right: 0;
    width: 100%;
    height: 1px;
  }
}

@media screen and (max-width: 992px) {
  .l-grid--small .l-grid__item:nth-of-type(n + 3)::before {
    position: absolute;
    content: "";
    display: block;
    /*top: var(--grid-divider-gutter);*/
    right: 0;
    width: 100%;
    height: 1px;
  }
}

@media screen and (min-width: 600px) {
  .l-grid--small .l-grid__item:nth-of-type(2n + 2)::before {
    width: calc(100% + 3.5rem);
  }
}

@media screen and (min-width: 992px) {
  .l-grid--small .l-grid__item:nth-of-type(n + 5)::before {
    position: absolute;
    content: "";
    display: block;
    /*top: var(--grid-divider-gutter);*/
    right: 0;
    width: 100%;
    height: 1px;
  }

  .l-grid--small .l-grid__item:nth-of-type(4n + 6)::before,
  .l-grid--small .l-grid__item:nth-of-type(4n + 7)::before,
  .l-grid--small .l-grid__item:nth-of-type(4n + 8)::before {
    right: 0;
    width: calc(100% + 3.5rem);
  }
}

/*.l-grid--scrollable.l-grid--small .l-grid__item::after {*/
/*    !*right: -var(--grid-gutter);*!*/
/*    display: block;*/
/*    position: absolute;*/
/*    content: '';*/
/*    display: block;*/
/*    top: 0;*/
/*    !*right: var(--grid-divider-gutter);*!*/
/*    width: 1px;*/
/*    height: 100%;*/
/*}*/

.l-grid__item {
  position: relative;
}

/*.l-grid__item::after, .l-grid__item::before {*/
/*    background-color: var(--divider-color);*/
/*}*/

.l-list-border > * {
  padding-bottom: 0.75rem;
}

.l-list-border > *:not(:first-child) {
  padding-top: 0.75rem;
  border-top: 1px solid var(--divider-color);
}

.o-link-text {
  color: var(--link-color-dark);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.o-link-text:hover {
  color: #808080;
}

.o-bg-dark .o-link-text {
  color: #fff;
}

.o-bg-dark .o-link-text:hover {
  color: #808080;
}

.o-link-inverse {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.o-link-inverse:hover {
  --link-inverse-color: #808080;
}

.o-fullscreen {
  position: relative;
  /*margin-left: -0.75rem;*/
  /*margin-right: -0.75rem;*/
}

@media screen and (min-width: 992px) {
  .o-fullscreen {
    margin-left: 0;
    margin-right: 0;
  }
}

.o-skeleton {
  --skeleton-background: #d9d9d9;
}

.o-bg-dark .o-skeleton {
  --skeleton-background: #161616;
}

.o-skeleton {
  position: relative;
  background-color: var(--skeleton-background);
  overflow: hidden;
}

.o-skeleton-media--horizontal {
  padding-top: 56.25%;
}

.c-btn {
  --btn-radius: 2px;
  --btn-color: #0d0d0d;
  --btn-label: #0d0d0d;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: var(--btn-radius);
  background-color: var(--btn-color);
  box-shadow: 0 0 0 1px var(--btn-color);
  color: var(--btn-label);
  transition: all 0.3s ease-out;
}

.c-btn:disabled {
  cursor: not-allowed;
}

.c-btn--default {
  --btn-color: var(--btn-default-color);
  --btn-label: var(--btn-default-label);
  background-color: transparent;
}

.c-btn--default:hover {
  --btn-color: #808080;
  --btn-label: #808080;
}

.c-btn--default:disabled {
  --btn-color: rgba(128, 128, 128, 0.3);
  --btn-label: rgba(128, 128, 128, 0.3);
}

.c-avatar {
  --story-thumb-size: 4rem;
  grid-area: thumb;
  width: var(--story-thumb-size);
  height: var(--story-thumb-size);
  background-color: var(--theme-color);
}

[data-theme="today"] .c-avatar {
  background-color: #e6c146;
}

.c-avatar__thumb {
  filter: drop-shadow(5px 5px 5px #4d4d4d);
  flex: 1 0 auto;
}

.c-entry .c-avatar__thumb {
  margin: 0;
}

.c-header {
  --header-background: var(--theme-color);
  --nav-border: #fff;
  background-color: var(--header-background);
}

@media screen and (min-width: 740px) {
  .c-header {
    --nav-border: var(--theme-color);
    --header-background: var(--background-color-gray-dark);
  }
}

.c-header__channel {
  /*--channel-link: var($ ui-04);*/
  color: var(--channel-link);
  text-decoration: none;
  font-family: var(--font-serif-display), sans-serif;
  font-weight: 700;
  line-height: calc(1em + 4px);
  font-size: 1.125rem;
}

@media screen and (min-width: 740px) {
  .c-header__channel {
    font-family: var(--font-serif-display), sans-serif;
    font-weight: 700;
    line-height: calc(1em + 4px);
    font-size: 1.625rem;
  }
}

@media screen and (min-width: 740px) and (min-width: 740px) {
  .c-header__channel {
    font-size: 1.75rem;
  }
}

.c-share__item {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
}

.c-share__item--facebook {
  background-color: #3b5998;
}

.c-share__item--facebook:hover {
  background-color: #4264aa;
}

.c-share__item--twitter {
  background-color: #000;
}

.c-share__item--twitter:hover {
  background-color: #0d0d0d;
}

.c-share__item--whatsapp {
  background-color: #25d366;
}

.c-share__item--whatsapp:hover {
  background-color: #36dc74;
}

.c-story {
  --story-number-color: #808080;
  --story-kicker-bg: #aa3125;
  --story-kicker-text: var(--theme-color);
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
}

@media (prefers-color-scheme: dark) {
  body:not([data-color-scheme*="light"]):not([data-model*="sponsor"]) .c-story {
    --story-number-color: #fff;
  }
}

body[data-color-scheme*="dark"]:not([data-model*="sponsor"]) .c-story,
.o-bg-dark .c-story {
  --story-number-color: #fff;
}

.c-story--stack {
  grid-template-areas: "media" "headline" "summary" "sublinks" "byline";
}

.c-story--stack .c-story__content {
  grid-area: headline;
}

.c-story__content {
  grid-area: content;
}

.c-story__media {
  grid-area: media;
  margin-bottom: 0.75rem;
}

.c-story__media img {
  transition: transform 9s ease-in-out;
}

.c-story:not(.c-story--focus):hover .c-story__media img {
  transform: scale(1.3);
}

.c-story__number {
  top: 1.5rem;
  left: 0;
  color: var(--story-number-color);
  font-family: var(--font-sans-grotesk), sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.5rem;
}

.l-list-border > *:first-child .c-story__number {
  top: 0;
}

.c-story__kicker {
  grid-area: kicker;
  align-self: self-start;
  color: var(--story-kicker-text);
}

.c-story__kicker a {
  color: var(--story-kicker-text);
}

.c-title {
  --title-background: #808080;
  --title-border: #0d0d0d;
  --title-text: #0d0d0d;
  position: relative;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--divider-color);
  color: var(--title-text);
  font-family: var(--font-serif-display), sans-serif;
  font-weight: 700;
  line-height: calc(1em + 4px);
  font-size: 1.625rem;
}

@media (prefers-color-scheme: dark) {
  body:not([data-color-scheme*="light"]):not([data-model*="sponsor"]) .c-title {
    --title-text: #fff;
    --title-border: #fff;
  }
}

@media screen and (min-width: 740px) {
  .c-title {
    font-size: 1.75rem;
  }
}

.c-title--featured-multiline {
  padding: 0.75rem;
  border-bottom: 0;
  background-color: var(--title-background);
  font-family: var(--font-sans-grotesk), sans-serif;
  font-weight: 900;
  line-height: calc(1em + 4px);
  font-size: 1.25rem;
}

@media (prefers-color-scheme: dark) {
  body:not([data-color-scheme*="light"]) .c-title--featured-multiline {
    background-color: rgba(255, 255, 255, 0.1);
  }
}

.c-title--featured-multiline {
  --title-multiline-position: 10px;
}

body[data-color-scheme*="dark"]:not([data-model*="sponsor"]) .c-title,
.o-bg-dark .c-title,
.c-title--featured-multiline {
  --title-border: #fff;
  --title-text: #fff;
}

.c-title--featured-multiline::after {
  display: block;
  position: absolute;
  bottom: calc(var(--title-multiline-position) * -1);
  left: 0;
  content: "";
  width: 100%;
  height: 10px;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 2px,
    var(--divider-color) 2px,
    var(--divider-color) 3px
  );
  background-repeat: repeat-x;
  background-position: bottom;
}

.c-title--multiline {
  --title-multiline-position: 13px;
  border-bottom: 3px solid var(--title-border);
}

.c-footer {
  --footer-brand-height: 2rem;
  border-top: 2px solid var(--divider-color);
}

/* --------------------------------- */
/* RATING CSS */
/* --------------------------------- */

table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
  border: none;
}

table thead {
  background-color: #f3f3f3;
  text-align: left;
}

table tr:nth-child(even) {
  background-color: var(--background-color-gray);
}

table tbody:first-child tr:nth-child(odd) {
  background-color: var(--background-color-gray);
}

table tbody:first-child tr:first-child {
  background-color: #f3f3f3;
}

table tbody:first-child tr:first-child td {
  border-bottom: 1px solid #0d0d0d;
  color: #0d0d0d;
  font-family: var(--font-sans-grotesk), sans-serif;
  font-weight: 700;
  line-height: calc(1em + 4px);
  font-size: 1rem;
}

table th,
table td {
  padding: 1rem;
}

table th {
  border-bottom: 1px solid #0d0d0d;
  color: #0d0d0d;
  font-family: var(--font-sans-grotesk), sans-serif;
  font-weight: 700;
  line-height: calc(1em + 4px);
  font-size: 1rem;
}

table td {
  border-bottom: 1px solid var(--divider-color);
  color: #808080;
  font-family: var(--font-sans-grotesk), sans-serif;
  font-weight: 700;
  line-height: calc(1em + 4px);
  font-size: 0.875rem;
}

.c-modal__dialog {
  opacity: 0;
  visibility: hidden;
  background: rgba(13, 13, 13, 0.5);
  transition: opacity 0.25s ease;
  z-index: 99999;
}

.c-modal__close {
  top: 1rem;
  right: 1rem;
  fill: #0d0d0d;
  z-index: 999;
}

.c-modal__wrap {
  top: -50%;
  transition: top 0.5s ease-in-out;
}

.c-modal__media {
  max-width: var(--modal-size);
  margin: 0 auto;
}

@media screen and (min-width: 740px) {
  .c-modal__media {
    --modal-size: 70%;
  }
}

.c-modal__content {
  background: #fff;
  border-radius: 2px;
}

.c-modal__image {
  max-height: 90vh;
}

/*@webkit-keyframes blink {*/
/*    0% {*/
/*        opacity: 0;*/
/*        transition: all .25s ease;*/
/*    }*/

/*    100% {*/
/*        opacity: 1;*/
/*        transition: all .25s ease;*/
/*    }*/
/*}*/

/*@webkit-keyframes slidein {*/
/*    0% {*/
/*        transform: translateX(100%);*/
/*    }*/

/*    100% {*/
/*        transform: translateX(0);*/
/*    }*/
/*}*/

/*@webkit-keyframes showitem {*/
/*    from {*/
/*        opacity: 0;*/
/*    }*/

/*    to {*/
/*        opacity: 1;*/
/*    }*/
/*}*/

/*@webkit-keyframes animate-pop {*/
/*    0% {*/
/*        opacity: 0;*/
/*        transform: scale(0.8, 0.8);*/
/*    }*/

/*    100% {*/
/*        opacity: 1;*/
/*        transform: scale(1, 1);*/
/*    }*/
/*}*/

[class*="underline"] {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

[class*="underline"]:before,
[class*="underline"]:after {
  pointer-events: none;
}

.u-radius-circle {
  border-radius: 50%;
}

.u-radius-circle {
  border-radius: 50% 50% 50% 50%;
}

.u-color-light {
  color: #808080;
}

.o-bg-dark .u-color-light {
  color: #d9d9d9;
}

.u-color-base {
  color: var(--body-color);
}

.u-cursor-pointer {
  cursor: pointer;
}

.u-no-underline {
  text-decoration: none;
}

.u-inline-block {
  display: inline-block;
}

.u-none {
  display: none;
}

.u-block {
  display: block;
}

.u-flex {
  display: flex;
}

.u-column {
  flex-direction: column;
}

.u-justify-center {
  justify-content: center;
}

.u-items-start {
  align-items: flex-start;
}

.u-items-center {
  align-items: center;
}

.u-grid {
  display: grid;
}

.u-overflow-hidden {
  overflow: hidden;
}

.u-relative {
  position: relative;
}

.u-absolute {
  position: absolute;
}

.u-top {
  top: 0;
}

.u-bottom {
  bottom: 0;
}

.u-right {
  right: 0;
}

.u-left {
  left: 0;
}

.u-fixed {
  position: fixed;
}

.u-size-full {
  width: 100%;
}

.u-size-full-height {
  height: 100%;
}

.u-mb-xxsmall {
  margin-bottom: 0.25rem;
}

.u-mr-xsmall {
  margin-right: 0.5rem;
}

.u-mb-xsmall {
  margin-bottom: 0.5rem;
}

.u-ml-xsmall {
  margin-left: 0;
}

.u-mb-small {
  margin-bottom: 0.75rem;
}

.u-mb-medium {
  margin-bottom: 1.5rem;
}

.u-mb-large {
  margin-bottom: 20px;
}

.u-mb-xlarge {
  margin-bottom: 3rem;
}

.u-m-none {
  margin: 0;
}

.u-p-xxsmall {
  padding: 0.25rem;
}

.u-pt-small {
  padding-top: 0.75rem;
}

.u-pl-small {
  padding-left: 0.75rem;
}

.u-p-small {
  padding: 0.75rem;
}

.u-py-base {
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.u-pt-medium {
  padding-top: 10px;
  /*padding-bottom: 10px;*/
}

.u-pl-xlarge {
  padding-left: 3rem;
}

.u-pl-none {
  padding-left: 0;
}

.u-heading-01 {
  font-family: var(--font-serif-display), sans-serif;
  font-weight: 500;
  line-height: calc(1em + 4px);
  font-size: 2rem;
  width: 100%;
}

@media screen and (min-width: 740px) {
  .u-heading-01 {
    font-size: 2.25rem;
  }
}

.u-heading-05 {
  font-family: var(--font-serif-display), sans-serif;
  font-weight: 500;
  line-height: calc(1em + 4px);
  font-size: 1rem;
}

.u-heading-06 {
  font-family: var(--font-serif-display), sans-serif;
  font-weight: 500;
  line-height: calc(1em + 4px);
  font-size: 1rem;
}

.u-label-02 {
  font-family: var(--font-sans-grotesk), sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: calc(1em + 4px);
  font-size: 14px;
}

.u-label-04 {
  font-family: var(--font-sans-grotesk), sans-serif;
  font-weight: 700;
  line-height: calc(1em + 4px);
  font-size: 1rem;
}

.u-label-05 {
  font-family: var(--font-sans-grotesk), sans-serif;
  font-weight: 700;
  line-height: calc(1em + 4px);
  font-size: 0.875rem;
}

.u-label-08 {
  font-family: var(--font-sans-grotesk), sans-serif;
  font-weight: 400;
  line-height: calc(1em + 4px);
  font-size: 14px;
}

.u-caption-02 {
  font-family: var(--font-sans-grotesk), sans-serif;
  font-weight: 400;
  line-height: calc(1em + 4px);
  font-size: 14px;
}

.u-z-sky {
  z-index: 9999999999;
}

[data-section-key="article-footer-natives"] .l-grid--small .l-grid__item {
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 600px) {
  [data-section-key="article-footer-natives"] .l-grid--small .l-grid__item {
    margin-bottom: 0;
  }
}

.l-entry {
  grid-template-areas: "header" "body" "footer" "related";
  grid-template-columns: 100%;
  /*column-gap: var(--grid-gutter);*/
  /*row-gap: var(--grid-gutter)*/
}

@media screen and (min-width: 992px) {
  .l-entry {
    grid-template-areas: "header sidebar" "body sidebar" "footer sidebar" "related sidebar";
    grid-template-columns: 1fr 325px;
    grid-template-rows: auto;
    column-gap: 0.75rem;
  }
}

@media screen and (min-width: 1550px) {
  .l-entry {
    grid-template-areas: "related body sidebar" "related footer sidebar";
    grid-template-columns: 208px 1fr 325px;
  }

  .l-entry__related {
    padding-right: 0.75rem;
  }
}

.l-entry__byline {
  grid-area: byline;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top: 1px solid var(--divider-color);
  border-bottom: 1px solid var(--divider-color);
}

@media screen and (min-width: 1549.8px) {
  .l-entry__byline {
    flex-direction: column;
    align-items: flex-start;
    justify-content: start;
    padding-top: 0;
    border-top: 0;
  }
  .l-entry__header ~ .l-entry__byline {
    display: none;
  }
}
.l-entry__related .l-entry__byline {
  display: none;
}

@media screen and (min-width: 1280px) {
  .l-entry__related .l-entry__byline {
    display: flex;
  }
}

.l-entry__body {
  grid-area: body;
}

.l-entry__header {
  grid-area: header;
}

.l-entry__related {
  grid-area: related;
}

.l-entry__media {
  grid-area: media;
}

.l-entry__sidebar {
  display: none;
}

@media screen and (min-width: 992px) {
  .l-entry__sidebar {
    display: block;
    grid-area: sidebar;
    padding-left: 0.75rem;
    border-left: 1px solid var(--divider-color);
  }
}

.title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
}

ul,
ol {
  margin-bottom: 16px;
}

li:not(:last-of-type) {
  margin-bottom: 10px;
}

/* .l-entry__title {
  grid-area: title;
} */

.c-entry {
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  font-family: var(--font-serif-text);
  font-weight: 400;
  line-height: calc(1em + 4px);
  font-size: 1.125rem;
  line-height: 1.5;
}

.c-entry > ul {
  margin: 0 0 2rem 0;
  list-style: none;
}

.c-entry > ul li::before {
  display: inline-block;
  width: 1rem;
  margin-left: -1rem;
  color: currentColor;
  font-weight: 700;
}

.c-entry > ul li::before {
  content: "\2022";
}

.c-entry > p,
.c-entry > p span {
  margin: 0 0 1rem 0;
  overflow-wrap: break-word;
}

.c-entry > h2 {
  margin-bottom: 0.75rem;
  padding-top: 1rem;
  font-family: var(--font-sans-grotesk), sans-serif;
  font-weight: 700;
  line-height: calc(1em + 4px);
  font-size: 1.5rem;
}

.c-entry > p a,
.c-entry > p span a,
.c-entry > p span a span,
.c-entry > ul a {
  color: var(--link-color);
  text-decoration-color: #d9d9d9;
  text-underline-offset: 2px;
}

.c-entry > p a:hover,
.c-entry > p span a:hover,
.c-entry > p span a span:hover,
.c-entry > ul a:hover {
  text-decoration-color: var(--link-color);
}

.c-entry > p a:hover,
.c-entry > p span a:hover,
.c-entry > p span a span:hover,
.c-entry > ul a:hover {
  text-decoration-color: var(--link-color);
}

.c-entry > h2 a {
  color: var(--link-color-dark);
  text-decoration-color: #d9d9d9;
}

.c-entry > h2 a:hover {
  text-decoration-color: var(--link-color-dark);
}

.c-entry > p:first-of-type::first-letter {
  margin-top: 0.25rem;
  margin-right: 0.5rem;
  float: left;
  font-size: 3.75rem;
  font-weight: 400;
  line-height: 3rem;
  color: rgb(26, 49, 102);
}

.c-entry > h3 {
  position: relative;
  margin: 0 0 2rem 0;
  padding: 1rem;
  border-bottom: 1px solid var(--divider-color);
  box-shadow: 0 -1px 0 0 var(--divider-color);
  color: #0d0d0d;
  font-family: var(--font-sans-grotesk), sans-serif;
  font-weight: 700;
  line-height: calc(1em + 4px);
  font-size: 0.875rem;
}

.c-entry > h3::before,
.c-entry > h3::after {
  position: absolute;
}

.c-entry > h3::before {
  display: block;
  top: -0.75rem;
  left: -0.75rem;
  content: "Leggi anche";
  margin-bottom: 0.25rem;
  padding: 0.25rem 0.75rem;
  background-color: var(--background-color);
  color: gray;
  font-family: var(--font-sans-grotesk), sans-serif;
  font-weight: 700;
  line-height: calc(1em + 4px);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.c-entry > h3::after {
  top: 1.4rem;
  left: 0;
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--divider-color);
}

.c-entry > h3 + h3 {
  margin-top: -2rem;
}

.c-entry > h3 + h3::before {
  display: none;
}

.c-entry .o-bg-dark h3 a {
  color: #fff;
}

.c-entry h3 a {
  color: var(--link-color-dark);
  text-decoration: none;
}

.c-entry h3 a:hover {
  color: gray;
}

.o-bg-dark .c-entry h3 a {
  color: #fff;
}

.c-entry > ul {
  padding-left: 0.75rem;
}

.c-entry > ul li {
  margin: 0 0 0.75rem 0;
}

.c-entry > ul li::marker {
  color: #0d0d0d;
  font-family: var(--font-sans-grotesk), sans-serif;
  font-weight: 700;
  line-height: calc(1em + 4px);
  font-size: 0.875rem;
}

:root,
[data-color-scheme*="light"],
[data-color-scheme*="dark"] {
  --form-input-bg: var(--form-control-bg);
  --form-input-border: gray;
  --form-input-color: var(--body-color);
  --form-input-padding: 0.75rem;
  --form-helper-color: gray;
  --form-icon-color: var(--icon-color);
  accent-color: var(--theme-color);
}

select {
  padding-right: 3rem;
  background-image: var(--form-select-icon);
  background-repeat: no-repeat;
  background-position: center right 0.75rem;
  background-size: 16px;
  color: var(--body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

select option {
  font-family: var(--font-sans-grotesk), sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: calc(1em + 4px);
}

select:focus {
  --form-input-bg: inherit;
  box-shadow: none;
}

.icon {
  stroke: var(--icon-color);
  fill: none;
  vertical-align: middle;
}

.icon.small {
  height: 1rem;
  width: 1rem;
}

/*]]>*/

/*<![CDATA[*/
:root,
[data-color-scheme*="light"],
[data-color-scheme*="dark"] {
  --form-input-bg: var(--form-control-bg);
  --form-input-border: gray;
  --form-input-color: var(--body-color);
  --form-input-padding: 0.75rem;
  --form-helper-color: gray;
  --form-icon-color: var(--icon-color);
  accent-color: var(--theme-color);
}

select {
  padding-right: 3rem;
  background-image: var(--form-select-icon);
  background-repeat: no-repeat;
  background-position: center right 0.75rem;
  background-size: 16px;
  color: var(--body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

select option {
  font-family: var(--font-sans-grotesk), sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: calc(1em + 4px);
}

select:focus {
  --form-input-bg: inherit;
  box-shadow: none;
}

.icon {
  stroke: var(--icon-color);
  fill: none;
  vertical-align: middle;
}

.icon.small {
  height: 1rem;
  width: 1rem;
}

/*]]>*/

.hero__inner {
  padding: 15px;
  background: #f0f1f5;
  margin-bottom: 16px;
  color: #36436f;
  /* color: #121440; */
}

.hero__inner p:last-of-type {
  margin: 0;
}

.composition__inner {
  background: #f0f1f5;
  padding: 20px 20px 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.composition__pack {
  margin: 0;
  width: 300px;
}

.composition__prod {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  margin-right: 30px;
}

.composition__list {
  width: 430px;
  margin: 0;
}

.composition__item {
  display: flex;
  align-items: center;
  position: relative;
}

.composition__item:before {
  position: absolute;
  content: "";
  width: 100px;
  height: 1px;
  background: #121440;
  left: -140px;
}

.composition__item:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background: #121440;
  border-radius: 50%;
  left: -40px;
}

.composition__item-img {
  width: 60px;
  flex-shrink: 0;
  margin-right: 15px;
}

.composition__item-img img {
  width: 100%;
  margin: 0 auto;
}

.composition__header {
  color: #121440;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 17px;
}

.composition__text {
  color: #36436f;
  font-size: 16px !important;
  margin: 0 !important;
}

@media (max-width: 1549px) {
  .l-entry__related.u-mb-medium {
    display: none;
  }
}

@media (max-width: 1280px) {
  .u-grid {
    display: block !important;
  }
}

@media (max-width: 740px) {
  .composition__inner {
    padding: 15px 15px 15px 0;
  }

  .composition__pack {
    max-width: 300px;
    width: 100%;
  }

  .composition__prod {
    margin-right: 20px;
    flex-shrink: inherit;
  }

  .composition__list {
    max-width: 430px;
    width: 100%;
  }

  .composition__item:before {
    content: none;
  }

  .composition__item:after {
    content: none;
  }

  .composition__item-img {
    width: 60px;
    margin-right: 15px;
  }
}

@media (max-width: 600px) {
  .composition__inner {
    padding: 15px;
    display: block;
  }

  .composition__pack {
    max-width: 250px;
    margin: 0 auto 15px;
  }

  .composition__prod {
    margin-right: 0;
  }

  .composition__list {
    max-width: none;
  }

  .composition__item:not(:last-of-type) {
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  #comment-component-text .comment .comment__text img {
    max-width: 100% !important;
  }

  .o-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .c-share__item {
    width: 30px;
    height: 30px;
  }

  .c-avatar {
    width: 60px;
    height: 60px;
  }

  .u-heading-01 {
    font-size: 30px;
  }
}

.question,
.answer {
  margin: 0 0 10px 0;
  min-height: 75px;
  padding: 5px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}

.question {
  background: #f8f8f8;
  font-weight: bold;
}

.question img,
.answer img {
  border-radius: 50%;
  overflow: hidden;
  width: 45px;
  height: 45px;
  display: block;
  position: absolute;
  top: 50%;
  left: 30px;
  top: 10px;
  transform: translateX(-50%);
}

.question img {
  background-color: #e6c146;
}

.question p,
.answer p {
  margin: 0 0 10px 0 !important;
  padding-left: 70px;
  padding-right: 15px;
}

.question p:last-of-type,
.answer p:last-of-type {
  margin-bottom: 0 !important;
}

.question p span,
.answer p span {
  font-weight: 700;
}

@media screen and (min-width: 576px) {
  .question img,
  .answer img {
    width: 100px;
    height: 100px;
    left: 10px;
  }

  .question,
  .answer {
    min-height: 110px;
    margin: 0 0 10px 40px;
  }

  .question p,
  .answer p {
    padding-left: 80px;
  }
}

.violet {
  color: #0e0097;
}

.red {
  color: #ce3926;
}

.conditions {
  margin-bottom: 30px;
  padding-top: 35px;
  background: #f3f3f3;
  font-size: 16px;
  line-height: 1.5;
}

.conditions h3,
.conditions p {
  text-align: center;
  margin: 0 15px 40px;
  position: relative;
  font-size: 24px;
}

.conditions h3 {
  color: #e20000;
  font-weight: 700;
}

.conditions h3::after {
  content: "";
  display: block;
  width: 90px;
  height: 2px;
  background: #e20000;
  bottom: -20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.conditions ul {
  list-style-type: none;
  padding-right: 15px;
  padding-bottom: 30px !important;
  padding-left: 15px;
}

.conditions li {
  padding-left: 35px;
  display: block;
  margin-bottom: 25px;
  position: relative;
  background-position: left 0;
  background-size: 23px;
  background-repeat: no-repeat;
  padding-left: 40px;
  margin-bottom: 15px;
}

.no-webp .conditions li {
  background-image: url(../images/check_red.png);
}

.webp .conditions li {
  background-image: url(../images/check_red.webp);
}

.conditions img {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  margin-top: 2px;
}

.conditions li:last-of-type {
  margin-bottom: 0;
}

.conditions li span {
  font-weight: 700;
}

.red-link {
  font-weight: bold;
  display: block;
  text-align: center;
  text-decoration: underline;
  color: #ce3926 !important;
  font-size: 23px;
  line-height: 1.4em;
  font-weight: 700;
  max-width: 60%;
  margin: 0 auto 30px;
}

.red-link:hover {
  text-decoration: underline;
}

.red-link::after {
  display: inline-block;
  -webkit-animation: dotty steps(1, end) 2s infinite;
  animation: dotty steps(1, end) 2s infinite;
  content: "";
  position: absolute;
  margin-left: 10px;
}

@media (max-width: 576px) {
  .red-link {
    max-width: 90%;
  }
}

.list-red {
  margin-bottom: 20px;
}

.list-red ul {
  list-style-type: none;
}

.list-red li {
  display: block;
  margin-bottom: 5px;
  padding: 3px 40px 3px 12px;
  position: relative;
  line-height: 24px !important;
}

.list-red li::before {
  content: "";
  display: block;
  width: 23px;
  height: 23px;
  position: absolute;
  left: -20px;
  top: 3px;
  background-size: contain;
}

.list-red li span {
  font-weight: 700;
}

.list-red li:last-of-type {
  margin-bottom: 0;
}

.list-red img {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  margin-left: -30px;
}

.excl {
  background: #2e4b83;
  color: #fff;
  font-size: 18px;
  line-height: 1.4em;
  font-weight: 700;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 60px;
  padding-right: 60px;
  min-height: 80px;
  border-radius: 0 100px 100px 0;
  overflow: hidden;
  position: relative;
  margin: 0 0 25px;
}

@media screen and (max-width: 480px) {
  .excl {
    border-radius: 0 30px 30px 0;
    padding-right: 30px;
  }
}

.excl p {
  margin: 15px 0;
}

.excl p span.red {
  color: crimson;
}

.excl p a {
  color: #6e9bff;
}

.excl::before {
  content: "";
  display: block;
  width: 18px;
  height: 80px;
  left: 22px;
  top: 30px;
  position: absolute;
  background: center center no-repeat;
  background-size: contain;
}

.no-webp .excl::before {
  background-image: url("../images/excl.png");
}

.webp .excl::before {
  background-image: url("../images/excl.webp");
}

.adva {
  display: table;
  width: auto;
  margin: 25px auto 25px;
}

.adva h2 {
  font-size: 24px;
  font-weight: 700;
}

.adva ul {
  font-size: 20px;
}

.adva ul li {
  position: relative;
  margin-bottom: 12px;
}

.adva ul .checkmark {
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
}

.article-image {
  display: block;
  margin: 0 auto 15px;
}

.accordion {
  margin: 20px auto 30px;
  max-width: 700px;
}

.accordion .accordion-item {
  border-bottom: 1px solid #dcdcdc;
}

.accordion .accordion-item button[aria-expanded="true"] {
  border-bottom: 1px solid #fff;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 15px 1.5rem 15px 0;
  font-weight: 700;
  color: #19417d;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #000;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #19417d;
  border: 1px solid #dcdcdc;
}

.accordion button .accordion-title {
  padding: 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 2px;
  background: currentColor;
}

.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded="true"] {
  color: #000;
}

.accordion button[aria-expanded="true"] .icon::after {
  width: 0;
}

.accordion button[aria-expanded="true"] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content p {
  margin: 0 0 20px;
  text-align: left;
  font-size: 18px !important;
}

.sdxxxc {
  display: flex;
  max-width: 100%;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding-bottom: 15px;
  gap: 0;
}

.sdxxxc img {
  max-width: 100%;
}

@media screen and (max-width: 480px) {
  .order_block .main_form .price {
    padding: 0 30px;
  }

  .composition__item {
    flex-direction: column;
  }
}

.swiper {
  width: 100%;
  height: auto;
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
}

.swiper2 {
  max-width: 460px;
  height: auto;
  padding-bottom: 15px;
  margin: 35px auto;
  position: relative;
}

.slider-2 {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  display: flex;
  justify-content: center;
  margin-top: 0;
}

.swiper-pagination-bullet {
  width: 17px;
  height: 17px;

  background: #ffffff;
  border: 8px solid #0e0097;
}

.swiper-pagination-bullet-active {
  background: linear-gradient(265.51deg, #b61814 0%, #d8b022 100%);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
}

.slider-top {
  display: flex;
  align-items: center;
  height: 50px;
  background-color: #fff;
  padding: 0 15px;
}

.slider-top__img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #dce2e9;
  padding: 2px;
  margin-right: 11px;
  background-size: cover;
}

.slider-top__name {
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 16px;

  color: #131212;
}

.slider-top__doted {
  margin-left: auto;
}

.slider-nav {
  padding: 10px 10px 10px 10px;
  background-color: #fff;
  position: relative;
  top: -5px;
}

.slider-nav img {
  display: inline-block;
  max-width: 24px;
  height: 24px;
  margin-left: 5px;
}

.slider-bottom {
  padding: 0 15px;
  background-color: #fff;
}

.slider-bottom__like {
  margin: 0 0 8px !important;
  font-style: normal;
  font-weight: 600;
  font-size: 15px !important;
  line-height: 16px;
  display: flex;
  align-items: center;

  color: #131212;
}

.slider-bottom__text2 {
  font-style: normal;
  font-size: 15px !important;
  line-height: 1.25em !important;
  color: #131212 !important;
  padding-bottom: 20px !important;
  text-align: left;
}

.swiper-cube .swiper-slide {
  height: auto !important;
}

.card-img {
  width: 100%;
}

.new-pag > .swiper-pagination-bullet {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  opacity: 0.3;
  outline: none;
}

.no-webp .new-pag > .swiper-pagination-bullet {
  background-image: url("../images/dot.png");
}

.webp .new-pag > .swiper-pagination-bullet {
  background-image: url("../images/dot.webp");
}

.new-pag > .swiper-pagination-bullet-active {
  border: none;
  box-shadow: none;

  opacity: 1;
  outline: none;
}

:root {
  --color-primary: #f47321;
  --color-secondary: #303440;
  --color-alternative: #004dde;
}

* {
  box-sizing: border-box;
  border: 0 solid #e5e7eb;
  --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;
}

.reply {
  padding-left: 60px;
}

.pulse {
  box-shadow: 0 0 0 #f4722166;
  animation: pulse 2s infinite;
}

.pulse:hover {
  animation: none;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #f4722166;
  }

  70% {
    box-shadow: 0 0 0 15px #f4722100;
  }

  to {
    box-shadow: 0 0 0 0 #f4722100;
  }
}

.effects {
  text-align: left;
  border: 1px solid #ff0000;
  border-radius: 6px;
  box-sizing: border-box;
  background: #ffebeb;
  margin: 24px auto 32px;
  width: auto;
  max-width: 960px;
}

.effects__container {
  padding: 20px 15px;
}

.effects h2 {
  margin: 15px 0 20px;
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
}

.effects li {
  position: relative;
  padding-bottom: 0;
}

.effects li p {
  margin-bottom: 0;
  font-weight: 400;
}

.effects-ul > li {
  background-position: left 0;
  background-size: 23px;
  background-repeat: no-repeat;
  padding-left: 40px;
  margin-bottom: 15px;
}

.no-webp .effects-ul > li {
  background-image: url("../images/check_red.png");
}

.webp .effects-ul > li {
  background-image: url("../images/check_red.webp");
}

.article-body-text p {
  margin: 0 0 1rem 0;
}

.tests {
  background: linear-gradient(117.36deg, #3262be 2.35%, #21417d 99.66%);
  color: #fff;
  margin-bottom: 30px;
}

.tests .tests__container {
  background: url("../images/check_bg.png") left center no-repeat;
  background-size: 215px;
  padding: 25px 100px;
}

.tests ul {
  list-style-type: none;
}

.tests h2 {
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
}

.tests h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -18px;
}

.tests li {
  font-size: 18px;
  padding-left: 30px;
  padding-bottom: 10px;
  position: relative;
}

.tests li::before {
  content: "";
  position: absolute;
  display: block;
  width: 18px;
  height: 15px;
  background: url("../images/check_white.png") center center no-repeat;
  background-size: contain;
  left: 0;
  top: 3px;
}

@media (max-width: 600px) {
  .tests .tests__container {
    padding: 25px 20px;
  }
}

.article-body-text p.small {
  font-size: 16px !important;
  line-height: 1.3em !important;
  font-weight: normal;
  margin: 0 0 15px 0;
  text-align: center !important;
  max-width: 650px;
}

.order_block .main_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: center top no-repeat;
  background-size: 100% 100%;
  padding: 15px;
  text-align: center;
  max-width: 688px;
  font-size: 18px;
  margin: 0 auto 30px;
}

.no-webp .order_block .main_form {
  background-image: url("../images/form_bg.jpg");
}

.webp .order_block .main_form {
  background-image: url("../images/form_bg.webp");
}

.order_block img {
  vertical-align: middle;
  border-style: none;
  margin-bottom: 0;
}

.order_block .main_form h2 {
  font-size: 32px;
  line-height: 1.35;
  color: #000;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
  font-style: normal;
}

.order_block .sertif {
  color: #00f;
  font-size: 14px !important;
  font-style: italic;
}

.order_block .main_form p {
  padding: 0 0 0;
  text-align: center;
  margin-bottom: 10px;
}

.order_block .main_form .price {
  margin-top: 0;
  padding: 0 20px;
  text-align: center;
}

.order_block .blue-border {
  margin: 0 20px 15px 20px;
  border: 2px solid #0299ff;
  padding: 10px !important;
  text-align: center !important;
  max-width: 648px;
  font-weight: 700;
  font-size: 14px !important;
  line-height: 1.35;
}

.order_block .main_form label {
  margin-top: 10px;
  font-size: 16px !important;
  display: block;
  margin-bottom: 5px;
  font-weight: 700;
}

.order_block .main_form input {
  font-size: 17px !important;
  padding: 15px;
  border-radius: 3px;
  border: 2px solid #e9d7dc;
  max-width: 314px;
  width: 100%;
}

.order_block .main_form input:not(:last-of-type) {
  margin-bottom: 15px;
}

.order_block .main_form button {
  max-width: 320px;
  width: 100%;
  padding: 15px 35px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 5px;
  background-color: red;
  -webkit-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  border: none;
  cursor: pointer;
  font-size: 17px;
  line-height: 1.4;
  margin-top: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.order_block .main_form button {
  -webkit-animation: glowing 900ms infinite both;
  animation: glowing 900ms infinite both;
}

.order_block .additional,
.order_block .timelimit {
  font-size: 14px;
  text-align: center;
  padding: 0 20px;
}

.order_block .timelimit b {
  display: inline-block;
  margin-top: -2px;
  padding-left: 14px;
  color: red;
  vertical-align: middle;
  background-position: left center;
  font-size: 15px;
}

@keyframes glowing {
  0% {
    -webkit-box-shadow: 0 0 4px red;
    box-shadow: 0 0 2px red;
  }

  50% {
    -webkit-box-shadow: 0 0 12px red;
    box-shadow: 0 0 12px red;
  }

  100% {
    -webkit-box-shadow: 0 0 4px red;
    box-shadow: 0 0 8px red;
  }
}

.order-info {
  text-align: center;
}

.order-info__title {
  font-size: 26px;
  font-weight: bold;
  color: red;
}

.order-info__date {
  text-decoration: underline;
}

.order-info__count {
  display: block;
  background: red;
  padding: 10px;
  margin: 12px auto 15px;
  width: 155px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 -1px 0 #000000, 0 -1px 0 #000000, 0 1px 0 #000000,
    0 1px 0 #000000, -1px 0 0 #000000, 1px 0 0 #000000, -1px 0 0 #000000,
    1px 0 0 #000000, -1px -1px 0 #000000, 1px -1px 0 #000000, -1px 1px 0 #000000,
    1px 1px 0 #000000, -1px -1px 0 #000000, 1px -1px 0 #000000,
    -1px 1px 0 #000000, 1px 1px 0 #000000;
  font-size: 32px;
  border-radius: 5px;
  animation-name: button;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

@keyframes button {
  0% {
    box-shadow: 0 0 10px #f20000;
  }

  60% {
    box-shadow: 0 0 3px rgba(242, 0, 0, 0.8);
  }

  100% {
    box-shadow: 0 0 10px #f20000;
  }
}

.order-info__count-val {
  font-size: 52px;
  line-height: 1;
}

.image {
  display: block;
  margin: 40px auto;
}

.image.horizontal {
  width: 100%;
  max-width: 540px;
}

.image.vertical {
  width: 100%;
  max-width: 410px;
}

.label {
  display: block;
  width: 100%;
  max-width: 540px;
  margin: 40px auto;
}

.label {
  margin: 35px auto;
}

.label li {
  font-family: sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 29px;
  margin-bottom: 25px;
  color: #000000;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.order_block {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 10px;
}

.product {
  max-width: 250px;
  margin: 20px auto;
  position: relative;
}

.product img {
  width: 100%;
  max-width: 250px;
  display: block;
}

.form {
  text-align: center;
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

#order .shadow {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
}

#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 .form {
  width: 100%;
  font-family: inherit;
}

*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

::before,
::after {
  --tw-content: "";
}

h3 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  text-decoration: inherit;
}

h3,
p {
  margin: 0;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

*,
::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-scroll-snap-strictness: proximity;
  --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;
}

@media (min-width: 640px) {
  .comment__content {
    margin-left: 4rem;
  }
}

.comment__content {
  font-size: 17px;
  color: #333;
}

.comment__content > p ~ img {
  margin-top: 0.5rem;
  margin-left: auto;
  margin-right: auto;
  max-height: 20rem;
  border-radius: 0.5rem;
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.comment__text > a {
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(225 29 72 / var(--tw-text-opacity));
}

.comments {
  margin-bottom: 40px;
}

.swiper-button-next,
.swiper-button-prev {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  margin-top: unset;
  display: block;
  width: 44px;
  height: 44px;
  background-color: var(--swiper-theme-color);
  border-radius: 9999px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons, sans-serif;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  color: #fff;
  font-variant: initial;
  line-height: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.7);
}

.comment:not(:last-child) {
  margin-bottom: 30px;
}

.comment__time {
  margin-top: auto;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  white-space: nowrap;
  color: #666;
}

.comment__text {
  margin: 0;
}

*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

::before,
::after {
  --tw-content: "";
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  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";
  font-feature-settings: normal;
}

body {
  margin: 0;
  line-height: inherit;
}

h1,
h2,
h3,
h4 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  text-decoration: inherit;
}

b,
strong {
  font-weight: bolder;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  appearance: button;
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}

progress {
  vertical-align: baseline;
}

[type="search"] {
  appearance: textfield;
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

dd,
h1,
h2,
h3,
h4,
figure,
p {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ul {
  list-style: none;
  padding: 0;
}

.list__checkmark li {
  padding-left: 33px;
}

.list {
  list-style: disc;
  padding-left: 20px;
}

textarea {
  resize: vertical;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  color: #9ca3af;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}

button,
[role="button"] {
  cursor: pointer;
}

img,
svg,
video,
canvas,
object {
  display: block;
}

img,
video {
  max-width: 100%;
  height: auto;
}

[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-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: ;
}

:root {
  --color-primary: #1ea400;
  --color-secondary: #f85a1b;
  --color-alternative: #004dde;
}

body {
  font-size: 18px;
  min-width: 320px;
}

b {
  font-weight: 700;
}

.timer {
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 0;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
  display: block;
}

.timer b {
  display: inline;
  padding-left: 14px;
  color: red;
  vertical-align: middle;
  font-size: 15px;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  display: inline-block;
  padding-left: 14px;
  color: red;
  vertical-align: middle;
  background-position-y: 5px;
  font-size: 18px;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
  }

  50% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
  }

  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
  }
}

.button {
  width: 100%;
  cursor: pointer;
  height: 60px;
  color: #fff;
  border: 0;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  font-size: 18px;
  background: red;
  line-height: 25px;
}

body *:not(i) {
  font-family: sans-serif !important;
}

p,
ul li {
  font-size: 18px !important;
  line-height: 1.35em !important;
}

.order_block {
  text-align: center !important;
}

.order_block h3 {
  font: 700 18px sans-serif !important;
  background: 0 0;
}

.time_remains {
  font-size: 1.1em;
  color: red;
  font-weight: 700;
}

.comments {
  display: flex;
  flex-direction: column-reverse;
}

#comment_num {
  border-bottom: 1px dashed #365398;
  color: #365398;
  font-weight: bold;
  font-size: 26px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.95);
  }
}

.comment h2:after {
  display: none;
}

#comment-component-text {
  display: flex;
  flex-direction: column;
}

.form-comment {
  order: 0;
}

.comment__text a {
  color: #2f58b7;
  text-decoration: underline;
}

@keyframes dotty {
  0% {
    content: "";
  }

  25% {
    content: ">";
  }

  50% {
    content: ">>";
  }

  75% {
    content: ">>>";
  }

  100% {
    content: "";
  }
}

#comment-component-text .comment .comment__text img {
  max-width: 100%;
}

#comment-component-text {
  color: #000;
  line-height: 1.3;
  font-size: 14px;
  font-family: "Tahoma", sans-serif;
}

#comment-component-text * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#comment-component-text #comment_num {
  border-bottom: 1px dashed #365398;
  color: #365398;
  font-weight: bold;
}

#comment-component-text img {
  max-width: 100%;
  line-height: 1;
  display: inline-block;
  border-radius: 50%;
}

#comment-component-text .comment {
  transition: height, opacity 1000ms ease-in-out;
  overflow: hidden;
}

#comment-component-text .txt-content {
  width: 100%;
  min-height: 40px;
  display: block;
  margin: 15px 0;
  padding: 10px;
  resize: none;
  border: 1px solid #ddd;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

#comment-component-text .txt-cmt {
  display: flex;
  align-items: flex-start;
  padding: 15px 0;
  margin: 0 -5px;
}

#comment-component-text .txt-cmt .form-comment__img {
  padding: 0 5px;
  width: 80px;
}

#comment-component-text .your-name {
  border: 1px solid #ddd;
  padding: 5px 10px;
  width: auto !important;
  margin-bottom: 0;
  font-family: Arial, sans-serif;
}

#comment-component-text .form-comment__content {
  width: 100%;
  padding: 0 5px;
}

#comment-component-text .comment {
  border-bottom: 1px dashed #ccc;
  display: flex;
  align-items: flex-start;
  padding: 15px 0;
}

.comment.reply {
  padding-left: 45px;
}

#comment-component-text .comment__content {
  padding: 0 10px 0 5px;
  width: 100%;
}

#comment-component-text .comment__content .comment__name {
  margin-top: 0;
  color: #365398;
  font-size: 14px;
  text-align: left;
  text-align-last: left;
  font-weight: 700;
}

#comment-component-text .comment__image {
  flex-grow: 0;
  margin-right: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

#comment-component-text .comment .comment__text {
  margin: 8px 0 !important;
  font-size: 16px !important;
  line-height: 1.4 !important;
}

#comment-component-text .comment .comment__text img {
  display: block;
  margin: 15px 0;
  border-radius: 0 !important;
}

#comment-component-text .comment__details {
  font-size: 12px;
  color: #365398;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 5px;
}

#comment-component-text .comment__details a,
#comment-component-text .comment__details span {
  text-decoration: none;
  color: #365398;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
}
.comments__button--like {
  cursor: pointer;
}

#comment-component-text .comment__details img {
  width: 13px;
  transform: translateY(-3px);
}

#comment-component-text .comment__time {
  color: rgb(158, 158, 158);
  font-size: 11px;
  line-height: 1.4;
  cursor: auto !important;
}

#comment-component-text .add-comment-button {
  background-color: #4267b2;
  border: none #4267b2;
  color: #fff;
  font-size: 16px;
  border-radius: 2px;
  padding: 5px 10px;
  line-height: 22px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

#comment-component-text .add-comment-button:hover {
  background-color: #5478bf;
  border: none #5478bf;
}

#comment-component-text .reply {
  margin-left: 55px;
}

@media (max-width: 480px) {
  #comment-component-text .reply {
    margin-left: 15px;
  }
}

#comment-component-text.rtl {
  direction: rtl;
  text-align: right;
}

#comment-component-text.rtl .comment__content .comment__name {
  text-align: right;
  text-align-last: right;
}

#comment-component-text.rtl .reply {
  padding-right: 65px;
  padding-left: 0;
}

.comments__like {
  cursor: pointer;
}

.comment__details img {
  border-radius: 0 !important;
}

.btn-link {
  padding: 15px 20px !important;
  display: block;
  text-align: center;
  background-color: red;
  color: #eee !important;
  border-radius: 6px;
  max-width: 350px;
  width: 100%;
  /*margin-top: 35px !important;*/
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
  }

  50% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
  }

  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
  }
}

.list-green {
  list-style-type: none !important;
  list-style: none !important;
  margin: 16px 0 !important;
  padding: 0 !important;
}

.list-green li {
  position: relative;
  padding-left: 24px;
  background-image: url("../images/checkmark.png");
  background-position: left top 2px;
  background-size: 20px;
  background-repeat: no-repeat;
  margin-bottom: 15px;
  font-weight: bold;
}

input[value="Получить бесплатно"] {
  text-transform: uppercase;
  padding: 10px 15px;
  outline: none;
  border: none;
  margin: 5px 0 15px;
  border-radius: 5px;
  box-shadow: 0 4px 3px #242120;
  background: red;
  color: #fff;
  font-weight: bolder;
  cursor: pointer;
  transition: background 0.3s;
}

input[value="Получить бесплатно"]:hover {
  background: #b00 !important;
  transition: background 0.3s;
}

input[value="Получить бесплатно"]:active {
  transform: translateY(2px);
  box-shadow: none !important;
}

/*.wheel {*/
/*    width: 380px;*/
/*    height: 380px;*/
/*    margin: 0 auto;*/
/*    position: relative;*/
/*}*/
/*.wheel img {*/
/*    max-width: 100%;*/
/*    max-height: 100%;*/
/*}*/

/*.spin-result-wrapper {*/
/*    display: none;*/
/*    padding: 0 10px;*/
/*    -webkit-box-sizing: border-box;*/
/*    box-sizing: border-box;*/
/*    width: 100%;*/
/*    top: 0;*/
/*    z-index: 999;*/
/*    left: 0;*/
/*    height: 100%;*/
/*    position: fixed;*/
/*    background-color: rgba(0, 0, 0, .6);*/
/*    text-align: center;*/
/*}*/
/*.close-popup {*/
/*    position: absolute;*/
/*    width: 30px;*/
/*    height: 30px;*/
/*    background-image: url("../fonts/cross.svg");*/
/*    background-size: 100%;*/
/*    top: -40px;*/
/*    border-radius: 50%;*/
/*    -webkit-box-shadow: 0 0 10px #fff;*/
/*    box-shadow: 0 0 10px #fff;*/
/*    right: -40px;*/
/*    cursor: pointer;*/
/*}*/
/*.pop-up-button {*/
/*    display: table;*/
/*    text-transform: uppercase;*/
/*    text-decoration: none !important;*/
/*    padding: 10px 20%;*/
/*    font-size: 20px;*/
/*    border-radius: 5px;*/
/*    background-color: #71c341;*/
/*    color: #fff !important;*/
/*    border: medium;*/
/*    cursor: pointer;*/
/*    outline: medium;*/
/*    margin: 16px auto;*/
/*}*/
/*#order {*/
/*    !*display: none;*!*/
/*}*/
/*.pop-up-button:hover {*/
/*    color: #fff !important;*/
/*    text-decoration: none !important;*/
/*}*/
/*@media all and (max-width: 520px) {*/
/*    .wheel {*/
/*        width: 260px !important;*/
/*        height: 260px !important;*/
/*    }*/
/*    .close-popup {*/
/*        right: 0 !important;*/
/*    }*/
/*}*/
/*@media screen and (max-width: 520px) and (max-width: 345px) {*/
/*    .wheel {*/
/*        width: 250px !important;*/
/*        height: 250px !important;*/
/*    }*/
/*}*/
/*@media (max-width: 500px) {*/
/*    .door {*/
/*        width: 85px;*/
/*        height: 180px;*/
/*    }*/
/*}*/
.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
  }

  50% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
  }

  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
  }
}

.btn-link {
  border-radius: 6px;
  border: 1px solid red;
  background-color: red;
  color: #fff !important;
  padding: 10px 15px;
  font-weight: bold;
  display: inline-block;
  transition: box-shadow 0.2s ease-in-out;
  text-decoration: none;
}

.btn-link:hover {
  background-color: red;
  text-decoration: none;
  box-shadow: 1px 1px 5px #222;
}

.btn-link:active {
  background-color: red;
  color: #fff;
}

/*<![CDATA[*/
@media print {
  @page {
    margin: 2cm;
  }

  * {
    position: static;
    float: none;
    clear: both;
  }

  h1,
  h2,
  h3,
  h4 {
    font-family: Helvetica, Arial, sans-serif !important;
  }

  .o-bg-base,
  body {
    background-color: #fff !important;
    color: #000;
  }

  p {
    font-family: "Times New Roman", Georgia, serif;
  }

  h1 {
    font-size: 24pt;
    line-height: 120%;
    margin: 0 0 8pt;
    display: block;
    position: relative;
    color: #000;
  }

  h2,
  h3,
  h4 {
    font-size: 12pt !important;
    page-break-after: avoid;
  }

  ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  a {
    text-decoration: none;
    color: #000;
  }

  a[href]:after {
    display: none;
  }

  .o-wrapper.o-bg-base,
  .wrapper {
    margin-top: 0 !important;
  }

  .c-entry {
    border-bottom: 0;
  }
  /* 
  .l-entry {
    grid-template-columns: 1fr !important;
  } */

  video,
  .l-entry__related,
  .l-entry__sidebar,
  .c-header .o-container div:first-child,
  .c-header .o-container div:last-child,
  .o-page .o-container > section:not(.l-entry__body),
  .c-entry a.o-link-text:last-child,
  .c-footer {
    display: none !important;
  }

  .c-header {
    border-bottom: 2px solid #000;
    padding: 0;
    margin-bottom: 1rem;
  }

  .c-header .o-container div:nth-child(2) {
    margin-left: 0;
  }

  .c-entry *,
  .c-entry > p a,
  .c-entry > p span a,
  .c-entry > p span a span,
  .c-entry > ul a,
  .c-entry > a,
  .c-entry > h3 > a,
  .c-entry > h2 a,
  .l-entry__title,
  .l-entry__body a,
  .c-header__channel.o-link-inverse {
    color: #000;
  }

  .c-entry > h3::after {
    top: 1.8rem;
  }

  .c-entry > h3 > a {
    margin-top: 0.5rem;
    display: block;
  }

  .c-entry {
    position: relative;
  }

  .c-entry {
    border-top: 3px solid #d9d9d9;
    border-bottom: 3px solid #d9d9d9;
  }
}

/*]]>*/

.inL_477019 {
  max-width: 100%;
  width: 660px;
}

.inL_958985 {
  max-width: 100%;
  width: 460px;
}

.inL_142286 {
  color: #2f58b7;
}

.inL_356149 {
  width: 100%;
  max-width: 576px;
}

.inL_373058 {
  color: #2f58b7;
}

.inL_516339 {
  height: 812px;
  transform-origin: 50% 50% -280px;
  transform: translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(-360deg);
  --swiper-cube-translate-z: 0px;
  transition-duration: 0ms;
}

.inL_842667 {
  width: 560px;
  transform: rotateX(0deg) rotateY(0deg) translate3d(0px, 0px, 0px);
  transition-duration: 0ms;
}

.no-webp .inL_449855 {
  background-image: url("../images/prod-ava.png");
}

.webp .inL_449855 {
  background-image: url("../images/prod-ava.webp");
}

.inL_495576 {
  position: absolute;
  right: 15px;
}

.inL_375062 {
  width: 560px;
  transform: rotateX(0deg) rotateY(90deg) translate3d(0px, 0px, 0px);
  transition-duration: 0ms;
}

.no-webp .inL_718563 {
  background-image: url("../images/prod-ava.png");
}

.webp .inL_718563 {
  background-image: url("../images/prod-ava.webp");
}

.inL_372836 {
  position: absolute;
  right: 15px;
}

.inL_281150 {
  width: 560px;
  transform: rotateX(0deg) rotateY(180deg) translate3d(560px, 0px, 560px);
  transition-duration: 0ms;
}

.no-webp .inL_981902 {
  background-image: url("../images/prod-ava.png");
}

.webp .inL_981902 {
  background-image: url("../images/prod-ava.webp");
}

.inL_995718 {
  position: absolute;
  right: 15px;
}

.inL_245502 {
  height: 560px;
  transform: translate3d(0px, 300px, -280px) rotateX(90deg) rotateZ(0deg)
    scale(0.94);
}

.inL_88889 {
  font-weight: bold;
}

.inL_369076 {
  color: #2f58b7;
}

.inL_361309 {
  color: #fcd72b;
  font-weight: bold;
}

.inL_997035 {
  color: #fcd72b;
  font-weight: bold;
}

.inL_397198 {
  margin-bottom: 20px;
}

.inL_679116 {
  margin-top: 25px;
  margin-bottom: 15px;
}

.inL_862573 {
  display: block;
}

.inL_219158 {
  padding: 0;
  margin: 0;
}

/*new*/
.spin-wrapper {
  -webkit-box-shadow: 0 0 10px;
  box-shadow: 0 0 10px;
  border: 3px solid red;
  padding: 20px 10px;
  border-radius: 10px;
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
}

.spin-wrapper .lt63 {
  margin-bottom: 15px;
}

.spin-wrapper img {
  max-width: 100%;
}

.wheel-wrapper {
  text-align: center;
}

.wheel {
  margin: 0 auto;
  position: relative;
  width: 100%;
  max-width: 400px;
}

.wheel-cursor {
  position: absolute;
  width: 150px !important;
  height: 150px;
  top: 49%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.cursor-text {
  position: absolute;
  z-index: 2;
  display: inline-block;
  width: 70px !important;
  height: 70px;
  line-height: 70px;
  cursor: pointer;
  border-radius: 50%;
  vertical-align: middle;
  text-align: center;
  background-color: #ccc;
  border: 1px solid #ccc;
  top: 50%;
  left: 50%;
  font-size: 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-box-shadow: #fff 0 -2px 0 inset, #fff 0 2px 0 inset,
    rgba(0, 0, 0, 0.4) 0 0 5px;
  box-shadow: #fff 0 -2px inset, #fff 0 2px inset, rgba(0, 0, 0, 0.4) 0 0 5px;
  background: #fff;
  /*background: -webkit-gradient(radial,center center,0,center center,100%,color-stop(0,#fff),color-stop(100%,#eaeaea));*/
  /*background: -webkit-radial-gradient(center,ellipse cover,#fff 0,#eaeaea 100%);*/
  /*background: -o-radial-gradient(center,ellipse cover,#fff 0,#eaeaea 100%);*/
  /*background: -webkit-radial-gradient(center,ellipse,#fff 0,#eaeaea 100%);*/
  /*background: -o-radial-gradient(center,ellipse,#fff 0,#eaeaea 100%);*/
  background: radial-gradient(ellipse at center, #fff 0, #eaeaea 100%);
}

.wheel-img {
  -webkit-transition: 4s;
  -o-transition: 4s;
  transition: 4s;
}

.close-popup {
  position: absolute;
  width: 30px;
  height: 30px;
  /*background-image: url(../img/cross.svg);*/
  background-size: 100%;
  top: -40px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 10px #fff;
  box-shadow: 0 0 10px #fff;
  right: -40px;
  cursor: pointer;
}

.cursor-text:active {
  -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 0 5px inset;
  box-shadow: rgba(0, 0, 0, 0.4) 0 0 5px inset;
}

.pop-up-window {
  position: relative;
  width: 100%;
  max-width: 400px;
  right: 0;
  left: 0;
  top: 50%;
  margin: 0 auto;
  background: #fff repeat;
  text-align: center;
  padding: 70px 10px 20px;
  border-radius: 10px;
  animation: 0.7s ease 0s normal none 1 running pop-up-appear;
  transform: translateY(-50%);
}

.pop-up-window::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  top: -55px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #71c341;
  border-radius: 50%;
  animation: 0.5s ease 0.6s normal backwards 1 running pop-up-appear-before;
}

.pop-up-window::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 20px;
  top: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-width: medium medium 4px 4px;
  border-style: none none solid solid;
  border-color: #fff;
  -moz-border-top-colors: none;
  -moz-border-right-colors: none;
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  border-image: none;
  transform: rotate(-45deg);
  transition: opacity 1s ease 0s;
  animation: 0.5s ease 0.6s normal backwards 1 running pop-up-appear-after;
}

.spin-result-wrapper {
  display: none;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  top: 0;
  z-index: 999;
  left: 0;
  height: 100%;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6);
  text-align: center;
}

.super-rotation {
  -webkit-animation-name: super-rotation;
  animation-name: super-rotation;
  -webkit-animation-duration: 7s;
  animation-duration: 7s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}

@keyframes super-rotation {
  70% {
    -webkit-transform: rotate(1783deg);
    transform: rotate(1783deg);
  }

  100% {
    -webkit-transform: rotate(1774deg);
    transform: rotate(1774deg);
  }
}

.pop-up-heading {
  font-size: 37px;
  margin-bottom: 20px;
}

.pop-up-text {
  font-size: 22px;
  line-height: 30px;
  text-align: center;
  margin-bottom: 16px;
}

.pop-up-button {
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 20%;
  font-size: 20px;
  border-radius: 5px;
  background-color: #71c341;
  color: #fff !important;
  border: none;
  cursor: pointer;
  outline: none;
}

.pop-up-button:hover {
  color: #fff;
  text-decoration: none;
  background-color: #579732;
}

.footer-text {
  color: #fff;
  text-align: center;
  padding: 25px 15px;
}

.center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/*after adapt*/
.live-photo {
  width: 400px;
  max-width: 100%;
}

.live-photo--vert {
  width: 300px;
}

.price {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px 24px;
  width: 100%;
  max-width: 314px;
  margin: 10px auto !important;
}

.price__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
}

.price__title {
  font-weight: 700;
}

.price__title,
.price__value {
  line-height: 1;
  text-align: center;
  margin: 0 !important;
}

.price__value--old {
  font-size: 22px !important;
  text-decoration: line-through;
  color: #666666;
}

.price__value--new {
  font-size: 24px !important;
  font-weight: 700;
  color: red;
}

.list-green__title {
  display: block;
  margin-bottom: 10px;
}

.form-comment {
  position: relative;
}

.form-message {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: #19417d;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.2s;
}

.form-message.active {
  opacity: 1;
  visibility: visible;
}

.banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 40px !important;
}

#comment-component-text .banner img {
  border-radius: 0;
  max-width: none;
  display: block;
  width: 100%;
}

.fn {
  margin-bottom: 40px;
}

.fn__text {
  font-size: 16px !important;
  margin-bottom: 5px;
  text-align: center;
}

.fn__text:last-child {
  margin-bottom: 0;
}

.main-img {
  width: 600px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.svg-icon {
  width: 70%;
  height: auto;
}

.pack,
#comment-component-text .banner img.pack {
  display: block;
  width: 260px;
  max-width: 100%;
  margin: 0 auto 15px;
}

#comment-component-text .banner img.pack {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .l-grid--small {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .comments {
    padding-bottom: 0;
  }

  .pack,
  #comment-component-text .banner img.pack {
    width: 240px;
  }
}

@media (max-width: 479px) {
  .comment-dot--last {
    display: none;
  }

  #comment-component-text .comment__details {
    flex-wrap: wrap;
    row-gap: 0;
  }

  .l-grid--small {
    grid-template-columns: repeat(1, 1fr);
  }

  .order_block .main_form {
    padding-left: 20px;
    padding-right: 20px;
  }

  .order_block .blue-border {
    margin-right: 0;
    margin-left: 0;
  }

  .order_block .additional,
  .order_block .timelimit {
    padding: 0;
  }

  .pack,
  #comment-component-text .banner img.pack {
    width: 220px;
  }

  .webp .order_block .main_form,
  .no-webp .order_block .main_form {
    background-image: none;
    background: #e9e7e5;
    border: 2px solid #cbbebc;
  }

  .btn-link {
    max-width: 280px;
  }

  p,
  ul li,
  ol {
    font-size: 16px !important;
  }
}

.inL_828608 {
  height: 717px;
  transform-origin: 50% 50% -280px;
  transform: translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg);
  --swiper-cube-translate-z: 0px;
  transition-duration: 0ms;
  transition-delay: 0ms;
}

.inL_438425 {
  width: 560px;
  transform: rotateX(0deg) rotateY(0deg) translate3d(0px, 0px, 0px);
  transition-duration: 0ms;
}

.inL_137428 {
  opacity: 0;
}

.inL_496691 {
  opacity: 0;
}

.inL_244983 {
  width: 560px;
  transform: rotateX(0deg) rotateY(90deg) translate3d(0px, 0px, 0px);
  transition-duration: 0ms;
}

.inL_761046 {
  opacity: 1;
}

.inL_655926 {
  opacity: 0;
}

.inL_2537 {
  width: 560px;
  transform: rotateX(0deg) rotateY(180deg) translate3d(560px, 0px, 560px);
  transition-duration: 0ms;
}

.inL_837955 {
  opacity: 1;
}

.inL_511069 {
  opacity: 0;
}

.inL_998816 {
  height: 560px;
  transform: translate3d(0px, 300px, -280px) rotateX(89.99deg) rotateZ(0deg)
    scale(0.94);
}

@media (min-width: 768px) {
  .swiper2 {
    max-width: 560px;
  }

  p:not(.article-body-text p.small, .excl p, .footer-text),
  ul li {
    text-align: justify;
  }
  .composition__text {
    text-align: left;
  }
}

.custom-file-label {
  display: inline-block;
  background-color: #357abd;
  padding: 8px 12px;
  margin-bottom: 5px;
  cursor: pointer;
  border: none;
  border-radius: 2px;
  color: white;
  font-size: 16px;
  width: 200px;
  height: 40px;
  text-align: center;
  align-content: center;
  transition: background-color 0.3s ease;
}

.custom-file-input {
  display: none;
}
.custom-file-label:hover {
  background-color: #2c66a0;
}

.custom-block {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.form-block {
  display: flex;
  flex-direction: column;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .form-wrapper {
    align-items: center;
    flex-direction: row;
    gap: 15px;
  }
}
