.tippy-box[data-animation=fade][data-state=hidden] {
  opacity: 0;
}

[data-tippy-root] {
  max-width: calc(100vw - 10px);
}

.tippy-box {
  position: relative;
  background-color: #333;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
  white-space: normal;
  outline: 0;
  -webkit-transition-property: visibility, opacity, -webkit-transform;
  transition-property: visibility, opacity, -webkit-transform;
  -o-transition-property: transform, visibility, opacity;
  transition-property: transform, visibility, opacity;
  transition-property: transform, visibility, opacity, -webkit-transform;
}

.tippy-box[data-placement^=top] > .tippy-arrow {
  bottom: 0;
}

.tippy-box[data-placement^=top] > .tippy-arrow:before {
  bottom: -7px;
  left: 0;
  border-width: 8px 8px 0;
  border-top-color: initial;
  -webkit-transform-origin: center top;
      -ms-transform-origin: center top;
          transform-origin: center top;
}

.tippy-box[data-placement^=bottom] > .tippy-arrow {
  top: 0;
}

.tippy-box[data-placement^=bottom] > .tippy-arrow:before {
  top: -7px;
  left: 0;
  border-width: 0 8px 8px;
  border-bottom-color: initial;
  -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom;
}

.tippy-box[data-placement^=left] > .tippy-arrow {
  right: 0;
}

.tippy-box[data-placement^=left] > .tippy-arrow:before {
  border-width: 8px 0 8px 8px;
  border-left-color: initial;
  right: -7px;
  -webkit-transform-origin: center left;
      -ms-transform-origin: center left;
          transform-origin: center left;
}

.tippy-box[data-placement^=right] > .tippy-arrow {
  left: 0;
}

.tippy-box[data-placement^=right] > .tippy-arrow:before {
  left: -7px;
  border-width: 8px 8px 8px 0;
  border-right-color: initial;
  -webkit-transform-origin: center right;
      -ms-transform-origin: center right;
          transform-origin: center right;
}

.tippy-box[data-inertia][data-state=visible] {
  -webkit-transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
       -o-transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
          transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
}

.tippy-arrow {
  width: 16px;
  height: 16px;
  color: #333;
}

.tippy-arrow:before {
  content: "";
  position: absolute;
  border-color: transparent;
  border-style: solid;
}

.tippy-content {
  position: relative;
  padding: 5px 9px;
  z-index: 1;
}

:root {
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
  --f-spinner-stroke: 2.75;
}

.f-spinner {
  margin: auto;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
}

.f-spinner svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  -webkit-animation: f-spinner-rotate 2s linear infinite;
          animation: f-spinner-rotate 2s linear infinite;
}

.f-spinner svg * {
  stroke-width: var(--f-spinner-stroke);
  fill: none;
}

.f-spinner svg *:first-child {
  stroke: var(--f-spinner-color-1);
}

.f-spinner svg *:last-child {
  stroke: var(--f-spinner-color-2);
  -webkit-animation: f-spinner-dash 2s ease-in-out infinite;
          animation: f-spinner-dash 2s ease-in-out infinite;
}

@-webkit-keyframes f-spinner-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes f-spinner-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }

  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }

  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

.f-throwOutUp {
  -webkit-animation: 0.175s ease-out both f-throwOutUp;
          animation: 0.175s ease-out both f-throwOutUp;
}

.f-throwOutDown {
  -webkit-animation: 0.175s ease-out both f-throwOutDown;
          animation: 0.175s ease-out both f-throwOutDown;
}

@-webkit-keyframes f-throwOutUp {
  to {
    -webkit-transform: translate3d(0, -150px, 0);
            transform: translate3d(0, -150px, 0);
    opacity: 0;
  }
}

@keyframes f-throwOutUp {
  to {
    -webkit-transform: translate3d(0, -150px, 0);
            transform: translate3d(0, -150px, 0);
    opacity: 0;
  }
}

@-webkit-keyframes f-throwOutDown {
  to {
    -webkit-transform: translate3d(0, 150px, 0);
            transform: translate3d(0, 150px, 0);
    opacity: 0;
  }
}

@keyframes f-throwOutDown {
  to {
    -webkit-transform: translate3d(0, 150px, 0);
            transform: translate3d(0, 150px, 0);
    opacity: 0;
  }
}

.f-zoomInUp {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease-out 0.1s both f-zoomInUp;
          animation: var(--f-transition-duration, 0.2s) ease-out 0.1s both f-zoomInUp;
}

.f-zoomOutDown {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease-out both f-zoomOutDown;
          animation: var(--f-transition-duration, 0.2s) ease-out both f-zoomOutDown;
}

@-webkit-keyframes f-zoomInUp {
  from {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
            transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes f-zoomInUp {
  from {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
            transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes f-zoomOutDown {
  to {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
            transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}

@keyframes f-zoomOutDown {
  to {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
            transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}

.f-fadeIn {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease both f-fadeIn;
          animation: var(--f-transition-duration, 0.2s) ease both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease both f-fadeOut;
          animation: var(--f-transition-duration, 0.2s) ease both f-fadeOut;
  z-index: 1;
}

@-webkit-keyframes f-fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}

@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}

.f-fadeSlowIn {
  -webkit-animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
          animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
  z-index: 2;
}

.f-fadeSlowOut {
  -webkit-animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
          animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
  z-index: 1;
}

@-webkit-keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}

@keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}

.f-fadeFastIn {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
          animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
  z-index: 2;
}

.f-fadeFastOut {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastOut;
          animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastOut;
  z-index: 2;
}

@-webkit-keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }

  100% {
    opacity: 1;
  }
}

@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}

@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}

.f-crossfadeIn {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
          animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  -webkit-animation: calc(var(--f-transition-duration, 0.2s) * 0.5) linear 0.1s both f-crossfadeOut;
          animation: calc(var(--f-transition-duration, 0.2s) * 0.5) linear 0.1s both f-crossfadeOut;
  z-index: 1;
}

@-webkit-keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}

@keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}

.f-slideIn.from-next {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}

.f-slideIn.from-prev {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
}

.f-slideOut.to-next {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
}

.f-slideOut.to-prev {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
}

@-webkit-keyframes f-slideInPrev {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes f-slideInPrev {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes f-slideInNext {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes f-slideInNext {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes f-slideOutNext {
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes f-slideOutNext {
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@-webkit-keyframes f-slideOutPrev {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes f-slideOutPrev {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.f-classicIn.from-next {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2;
}

.f-classicIn.from-prev {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
  z-index: 2;
}

.f-classicOut.to-next {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
  z-index: 1;
}

.f-classicOut.to-prev {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
  z-index: 1;
}

@-webkit-keyframes f-classicInNext {
  0% {
    -webkit-transform: translateX(-75px);
            transform: translateX(-75px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes f-classicInNext {
  0% {
    -webkit-transform: translateX(-75px);
            transform: translateX(-75px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes f-classicInPrev {
  0% {
    -webkit-transform: translateX(75px);
            transform: translateX(75px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes f-classicInPrev {
  0% {
    -webkit-transform: translateX(75px);
            transform: translateX(75px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes f-classicOutNext {
  100% {
    -webkit-transform: translateX(-75px);
            transform: translateX(-75px);
    opacity: 0;
  }
}

@keyframes f-classicOutNext {
  100% {
    -webkit-transform: translateX(-75px);
            transform: translateX(-75px);
    opacity: 0;
  }
}

@-webkit-keyframes f-classicOutPrev {
  100% {
    -webkit-transform: translateX(75px);
            transform: translateX(75px);
    opacity: 0;
  }
}

@keyframes f-classicOutPrev {
  100% {
    -webkit-transform: translateX(75px);
            transform: translateX(75px);
    opacity: 0;
  }
}

:root {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-hover-bg: #e0e0e0;
  --f-button-active-bg: #d0d0d0;
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-disabled-opacity: 0.65;
}

.f-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  width: var(--f-button-width);
  height: var(--f-button-height);
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  color: var(--f-button-color);
  background: var(--f-button-bg);
  -webkit-box-shadow: var(--f-button-shadow);
          box-shadow: var(--f-button-shadow);
  pointer-events: all;
  cursor: pointer;
  -webkit-transition: var(--f-button-transition);
  -o-transition: var(--f-button-transition);
  transition: var(--f-button-transition);
}

.f-button:active:not([disabled]) {
  background-color: var(--f-button-active-bg);
}

.f-button:focus:not(:focus-visible) {
  outline: none;
}

.f-button:focus-visible {
  outline: none;
  -webkit-box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
          box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
}

.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  fill: var(--f-button-svg-fill);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  -webkit-transition: opacity 0.15s ease;
  -o-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
  -webkit-transform: var(--f-button-transform);
      -ms-transform: var(--f-button-transform);
          transform: var(--f-button-transform);
  -webkit-filter: var(--f-button-svg-filter);
          filter: var(--f-button-svg-filter);
  pointer-events: none;
}

.f-button[disabled] {
  cursor: default;
}

.f-button[disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}

.f-carousel__nav .f-button.is-prev,
.f-carousel__nav .f-button.is-next,
.fancybox__nav .f-button.is-prev,
.fancybox__nav .f-button.is-next {
  position: absolute;
  z-index: 1;
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-next {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-prev {
  left: var(--f-button-prev-pos);
}

.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-next {
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
  left: auto;
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
  right: auto;
  left: var(--f-button-prev-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-next {
  top: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-prev {
  top: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-next {
  bottom: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev svg,
.is-vertical .f-carousel__nav .f-button.is-next svg,
.is-vertical .fancybox__nav .f-button.is-prev svg,
.is-vertical .fancybox__nav .f-button.is-next svg {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

html.with-fancybox {
  width: auto;
  overflow: visible;
  scroll-behavior: auto;
}

html.with-fancybox body {
  -ms-touch-action: none;
      touch-action: none;
}

html.with-fancybox body.hide-scrollbar {
  width: auto;
  margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
  overflow: hidden !important;
  overscroll-behavior-y: none;
}

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-hover-color: #fff;
  --fancybox-bg: rgba(24, 24, 27, 0.98);
  --fancybox-slide-gap: 10px;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-color-1: rgba(255, 255, 255, 0.1);
  --f-spinner-color-2: #bbb;
  --f-spinner-stroke: 3.65;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  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-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #f8f8f8;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: visible;
  z-index: 1050;
  outline: none;
  -webkit-transform-origin: top left;
      -ms-transform-origin: top left;
          transform-origin: top left;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overscroll-behavior-y: contain;
}

.fancybox__container *,
.fancybox__container *::before,
.fancybox__container *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.fancybox__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: var(--fancybox-bg);
  opacity: var(--fancybox-opacity, 1);
  will-change: opacity;
}

.fancybox__carousel {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip;
}

.fancybox__viewport {
  width: 100%;
  height: 100%;
}

.fancybox__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  height: 100%;
}

.fancybox__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: relative;
  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;
  width: 100%;
  height: 100%;
  margin: 0 var(--fancybox-slide-gap) 0 0;
  padding: 4px;
  overflow: auto;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
  padding-top: 40px;
}

.fancybox__slide.has-iframe,
.fancybox__slide.has-video,
.fancybox__slide.has-html5video {
  overflow: hidden;
}

.fancybox__slide.has-image {
  overflow: hidden;
}

.fancybox__slide.has-image.is-animating,
.fancybox__slide.has-image.is-selected {
  overflow: visible;
}

.fancybox__slide::before,
.fancybox__slide::after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0px;
          flex: 0 0 0;
  margin: auto;
}

.fancybox__content {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  margin: 0;
  padding: 2rem;
  max-width: 100%;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  cursor: default;
  border-radius: 0;
  z-index: 20;
}

.is-loading .fancybox__content {
  opacity: 0;
}

.is-draggable .fancybox__content {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.can-zoom_in .fancybox__content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.can-zoom_out .fancybox__content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.is-dragging .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__content [data-selectable],
.fancybox__content [contenteditable] {
  cursor: auto;
}

.fancybox__slide.has-image > .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.fancybox__slide.has-image > .fancybox__content > picture > img {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.is-zooming-in .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content,
.is-zooming-out .fancybox__slide:not(.is-selected) .fancybox__content {
  visibility: hidden;
}

.is-animating .fancybox__content,
.is-dragging .fancybox__content {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  will-change: transform, width, height;
}

.fancybox-image {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.fancybox__caption {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  max-width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0;
  padding: 14px 0 4px 0;
  overflow-wrap: anywhere;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  cursor: auto;
  visibility: visible;
}

.is-loading .fancybox__caption,
.is-closing .fancybox__caption {
  opacity: 0;
  visibility: hidden;
}

.is-compact .fancybox__caption {
  padding-bottom: 0;
}

.f-button.is-close-btn {
  --f-button-svg-stroke-width: 2;
  position: absolute;
  top: 0;
  right: 8px;
  z-index: 40;
}

.fancybox__content > .f-button.is-close-btn {
  --f-button-width: 34px;
  --f-button-height: 34px;
  --f-button-border-radius: 4px;
  --f-button-color: var(--fancybox-color, #fff);
  --f-button-hover-color: var(--fancybox-color, #fff);
  --f-button-bg: transparent;
  --f-button-hover-bg: transparent;
  --f-button-active-bg: transparent;
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  position: absolute;
  top: -38px;
  right: 0;
  opacity: 0.75;
}

.is-loading .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.is-zooming-out .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.fancybox__content > .f-button.is-close-btn:hover {
  opacity: 1;
}

.fancybox__footer {
  padding: 0;
  margin: 0;
  position: relative;
}

.fancybox__footer .fancybox__caption {
  width: 100%;
  padding: 24px;
  opacity: var(--fancybox-opacity, 1);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.is-compact .fancybox__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(24, 24, 27, 0.5);
}

.is-compact .fancybox__footer .fancybox__caption {
  padding: 12px;
}

.is-compact .fancybox__content > .f-button.is-close-btn {
  --f-button-border-radius: 50%;
  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-outline-color: #000;
  --f-button-bg: rgba(0, 0, 0, 0.6);
  --f-button-active-bg: rgba(0, 0, 0, 0.6);
  --f-button-hover-bg: rgba(0, 0, 0, 0.6);
  --f-button-svg-width: 18px;
  --f-button-svg-height: 18px;
  --f-button-svg-filter: none;
  top: 5px;
  right: 5px;
}

.fancybox__nav {
  --f-button-width: 50px;
  --f-button-height: 50px;
  --f-button-border: 0;
  --f-button-border-radius: 50%;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: transparent;
  --f-button-hover-bg: rgba(24, 24, 27, 0.3);
  --f-button-active-bg: rgba(24, 24, 27, 0.5);
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 26px;
  --f-button-svg-height: 26px;
  --f-button-svg-stroke-width: 2.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
  --f-button-svg-disabled-opacity: 0.65;
  --f-button-next-pos: 1rem;
  --f-button-prev-pos: 1rem;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__nav .f-button:before {
  position: absolute;
  content: "";
  top: -30px;
  right: -20px;
  left: -20px;
  bottom: -30px;
  z-index: 1;
}

.is-idle .fancybox__nav {
  -webkit-animation: 0.15s ease-out both f-fadeOut;
          animation: 0.15s ease-out both f-fadeOut;
}

.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  -webkit-animation: 0.15s ease-out both f-fadeOut;
          animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__slide > .f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
  z-index: 30;
  cursor: pointer;
}

.fancybox-protected {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.fancybox-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 40;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

.fancybox-focus-guard {
  outline: none;
  opacity: 0;
  position: fixed;
  pointer-events: none;
}

.fancybox__container:not([aria-hidden]) {
  opacity: 0;
}

.fancybox__container.is-animated[aria-hidden=false] > *:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel > *:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide > *:not(.fancybox__content) {
  -webkit-animation: 0.25s ease 0.1s backwards f-fadeIn;
          animation: 0.25s ease 0.1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  -webkit-animation: 0.35s ease backwards f-fadeIn;
          animation: 0.35s ease backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=true] > *:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel > *:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide > *:not(.fancybox__content) {
  -webkit-animation: 0.15s ease forwards f-fadeOut;
          animation: 0.15s ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  -webkit-animation: 0.35s ease forwards f-fadeOut;
          animation: 0.35s ease forwards f-fadeOut;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  max-width: 100%;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content {
  width: 100%;
  height: 100%;
}

.fancybox__container:not(.is-compact) .has-iframe .fancybox__content,
.fancybox__container:not(.is-compact) .has-map .fancybox__content,
.fancybox__container:not(.is-compact) .has-pdf .fancybox__content {
  width: calc(100% - 120px);
  height: 90%;
}

.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video,
.fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.f-carousel__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-outline: 0;
  --f-thumb-outline-color: #5eb0ef;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
  --f-thumb-border-radius: 2px;
  --f-thumb-offset: 0px;
  --f-button-next-pos: 0;
  --f-button-prev-pos: 0;
}

.f-carousel__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
}

.f-carousel__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 20px;
  --f-thumb-clip-width: 46px;
}

.f-thumbs {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.f-thumbs .f-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ebeff2), to(#e2e8f0));
  background-image: -o-linear-gradient(#ebeff2, #e2e8f0);
  background-image: linear-gradient(#ebeff2, #e2e8f0);
  z-index: -1;
}

.f-thumbs .f-spinner svg {
  display: none;
}

.f-thumbs.is-vertical {
  height: 100%;
}

.f-thumbs__viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.f-thumbs__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  will-change: transform;
}

.f-thumbs__slide {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin: 0;
  width: var(--f-thumb-width);
  min-width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  overflow: visible;
  cursor: pointer;
}

.f-thumbs__slide.is-loading img {
  opacity: 0;
}

.is-classic .f-thumbs__viewport {
  height: 100%;
}

.is-modern .f-thumbs__track {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.is-modern .f-thumbs__track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--left, 0) * 1px);
  width: calc(100% - var(--width, 0) * 1px);
  cursor: pointer;
}

.is-modern .f-thumbs__slide {
  --clip-path: inset( 0 calc( (var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0)) * 0.5 * (1 - var(--progress, 0)) ) round var(--f-thumb-border-radius, 0) );
  -webkit-transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
          transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  pointer-events: none;
}

.is-modern .f-thumbs__slide:focus-within:not(.is-selected) {
  -webkit-filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
          filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
}

.is-modern .f-thumbs__slide > * {
  -webkit-clip-path: var(--clip-path);
          clip-path: var(--clip-path);
}

.is-modern.in-touch .f-thumbs__slide {
  -webkit-filter: none;
          filter: none;
}

.is-modern.is-resting .f-thumbs__slide {
  -webkit-transition: all 0.33s ease;
  -o-transition: all 0.33s ease;
  transition: all 0.33s ease;
}

.is-modern.is-resting .f-thumbs__slide > * {
  -webkit-transition: all 0.33s ease;
  -o-transition: all 0.33s ease;
  transition: all 0.33s ease;
}

.f-thumbs__slide__button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  position: relative;
  border-radius: var(--f-thumb-border-radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  outline: none;
  cursor: pointer;
  pointer-events: auto;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.f-thumbs__slide__button:hover {
  opacity: var(--f-thumb-hover-opacity);
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
  outline: none;
}

.f-thumbs__slide__button:focus-visible {
  outline: none;
  opacity: var(--f-thumb-selected-opacity);
}

.is-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity);
}

.is-nav-selected .f-thumbs__slide__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  bottom: 0;
  border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
  border-radius: var(--f-thumb-border-radius);
  -webkit-animation: f-fadeIn 0.2s ease-out;
          animation: f-fadeIn 0.2s ease-out;
  z-index: 10;
}

.f-thumbs__slide__img {
  position: absolute;
  overflow: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: var(--f-thumb-offset);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
}

.f-thumbs.is-horizontal .f-thumbs__track {
  margin: 0 auto;
  padding: 8px 0 12px 0;
}

.f-thumbs.is-horizontal .f-thumbs__slide {
  margin: 0 var(--f-thumb-gap) 0 0;
}

.f-thumbs.is-vertical .f-thumbs__track {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: auto 0;
  padding: 0 8px;
}

.f-thumbs.is-vertical .f-thumbs__slide {
  margin: 0 0 var(--f-thumb-gap) 0;
}

.fancybox__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-border-radius: 2px;
  --f-thumb-outline: 2px;
  --f-thumb-outline-color: #ededed;
  position: relative;
  opacity: var(--fancybox-opacity, 1);
  -webkit-transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.fancybox__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-classic .f-spinner {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0.05)));
  background-image: -o-linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 20px;
  --f-thumb-clip-width: 46px;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-modern .f-spinner {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0.05)));
  background-image: -o-linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-horizontal {
  padding: 0 var(--f-thumb-gap);
}

.fancybox__thumbs.is-vertical {
  padding: var(--f-thumb-gap) 0;
}

.is-compact .fancybox__thumbs {
  --f-thumb-width: 64px;
  --f-thumb-clip-width: 32px;
  --f-thumb-height: 48px;
  --f-thumb-extra-gap: 10px;
}

.fancybox__thumbs.is-masked {
  max-height: 0px !important;
}

.is-closing .fancybox__thumbs {
  -webkit-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

.fancybox__toolbar {
  --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
  --f-button-width: 46px;
  --f-button-height: 46px;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: rgba(24, 24, 27, 0.65);
  --f-button-hover-bg: rgba(70, 70, 73, 0.65);
  --f-button-active-bg: rgba(90, 90, 93, 0.65);
  --f-button-border-radius: 0;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: 0.65;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 20;
}

.fancybox__toolbar :focus-visible {
  z-index: 1;
}

.fancybox__toolbar.is-absolute,
.is-compact .fancybox__toolbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.is-idle .fancybox__toolbar {
  pointer-events: none;
  -webkit-animation: 0.15s ease-out both f-fadeOut;
          animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__toolbar__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

.fancybox__toolbar__column.is-left,
.fancybox__toolbar__column.is-right {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
}

.fancybox__toolbar__column.is-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.fancybox__infobar {
  padding: 0 5px;
  line-height: var(--f-button-height);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.fancybox__infobar span {
  padding: 0 5px;
}

.fancybox__infobar:not(:first-child):not(:last-child) {
  background: var(--f-button-bg);
}

[data-fancybox-toggle-slideshow] {
  position: relative;
}

[data-fancybox-toggle-slideshow] .f-progress {
  height: 100%;
  opacity: 0.3;
}

[data-fancybox-toggle-slideshow] svg g:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

[data-fancybox-toggle-slideshow] svg g:last-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
  display: none;
}

:-webkit-full-screen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:-ms-fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:-webkit-full-screen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: -webkit-box;
  display: flex;
}

:-ms-fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: -ms-flexbox;
  display: flex;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.f-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0;
      -ms-transform-origin: 0;
          transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
  background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
  z-index: 30;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

/**
 * Swiper 11.0.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 27, 2024
 */

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
       -o-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
          transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -ms-scroll-snap-type: none;
      scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.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: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  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: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  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: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  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: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  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;
  -webkit-transform-origin: 50%;
      -ms-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-box-sizing: border-box;
          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 {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

: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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  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 svg,
.swiper-button-prev svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}

.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.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:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
      -ms-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
      -ms-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
}

.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;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-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-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.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-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
      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,
.swiper-vertical > .swiper-scrollbar {
  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-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  -ms-touch-action: none;
      touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
       -o-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
       -o-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
      -ms-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.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-prev {
  pointer-events: auto;
  visibility: visible;
}

.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;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition-property: opacity, height, -webkit-transform;
  transition-property: opacity, height, -webkit-transform;
  -o-transition-property: transform, opacity, height;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

@charset "UTF-8";

/*!
 * Quill Editor v2.0.3
 * https://quilljs.com
 * Copyright (c) 2017-2024, Slab
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */

.ql-container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  height: 100%;
  margin: 0;
  position: relative;
}

.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}

.ql-container:not(.ql-disabled) li[data-list=checked] > .ql-ui,
.ql-container:not(.ql-disabled) li[data-list=unchecked] > .ql-ui {
  cursor: pointer;
}

.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}

.ql-clipboard p {
  margin: 0;
  padding: 0;
}

.ql-editor {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  line-height: 1.42;
  height: 100%;
  outline: none;
  overflow-y: auto;
  padding: 12px 15px;
  -o-tab-size: 4;
     tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.ql-editor > * {
  cursor: text;
}

.ql-editor p,
.ql-editor ol,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
}

@supports (counter-set: none) {
  .ql-editor p,
  .ql-editor h1,
  .ql-editor h2,
  .ql-editor h3,
  .ql-editor h4,
  .ql-editor h5,
  .ql-editor h6 {
    counter-set: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}

@supports not (counter-set: none) {
  .ql-editor p,
  .ql-editor h1,
  .ql-editor h2,
  .ql-editor h3,
  .ql-editor h4,
  .ql-editor h5,
  .ql-editor h6 {
    counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}

.ql-editor table {
  border-collapse: collapse;
}

.ql-editor td {
  border: 1px solid #000;
  padding: 2px 5px;
}

.ql-editor ol {
  padding-left: 1.5em;
}

.ql-editor li {
  list-style-type: none;
  padding-left: 1.5em;
  position: relative;
}

.ql-editor li > .ql-ui:before {
  display: inline-block;
  margin-left: -1.5em;
  margin-right: 0.3em;
  text-align: right;
  white-space: nowrap;
  width: 1.2em;
}

.ql-editor li[data-list=checked] > .ql-ui,
.ql-editor li[data-list=unchecked] > .ql-ui {
  color: #777;
}

.ql-editor li[data-list=bullet] > .ql-ui:before {
  content: "•";
}

.ql-editor li[data-list=checked] > .ql-ui:before {
  content: "☑";
}

.ql-editor li[data-list=unchecked] > .ql-ui:before {
  content: "☐";
}

@supports (counter-set: none) {
  .ql-editor li[data-list] {
    counter-set: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}

@supports not (counter-set: none) {
  .ql-editor li[data-list] {
    counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}

.ql-editor li[data-list=ordered] {
  counter-increment: list-0;
}

.ql-editor li[data-list=ordered] > .ql-ui:before {
  content: counter(list-0, decimal) ". ";
}

.ql-editor li[data-list=ordered].ql-indent-1 {
  counter-increment: list-1;
}

.ql-editor li[data-list=ordered].ql-indent-1 > .ql-ui:before {
  content: counter(list-1, lower-alpha) ". ";
}

@supports (counter-set: none) {
  .ql-editor li[data-list].ql-indent-1 {
    counter-set: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}

@supports not (counter-set: none) {
  .ql-editor li[data-list].ql-indent-1 {
    counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}

.ql-editor li[data-list=ordered].ql-indent-2 {
  counter-increment: list-2;
}

.ql-editor li[data-list=ordered].ql-indent-2 > .ql-ui:before {
  content: counter(list-2, lower-roman) ". ";
}

@supports (counter-set: none) {
  .ql-editor li[data-list].ql-indent-2 {
    counter-set: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}

@supports not (counter-set: none) {
  .ql-editor li[data-list].ql-indent-2 {
    counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}

.ql-editor li[data-list=ordered].ql-indent-3 {
  counter-increment: list-3;
}

.ql-editor li[data-list=ordered].ql-indent-3 > .ql-ui:before {
  content: counter(list-3, decimal) ". ";
}

@supports (counter-set: none) {
  .ql-editor li[data-list].ql-indent-3 {
    counter-set: list-4 list-5 list-6 list-7 list-8 list-9;
  }
}

@supports not (counter-set: none) {
  .ql-editor li[data-list].ql-indent-3 {
    counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
  }
}

.ql-editor li[data-list=ordered].ql-indent-4 {
  counter-increment: list-4;
}

.ql-editor li[data-list=ordered].ql-indent-4 > .ql-ui:before {
  content: counter(list-4, lower-alpha) ". ";
}

@supports (counter-set: none) {
  .ql-editor li[data-list].ql-indent-4 {
    counter-set: list-5 list-6 list-7 list-8 list-9;
  }
}

@supports not (counter-set: none) {
  .ql-editor li[data-list].ql-indent-4 {
    counter-reset: list-5 list-6 list-7 list-8 list-9;
  }
}

.ql-editor li[data-list=ordered].ql-indent-5 {
  counter-increment: list-5;
}

.ql-editor li[data-list=ordered].ql-indent-5 > .ql-ui:before {
  content: counter(list-5, lower-roman) ". ";
}

@supports (counter-set: none) {
  .ql-editor li[data-list].ql-indent-5 {
    counter-set: list-6 list-7 list-8 list-9;
  }
}

@supports not (counter-set: none) {
  .ql-editor li[data-list].ql-indent-5 {
    counter-reset: list-6 list-7 list-8 list-9;
  }
}

.ql-editor li[data-list=ordered].ql-indent-6 {
  counter-increment: list-6;
}

.ql-editor li[data-list=ordered].ql-indent-6 > .ql-ui:before {
  content: counter(list-6, decimal) ". ";
}

@supports (counter-set: none) {
  .ql-editor li[data-list].ql-indent-6 {
    counter-set: list-7 list-8 list-9;
  }
}

@supports not (counter-set: none) {
  .ql-editor li[data-list].ql-indent-6 {
    counter-reset: list-7 list-8 list-9;
  }
}

.ql-editor li[data-list=ordered].ql-indent-7 {
  counter-increment: list-7;
}

.ql-editor li[data-list=ordered].ql-indent-7 > .ql-ui:before {
  content: counter(list-7, lower-alpha) ". ";
}

@supports (counter-set: none) {
  .ql-editor li[data-list].ql-indent-7 {
    counter-set: list-8 list-9;
  }
}

@supports not (counter-set: none) {
  .ql-editor li[data-list].ql-indent-7 {
    counter-reset: list-8 list-9;
  }
}

.ql-editor li[data-list=ordered].ql-indent-8 {
  counter-increment: list-8;
}

.ql-editor li[data-list=ordered].ql-indent-8 > .ql-ui:before {
  content: counter(list-8, lower-roman) ". ";
}

@supports (counter-set: none) {
  .ql-editor li[data-list].ql-indent-8 {
    counter-set: list-9;
  }
}

@supports not (counter-set: none) {
  .ql-editor li[data-list].ql-indent-8 {
    counter-reset: list-9;
  }
}

.ql-editor li[data-list=ordered].ql-indent-9 {
  counter-increment: list-9;
}

.ql-editor li[data-list=ordered].ql-indent-9 > .ql-ui:before {
  content: counter(list-9, decimal) ". ";
}

.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}

.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}

.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}

.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}

.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}

.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}

.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}

.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}

.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}

.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}

.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}

.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}

.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}

.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}

.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}

.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}

.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}

.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}

.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}

.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}

.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}

.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}

.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}

.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}

.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}

.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}

.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}

.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}

.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}

.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}

.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}

.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}

.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}

.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}

.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}

.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}

.ql-editor li.ql-direction-rtl {
  padding-right: 1.5em;
}

.ql-editor li.ql-direction-rtl > .ql-ui:before {
  margin-left: 0.3em;
  margin-right: -1.5em;
  text-align: left;
}

.ql-editor table {
  table-layout: fixed;
  width: 100%;
}

.ql-editor table td {
  outline: none;
}

.ql-editor .ql-code-block-container {
  font-family: monospace;
}

.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}

.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}

.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}

.ql-editor .ql-bg-black {
  background-color: #000;
}

.ql-editor .ql-bg-red {
  background-color: #e60000;
}

.ql-editor .ql-bg-orange {
  background-color: #f90;
}

.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}

.ql-editor .ql-bg-green {
  background-color: #008a00;
}

.ql-editor .ql-bg-blue {
  background-color: #06c;
}

.ql-editor .ql-bg-purple {
  background-color: #93f;
}

.ql-editor .ql-color-white {
  color: #fff;
}

.ql-editor .ql-color-red {
  color: #e60000;
}

.ql-editor .ql-color-orange {
  color: #f90;
}

.ql-editor .ql-color-yellow {
  color: #ff0;
}

.ql-editor .ql-color-green {
  color: #008a00;
}

.ql-editor .ql-color-blue {
  color: #06c;
}

.ql-editor .ql-color-purple {
  color: #93f;
}

.ql-editor .ql-font-serif {
  font-family: Georgia, Times New Roman, serif;
}

.ql-editor .ql-font-monospace {
  font-family: Monaco, Courier New, monospace;
}

.ql-editor .ql-size-small {
  font-size: 0.75em;
}

.ql-editor .ql-size-large {
  font-size: 1.5em;
}

.ql-editor .ql-size-huge {
  font-size: 2.5em;
}

.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}

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

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

.ql-editor .ql-align-right {
  text-align: right;
}

.ql-editor .ql-ui {
  position: absolute;
}

.ql-editor.ql-blank::before {
  color: rgba(0, 0, 0, 0.6);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}

.ql-snow.ql-toolbar:after,
.ql-snow .ql-toolbar:after {
  clear: both;
  content: "";
  display: table;
}

.ql-snow.ql-toolbar button,
.ql-snow .ql-toolbar button {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  float: left;
  height: 24px;
  padding: 3px 5px;
  width: 28px;
}

.ql-snow.ql-toolbar button svg,
.ql-snow .ql-toolbar button svg {
  float: left;
  height: 100%;
}

.ql-snow.ql-toolbar button:active:hover,
.ql-snow .ql-toolbar button:active:hover {
  outline: none;
}

.ql-snow.ql-toolbar input.ql-image[type=file],
.ql-snow .ql-toolbar input.ql-image[type=file] {
  display: none;
}

.ql-snow.ql-toolbar button:hover,
.ql-snow .ql-toolbar button:hover,
.ql-snow.ql-toolbar button:focus,
.ql-snow .ql-toolbar button:focus,
.ql-snow.ql-toolbar button.ql-active,
.ql-snow .ql-toolbar button.ql-active,
.ql-snow.ql-toolbar .ql-picker-label:hover,
.ql-snow .ql-toolbar .ql-picker-label:hover,
.ql-snow.ql-toolbar .ql-picker-label.ql-active,
.ql-snow .ql-toolbar .ql-picker-label.ql-active,
.ql-snow.ql-toolbar .ql-picker-item:hover,
.ql-snow .ql-toolbar .ql-picker-item:hover,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected {
  color: #06c;
}

.ql-snow.ql-toolbar button:hover .ql-fill,
.ql-snow .ql-toolbar button:hover .ql-fill,
.ql-snow.ql-toolbar button:focus .ql-fill,
.ql-snow .ql-toolbar button:focus .ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
  fill: #06c;
}

.ql-snow.ql-toolbar button:hover .ql-stroke,
.ql-snow .ql-toolbar button:hover .ql-stroke,
.ql-snow.ql-toolbar button:focus .ql-stroke,
.ql-snow .ql-toolbar button:focus .ql-stroke,
.ql-snow.ql-toolbar button.ql-active .ql-stroke,
.ql-snow .ql-toolbar button.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow.ql-toolbar button:hover .ql-stroke-miter,
.ql-snow .ql-toolbar button:hover .ql-stroke-miter,
.ql-snow.ql-toolbar button:focus .ql-stroke-miter,
.ql-snow .ql-toolbar button:focus .ql-stroke-miter,
.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
  stroke: #06c;
}

.ql-snow {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.ql-snow * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.ql-snow .ql-hidden {
  display: none;
}

.ql-snow .ql-out-bottom,
.ql-snow .ql-out-top {
  visibility: hidden;
}

.ql-snow .ql-tooltip {
  position: absolute;
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);
}

.ql-snow .ql-tooltip a {
  cursor: pointer;
  text-decoration: none;
}

.ql-snow .ql-tooltip.ql-flip {
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
}

.ql-snow .ql-formats {
  display: inline-block;
  vertical-align: middle;
}

.ql-snow .ql-formats:after {
  clear: both;
  content: "";
  display: table;
}

.ql-snow .ql-stroke {
  fill: none;
  stroke: #444;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.ql-snow .ql-stroke-miter {
  fill: none;
  stroke: #444;
  stroke-miterlimit: 10;
  stroke-width: 2;
}

.ql-snow .ql-fill,
.ql-snow .ql-stroke.ql-fill {
  fill: #444;
}

.ql-snow .ql-empty {
  fill: none;
}

.ql-snow .ql-even {
  fill-rule: evenodd;
}

.ql-snow .ql-thin,
.ql-snow .ql-stroke.ql-thin {
  stroke-width: 1;
}

.ql-snow .ql-transparent {
  opacity: 0.4;
}

.ql-snow .ql-direction svg:last-child {
  display: none;
}

.ql-snow .ql-direction.ql-active svg:last-child {
  display: inline;
}

.ql-snow .ql-direction.ql-active svg:first-child {
  display: none;
}

.ql-snow .ql-editor h1 {
  font-size: 2em;
}

.ql-snow .ql-editor h2 {
  font-size: 1.5em;
}

.ql-snow .ql-editor h3 {
  font-size: 1.17em;
}

.ql-snow .ql-editor h4 {
  font-size: 1em;
}

.ql-snow .ql-editor h5 {
  font-size: 0.83em;
}

.ql-snow .ql-editor h6 {
  font-size: 0.67em;
}

.ql-snow .ql-editor a {
  text-decoration: underline;
}

.ql-snow .ql-editor blockquote {
  border-left: 4px solid #ccc;
  margin-bottom: 5px;
  margin-top: 5px;
  padding-left: 16px;
}

.ql-snow .ql-editor code,
.ql-snow .ql-editor .ql-code-block-container {
  background-color: #f0f0f0;
  border-radius: 3px;
}

.ql-snow .ql-editor .ql-code-block-container {
  margin-bottom: 5px;
  margin-top: 5px;
  padding: 5px 10px;
}

.ql-snow .ql-editor code {
  font-size: 85%;
  padding: 2px 4px;
}

.ql-snow .ql-editor .ql-code-block-container {
  background-color: #23241f;
  color: #f8f8f2;
  overflow: visible;
}

.ql-snow .ql-editor img {
  max-width: 100%;
}

.ql-snow .ql-picker {
  color: #444;
  display: inline-block;
  float: left;
  font-size: 14px;
  font-weight: 500;
  height: 24px;
  position: relative;
  vertical-align: middle;
}

.ql-snow .ql-picker-label {
  cursor: pointer;
  display: inline-block;
  height: 100%;
  padding-left: 8px;
  padding-right: 2px;
  position: relative;
  width: 100%;
}

.ql-snow .ql-picker-label::before {
  display: inline-block;
  line-height: 22px;
}

.ql-snow .ql-picker-options {
  background-color: #fff;
  display: none;
  min-width: 100%;
  padding: 4px 8px;
  position: absolute;
  white-space: nowrap;
}

.ql-snow .ql-picker-options .ql-picker-item {
  cursor: pointer;
  display: block;
  padding-bottom: 5px;
  padding-top: 5px;
}

.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  color: #ccc;
  z-index: 2;
}

.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
  fill: #ccc;
}

.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
  stroke: #ccc;
}

.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  display: block;
  margin-top: -1px;
  top: 100%;
  z-index: 1;
}

.ql-snow .ql-color-picker,
.ql-snow .ql-icon-picker {
  width: 28px;
}

.ql-snow .ql-color-picker .ql-picker-label,
.ql-snow .ql-icon-picker .ql-picker-label {
  padding: 2px 4px;
}

.ql-snow .ql-color-picker .ql-picker-label svg,
.ql-snow .ql-icon-picker .ql-picker-label svg {
  right: 4px;
}

.ql-snow .ql-icon-picker .ql-picker-options {
  padding: 4px 0;
}

.ql-snow .ql-icon-picker .ql-picker-item {
  height: 24px;
  width: 24px;
  padding: 2px 4px;
}

.ql-snow .ql-color-picker .ql-picker-options {
  padding: 3px 5px;
  width: 152px;
}

.ql-snow .ql-color-picker .ql-picker-item {
  border: 1px solid transparent;
  float: left;
  height: 16px;
  margin: 2px;
  padding: 0;
  width: 16px;
}

.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
  position: absolute;
  margin-top: -9px;
  right: 0;
  top: 50%;
  width: 18px;
}

.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=""])::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=""])::before,
.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=""])::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=""])::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=""])::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=""])::before {
  content: attr(data-label);
}

.ql-snow .ql-picker.ql-header {
  width: 98px;
}

.ql-snow .ql-picker.ql-header .ql-picker-label::before,
.ql-snow .ql-picker.ql-header .ql-picker-item::before {
  content: "Normal";
}

.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  content: "Heading 1";
}

.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  content: "Heading 2";
}

.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  content: "Heading 3";
}

.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  content: "Heading 4";
}

.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  content: "Heading 5";
}

.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  content: "Heading 6";
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  font-size: 2em;
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  font-size: 1.5em;
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  font-size: 1.17em;
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  font-size: 1em;
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  font-size: 0.83em;
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  font-size: 0.67em;
}

.ql-snow .ql-picker.ql-font {
  width: 108px;
}

.ql-snow .ql-picker.ql-font .ql-picker-label::before,
.ql-snow .ql-picker.ql-font .ql-picker-item::before {
  content: "Sans Serif";
}

.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  content: "Serif";
}

.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  content: "Monospace";
}

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  font-family: Georgia, Times New Roman, serif;
}

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  font-family: Monaco, Courier New, monospace;
}

.ql-snow .ql-picker.ql-size {
  width: 98px;
}

.ql-snow .ql-picker.ql-size .ql-picker-label::before,
.ql-snow .ql-picker.ql-size .ql-picker-item::before {
  content: "Normal";
}

.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  content: "Small";
}

.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  content: "Large";
}

.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  content: "Huge";
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  font-size: 10px;
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  font-size: 18px;
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  font-size: 32px;
}

.ql-snow .ql-color-picker.ql-background .ql-picker-item {
  background-color: #fff;
}

.ql-snow .ql-color-picker.ql-color .ql-picker-item {
  background-color: #000;
}

.ql-code-block-container {
  position: relative;
}

.ql-code-block-container .ql-ui {
  right: 5px;
  top: 5px;
}

.ql-toolbar.ql-snow {
  border: 1px solid #ccc;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  padding: 8px;
}

.ql-toolbar.ql-snow .ql-formats {
  margin-right: 15px;
}

.ql-toolbar.ql-snow .ql-picker-label {
  border: 1px solid transparent;
}

.ql-toolbar.ql-snow .ql-picker-options {
  border: 1px solid transparent;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 2px 8px;
          box-shadow: rgba(0, 0, 0, 0.2) 0 2px 8px;
}

.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  border-color: #ccc;
}

.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  border-color: #ccc;
}

.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover {
  border-color: #000;
}

.ql-toolbar.ql-snow + .ql-container.ql-snow {
  border-top: 0;
}

.ql-snow .ql-tooltip {
  background-color: #fff;
  border: 1px solid #ccc;
  -webkit-box-shadow: 0 0 5px #ddd;
          box-shadow: 0 0 5px #ddd;
  color: #444;
  padding: 5px 12px;
  white-space: nowrap;
}

.ql-snow .ql-tooltip::before {
  content: "Visit URL:";
  line-height: 26px;
  margin-right: 8px;
}

.ql-snow .ql-tooltip input[type=text] {
  display: none;
  border: 1px solid #ccc;
  font-size: 13px;
  height: 26px;
  margin: 0;
  padding: 3px 5px;
  width: 170px;
}

.ql-snow .ql-tooltip a.ql-preview {
  display: inline-block;
  max-width: 200px;
  overflow-x: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  vertical-align: top;
}

.ql-snow .ql-tooltip a.ql-action::after {
  border-right: 1px solid #ccc;
  content: "Edit";
  margin-left: 16px;
  padding-right: 8px;
}

.ql-snow .ql-tooltip a.ql-remove::before {
  content: "Remove";
  margin-left: 8px;
}

.ql-snow .ql-tooltip a {
  line-height: 26px;
}

.ql-snow .ql-tooltip.ql-editing a.ql-preview,
.ql-snow .ql-tooltip.ql-editing a.ql-remove {
  display: none;
}

.ql-snow .ql-tooltip.ql-editing input[type=text] {
  display: inline-block;
}

.ql-snow .ql-tooltip.ql-editing a.ql-action::after {
  border-right: 0;
  content: "Save";
  padding-right: 0;
}

.ql-snow .ql-tooltip[data-mode=link]::before {
  content: "Enter link:";
}

.ql-snow .ql-tooltip[data-mode=formula]::before {
  content: "Enter formula:";
}

.ql-snow .ql-tooltip[data-mode=video]::before {
  content: "Enter video:";
}

.ql-snow a {
  color: #06c;
}

.ql-container.ql-snow {
  border: 1px solid #ccc;
}

.tippy-box[data-animation=scale][data-placement^=top] {
  -webkit-transform-origin: bottom;
      -ms-transform-origin: bottom;
          transform-origin: bottom;
}

.tippy-box[data-animation=scale][data-placement^=bottom] {
  -webkit-transform-origin: top;
      -ms-transform-origin: top;
          transform-origin: top;
}

.tippy-box[data-animation=scale][data-placement^=left] {
  -webkit-transform-origin: right;
      -ms-transform-origin: right;
          transform-origin: right;
}

.tippy-box[data-animation=scale][data-placement^=right] {
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
}

.tippy-box[data-animation=scale][data-state=hidden] {
  -webkit-transform: scale(0.5);
      -ms-transform: scale(0.5);
          transform: scale(0.5);
  opacity: 0;
}

@charset "UTF-8";

@font-face {
  font-family: "Exo 2";
  src: url("../fonts/Exo2-Medium.woff2") format("woff2"), url("../fonts/Exo2-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Exo 2";
  src: url("../fonts/Exo2-SemiBold.woff2") format("woff2"), url("../fonts/Exo2-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Exo 2";
  src: url("../fonts/Exo2-Light.woff2") format("woff2"), url("../fonts/Exo2-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Exo 2";
  src: url("../fonts/Exo2-Regular.woff2") format("woff2"), url("../fonts/Exo2-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Exo 2";
  src: url("../fonts/Exo2-BoldItalic.woff2") format("woff2"), url("../fonts/Exo2-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Exo 2";
  src: url("../fonts/Exo2-Italic.woff2") format("woff2"), url("../fonts/Exo2-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Exo 2";
  src: url("../fonts/Exo2-SemiBoldItalic.woff2") format("woff2"), url("../fonts/Exo2-SemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Exo 2";
  src: url("../fonts/Exo2-LightItalic.woff2") format("woff2"), url("../fonts/Exo2-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Exo 2";
  src: url("../fonts/Exo2-Bold.woff2") format("woff2"), url("../fonts/Exo2-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Exo 2";
  src: url("../fonts/Exo2-MediumItalic.woff2") format("woff2"), url("../fonts/Exo2-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Exo 2";
  src: url("../fonts/Exo2-Black.woff2") format("woff2"), url("../fonts/Exo2-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Exo 2";
  src: url("../fonts/Exo2-BlackItalic.woff2") format("woff2"), url("../fonts/Exo2-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  color: #343434;
  line-height: 1;
  font-family: "Exo 2", sans-serif;
  font-size: 1rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  background-color: #fff;
}

input,
button,
textarea {
  font-family: "Exo 2", sans-serif;
  font-size: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

a {
  color: inherit;
  font-weight: inherit;
}

a:link {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.wrapper > main {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

/*
(i) Стили будут применяться ко 
всем классам содержащим *__container
Например header__container, main__container и т.д.
Снипет (HTML): cnt
*/

.container {
  max-width: 73.125rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin: 0 auto;
  padding: 0 6.75rem;
}

[class*=-ibg] {
  position: relative;
}

[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

[class*=-ibg_contain] img {
  -o-object-fit: contain;
     object-fit: contain;
}

.table_dashboard__main::-webkit-scrollbar,
.mobile_menu__inner::-webkit-scrollbar,
.content_box .table_box::-webkit-scrollbar,
.nice-select .list::-webkit-scrollbar {
  height: 5px;
  width: 5px;
}

.table_dashboard__main::-webkit-scrollbar-track,
.mobile_menu__inner::-webkit-scrollbar-track,
.content_box .table_box::-webkit-scrollbar-track,
.nice-select .list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}

.table_dashboard__main::-webkit-scrollbar-thumb,
.mobile_menu__inner::-webkit-scrollbar-thumb,
.content_box .table_box::-webkit-scrollbar-thumb,
.nice-select .list::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  border: 0;
}

@supports not selector(::-webkit-scrollbar) {
  .table_dashboard__main,
  .mobile_menu__inner,
  .content_box .table_box,
  .nice-select .list {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.05);
  }
}

.panel_header__inner::-webkit-scrollbar,
.lang_select__list ul::-webkit-scrollbar,
.form_dashboard.form_dashboard_blue .nice-select .list::-webkit-scrollbar {
  height: 5px;
  width: 5px;
}

.panel_header__inner::-webkit-scrollbar-track,
.lang_select__list ul::-webkit-scrollbar-track,
.form_dashboard.form_dashboard_blue .nice-select .list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.panel_header__inner::-webkit-scrollbar-thumb,
.lang_select__list ul::-webkit-scrollbar-thumb,
.form_dashboard.form_dashboard_blue .nice-select .list::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  border: 0;
}

@supports not selector(::-webkit-scrollbar) {
  .panel_header__inner,
  .lang_select__list ul,
  .form_dashboard.form_dashboard_blue .nice-select .list {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.1);
  }
}

input::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #434053;
}

input::-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #434053;
}

input:-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #434053;
}

input:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #434053;
}

input:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:focus:-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:focus:-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

textarea::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #434053;
}

textarea::-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #434053;
}

textarea:-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #434053;
}

textarea:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #434053;
}

textarea:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

textarea:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

textarea:focus:-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

textarea:focus:-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input[type=text]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=text]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  display: none;
}

input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.input_wr {
  position: relative;
}

.input_wr input {
  width: 100%;
  height: 48px;
  font-size: 16px;
  line-height: 1.5;
  padding: 0 32px;
  color: #343434;
  border-radius: 52px;
  border: 1px solid #fff;
  background: #fff;
  -webkit-transition: border 0.3s ease-in-out, color 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  transition: border 0.3s ease-in-out, color 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  -o-transition: border 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  transition: border 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  transition: border 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
}

.input_wr input:focus {
  outline: 0;
  border: 1px solid #80bdff;
  -webkit-box-shadow: 0 0 0 3px #bfdeff;
          box-shadow: 0 0 0 3px #bfdeff;
}

.textarea_wr {
  position: relative;
}

.textarea_wr textarea {
  display: block;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 96px;
  font-size: 16px;
  line-height: 1.5;
  padding: 12px 32px;
  border: 1px solid #fff;
  background: #fff;
  color: #343434;
  border-radius: 24px;
  resize: none;
  -webkit-transition: border 0.3s ease-in-out, color 0.3s ease-in-out, background-color 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  transition: border 0.3s ease-in-out, color 0.3s ease-in-out, background-color 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  -o-transition: border 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: border 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: border 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
}

.textarea_wr textarea::-webkit-scrollbar {
  display: none;
}

.textarea_wr textarea:focus {
  outline: 0;
  border: 1px solid #80bdff;
  -webkit-box-shadow: 0 0 0 3px #bfdeff;
          box-shadow: 0 0 0 3px #bfdeff;
}

.input_wr input.wpcf7-not-valid,
.textarea_wr textarea.wpcf7-not-valid {
  border: 1px solid #f41157;
  background-color: #ffd4d4;
}

.input_wr input.wpcf7-not-valid:focus,
.textarea_wr textarea.wpcf7-not-valid:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.select_wr_has_placeholder .nice-select span {
  color: #999;
}

.nice-select {
  -webkit-tap-highlight-color: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 40px;
  font-family: "Exo 2", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  padding: 0 36px 0 12px;
  outline: none;
  position: relative;
  z-index: 10;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #343434;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.nice-select span {
  display: inline-block;
  line-height: 1.2;
  width: 100%;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.nice-select:after {
  content: "";
  position: absolute;
  z-index: 3;
  width: 12px;
  height: 12px;
  top: 13px;
  right: 12px;
  background-image: url("../img/icons/select_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transition: -webkit-transform 0.2s ease-in;
  transition: -webkit-transform 0.2s ease-in;
  -o-transition: transform 0.2s ease-in;
  transition: transform 0.2s ease-in;
  transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
}

.nice-select.open {
  position: relative;
  z-index: 20;
  border-radius: 10px 10px 0 0;
}

.nice-select.open:after {
  -webkit-transform: scale(1, -1);
      -ms-transform: scale(1, -1);
          transform: scale(1, -1);
}

.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0) translateZ(-2px);
          transform: scale(1) translateY(0) translateZ(-2px);
}

.nice-select.open.drop-up {
  border-radius: 0 0 10px 10px;
}

.nice-select.open.drop-up .list {
  -webkit-transform: scale(1) translateY(0) translateZ(-2px);
          transform: scale(1) translateY(0) translateZ(-2px);
}

.nice-select.drop-up .list {
  top: auto;
  bottom: calc(100% + 1px);
  border-radius: 10px 10px 0 0;
  -webkit-transform: scale(1) translateY(0) translateZ(-2px);
          transform: scale(1) translateY(0) translateZ(-2px);
  border-top: 0;
}

.nice-select.drop-up .list::after {
  top: auto;
  bottom: 0;
}

.nice-select.drop-up .option {
  border-top: 1px solid #dfe8ff;
}

.nice-select.drop-up .option:first-child {
  border-top: 0;
}

.nice-select.nice-select_active span {
  color: #343434;
}

.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}

.nice-select .list {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 0;
  opacity: 0;
  overflow: auto;
  max-height: 270px;
  pointer-events: none;
  position: absolute;
  z-index: 2;
  top: calc(100% + 1px);
  z-index: -1;
  left: -1px;
  right: -1px;
  min-width: 100%;
  -webkit-transform-origin: 50% 0;
      -ms-transform-origin: 50% 0;
          transform-origin: 50% 0;
  -webkit-transform: scale(1) translateY(0) translateZ(-2px);
          transform: scale(1) translateY(0) translateZ(-2px);
  -webkit-transition: all 0.2s ease-in, opacity 0.2s ease-in;
  -o-transition: all 0.2s ease-in, opacity 0.2s ease-in;
  transition: all 0.2s ease-in, opacity 0.2s ease-in;
  border-radius: 0 0 10px 10px;
  background-color: #fff;
  padding: 0 12px;
}

.nice-select .list::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  background-color: #dfe8ff;
}

.nice-select .list li.disabled {
  display: none;
}

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.nice-select .option {
  cursor: pointer;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  list-style: none;
  outline: none;
  padding: 10px 0;
  text-align: left;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  color: #343434;
  white-space: normal;
  border-top: 1px solid #dfe8ff;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.nice-select .option:first-child {
  border-top: 0;
}

.nice-select .option:hover,
.nice-select .option .focus:hover {
  color: #008aff;
}

.nice-select .option.selected {
  color: #008aff;
}

.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.nice-select .option.disabled:first-child + .option {
  border-top: 0;
}

.input_search {
  position: relative;
}

.input_search input {
  width: 100%;
  height: 56px;
  font-size: 16px;
  line-height: 1.5;
  padding: 0 20px 0 46px;
  color: #008aff;
  border-radius: 10px;
  border: 1px solid #e3ebfe;
  background: #e3ebfe;
  -webkit-transition: border 0.3s ease-in-out, color 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  transition: border 0.3s ease-in-out, color 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  -o-transition: border 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  transition: border 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  transition: border 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
}

.input_search input:focus {
  outline: 0;
  border: 1px solid #80bdff;
  -webkit-box-shadow: 0 0 0 3px #bfdeff;
          box-shadow: 0 0 0 3px #bfdeff;
}

.input_search__loop {
  position: absolute;
  top: 21px;
  left: 20px;
  color: #008aff;
}

.input_search__loop svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.input_search__close {
  display: none;
}

.input_search__close svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.block_search {
  position: relative;
  z-index: 3;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.block_search__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
  border-radius: 10px;
  padding: 20px;
  width: 56px;
  height: 56px;
  color: #008aff;
  background-color: #e3ebfe;
}

.block_search__btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.checkbox_wr label > input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  width: 20px;
  height: 20px;
}

.checkbox_wr label > span {
  cursor: pointer;
  padding-left: 48px;
  position: relative;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: rgba(52, 52, 52, 0.5);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  min-height: 28px;
  font-size: 16px;
  line-height: 1.5;
}

.checkbox_wr label > span::after,
.checkbox_wr label > input + span::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  left: 0;
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 5px;
}

.checkbox_wr label > span::after {
  background-color: #f2f5fe;
  border: 1px solid #f2f5fe;
}

.checkbox_wr label > input + span::before {
  z-index: 3;
  background-image: url("../img/icons/check.svg");
  background-repeat: no-repeat;
  background-size: 57% auto;
  background-position: center;
  opacity: 0;
}

.checkbox_wr label > input:checked + span::after {
  background: -o-linear-gradient(44deg, #628cff 48.54%, #2cc0ff 100%);
  background: linear-gradient(46deg, #628cff 48.54%, #2cc0ff 100%);
}

.checkbox_wr label > input:checked + span::before {
  opacity: 1;
}

.form_dashboard input::-webkit-input-placeholder {
  color: #999999;
}

.form_dashboard input::-moz-placeholder {
  color: #999999;
}

.form_dashboard input:-moz-placeholder {
  color: #999999;
}

.form_dashboard input:-ms-input-placeholder {
  color: #999999;
}

.form_dashboard textarea::-webkit-input-placeholder {
  color: #999999;
}

.form_dashboard textarea::-moz-placeholder {
  color: #999999;
}

.form_dashboard textarea:-moz-placeholder {
  color: #999999;
}

.form_dashboard textarea:-ms-input-placeholder {
  color: #999999;
}

.form_dashboard .input_wr {
  position: relative;
}

.form_dashboard .input_wr input {
  width: 100%;
  height: 56px;
  font-size: 16px;
  line-height: 1.5;
  padding: 0 20px;
  color: #343434;
  border-radius: 10px;
  border: 1px solid #fff;
  background: #fff;
  -webkit-transition: border 0.3s ease-in-out, color 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  transition: border 0.3s ease-in-out, color 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  -o-transition: border 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  transition: border 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  transition: border 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
}

.form_dashboard .input_wr input:focus {
  outline: 0;
  border: 1px solid #80bdff;
  -webkit-box-shadow: 0 0 0 3px #bfdeff;
          box-shadow: 0 0 0 3px #bfdeff;
}

.form_dashboard .textarea_wr {
  position: relative;
}

.form_dashboard .textarea_wr textarea {
  display: block;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 213px;
  font-size: 16px;
  line-height: 1.5;
  padding: 20px;
  border: 1px solid #fff;
  background: #fff;
  color: #343434;
  border-radius: 10px;
  resize: none;
  -webkit-transition: border 0.3s ease-in-out, color 0.3s ease-in-out, background-color 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  transition: border 0.3s ease-in-out, color 0.3s ease-in-out, background-color 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  -o-transition: border 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: border 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: border 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
}

.form_dashboard .textarea_wr textarea::-webkit-scrollbar {
  display: none;
}

.form_dashboard .textarea_wr textarea:focus {
  outline: 0;
  border: 1px solid #80bdff;
  -webkit-box-shadow: 0 0 0 3px #bfdeff;
          box-shadow: 0 0 0 3px #bfdeff;
}

.form_dashboard .nice-select {
  height: 56px;
  padding: 0 42px 0 20px;
}

.form_dashboard .nice-select.nice-select_active span {
  color: #343434 !important;
}

.form_dashboard .nice-select:after {
  top: 22px;
  right: 20px;
}

.form_dashboard .nice-select .list {
  padding: 0 20px;
}

.form_dashboard.form_dashboard_blue input::-webkit-input-placeholder {
  color: #008aff;
}

.form_dashboard.form_dashboard_blue input::-moz-placeholder {
  color: #008aff;
}

.form_dashboard.form_dashboard_blue input:-moz-placeholder {
  color: #008aff;
}

.form_dashboard.form_dashboard_blue input:-ms-input-placeholder {
  color: #008aff;
}

.form_dashboard.form_dashboard_blue textarea::-webkit-input-placeholder {
  color: #008aff;
}

.form_dashboard.form_dashboard_blue textarea::-moz-placeholder {
  color: #008aff;
}

.form_dashboard.form_dashboard_blue textarea:-moz-placeholder {
  color: #008aff;
}

.form_dashboard.form_dashboard_blue textarea:-ms-input-placeholder {
  color: #008aff;
}

.form_dashboard.form_dashboard_blue .input_wr input {
  color: #008aff;
  border: 1px solid #e3ebfe;
  background: #e3ebfe;
}

.form_dashboard.form_dashboard_blue .input_wr input:focus {
  outline: 0;
  border: 1px solid #80bdff;
  -webkit-box-shadow: 0 0 0 3px #bfdeff;
          box-shadow: 0 0 0 3px #bfdeff;
}

.form_dashboard.form_dashboard_blue .textarea_wr textarea {
  border: 1px solid #e3ebfe;
  background: #e3ebfe;
  color: #008aff;
}

.form_dashboard.form_dashboard_blue .textarea_wr textarea:focus {
  outline: 0;
  border: 1px solid #80bdff;
  -webkit-box-shadow: 0 0 0 3px #bfdeff;
          box-shadow: 0 0 0 3px #bfdeff;
}

.form_dashboard.form_dashboard_blue .select_wr_has_placeholder .nice-select span {
  color: #008aff;
}

.form_dashboard.form_dashboard_blue .nice-select {
  color: #008aff;
  background-color: #e3ebfe;
  border: 1px solid #e3ebfe;
}

.form_dashboard.form_dashboard_blue .nice-select.open {
  color: #008aff;
  background-color: #343434;
  border: 1px solid #343434;
}

.form_dashboard.form_dashboard_blue .nice-select.nice-select_active span {
  color: #008aff !important;
}

.form_dashboard.form_dashboard_blue .nice-select .list {
  background-color: #343434;
}

.form_dashboard.form_dashboard_blue .nice-select .list::after {
  background-color: #484848;
}

.form_dashboard.form_dashboard_blue .nice-select .option {
  color: #fff;
  border-top: 1px solid #484848;
}

.form_dashboard.form_dashboard_blue .nice-select .option:hover,
.form_dashboard.form_dashboard_blue .nice-select .option .focus:hover {
  color: #008aff;
}

.form_dashboard.form_dashboard_blue .nice-select .option.selected {
  color: #008aff;
}

.form_dashboard.form_dashboard_blue .nice-select.drop-up .option {
  border-top: 1px solid #484848;
}

.form_dashboard .input_wr:has(.field_error)::after,
.form_dashboard .textarea_wr:has(.field_error)::after,
.form_dashboard.form_dashboard_blue .input_wr:has(.field_error)::after,
.form_dashboard.form_dashboard_blue .textarea_wr:has(.field_error)::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  right: 20px;
  background-image: url("../img/icons/field_error.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.form_dashboard .input_wr:has(.field_error)::after,
.form_dashboard.form_dashboard_blue .input_wr:has(.field_error)::after {
  top: 20px;
}

.form_dashboard .textarea_wr:has(.field_error)::after,
.form_dashboard.form_dashboard_blue .textarea_wr:has(.field_error)::after {
  top: 24px;
}

.form_dashboard .input_wr:has(.field_error) input,
.form_dashboard.form_dashboard_blue .input_wr:has(.field_error) input {
  padding: 0 50px 0 20px;
}

.form_dashboard .textarea_wr:has(.field_error) textarea,
.form_dashboard.form_dashboard_blue .textarea_wr:has(.field_error) textarea {
  padding: 20px 50px 20px 20px;
}

.form_dashboard .input_wr:has(.field_error) input,
.form_dashboard .textarea_wr:has(.field_error) textarea,
.form_dashboard.form_dashboard_blue .input_wr:has(.field_error) input,
.form_dashboard.form_dashboard_blue .textarea_wr:has(.field_error) textarea {
  color: #eb5757 !important;
  border: 1px solid #eb5757 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.form_dashboard .select_wr:has(.field_error) .nice-select,
.form_dashboard.form_dashboard_blue .select_wr:has(.field_error) .nice-select {
  color: #eb5757 !important;
  border: 1px solid #eb5757 !important;
}

.ql-undo svg,
.ql-redo svg {
  max-width: 12px;
}

.ql-toolbar.ql-snow,
.ql-container.ql-snow {
  border: 0;
}

.ql-toolbar.ql-snow {
  padding: 10px 20px;
  -webkit-box-shadow: 0px 1px 12px 0px rgba(34, 60, 80, 0.1);
          box-shadow: 0px 1px 12px 0px rgba(34, 60, 80, 0.1);
}

.ql-editor {
  height: 260px;
  padding: 20px;
}

.block_editor {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.block_editor__bottom {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  padding: 20px;
}

.block_editor__bottom > * {
  min-width: 0 !important;
  max-width: 100% !important;
}

.arcticmodal-overlay {
  background-color: rgba(0, 0, 0, 0.5) !important;
  opacity: 1 !important;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.g-hidden {
  display: none;
}

.g-line {
  zoom: 1;
}

.g-line:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.modal {
  position: relative;
}

.modal_close {
  position: absolute;
  z-index: 10;
  top: 10px;
  right: 10px;
  width: 16px;
  height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  opacity: 0.4;
}

.modal_close:hover {
  opacity: 1;
}

.modal_close::after {
  content: "";
  position: absolute;
  inset: -10px;
}

.modal_close svg {
  width: 16px;
  height: 16px;
}

/* modal */

.arcticmodal-overlay,
.arcticmodal-container {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10000 !important;
}

.arcticmodal-container {
  overflow: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-collapse: collapse;
}

*:first-child + html .arcticmodal-container {
  height: 100%;
}

.arcticmodal-container_i {
  height: 100%;
  margin: 0 auto !important;
}

.arcticmodal-container_i2 {
  padding: 30px 14px;
  margin: 0;
  border: 0;
  vertical-align: middle !important;
}

.arcticmodal-error {
  opacity: 0;
  visibility: hidden;
  display: none;
}

.arcticmodal-loading {
  opacity: 0;
  visibility: hidden;
  display: none;
}

.modal {
  width: 520px;
  max-width: calc(100vw - 60px);
}

.modal__box {
  position: relative;
  overflow: hidden;
  padding: 60px 50px;
  color: #fff;
  background: -o-linear-gradient(44deg, #628cff 48.54%, #2cc0ff 100%);
  background: linear-gradient(46deg, #628cff 48.54%, #2cc0ff 100%);
  border-radius: 15px;
}

.modal__box::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  width: 1472px;
  height: auto;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-45%, -50%);
      -ms-transform: translate(-45%, -50%);
          transform: translate(-45%, -50%);
  background-image: url("../img/decor/capsules.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
  opacity: 0.1;
}

.modal__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.modal__title {
  position: relative;
  z-index: 2;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  text-transform: uppercase;
  text-align: center;
}

.modal__text {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

.modal__form {
  position: relative;
  z-index: 2;
}

.modal__form-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.modal__form-inner > * {
  min-width: 0 !important;
  max-width: 100% !important;
}

.modal__form-inner .btn {
  width: 100%;
}

.modal__other {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 16px;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 16px;
}

.modal__other a,
.modal__other span.arcticmodal-close {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.modal__other a:hover,
.modal__other a:active,
.modal__other span.arcticmodal-close:hover,
.modal__other span.arcticmodal-close:active {
  opacity: 0.8;
}

.modal__action {
  margin-top: 20px;
}

#modal_recovery .modal__other {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.modal.modal_success .modal__main {
  position: relative;
  z-index: 3;
  max-width: 55%;
}

.modal.modal_success .modal__title {
  margin-bottom: 10px;
}

.modal.modal_success .modal__img {
  position: absolute;
  width: 412px;
  max-width: 80%;
  height: auto;
  aspect-ratio: 1;
  top: 50%;
  right: 0;
  -webkit-transform: translate(16%, -50%);
      -ms-transform: translate(16%, -50%);
          transform: translate(16%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url("../img/decor/circle_white.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.modal.modal_success .modal__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-52%, -50%);
      -ms-transform: translate(-52%, -50%);
          transform: translate(-52%, -50%);
  width: 46.5%;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}

.btn_prev,
.btn_next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 3;
  border-radius: 0;
  color: #343434;
  background-color: transparent;
  -webkit-transition: color 0.3s ease-in-out, opacity 0.3s ease-in-out, background-color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out, opacity 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, opacity 0.3s ease-in-out, background-color 0.3s ease-in-out;
  cursor: pointer;
}

.btn_prev img,
.btn_next img {
  width: 48px;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
}

.btn_prev:not(.swiper-button-disabled):hover,
.btn_next:not(.swiper-button-disabled):hover {
  opacity: 0.8;
}

.btn_prev.swiper-button-disabled,
.btn_next.swiper-button-disabled {
  cursor: auto;
  opacity: 0.5;
}

.btn_prev.swiper-button-lock,
.btn_next.swiper-button-lock {
  display: none;
}

.slider_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
  gap: 5px;
}

.slider_nav .swiper-pagination {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
  min-width: 70px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}

.slider_nav .swiper-horizontal > .swiper-pagination-bullets,
.slider_nav .swiper-pagination-bullets.swiper-pagination-horizontal,
.slider_nav .swiper-pagination-custom,
.slider_nav .swiper-pagination-fraction {
  bottom: 0;
  top: auto;
  left: 0;
  width: auto;
}

.slider_nav.slider_nav-lock {
  display: none;
}

.content_box {
  position: relative;
  display: block;
  max-width: 100%;
  min-width: 0 !important;
  font-size: 18px;
  line-height: 1.5;
}

.content_box:after {
  content: "";
  display: block;
  clear: both;
}

.content_box figure {
  margin: 0;
  padding: 0;
}

.content_box iframe {
  max-width: 100%;
}

.content_box video {
  max-width: 100%;
}

.content_box img {
  max-width: 100% !important;
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 0 !important;
  height: auto !important;
  margin-left: auto;
  margin-right: auto;
}

.content_box p {
  position: relative;
  margin-top: 22px;
  margin-bottom: 22px;
}

.content_box b,
.content_box strong {
  font-weight: 700;
}

.content_box a {
  position: relative;
  min-width: 0 !important;
  max-width: 100%;
  font-family: inherit;
  font-weight: inherit;
  color: #008aff;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.content_box a:hover {
  color: #fda133;
}

.content_box ol,
.content_box ul {
  position: relative;
  overflow: hidden;
  list-style: none;
  margin-top: 20px;
  margin-bottom: 20px;
}

.content_box ol li,
.content_box ul li {
  position: relative;
  display: block;
  padding-left: 25px;
  font-size: 18px;
  line-height: 1.5;
}

.content_box ol li:not(:last-child),
.content_box ul li:not(:last-child) {
  margin-bottom: 10px;
}

.content_box ol ul,
.content_box ol ol,
.content_box ul ul,
.content_box ul ol {
  margin-top: 20px !important;
}

.content_box ul > li::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  top: 10px;
  left: 0px;
  border-radius: 3px;
  background: #008aff;
}

.content_box ul ol {
  counter-reset: item;
}

.content_box ul ol > li:after {
  counter-increment: item;
  content: counters(item, ".") ". ";
}

.content_box ol {
  counter-reset: li;
}

.content_box ol > li:after {
  counter-increment: li;
  content: counter(li);
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  color: #008aff;
}

.content_box ol ul,
.content_box ol ol {
  padding-left: 20px;
  margin-top: 15px !important;
}

.content_box blockquote {
  position: relative;
  padding: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
  background-image: url("../img/icons/quote.svg");
  background-repeat: no-repeat;
  background-size: 66px auto;
  background-position: right bottom;
  background-color: #f2f5fe;
  border-radius: 20px;
}

.content_box .table_box {
  overflow: auto;
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.content_box .table_box table {
  min-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-collapse: collapse;
  overflow: hidden;
  color: #343434;
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
}

.content_box .table_box th,
.content_box .table_box td {
  position: relative;
  padding: 8px 4px;
  border: 1px solid #f2f5fe;
}

.content_box .table_box thead {
  background-color: #f2f5fe;
  border: 1px solid #f2f5fe;
}

.content_box h1,
.content_box h2,
.content_box h3,
.content_box h4,
.content_box h5,
.content_box h6 {
  position: relative;
  display: block;
  min-width: 0 !important;
  margin-top: 30px;
  margin-bottom: 20px;
}

.content_box h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.content_box h2 {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
}

.content_box h3 {
  font-size: 18px;
  line-height: 1.24;
  text-transform: uppercase;
}

.content_box h4 {
  font-size: 18px;
  line-height: 1.5;
}

.content_box h5 {
  font-size: 18px;
  line-height: 1.5;
}

.content_box h6 {
  font-size: 18px;
  line-height: 1.5;
}

.content_box .alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
  width: auto;
  max-width: 50%;
}

.content_box .alignright {
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
  max-width: 50%;
  width: auto;
}

.content_box *:last-child {
  margin-bottom: 0;
}

.content_box *:first-child {
  margin-top: 0;
}

.content_box.content_box_small p,
.content_box.content_box_small ol > li,
.content_box.content_box_small ul > li,
.content_box.content_box_small .table_box table {
  font-size: 15px;
  line-height: 1.5;
}

.content_box.content_box_small ul > li::before {
  top: 8px;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -50px, 0);
    transform: translate3d(0, -50px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -50px, 0);
    transform: translate3d(0, -50px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes animationRotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes animationRotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes animationGlobe {
  from {
    -webkit-transform: rotate(0deg) translate(-50%, -50%);
            transform: rotate(0deg) translate(-50%, -50%);
  }

  to {
    -webkit-transform: rotate(360deg) translate(-50%, -50%);
            transform: rotate(360deg) translate(-50%, -50%);
  }
}

@keyframes animationGlobe {
  from {
    -webkit-transform: rotate(0deg) translate(-50%, -50%);
            transform: rotate(0deg) translate(-50%, -50%);
  }

  to {
    -webkit-transform: rotate(360deg) translate(-50%, -50%);
            transform: rotate(360deg) translate(-50%, -50%);
  }
}

@-webkit-keyframes animationGlobeR {
  from {
    -webkit-transform: rotate(0deg) translate(-50%, -50%);
            transform: rotate(0deg) translate(-50%, -50%);
  }

  to {
    -webkit-transform: rotate(-360deg) translate(-50%, -50%);
            transform: rotate(-360deg) translate(-50%, -50%);
  }
}

@keyframes animationGlobeR {
  from {
    -webkit-transform: rotate(0deg) translate(-50%, -50%);
            transform: rotate(0deg) translate(-50%, -50%);
  }

  to {
    -webkit-transform: rotate(-360deg) translate(-50%, -50%);
            transform: rotate(-360deg) translate(-50%, -50%);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

.animationRotate {
  -webkit-animation-name: animationRotate;
  animation-name: animationRotate;
}

.my_animated {
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
          animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.my_animated_long {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}

.my_animated_very_long {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}

.my_delay {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.my_infinite {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes blockOpen {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 150%, 0);
            transform: translate3d(0, 150%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes blockOpen {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 150%, 0);
            transform: translate3d(0, 150%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes blockClose {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 150%, 0);
            transform: translate3d(0, 150%, 0);
    opacity: 0;
  }
}

@keyframes blockClose {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 150%, 0);
            transform: translate3d(0, 150%, 0);
    opacity: 0;
  }
}

.section {
  position: relative;
  padding: 70px 0;
}

.section_grey {
  background-color: #f2f5fe;
}

.section_blue {
  background: -o-linear-gradient(44deg, #628cff 48.54%, #2cc0ff 100%);
  background: linear-gradient(46deg, #628cff 48.54%, #2cc0ff 100%);
  color: #fff;
}

.header_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  text-align: center;
  margin-bottom: 50px;
}

.title_section {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
}

.title_h2 {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
}

.title_h3 {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
}

.subtitle {
  font-size: 18px;
  line-height: 1.5;
  text-transform: uppercase;
}

.text_gr_blue {
  background: -o-linear-gradient(44deg, #628cff 48.54%, #2cc0ff 100%);
  background: linear-gradient(46deg, #628cff 48.54%, #2cc0ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text_gr_orange {
  background: -o-linear-gradient(195deg, #fdd605 1.41%, rgba(253, 214, 5, 0) 96.36%), #fa8507;
  background: linear-gradient(255deg, #fdd605 1.41%, rgba(253, 214, 5, 0) 96.36%), #fa8507;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
  gap: 10px;
  min-height: 48px;
  padding: 2px 32px;
  border-radius: 52px;
  color: #fff;
  background-color: transparent;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  border: 0;
  -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border 0.3s ease-in-out, opacity 0.3s ease-in-out;
  cursor: pointer;
}

.btn:disabled,
.btn[disabled],
.btn.disabled {
  opacity: 0.5;
}

.btn__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.btn__icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.btn::after,
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  border-radius: 52px;
}

.btn::before {
  z-index: -2;
  background-color: #f39729;
}

.btn::after {
  z-index: -1;
  background: -o-linear-gradient(195deg, #fdd605 1.41%, rgba(253, 214, 5, 0) 96.36%), #fa8507;
  background: linear-gradient(255deg, #fdd605 1.41%, rgba(253, 214, 5, 0) 96.36%), #fa8507;
}

.btn:hover::after,
.btn:active::after {
  opacity: 0;
}

.btn_blue::before {
  background-color: #1157b9;
}

.btn_blue::after {
  background: -o-linear-gradient(44deg, #628cff 48.54%, #2cc0ff 100%);
  background: linear-gradient(46deg, #628cff 48.54%, #2cc0ff 100%);
}

.btn_blue_tr {
  color: #008aff;
  background-color: transparent;
}

.btn_blue_tr::before {
  border: 2px solid #008aff;
  background-color: transparent;
}

.btn_blue_tr::after {
  opacity: 0;
  background: -o-linear-gradient(44deg, #628cff 48.54%, #2cc0ff 100%);
  background: linear-gradient(46deg, #628cff 48.54%, #2cc0ff 100%);
}

.btn_blue_tr:hover,
.btn_blue_tr:active {
  color: #fff;
}

.btn_blue_tr:hover::after,
.btn_blue_tr:active::after {
  opacity: 1;
}

.btn_light_blue {
  color: #008aff;
}

.btn_light_blue::before {
  background-color: #f2f5fe;
}

.btn_light_blue::after {
  opacity: 0;
  background: -o-linear-gradient(44deg, #628cff 48.54%, #2cc0ff 100%);
  background: linear-gradient(46deg, #628cff 48.54%, #2cc0ff 100%);
}

.btn_light_blue:hover,
.btn_light_blue:active {
  color: #fff;
}

.btn_light_blue:hover::after,
.btn_light_blue:active::after {
  opacity: 1;
}

.btn.btn_dashboard {
  padding: 16px 20px;
  gap: 10px;
  border-radius: 10px;
  min-height: 56px;
}

.btn.btn_dashboard::before,
.btn.btn_dashboard::after {
  border-radius: 10px;
}

.btn.btn_gr_blue:hover,
.btn.btn_gr_blue:active {
  color: #008aff;
}

.btn.btn_gr_blue::before {
  background-color: #343434;
}

.btn.btn_gr_blue::after {
  background: -o-linear-gradient(44deg, #628cff 48.54%, #2cc0ff 100%);
  background: linear-gradient(46deg, #628cff 48.54%, #2cc0ff 100%);
}

.min_btn_action {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  padding: 6px;
  background-color: #f2f5fe;
  -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border 0.3s ease-in-out, opacity 0.3s ease-in-out;
  cursor: pointer;
}

.min_btn_action:hover,
.min_btn_action:active {
  background-color: #343434;
}

.min_btn_action svg {
  width: 12px;
  height: 12px;
}

.social_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

.social_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 45px;
  height: 45px;
  background-color: #3b3b3b;
  -webkit-transition: background-color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  border-radius: 50%;
}

.social_list li a:hover,
.social_list li a:active {
  background-color: #4f4f4f;
}

.social_list li a img {
  width: 21px;
  height: 21px;
  -o-object-fit: contain;
     object-fit: contain;
}

.hidden {
  display: none !important;
}

.arrow_up_site {
  position: fixed;
  z-index: 500;
  right: 50px;
  bottom: 30px;
  width: 42px !important;
  height: 42px;
  min-height: 42px;
  padding: 2px;
  -webkit-transform: scale(0, 0);
      -ms-transform: scale(0, 0);
          transform: scale(0, 0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.arrow_up_site svg {
  width: 16px;
  height: 10px;
}

.arrow_up_site.active_arrow {
  pointer-events: auto;
  -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
          transform: scale(1, 1);
}

.lang_select {
  position: relative;
  z-index: 100;
  font-size: 16px;
  line-height: 1.5;
  -webkit-tap-highlight-color: transparent;
}

.lang_select.open .lang_select__btn {
  border-radius: 10px 10px 0 0;
  color: #008aff !important;
  background: #343434 !important;
}

.lang_select.open .lang_select__btn_arrow {
  -webkit-transform: scale(1, -1);
      -ms-transform: scale(1, -1);
          transform: scale(1, -1);
}

.lang_select.open .lang_select__list {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.lang_select__btn {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 8px 12px;
  min-height: 40px;
  color: #008aff;
  background: #e3ebfe;
  border-radius: 10px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.lang_select__btn_arrow {
  width: 12px;
  height: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.2s ease-in;
  transition: -webkit-transform 0.2s ease-in;
  -o-transition: transform 0.2s ease-in;
  transition: transform 0.2s ease-in;
  transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
}

.lang_select__btn_arrow svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.lang_select__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.lang_select__list {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: auto;
  top: 100%;
  left: 0;
  color: #fff;
  background: #343434;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  border-radius: 0 0 10px 10px;
  border-top: 1px solid #484848;
  padding: 0 12px;
}

.lang_select__list ul {
  max-height: 270px;
  overflow: auto;
}

.lang_select__list ul li {
  border-top: 1px solid #484848;
}

.lang_select__list ul li:first-child {
  border-top: 0;
}

.lang_select__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.lang_select__list a:hover {
  color: #008aff;
}

.lang_select .icon_lang {
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  overflow: hidden;
}

.lang_select .icon_lang img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.hint_info {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  fill: currentColor;
}

.hint_info svg {
  width: 15px;
  height: 15px;
  opacity: 0.2;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.hint_info::after {
  content: "";
  position: absolute;
  inset: -5px;
}

/****************************************************************/

.tippy-box[data-theme~=tippy_my] {
  background: #fff;
  font-family: "Exo 2", sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: #343434;
  -webkit-box-shadow: 0 4px 24px 0 rgba(67, 64, 83, 0.1);
          box-shadow: 0 4px 24px 0 rgba(67, 64, 83, 0.1);
  border-radius: 20px;
  padding: 20px;
  width: 200px;
}

.tippy-box[data-theme~=tippy_my] .tippy-content {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.tippy-box[data-theme~=tippy_my] .tippy-content h1,
.tippy-box[data-theme~=tippy_my] .tippy-content h2,
.tippy-box[data-theme~=tippy_my] .tippy-content h3,
.tippy-box[data-theme~=tippy_my] .tippy-content h4,
.tippy-box[data-theme~=tippy_my] .tippy-content h5,
.tippy-box[data-theme~=tippy_my] .tippy-content h6 {
  font-weight: 700;
  background: -o-linear-gradient(44deg, #628cff 48.54%, #2cc0ff 100%);
  background: linear-gradient(46deg, #628cff 48.54%, #2cc0ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

.pages__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
  width: 30px;
  min-width: 30px;
  color: #343434;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  border-radius: 4px;
  transition: color 0.3s ease-in-out;
}

.pages__link:hover {
  color: #008aff;
}

.pages__link svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
}

.pages__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.pages__list a,
.pages__list span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
  min-width: 30px;
  padding: 0 3px;
  color: #343434;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 4px;
  -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  background-color: transparent;
}

.pages__list a:hover {
  color: #008aff;
}

.pages__list li.active a,
.pages__list li.active span {
  color: #008aff;
  background-color: #e3ebfe;
}

.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 40px;
  -webkit-transition: padding-top 0.3s ease-in-out;
  -o-transition: padding-top 0.3s ease-in-out;
  transition: padding-top 0.3s ease-in-out;
  padding-right: var(--scroll, 0);
}

.header.header_fixed,
.header.header_open_bg {
  padding-top: 10px;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
  padding: 6px;
  border-radius: 25px;
  -webkit-box-shadow: 0 19px 54px -20px rgba(98, 140, 255, 0.6);
          box-shadow: 0 19px 54px -20px rgba(98, 140, 255, 0.6);
  overflow: hidden;
}

.header__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  background: -o-linear-gradient(44deg, #628cff 48.54%, #2cc0ff 100%);
  background: linear-gradient(46deg, #628cff 48.54%, #2cc0ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header__logo img {
  width: 97px;
  height: auto;
}

.header__nav > * {
  min-width: 0 !important;
  max-width: 100% !important;
}

.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.header__menu li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0 !important;
  max-width: 100% !important;
}

.header__menu li a {
  position: relative;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 16px;
  line-height: 1.5;
}

.header__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header__action .btn {
  font-weight: 400;
  min-height: 46px;
  padding: 10px 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header__btn_menu {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, from(#ee803d), to(#feb72a));
  background: -o-linear-gradient(left, #ee803d 0%, #feb72a 100%);
  background: linear-gradient(90deg, #ee803d 0%, #feb72a 100%);
}

.header__btn_menu .svg_open,
.header__btn_menu .svg_close {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.header__btn_menu .svg_open {
  width: 20px;
  height: 14px;
}

.header__btn_menu .svg_close {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  margin-left: -8px;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.header_open_menu .header__btn_menu .svg_open {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.header_open_menu .header__btn_menu .svg_close {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.lang_menu {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 2px;
  background-color: #f2f5fe;
  padding: 2px;
  border-radius: 52px;
}

.lang_menu li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 40px;
  height: 40px;
  padding: 4px;
  border-radius: 50%;
  color: #008aff;
  background-color: transparent;
  opacity: 0.4;
  -webkit-transition: opacity 0.3s ease-in-out, background-color 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.lang_menu li.active a {
  opacity: 1;
  background-color: #fff;
}

.mobile_menu {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  color: #343434;
  background-color: #f2f5fe;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transform: translate(0, -100%);
      -ms-transform: translate(0, -100%);
          transform: translate(0, -100%);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  padding-top: 74px;
  background-image: url("../img/decor/bg_circles.png");
  background-repeat: no-repeat;
  background-size: 1222px auto;
  background-position: center;
}

.mobile_menu::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  width: 1472px;
  height: auto;
  aspect-ratio: 1;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-27%, -59%);
      -ms-transform: translate(-27%, -59%);
          transform: translate(-27%, -59%);
  background-image: url("../img/decor/capsules.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
}

.mobile_menu__inner {
  position: relative;
  z-index: 2;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: auto;
  gap: 30px;
  padding: 30px 68px;
  width: 100%;
  max-width: 100%;
}

.mobile_menu__action {
  margin-top: auto;
}

.mobile_menu .mobile__address {
  font-size: 16px;
  line-height: 1.5;
  padding-top: 20px;
}

.mobile_menu .lang_menu {
  background-color: #fff;
}

.mobile_menu .lang_menu li.active a {
  background-color: #f2f5fe;
}

.mobile_menu.mobile_menu_open {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}

.footer {
  color: #fff;
  background-color: #343434;
}

.footer__top:not(:last-child) {
  margin-bottom: 100px;
}

.top_footer {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr calc((100% - 30px) / 4 * 2) 1fr;
  grid-template-columns: 1fr calc((100% - 30px) / 4 * 2) 1fr;
  gap: 50px 30px;
}

.top_footer > * {
  min-width: 0 !important;
  max-width: 100% !important;
}

.top_footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.top_footer__left > * {
  min-width: 0 !important;
  max-width: 100% !important;
}

.top_footer__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}

.top_footer__logo {
  width: 62px;
}

.top_footer__logo img {
  max-width: 100%;
  height: auto;
}

.top_footer__login_wr {
  margin-top: auto;
}

.top_footer__login_wr .btn {
  min-width: 158px;
}

.top_footer__nav {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.top_footer__nav > * {
  min-width: 0 !important;
  max-width: 100% !important;
}

.top_footer__menu li:not(:last-child) {
  margin-bottom: 20px;
}

.top_footer__menu li a {
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.top_footer__menu li a:hover,
.top_footer__menu li a:active {
  color: #fda133;
}

.top_footer__menu li a::after {
  content: "";
  position: absolute;
  inset: -5px;
}

.top_footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.top_footer__right > * {
  min-width: 0 !important;
  max-width: 100% !important;
}

.top_footer__contact {
  margin-top: auto;
}

.top_footer__contact p {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.3);
}

.top_footer__contact p:not(:last-child) {
  margin-bottom: 1px;
}

.top_footer__contact p a {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: white;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.top_footer__contact p a:hover,
.top_footer__contact p a:active {
  color: #fda133;
}

.top_footer__contact p span {
  display: inline-block;
  margin-right: 10px;
}

.bottom_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px 30px;
  font-size: 15px;
  line-height: 2;
}

.bottom_footer__left {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: calc((100% - 90px) / 4);
}

.bottom_footer__right {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 30px;
}

.bottom_footer__right p {
  min-width: calc((100% - 60px) / 3);
}

.bottom_footer p {
  color: rgba(255, 255, 255, 0.3);
}

.bottom_footer p a {
  color: inherit;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.bottom_footer p a:hover,
.bottom_footer p a:active {
  color: white;
}

.intro {
  position: relative;
  padding: 197px 0 100px;
  overflow: hidden;
  background-image: url("../img/decor/bg_circles.png");
  background-repeat: no-repeat;
  background-size: 1622px auto;
  background-position: center 53%;
}

.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  width: 1472px;
  height: auto;
  aspect-ratio: 1;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-27%, -59%);
      -ms-transform: translate(-27%, -59%);
          transform: translate(-27%, -59%);
  background-image: url("../img/decor/capsules.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
}

.intro__block {
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}

.intro__block > * {
  min-width: 0 !important;
  max-width: 100% !important;
}

.intro__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  text-align: center;
}

.intro__top > * {
  min-width: 0 !important;
  max-width: 100% !important;
}

.intro__title {
  font-weight: 700;
  font-size: 72px;
  line-height: 1.2;
}

.intro__subtitle {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
}

.intro__text {
  font-size: 18px;
  line-height: 1.5;
}

.intro__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 30px;
}

.intro__bottom {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.4);
  text-align: center;
}

.intro__bottom a {
  color: inherit;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.intro__bottom a:hover,
.intro__bottom a:active {
  color: black;
}

.intro__el {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.intro__el img {
  width: 100%;
  height: auto;
}

.intro__el_1 {
  width: 740px;
  left: 0;
  bottom: 0;
  z-index: 3;
  -webkit-transform: translate(-20%, 34%);
      -ms-transform: translate(-20%, 34%);
          transform: translate(-20%, 34%);
}

.intro__el_2 {
  width: 823px;
  right: 0;
  top: 0;
  z-index: 3;
  -webkit-transform: translate(32%, -32%);
      -ms-transform: translate(32%, -32%);
          transform: translate(32%, -32%);
}

.intro__el_3,
.intro__el_4 {
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-duration: 300s;
          animation-duration: 300s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.intro__el_3 {
  width: 650px;
  top: 33%;
  left: -5%;
  -webkit-animation-name: animationGlobe;
          animation-name: animationGlobe;
}

.intro__el_4 {
  width: 650px;
  bottom: -82%;
  left: 102%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation-name: animationGlobeR;
          animation-name: animationGlobeR;
}

.need {
  position: relative;
  overflow: hidden;
}

.need::before {
  content: "";
  position: absolute;
  opacity: 0.1;
  inset: 0;
  display: block;
  width: 1472px;
  height: auto;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-20%, -50%);
      -ms-transform: translate(-20%, -50%);
          transform: translate(-20%, -50%);
  background-image: url("../img/decor/capsules.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
}

.need .container {
  position: relative;
  z-index: 3;
}

.need__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.need__grid > * {
  min-width: 0 !important;
  max-width: 100% !important;
}

.need__el {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.need__el img {
  width: 100%;
  height: auto;
}

.need__el_1 {
  width: 527px;
  left: 0;
  bottom: 0;
  -webkit-transform: translate(-37%, 13%);
      -ms-transform: translate(-37%, 13%);
          transform: translate(-37%, 13%);
}

.item_need {
  display: block;
  position: relative;
  border-radius: 20px;
  padding: 30px;
  color: #343434;
  background-color: #f2f5fe;
  overflow: hidden;
}

.item_need__main {
  position: relative;
  z-index: 2;
  padding-right: 40%;
}

.item_need__main h2,
.item_need__main h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
}

.item_need__main h2:not(:last-child),
.item_need__main h3:not(:last-child) {
  margin-bottom: 20px;
}

.item_need__main p {
  font-size: 20px;
  line-height: 1.5;
}

.item_need__main p:not(:last-child) {
  margin-bottom: 20px;
}

.item_need__main ul {
  position: relative;
  list-style: none;
}

.item_need__main ul:not(:last-child) {
  margin-bottom: 20px;
}

.item_need__main ul li {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 1.5;
  padding-left: 36px;
}

.item_need__main ul li:not(:last-child) {
  margin-bottom: 10px;
}

.item_need__main ul li::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 3px;
  left: 0;
  background-image: url("../img/icons/list_icon_none.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.item_need__img {
  position: absolute;
  width: 309px;
  max-width: 76%;
  height: auto;
  aspect-ratio: 1;
  top: 50%;
  right: 0;
  -webkit-transform: translate(12%, -53%);
      -ms-transform: translate(12%, -53%);
          transform: translate(12%, -53%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url("../img/decor/circle_blue.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.item_need__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -47%);
      -ms-transform: translate(-50%, -47%);
          transform: translate(-50%, -47%);
  width: 44%;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}

.item_need:nth-child(even) {
  background-color: #fff8e9;
}

.item_need:nth-child(even) .item_need__main ul li::after {
  background-image: url("../img/icons/list_icon_check.svg");
}

.item_need:nth-child(even) .item_need__img {
  -webkit-transform: translate(13%, -50%);
      -ms-transform: translate(13%, -50%);
          transform: translate(13%, -50%);
  background-image: url("../img/decor/circle_orange.webp");
}

.item_need:nth-child(even) .item_need__img img {
  -webkit-transform: translate(-52%, -51%);
      -ms-transform: translate(-52%, -51%);
          transform: translate(-52%, -51%);
}

.logic {
  position: relative;
  overflow: hidden;
}

.logic__block {
  position: relative;
}

.logic__grid {
  position: relative;
  z-index: 2;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 66%;
}

.logic__grid > * {
  min-width: 0 !important;
  max-width: 100% !important;
}

.logic__img {
  position: absolute;
  width: 71%;
  top: 0;
  right: 0;
  -webkit-transform: translate(28%, -13%);
      -ms-transform: translate(28%, -13%);
          transform: translate(28%, -13%);
}

.logic__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}

.item_logic {
  position: relative;
  display: block;
  border-radius: 20px;
  padding: 30px;
  overflow: hidden;
  background-color: #f2f5fe;
  min-height: 194px;
}

.item_logic__main {
  position: relative;
  z-index: 2;
  max-width: 80%;
}

.item_logic__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.item_logic__text {
  font-size: 16px;
  line-height: 1.5;
}

.item_logic__num {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-size: 222px;
  line-height: 1;
  opacity: 0.2;
  -webkit-transform: translate(8%, 11%);
      -ms-transform: translate(8%, 11%);
          transform: translate(8%, 11%);
}

.visual {
  position: relative;
  overflow: hidden;
}

.visual::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  width: 1472px;
  height: auto;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(-1, 1);
      -ms-transform: translate(-50%, -50%) scale(-1, 1);
          transform: translate(-50%, -50%) scale(-1, 1);
  background-image: url("../img/decor/capsules.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
  opacity: 0.1;
}

.visual::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  width: 1170px;
  height: auto;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url("../img/decor/globe.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
  -webkit-animation-name: animationGlobe;
          animation-name: animationGlobe;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-duration: 300s;
          animation-duration: 300s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.visual .container {
  position: relative;
  z-index: 3;
}

.visual__img img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.opportunitie__slider {
  overflow: visible;
}

.item_opportunitie {
  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;
  gap: 20px;
  text-align: center;
  height: auto;
  border-radius: 20px;
  padding: 30px;
  background-color: #fff;
  overflow: hidden;
}

.item_opportunitie > * {
  min-width: 0 !important;
}

.item_opportunitie__img {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: block;
}

.item_opportunitie__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.item_opportunitie__img::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 82%;
  height: auto;
  aspect-ratio: 1;
  bottom: -6px;
  left: -6px;
  border-radius: 13px;
  background: -o-linear-gradient(256deg, #fdd605 1.41%, rgba(253, 214, 5, 0) 100%);
  background: linear-gradient(194deg, #fdd605 1.41%, rgba(253, 214, 5, 0) 100%);
  opacity: 0.1;
}

.item_opportunitie__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
}

.item_opportunitie__text {
  font-size: 16px;
  line-height: 1.5;
}

.item_opportunitie.item_opportunitie_last {
  padding: 28px;
  background-color: transparent;
  border: 2px solid #fda133;
  margin-top: 10px;
}

.item_opportunitie.item_opportunitie_last .item_opportunitie__text {
  max-width: 66%;
  margin-left: auto;
  margin-right: auto;
}

.metrics__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto auto;
  grid-template-columns: auto auto auto auto;
  gap: 10px;
}

.metrics__grid > * {
  min-width: 0 !important;
  max-width: 100% !important;
}

.item_metrics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  gap: 10px;
  position: relative;
  border: 2px solid #fda133;
  border-radius: 20px;
  padding: 28px;
}

.item_metrics__title {
  font-weight: 700;
  font-size: 64px;
  line-height: 1.2;
}

.item_metrics__text {
  font-size: 16px;
  line-height: 1.5;
}

.step {
  position: relative;
  overflow: hidden;
}

.step::before {
  content: "";
  position: absolute;
  opacity: 0.1;
  inset: 0;
  display: block;
  width: 1472px;
  height: auto;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-72%, -50%);
      -ms-transform: translate(-72%, -50%);
          transform: translate(-72%, -50%);
  background-image: url("../img/decor/capsules.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
}

.step .container {
  position: relative;
  z-index: 2;
}

.step__block {
  position: relative;
}

.step__grid {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  max-width: 72%;
  margin-left: auto;
}

.step__grid > * {
  min-width: 0 !important;
  max-width: 100% !important;
}

.step__img {
  position: absolute;
  width: 56%;
  top: 0;
  left: 0;
  -webkit-transform: translate(-23%, -19%);
      -ms-transform: translate(-23%, -19%);
          transform: translate(-23%, -19%);
}

.step__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}

.item_step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  border-radius: 20px;
  padding: 30px;
  color: #343434;
  background-color: #fff;
  width: calc((100% - 10px) / 2);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.item_step > * {
  min-width: 0 !important;
  max-width: 100% !important;
}

.item_step__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.item_step__top > * {
  min-width: 0 !important;
  max-width: 100% !important;
}

.item_step__num {
  position: relative;
  font-weight: 700;
  font-size: 69px;
  line-height: 0.8;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform: translate(0, -3%);
      -ms-transform: translate(0, -3%);
          transform: translate(0, -3%);
}

.item_step__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
}

.item_step__text {
  font-size: 16px;
  line-height: 1.5;
}

.plans {
  position: relative;
}

.plans .container {
  position: relative;
  z-index: 2;
}

.plans__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.plans__grid > * {
  min-width: 0 !important;
  max-width: 100% !important;
}

.item_plans {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  border-radius: 25px;
  color: #fff;
  padding: 30px;
  background: -o-linear-gradient(44deg, #628cff 48.54%, #2cc0ff 100%);
  background: linear-gradient(46deg, #628cff 48.54%, #2cc0ff 100%);
}

.item_plans.item_plans_white {
  color: #343434;
  border: 2px solid #fda133;
  background: transparent;
  padding: 28px;
}

.item_plans.item_plans_white .item_plans__title {
  background: -o-linear-gradient(256deg, #fdd605 1.41%, rgba(253, 214, 5, 0) 100%);
  background: linear-gradient(194deg, #fdd605 1.41%, rgba(253, 214, 5, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.item_plans h2,
.item_plans h3 {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 30px;
}

.item_plans p {
  font-size: 16px;
  line-height: 1.5;
}

.item_plans b,
.item_plans strong {
  font-weight: 700;
}

.item_plans p,
.item_plans ul {
  margin-top: 0;
  margin-bottom: 0;
}

.item_plans p:not(:last-child),
.item_plans ul:not(:last-child) {
  margin-bottom: 20px;
}

.item_plans ul {
  position: relative;
  overflow: hidden;
  list-style: none;
  margin: 0;
}

.item_plans ul li {
  position: relative;
  display: block;
  min-width: 0 !important;
  font-size: 16px;
  line-height: 1.5;
  padding-left: 25px;
  color: inherit;
}

.item_plans ul li:not(:last-child) {
  margin-bottom: 10px;
}

.item_plans ul li::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  top: 9px;
  left: 0px;
  border-radius: 3px;
  background: -o-linear-gradient(195deg, #fdd605 1.41%, rgba(253, 214, 5, 0) 96.36%), #fa8507;
  background: linear-gradient(255deg, #fdd605 1.41%, rgba(253, 214, 5, 0) 96.36%), #fa8507;
}

.item_plans__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-top: auto;
}

.item_plans__bottom .btn {
  width: 100%;
}

.item_plans__price {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
}

.reviews {
  position: relative;
  overflow: hidden;
}

.reviews .container {
  position: relative;
  z-index: 2;
}

.reviews__box {
  position: relative;
}

.reviews__el {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.reviews__el img {
  width: 100%;
  height: auto;
}

.reviews__el_1 {
  width: 569px;
  right: 0;
  bottom: 0;
  -webkit-transform: translate(42%, 13%);
      -ms-transform: translate(42%, 13%);
          transform: translate(42%, 13%);
}

.item_reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 30px;
  background-color: #fff;
  border-radius: 25px 25px 25px 0;
  overflow: hidden;
  height: auto;
}

.item_reviews__img {
  width: 32px;
  height: 32px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.item_reviews__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.item_reviews__text {
  font-size: 18px;
  line-height: 1.5;
}

.item_reviews__author {
  margin-top: auto;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
}

.faq__spollers {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 20px;
}

.faq__spollers > * {
  min-width: 0 !important;
  max-width: 100% !important;
}

.faq_spoller__title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  padding: 26px 30px;
  border-radius: 20px;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  cursor: pointer;
}

.faq_spoller__title::after,
.faq_spoller__title::before {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  border-radius: 20px;
}

.faq_spoller__title::before {
  z-index: -1;
  border: 2px solid #fda133;
}

.faq_spoller__title::after {
  z-index: -2;
  background: -o-linear-gradient(195deg, #fdd605 1.41%, rgba(253, 214, 5, 0) 96.36%), #fa8507;
  background: linear-gradient(255deg, #fdd605 1.41%, rgba(253, 214, 5, 0) 96.36%), #fa8507;
  opacity: 0;
}

.faq_spoller__title._spoller-active {
  color: #fff;
}

.faq_spoller__title._spoller-active::before {
  opacity: 0;
}

.faq_spoller__title._spoller-active::after {
  opacity: 1;
}

.faq_spoller__title._spoller-active .faq_spoller__title-icon {
  color: #fff;
}

.faq_spoller__title._spoller-active .faq_spoller__title-arrow::after,
.faq_spoller__title._spoller-active .faq_spoller__title-arrow::before {
  background-color: #fff;
}

.faq_spoller__title._spoller-active .faq_spoller__title-arrow::before {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
      -ms-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}

.faq_spoller__title-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fda133;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.faq_spoller__title-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.faq_spoller__title-arrow {
  position: relative;
  width: 24px;
  height: 24px;
  margin-left: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.faq_spoller__title-arrow::after,
.faq_spoller__title-arrow::before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #343434;
  -webkit-transition: background-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.faq_spoller__title-arrow::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
      -ms-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.faq_spoller__body {
  padding: 20px 20px 20px 70px;
}

.cta {
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  opacity: 0.1;
  inset: 0;
  display: block;
  width: 1472px;
  height: auto;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-45%, -50%);
      -ms-transform: translate(-45%, -50%);
          transform: translate(-45%, -50%);
  background-image: url("../img/decor/capsules.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
}

.cta .container {
  position: relative;
  z-index: 2;
}

.cta__block {
  position: relative;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32%;
  grid-template-columns: 1fr 32%;
  gap: 32%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cta__block > * {
  min-width: 0 !important;
}

.cta__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.cta__left > * {
  min-width: 0 !important;
  max-width: 100% !important;
}

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

.cta__form > * {
  min-width: 0 !important;
}

.cta__form .btn {
  width: 100%;
}

.cta__img {
  position: absolute;
  z-index: -1;
  width: 55%;
  height: auto;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-53%, -11%);
      -ms-transform: translate(-53%, -11%);
          transform: translate(-53%, -11%);
}

.cta__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}

.consultation {
  position: fixed;
  z-index: 600;
  max-width: 526px;
  bottom: 50px;
  right: 50px;
  background-color: #fff;
  border: 2px solid #008aff;
  -webkit-box-shadow: 0 4px 24px 0 rgba(67, 64, 83, 0.1);
          box-shadow: 0 4px 24px 0 rgba(67, 64, 83, 0.1);
  border-radius: 25px;
  padding: 28px;
  opacity: 0;
  -webkit-transform: translate3d(0, 150%, 0);
          transform: translate3d(0, 150%, 0);
  -webkit-transition: bottom 0.3s ease-in-out;
  -o-transition: bottom 0.3s ease-in-out;
  transition: bottom 0.3s ease-in-out;
}

.consultation.consultation_top {
  bottom: 90px;
}

.consultation__close {
  position: absolute;
  z-index: 10;
  top: 10px;
  right: 10px;
  width: 16px;
  height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  opacity: 0.4;
}

.consultation__close:hover {
  opacity: 1;
}

.consultation__close::after {
  content: "";
  position: absolute;
  inset: -5px;
}

.consultation__close svg {
  width: 16px;
  height: 16px;
}

.consultation__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}

.consultation__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.consultation__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
}

.consultation__text {
  font-size: 16px;
  line-height: 1.5;
}

.consultation__action {
  margin-top: auto;
}

.consultation__action .btn {
  min-height: 38px;
}

.consultation__action .btn__icon svg {
  fill: currentColor;
  width: 20px;
  height: auto;
}

.consultation__right {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 146px;
}

.consultation__img {
  display: block;
}

.consultation__img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.consultation.block_open {
  -webkit-animation-name: blockOpen;
          animation-name: blockOpen;
  -webkit-animation-duration: 600ms;
          animation-duration: 600ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}

.consultation.block_close {
  -webkit-animation-name: blockClose;
          animation-name: blockClose;
  -webkit-animation-duration: 600ms;
          animation-duration: 600ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}

.panel_header {
  position: fixed;
  z-index: 1000;
  width: 290px;
  color: #fff;
}

.panel_header__main {
  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-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  gap: 14px;
}

.panel_header__inner {
  position: relative;
  z-index: 2;
  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-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow: auto;
  padding: 0 20px;
  margin: 0 -20px;
  gap: 20px;
}

.panel_header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

.panel_header__logo {
  position: relative;
  width: 54px;
}

.panel_header__logo img {
  max-width: 100%;
  height: auto;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.panel_header__logo .logo_dark {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.panel_header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}

.panel_header__list:not(:first-child) {
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 18px;
}

.panel_header__list li.active a::after {
  opacity: 1;
}

.panel_header__list a {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 10px 10px 10px 0;
  font-size: 18px;
  line-height: 1.2222222222;
  color: #fff;
}

.panel_header__list a::after {
  content: "";
  position: absolute;
  z-index: -1;
  height: 100%;
  top: 0;
  right: 0;
  left: -20px;
  background: rgba(255, 255, 255, 0.11);
  border-radius: 0 10px 10px 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.panel_header__list a:hover::after {
  opacity: 1;
}

.panel_header__list a .icon_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 16px;
}

.panel_header__list a .icon_menu img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}

.panel_header__bottom {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: auto;
  -webkit-transform: translateZ(2px);
          transform: translateZ(2px);
}

.panel_header__user {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.panel_header__btn_menu {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: transparent;
  margin-left: auto;
  overflow: hidden;
  -webkit-transition: background-color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  cursor: pointer;
}

.panel_header__btn_menu::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #008aff;
  z-index: -1;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.panel_header__btn_menu .svg_open,
.panel_header__btn_menu .svg_close {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.panel_header__btn_menu .svg_open {
  width: 16px;
  height: 16px;
}

.panel_header__btn_menu .svg_close {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  margin-left: -6px;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.panel_header__lang {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.panel_header__lang .lang_select__btn {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.11);
}

.panel_header__lang .lang_select.open .lang_select__btn {
  border-radius: 0 0 10px 10px;
}

.panel_header__lang .lang_select__list {
  top: auto;
  bottom: 100%;
  border-top: 1px solid #484848;
  border-bottom: 1px solid #484848;
  border-radius: 10px 10px 0 0;
}

.user_panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  background-color: #fff;
  border-radius: 10px;
  padding: 12px;
}

.user_panel__info {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: #343434;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.user_panel__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.user_panel__photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: -o-linear-gradient(44deg, #628cff 48.54%, #2cc0ff 100%);
  background: linear-gradient(46deg, #628cff 48.54%, #2cc0ff 100%);
  border-radius: 50%;
  overflow: hidden;
}

.user_panel__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.user_panel__separator {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  height: 18px;
}

.user_panel__logout {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  -webkit-transition: -webkit-filter 0.3s ease-in-out;
  transition: -webkit-filter 0.3s ease-in-out;
  -o-transition: filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
}

.user_panel__logout svg {
  width: 15px;
  height: auto;
}

.user_panel__logout::after {
  content: "";
  position: absolute;
  inset: -5px;
}

.panel_header_open_menu .panel_header__main {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}

.panel_header_open_menu .panel_header__btn_menu .svg_open {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.panel_header_open_menu .panel_header__btn_menu .svg_close {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.dashboard {
  background-color: #f2f5fe;
  padding: 10px 0 0 310px;
}

.dashboard__container {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.dashboard__container > * {
  min-width: 0 !important;
  max-width: 100% !important;
}

.dashboard .main {
  padding-bottom: 10px;
}

.dashboard .pages {
  padding-bottom: 20px;
}

.d_page_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  padding-top: 20px;
}

.d_page_header__title {
  padding-top: 2px;
}

.d_page_header__lang {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
}

.info_overview__title {
  margin-bottom: 30px;
}

.info_overview__grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.info_overview__grid > * {
  min-width: 0 !important;
  max-width: 100% !important;
}

.info_overview.info_overview_small .item_info_overview__value {
  font-size: 16px;
}

.item_info_overview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  padding: 20px;
  background-color: #fff;
  border-radius: 20px;
}

.item_info_overview > * {
  min-width: 0 !important;
  max-width: 100% !important;
}

.item_info_overview__top {
  margin-bottom: 10px;
  padding-right: 25px;
}

.item_info_overview__top .hint_info {
  position: absolute;
  top: 25px;
  right: 20px;
}

.item_info_overview__title {
  font-size: 16px;
  line-height: 1.5;
}

.item_info_overview__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.item_info_overview__main > * {
  min-width: 0 !important;
  max-width: 100% !important;
}

.item_info_overview__value {
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  margin-top: auto;
}

.text_info {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 10px;
  font-size: 12px;
  line-height: 1.5;
}

.text_info-red {
  color: #eb5757;
}

.text_info-green {
  color: #219653;
}

.text_info__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 15px;
  margin-top: 2px;
}

.text_info__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}

.d_link {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 10px;
  font-size: 12px;
  line-height: 1.5;
  color: #008aff;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.d_link__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.d_link__icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.network_visual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  padding: 20px;
  background-color: #fff;
  border-radius: 20px;
  gap: 30px;
}

.network_visual > * {
  min-width: 0 !important;
  max-width: 100% !important;
}

.network_visual__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.network_visual__panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-radius: 10px;
  padding: 12px;
  background-color: #f2f5fe;
  margin-left: auto;
}

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

.network_visual__img img {
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.actions_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.instrument_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.table_dashboard__title {
  margin-bottom: 30px;
}

.table_dashboard__main {
  position: relative;
  min-width: 100%;
}

.table_dashboard table {
  min-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-collapse: collapse;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.5;
}

.table_dashboard th,
.table_dashboard td {
  position: relative;
  padding: 20px 10px;
}

.table_dashboard thead {
  background: -o-linear-gradient(44deg, #628cff 48.54%, #2cc0ff 100%);
  background: linear-gradient(46deg, #628cff 48.54%, #2cc0ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.table_dashboard thead th,
.table_dashboard thead td {
  position: relative;
  padding-top: 0 !important;
}

.table_dashboard tbody th,
.table_dashboard tbody td {
  vertical-align: top;
}

.table_dashboard tbody tr:last-child th,
.table_dashboard tbody tr:last-child td {
  border-bottom: 0;
  padding-bottom: 0 !important;
}

.table_dashboard tr {
  position: relative;
}

.table_dashboard .td_name {
  background: -o-linear-gradient(44deg, #628cff 48.54%, #2cc0ff 100%);
  background: linear-gradient(46deg, #628cff 48.54%, #2cc0ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
}

.table_dashboard .td_value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-wrap: break-word;
  min-height: 30px;
}

.table_dashboard .td_value_overflow {
  width: 100%;
  max-width: 240px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.table_dashboard .td_value_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 20px;
}

.table_dashboard .td_actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
}

.table_dashboard .td_number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 30px;
}

.table_dashboard .td_value_post {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: normal;
      -ms-flex-align: normal;
          align-items: normal;
  gap: 5px;
}

.table_dashboard .td_value_post__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 30px;
}

.table_dashboard .td_value_post__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(52, 52, 52, 0.5);
}

.table_dashboard a {
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.table_dashboard a:hover,
.table_dashboard a:active {
  color: #008aff;
}

.tags_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}

.tags_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.tags_list li a,
.tags_list li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 12px;
  line-height: 1.5;
  color: #628cff;
  background-color: rgba(98, 140, 255, 0.3);
  border-radius: 4px;
  padding: 6px 10px;
  -webkit-transition: -webkit-filter 0.3s ease-in-out;
  transition: -webkit-filter 0.3s ease-in-out;
  -o-transition: filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
}

.tags_list li a:hover {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}

.tags_list li:nth-child(even) a,
.tags_list li:nth-child(even) span {
  color: #9c62ff;
  background-color: rgba(156, 98, 255, 0.3);
}

.add_post__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.add_post__inner > * {
  min-width: 0 !important;
}

.add_post__action {
  margin-bottom: 10px;
}

.add_post__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 65% 1fr;
  grid-template-columns: 65% 1fr;
  gap: 10px 30px;
  max-width: 1165px;
}

.add_post__row > * {
  min-width: 0 !important;
  max-width: 100% !important;
}

.add_post__caption {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(52, 52, 52, 0.5);
}

.form_domen__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.form_domen__inner > * {
  min-width: 0 !important;
  max-width: 100% !important;
}

.form_domen__inner .input_wr {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.domain_block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.domain_block > * {
  min-width: 0 !important;
  max-width: 100% !important;
}

.domain_block__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.domain_block__column > * {
  min-width: 0 !important;
  max-width: 100% !important;
}

.domain_block__column form {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.domain_block__column form > * {
  min-width: 0 !important;
  max-width: 100% !important;
}

.settings_ai {
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
}

.form_widget {
  border-radius: 20px;
  border: 1px solid #008aff;
  padding: 29px;
}

.form_widget__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.form_widget .textarea_wr {
  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-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.form_widget .textarea_wr textarea {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.form_widget__caption {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(52, 52, 52, 0.5);
}

.show_mobile {
  display: none;
}

.show_tablet {
  display: none;
}

.show_tablet_big {
  display: none;
}

.section_white {
  background-color: #fff;
}

.bd-placeholder-img {
  font-size: 1.125rem;
  text-anchor: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.b-example-divider {
  width: 100%;
  height: 3rem;
  background-color: rgba(0, 0, 0, 0.1);
  border: solid rgba(0, 0, 0, 0.15);
  border-width: 1px 0;
  -webkit-box-shadow: inset 0 0.5em 1.5em rgba(0, 0, 0, 0.1), inset 0 0.125em 0.5em rgba(0, 0, 0, 0.15);
          box-shadow: inset 0 0.5em 1.5em rgba(0, 0, 0, 0.1), inset 0 0.125em 0.5em rgba(0, 0, 0, 0.15);
}

.b-example-vr {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.5rem;
  height: 100vh;
}

.bi {
  vertical-align: -0.125em;
  fill: currentColor;
}

.nav-scroller {
  position: relative;
  z-index: 2;
  height: 2.75rem;
  overflow-y: hidden;
}

.nav-scroller .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding-bottom: 1rem;
  margin-top: -1px;
  overflow-x: auto;
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.btn-bd-primary {
  --bd-violet-bg: #712cf9;
  --bd-violet-rgb: 112.520718, 44.062154, 249.437846;
  --bs-btn-font-weight: 600;
  --bs-btn-color: var(--bs-white);
  --bs-btn-bg: var(--bd-violet-bg);
  --bs-btn-border-color: var(--bd-violet-bg);
  --bs-btn-hover-color: var(--bs-white);
  --bs-btn-hover-bg: #6528e0;
  --bs-btn-hover-border-color: #6528e0;
  --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
  --bs-btn-active-color: var(--bs-btn-hover-color);
  --bs-btn-active-bg: #5a23c8;
  --bs-btn-active-border-color: #5a23c8;
}

.bd-mode-toggle {
  z-index: 1500;
}

.bd-mode-toggle .dropdown-menu .active .bi {
  display: block !important;
}

@media (min-width: 767.98px) {
  .block_search__btn {
    display: none;
  }

  .modal.modal_success .modal__title {
    text-align: left;
  }

  .modal.modal_success .modal__text {
    text-align: left;
  }

  .intro__title br {
    display: none;
  }

  .opportunitie__box .slider_nav {
    display: none;
  }

  .opportunitie__slider .swiper-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .opportunitie__slider .swiper-wrapper > * {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .item_step:first-child {
    width: 41%;
  }

  .cta__title.title_section {
    font-size: 46px;
    line-height: 1;
    text-transform: none;
  }
}

@media (min-width: 768px) {
  .bd-placeholder-img-lg {
    font-size: 3.5rem;
  }
}

@media (min-width: 991.98px) {
  .header__menu li a {
    margin: -6px 0;
  }

  .opportunitie__slider .swiper-wrapper {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .reviews__box .btn_prev,
  .reviews__box .btn_next {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }

  .reviews__box .btn_prev {
    left: -58px;
  }

  .reviews__box .btn_next {
    right: -58px;
  }

  .reviews__box .swiper-pagination {
    display: none;
  }

  .reviews__box .slider_nav {
    margin-top: 0;
  }

  .table_dashboard__main {
    overflow: auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
  }

  .table_dashboard th,
  .table_dashboard td {
    border-bottom: 1px solid #eef4ff;
  }

  .table_dashboard th:first-child,
  .table_dashboard td:first-child {
    padding-left: 0 !important;
  }

  .table_dashboard th:last-child,
  .table_dashboard td:last-child {
    padding-right: 0 !important;
  }

  .table_dashboard thead th,
  .table_dashboard thead td {
    border-bottom: 1px solid #adc7ff;
  }

  .table_dashboard .td_name {
    display: none;
  }
}

@media (min-width: 1199.98px) {
  .header__logo {
    margin-left: 18px;
  }

  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header__menu li a::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 6px;
    bottom: -3px;
    left: 0;
    background-color: #343434;
    border-radius: 20px;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }

  .header__btn_menu {
    display: none;
  }

  .mobile_menu {
    display: none;
  }

  .reviews__box .btn_prev {
    left: -78px;
  }

  .reviews__box .btn_next {
    right: -78px;
  }

  .cta__title.title_section {
    font-size: 72px;
  }

  .panel_header {
    height: calc(100% - 20px);
    background: -o-linear-gradient(44deg, #628cff 48.54%, #2cc0ff 100%);
    background: linear-gradient(46deg, #628cff 48.54%, #2cc0ff 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 20px;
    top: 10px;
    left: 10px;
  }

  .panel_header__main {
    overflow: hidden;
    padding: 20px;
  }

  .panel_header__top {
    padding: 20px 20px 10px 20px;
  }

  .panel_header__btn_menu {
    display: none;
  }

  .panel_header__lang {
    display: none;
  }
}

@media (any-hover: hover) and (min-width: 1199.98px) {
  .header__menu li a:hover::after {
    opacity: 1;
  }
}

@media (max-width: 1500px) {
  .arrow_up_site {
    right: 30px;
  }

  .consultation {
    right: 30px;
  }
}

@media (max-width: 1386px) {
  .intro__el_1 {
    -webkit-transform: translate(-42%, 34%);
        -ms-transform: translate(-42%, 34%);
            transform: translate(-42%, 34%);
  }

  .intro__el_2 {
    -webkit-transform: translate(40%, -32%);
        -ms-transform: translate(40%, -32%);
            transform: translate(40%, -32%);
  }

  .step__img {
    -webkit-transform: translate(-23%, -10%);
        -ms-transform: translate(-23%, -10%);
            transform: translate(-23%, -10%);
  }
}

@media (max-width: 1199.98px) {
  .container {
    padding: 0 68px;
  }

  .slider_nav {
    margin-top: 30px;
  }

  .content_box h1 {
    font-size: 40px;
  }

  .content_box .alignleft {
    max-width: 40%;
  }

  .content_box .alignright {
    max-width: 40%;
  }

  .arrow_up_site {
    right: 13px;
    bottom: 20px;
  }

  .header {
    padding-top: 30px;
  }

  .header__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }

  .header__menu li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 138, 255, 0.2);
  }

  .header__menu li a {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    background: -o-linear-gradient(44deg, #628cff 48.54%, #2cc0ff 100%);
    background: linear-gradient(46deg, #628cff 48.54%, #2cc0ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 20px 0;
  }

  .header__action {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .header__action .lang_menu {
    display: none;
  }

  .header__action .btn {
    min-height: 42px;
    width: 42px;
    padding: 4px;
  }

  .header__action .btn__text {
    display: none;
  }

  .footer__top:not(:last-child) {
    margin-bottom: 70px;
  }

  .intro {
    padding: 160px 0 100px;
  }

  .intro__block {
    gap: 45px;
  }

  .intro__title {
    font-size: 56px;
  }

  .intro__el_1 {
    width: 480px;
  }

  .intro__el_2 {
    width: 550px;
  }

  .intro__el_3 {
    width: 500px;
    top: 11%;
    left: -7%;
  }

  .intro__el_4 {
    width: 500px;
    bottom: -84%;
  }

  .need__el_1 {
    width: 400px;
    -webkit-transform: translate(-37%, 40%);
        -ms-transform: translate(-37%, 40%);
            transform: translate(-37%, 40%);
  }

  .logic__grid {
    max-width: 75%;
  }

  .logic__img {
    width: 80%;
  }

  .item_metrics__title {
    font-size: 56px;
  }

  .step__grid {
    max-width: 75%;
  }

  .reviews__el_1 {
    display: none;
  }

  .panel_header {
    top: 0;
    left: 0;
    width: 100%;
  }

  .panel_header.panel_header_fixed .panel_header__top,
  .panel_header.panel_header_open_bg .panel_header__top {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .panel_header.panel_header_fixed .panel_header__top::after {
    opacity: 1;
  }

  .panel_header.panel_header_open_menu .panel_header__top::after {
    opacity: 0 !important;
  }

  .panel_header.panel_header_fixed .panel_header__logo .logo_main,
  .panel_header.panel_header_open_menu .panel_header__logo .logo_main {
    opacity: 1;
  }

  .panel_header.panel_header_fixed .panel_header__logo .logo_dark,
  .panel_header.panel_header_open_menu .panel_header__logo .logo_dark {
    opacity: 0;
  }

  .panel_header.panel_header_fixed .panel_header__btn_menu,
  .panel_header.panel_header_open_menu .panel_header__btn_menu {
    background-color: rgba(255, 255, 255, 0.11);
  }

  .panel_header.panel_header_fixed .panel_header__btn_menu:after,
  .panel_header.panel_header_open_menu .panel_header__btn_menu:after {
    opacity: 0;
  }

  .panel_header__main {
    position: fixed;
    z-index: 990;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -o-linear-gradient(44deg, #628cff 48.54%, #2cc0ff 100%);
    background: linear-gradient(46deg, #628cff 48.54%, #2cc0ff 100%);
    padding: 90px 20px 20px 20px;
    -webkit-transform: translate(0, -100%);
        -ms-transform: translate(0, -100%);
            transform: translate(0, -100%);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    isolation: isolate;
  }

  .panel_header__top {
    padding: 20px 30px;
    position: relative;
    z-index: 1000;
    -webkit-transition: padding 0.3s ease-in-out;
    -o-transition: padding 0.3s ease-in-out;
    transition: padding 0.3s ease-in-out;
  }

  .panel_header__top::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: -o-linear-gradient(44deg, #628cff 48.54%, #2cc0ff 100%);
    background: linear-gradient(46deg, #628cff 48.54%, #2cc0ff 100%);
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }

  .panel_header__logo .logo_main {
    opacity: 0;
  }

  .panel_header__logo .logo_dark {
    opacity: 1;
  }

  .dashboard {
    padding: 90px 0 0 0;
  }

  .dashboard .main {
    padding-bottom: 40px;
  }

  .d_page_header__lang {
    display: none;
  }

  .item_info_overview__value {
    font-size: 36px;
  }

  .hide_tablet_big {
    display: none !important;
  }

  .show_tablet_big {
    display: block;
  }
}

@media (max-width: 991.98px) {
  .container {
    padding: 0 20px;
  }

  .arrow_up_site {
    right: 20px;
  }

  .mobile_menu__inner {
    padding: 30px 20px 30px 20px;
  }

  .top_footer {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .bottom_footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .need__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .logic__grid {
    max-width: 85%;
  }

  .logic__img {
    -webkit-transform: translate(38%, -13%);
        -ms-transform: translate(38%, -13%);
            transform: translate(38%, -13%);
  }

  .metrics__grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .step__grid {
    max-width: 85%;
  }

  .step__img {
    width: 475px;
    -webkit-transform: translate(-36%, 0%);
        -ms-transform: translate(-36%, 0%);
            transform: translate(-36%, 0%);
  }

  .plans__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .reviews__slider {
    overflow: visible;
  }

  .cta__block {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 160px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta__left {
    text-align: center;
  }

  .cta__img {
    width: 400px;
    bottom: -10px;
    top: auto;
    left: 50%;
    -webkit-transform: translate(-51%, 0);
        -ms-transform: translate(-51%, 0);
            transform: translate(-51%, 0);
  }

  .consultation {
    right: 20px;
  }

  .table_dashboard th,
  .table_dashboard td {
    padding: 0;
  }

  .table_dashboard thead {
    display: none;
  }

  .table_dashboard table,
  .table_dashboard tbody,
  .table_dashboard td,
  .table_dashboard th {
    display: block;
    width: 100%;
  }

  .table_dashboard tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }

  .table_dashboard tr {
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
  }

  .table_dashboard tr:not(:last-child) {
    margin-bottom: 10px;
  }

  .table_dashboard .td_mobile_top {
    position: absolute;
    top: 20px;
    right: 20px;
    width: auto;
  }

  .table_dashboard .td_number {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    padding: 6px;
    color: #fff;
    background: -o-linear-gradient(44deg, #628cff 48.54%, #2cc0ff 100%);
    background: linear-gradient(46deg, #628cff 48.54%, #2cc0ff 100%);
  }

  .table_dashboard .td_number::before {
    content: "# ";
    display: inline-block;
    margin-right: 3px;
  }

  .table_dashboard .min_btn_action {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .table_dashboard .min_btn_action svg {
    width: 14px;
    height: 14px;
  }

  .add_post__action {
    margin-bottom: 0;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .add_post__action .btn {
    width: 100%;
  }

  .add_post__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .domain_block {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .hide_tablet {
    display: none !important;
  }

  .show_tablet {
    display: block;
  }
}

@media (max-width: 767.98px) {
  .container {
    max-width: 500px;
  }

  .input_search input {
    padding: 0 56px 0 46px;
  }

  .input_search__close {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 56px;
    height: 100%;
    top: 0;
    right: 0;
    color: #008aff;
    cursor: pointer;
  }

  .block_search {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }

  .block_search.block_search_open .block_search__input {
    width: calc(100vw - 40px);
    pointer-events: auto;
  }

  .block_search__input {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    overflow: hidden;
    pointer-events: none;
    -webkit-transition: width 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
  }

  .form_dashboard .textarea_wr textarea {
    height: 128px;
  }

  .arcticmodal-container_i2 {
    padding: 5px;
  }

  .modal {
    width: 320px;
    max-width: calc(100vw - 40px);
  }

  .modal__box {
    padding: 30px 20px;
  }

  .modal.modal_success .modal__box {
    padding: 30px 20px 100px 20px;
  }

  .modal.modal_success .modal__main {
    max-width: 100%;
  }

  .modal.modal_success .modal__img {
    width: 200px;
    top: auto;
    bottom: 0;
    right: 50%;
    -webkit-transform: translate(50%, 62px);
        -ms-transform: translate(50%, 62px);
            transform: translate(50%, 62px);
  }

  .slider_nav {
    margin-top: 20px;
  }

  .content_box {
    font-size: 16px;
    line-height: 1.5;
  }

  .content_box ol li,
  .content_box ul li {
    font-size: 16px;
    line-height: 1.5;
  }

  .content_box ul > li::before {
    top: 9px;
  }

  .content_box blockquote {
    padding: 20px;
  }

  .content_box .table_box {
    padding: 5px 20px;
    margin-left: -20px;
    margin-right: -20px;
  }

  .content_box .table_box table {
    font-size: 16px;
    line-height: 1.5;
  }

  .content_box h1 {
    font-size: 32px;
  }

  .content_box h2 {
    font-size: 22px;
  }

  .content_box .alignleft {
    float: none;
    margin-right: 0;
    max-width: 100%;
  }

  .content_box .alignright {
    float: none;
    margin-left: 0;
    max-width: 100%;
  }

  .section {
    padding: 50px 0;
  }

  .header_section {
    margin-bottom: 30px;
  }

  .title_section {
    font-size: 22px;
  }

  .title_h2 {
    font-size: 20px;
  }

  .title_h3 {
    font-size: 20px;
  }

  .subtitle {
    font-size: 16px;
    text-transform: none;
  }

  .subtitle br {
    display: none;
  }

  .btn {
    padding: 2px 16px;
    width: 100%;
  }

  .arrow_up_site.btn {
    width: 42px;
  }

  .lang_select__list ul {
    max-height: 378px;
  }

  .header {
    padding-top: 20px;
  }

  .mobile_menu .header__nav,
  .mobile_menu .mobile_menu__lang {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer__top:not(:last-child) {
    margin-bottom: 40px;
  }

  .top_footer {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .top_footer__header {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .top_footer__nav {
    gap: 20px;
  }

  .top_footer__right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .bottom_footer__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .intro {
    padding: 124px 0 100px;
    background-size: 1222px auto;
  }

  .intro__block {
    gap: 30px;
  }

  .intro__title {
    font-size: 28px;
    line-height: 1.3;
  }

  .intro__subtitle {
    font-size: 18px;
    line-height: 1.5;
  }

  .intro__text {
    font-size: 16px;
  }

  .intro__text br {
    display: none;
  }

  .intro__el_1 {
    width: 250px;
    left: 50%;
    -webkit-transform: translate(-52%, 50%);
        -ms-transform: translate(-52%, 50%);
            transform: translate(-52%, 50%);
  }

  .intro__el_2 {
    width: 226px;
    -webkit-transform: translate(50%, 5%);
        -ms-transform: translate(50%, 5%);
            transform: translate(50%, 5%);
  }

  .intro__el_3 {
    width: 406px;
    top: 6%;
    left: 14%;
  }

  .intro__el_4 {
    width: 434px;
    left: 121%;
    bottom: -73%;
  }

  .need:has(.need__el) .need__grid {
    padding-bottom: 50px;
  }

  .need__el_1 {
    width: 260px;
    left: 50%;
    -webkit-transform: translate(-52%, 40%);
        -ms-transform: translate(-52%, 40%);
            transform: translate(-52%, 40%);
  }

  .item_need {
    padding: 20px;
  }

  .item_need__main {
    padding-right: 17%;
  }

  .item_need__img {
    top: 106px;
    -webkit-transform: translate(41%, -51%);
        -ms-transform: translate(41%, -51%);
            transform: translate(41%, -51%);
  }

  .item_need:nth-child(even) .item_need__img {
    -webkit-transform: translate(41%, -51%);
        -ms-transform: translate(41%, -51%);
            transform: translate(41%, -51%);
  }

  .logic__block {
    padding-bottom: 50px;
  }

  .logic__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .logic__img {
    width: 260px;
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-46%, 66%);
        -ms-transform: translate(-46%, 66%);
            transform: translate(-46%, 66%);
  }

  .item_logic {
    min-height: 163px;
    padding: 20px;
  }

  .item_logic__main {
    max-width: 66%;
  }

  .item_logic__title {
    font-size: 24px;
  }

  .item_logic__num {
    -webkit-transform: translate(11%, 15%);
        -ms-transform: translate(11%, 15%);
            transform: translate(11%, 15%);
  }

  .visual::after {
    width: 625px;
  }

  .item_opportunitie {
    padding: 20px;
  }

  .item_opportunitie__title {
    font-size: 18px;
    line-height: 1.5;
  }

  .item_opportunitie.item_opportunitie_last {
    padding: 18px;
    margin-top: 20px;
  }

  .item_opportunitie.item_opportunitie_last .item_opportunitie__text {
    max-width: 100%;
  }

  .metrics__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .item_metrics {
    padding: 18px;
  }

  .item_metrics__title {
    font-size: 40px;
  }

  .step__block {
    padding-bottom: 50px;
  }

  .step__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .step__img {
    width: 230px;
    top: auto;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-53%, 59%);
        -ms-transform: translate(-53%, 59%);
            transform: translate(-53%, 59%);
  }

  .item_step {
    width: 100%;
    padding: 20px;
  }

  .item_step__title {
    font-size: 18px;
    line-height: 1.5;
  }

  .item_plans {
    padding: 20px;
    gap: 20px;
  }

  .item_plans.item_plans_white {
    padding: 18px;
  }

  .item_plans h2,
  .item_plans h3 {
    margin-bottom: 20px;
  }

  .faq_spoller__title {
    padding: 20px;
  }

  .faq_spoller__title-icon {
    display: none;
  }

  .faq_spoller__body {
    padding: 20px 0;
  }

  .cta__block {
    max-width: 100%;
    gap: 120px;
  }

  .cta__left {
    gap: 10px;
  }

  .cta__img {
    width: 313px;
    bottom: 21px;
    -webkit-transform: translate(-51%, 0);
        -ms-transform: translate(-51%, 0);
            transform: translate(-51%, 0);
  }

  .consultation.consultation_top {
    bottom: 80px;
  }

  .consultation {
    bottom: 20px;
    padding: 18px 18px 50px 18px;
    width: calc(100vw - 40px);
    max-width: 100%;
  }

  .consultation__close {
    top: 8px;
    right: 8px;
  }

  .consultation__grid {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .consultation__title {
    font-size: 16px;
  }

  .consultation__text {
    display: none;
  }

  .consultation__action {
    position: absolute;
    bottom: -4px;
    left: -2px;
    right: -2px;
  }

  .consultation__right {
    width: 45px;
  }

  .panel_header__top {
    padding: 20px;
  }

  .dashboard__container {
    padding: 0 20px;
  }

  .info_overview__title {
    margin-bottom: 20px;
  }

  .info_overview__grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .item_info_overview.item_info_overview_m_big {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }

  .item_info_overview__top {
    padding-right: 10px;
    margin-bottom: 5px;
  }

  .item_info_overview__top .hint_info {
    top: 10px;
    right: 10px;
  }

  .item_info_overview__value {
    font-size: 27px;
  }

  .d_link::after {
    content: "";
    position: absolute;
    inset: -12px;
  }

  .network_visual__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
  }

  .network_visual__panel {
    margin-left: 0;
    width: 100%;
  }

  .network_visual__panel .d_link {
    width: 100%;
  }

  .instrument_block .btn {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }

  .instrument_block:has(.block_search_open) > *:not(.block_search) {
    opacity: 0;
  }

  .table_dashboard__title {
    margin-bottom: 20px;
  }

  .table_dashboard .td_value_overflow {
    max-width: 100%;
  }

  .table_dashboard .td_value_flex {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .table_dashboard .td_value_post__info {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .form_domen__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .settings_ai {
    padding: 20px;
  }

  .form_widget {
    padding: 19px;
  }

  .form_widget__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .form_widget .textarea_wr textarea {
    height: 152px;
  }

  .hide_mobile {
    display: none !important;
  }

  .show_mobile {
    display: block;
  }
}

@media (max-width: 991.98px) and (min-width: 767.98px) {
  .top_footer__nav {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}

@media (max-width: 1386px) and (min-width: 991.98px) {
  .settings_ai__bottom .btn {
    width: 100%;
  }

  .form_widget__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .form_widget__bottom .btn {
    width: 100%;
  }
}

@media (hover: hover) {
  .f-button:hover:not([disabled]) {
    color: var(--f-button-hover-color);
    background-color: var(--f-button-hover-bg);
  }
}

@media (pointer: coarse) {
  .ql-snow.ql-toolbar button:hover:not(.ql-active),
  .ql-snow .ql-toolbar button:hover:not(.ql-active) {
    color: #444;
  }

  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
    fill: #444;
  }

  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
    stroke: #444;
  }
}

@media (any-hover: hover) {
  .checkbox_wr label > input:not(:disabled) + span:hover {
    color: #008aff;
  }

  .hint_info:hover svg {
    opacity: 1;
  }

  .lang_menu li a:hover {
    opacity: 1;
  }

  .faq_spoller__title:hover .faq_spoller__title-arrow::after,
  .faq_spoller__title:hover .faq_spoller__title-arrow::before {
    background-color: #fda133;
  }

  .user_panel__logout:hover {
    -webkit-filter: brightness(1.2);
            filter: brightness(1.2);
  }

  .d_link:hover {
    color: #343434;
  }
}